├── .env.example ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── lint.yml │ ├── test.yml │ └── verify.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── LICENSE ├── Makefile ├── README.md ├── assets └── Rocket_Joe.jpeg ├── audit ├── audit_certora.pdf ├── cmichel_audit.pdf └── paladin_audit.pdf ├── certora ├── .gitignore ├── Makefile ├── README.md ├── applyHarness.patch ├── harness │ ├── DummyPenaltyCollector.sol │ ├── LaunchEventHarness.sol │ ├── OwnerA.sol │ ├── OwnerB.sol │ └── RocketJoeStakingHarness.sol ├── helpers │ ├── DummyERC20A.sol │ ├── DummyERC20B.sol │ ├── DummyERC20Impl.sol │ ├── DummyWeth.sol │ ├── Receiver.sol │ └── erc20.spec ├── munged │ └── .gitignore ├── scripts │ ├── sanity.sh │ ├── stakingRule.sh │ ├── verifyAll.sh │ ├── verifyLEHighLevel.sh │ ├── verifyLEValidStates.sh │ ├── verifyLEVarTran.sh │ └── verifyStaking.sh └── spec │ ├── LEHighLevel.spec │ ├── LEInProgress.spec │ ├── LEPreset.spec │ ├── LEValidStates.spec │ ├── LEVarTran.spec │ ├── LaunchEvent.spec │ ├── Staking.spec │ └── sanity.spec ├── contracts ├── LaunchEvent.sol ├── LaunchEventLens.sol ├── RocketJoeFactory.sol ├── RocketJoeStaking.sol ├── RocketJoeToken.sol ├── interfaces │ ├── IJoeFactory.sol │ ├── IJoePair.sol │ ├── IJoeRouter01.sol │ ├── IJoeRouter02.sol │ ├── ILaunchEvent.sol │ ├── IRocketJoeFactory.sol │ ├── IRocketJoeToken.sol │ └── IWAVAX.sol └── mocks │ ├── ERC20Token.sol │ └── ERC20Token6decimals.sol ├── deploy ├── LaunchEvent.js ├── LaunchEventLens.js ├── RocketJoeFactory.js ├── RocketJoeStaking.js └── RocketJoeToken.js ├── deployments ├── avalanche │ ├── .chainId │ ├── DefaultProxyAdmin.json │ ├── LaunchEvent.json │ ├── LaunchEventLens.json │ ├── RocketJoeFactory.json │ ├── RocketJoeFactory_Implementation.json │ ├── RocketJoeFactory_Proxy.json │ ├── RocketJoeStaking.json │ ├── RocketJoeStaking_Implementation.json │ ├── RocketJoeStaking_Proxy.json │ ├── RocketJoeToken.json │ └── solcInputs │ │ ├── 1635d55d57a0a2552952c0d22586ed23.json │ │ ├── 2a4ee89e21afcf6ecfcdeb5a1ab77362.json │ │ ├── 314101db3bab97c2aa9e103522f48b3a.json │ │ ├── 5ed1f6f116bb3c8aee1bab0267059162.json │ │ ├── 6ec54884a1a0bdebb26ec72150c78ba5.json │ │ └── 8e7534e55a46e50e0d85f4f885453de2.json └── rinkeby │ ├── .chainId │ ├── DefaultProxyAdmin.json │ ├── LaunchEvent.json │ ├── LaunchEventLens.json │ ├── RocketJoeFactory.json │ ├── RocketJoeFactory_Implementation.json │ ├── RocketJoeFactory_Proxy.json │ ├── RocketJoeStaking.json │ ├── RocketJoeStaking_Implementation.json │ ├── RocketJoeStaking_Proxy.json │ ├── RocketJoeToken.json │ └── solcInputs │ ├── 1635d55d57a0a2552952c0d22586ed23.json │ ├── 2a4ee89e21afcf6ecfcdeb5a1ab77362.json │ ├── 314101db3bab97c2aa9e103522f48b3a.json │ ├── 6ec54884a1a0bdebb26ec72150c78ba5.json │ └── 8e7534e55a46e50e0d85f4f885453de2.json ├── hardhat.config.js ├── package.json ├── requirements.txt ├── tasks ├── enter.js └── launchtoken.js ├── test ├── LaunchEvent.test.js ├── LaunchEventPhaseOne.test.js ├── LaunchEventPhaseThree.test.js ├── LaunchEventPhaseTwo.test.js ├── RocketJoeFactory.test.js ├── RocketJoeStaking.test.js ├── RocketJoeToken.test.js └── utils │ ├── contracts.js │ ├── hardhat.js │ └── time.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cryptofish7 @LouisMeMyself @jummy123 2 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/README.md -------------------------------------------------------------------------------- /assets/Rocket_Joe.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/assets/Rocket_Joe.jpeg -------------------------------------------------------------------------------- /audit/audit_certora.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/audit/audit_certora.pdf -------------------------------------------------------------------------------- /audit/cmichel_audit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/audit/cmichel_audit.pdf -------------------------------------------------------------------------------- /audit/paladin_audit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/audit/paladin_audit.pdf -------------------------------------------------------------------------------- /certora/.gitignore: -------------------------------------------------------------------------------- 1 | !scripts/*.sh 2 | -------------------------------------------------------------------------------- /certora/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/Makefile -------------------------------------------------------------------------------- /certora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/README.md -------------------------------------------------------------------------------- /certora/applyHarness.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/applyHarness.patch -------------------------------------------------------------------------------- /certora/harness/DummyPenaltyCollector.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/harness/DummyPenaltyCollector.sol -------------------------------------------------------------------------------- /certora/harness/LaunchEventHarness.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/harness/LaunchEventHarness.sol -------------------------------------------------------------------------------- /certora/harness/OwnerA.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/harness/OwnerA.sol -------------------------------------------------------------------------------- /certora/harness/OwnerB.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/harness/OwnerB.sol -------------------------------------------------------------------------------- /certora/harness/RocketJoeStakingHarness.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/harness/RocketJoeStakingHarness.sol -------------------------------------------------------------------------------- /certora/helpers/DummyERC20A.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/helpers/DummyERC20A.sol -------------------------------------------------------------------------------- /certora/helpers/DummyERC20B.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/helpers/DummyERC20B.sol -------------------------------------------------------------------------------- /certora/helpers/DummyERC20Impl.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/helpers/DummyERC20Impl.sol -------------------------------------------------------------------------------- /certora/helpers/DummyWeth.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/helpers/DummyWeth.sol -------------------------------------------------------------------------------- /certora/helpers/Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/helpers/Receiver.sol -------------------------------------------------------------------------------- /certora/helpers/erc20.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/helpers/erc20.spec -------------------------------------------------------------------------------- /certora/munged/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /certora/scripts/sanity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/scripts/sanity.sh -------------------------------------------------------------------------------- /certora/scripts/stakingRule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/scripts/stakingRule.sh -------------------------------------------------------------------------------- /certora/scripts/verifyAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/scripts/verifyAll.sh -------------------------------------------------------------------------------- /certora/scripts/verifyLEHighLevel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/scripts/verifyLEHighLevel.sh -------------------------------------------------------------------------------- /certora/scripts/verifyLEValidStates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/scripts/verifyLEValidStates.sh -------------------------------------------------------------------------------- /certora/scripts/verifyLEVarTran.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/scripts/verifyLEVarTran.sh -------------------------------------------------------------------------------- /certora/scripts/verifyStaking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/scripts/verifyStaking.sh -------------------------------------------------------------------------------- /certora/spec/LEHighLevel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/spec/LEHighLevel.spec -------------------------------------------------------------------------------- /certora/spec/LEInProgress.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/spec/LEInProgress.spec -------------------------------------------------------------------------------- /certora/spec/LEPreset.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/spec/LEPreset.spec -------------------------------------------------------------------------------- /certora/spec/LEValidStates.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/spec/LEValidStates.spec -------------------------------------------------------------------------------- /certora/spec/LEVarTran.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/spec/LEVarTran.spec -------------------------------------------------------------------------------- /certora/spec/LaunchEvent.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/spec/LaunchEvent.spec -------------------------------------------------------------------------------- /certora/spec/Staking.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/spec/Staking.spec -------------------------------------------------------------------------------- /certora/spec/sanity.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/certora/spec/sanity.spec -------------------------------------------------------------------------------- /contracts/LaunchEvent.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/LaunchEvent.sol -------------------------------------------------------------------------------- /contracts/LaunchEventLens.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/LaunchEventLens.sol -------------------------------------------------------------------------------- /contracts/RocketJoeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/RocketJoeFactory.sol -------------------------------------------------------------------------------- /contracts/RocketJoeStaking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/RocketJoeStaking.sol -------------------------------------------------------------------------------- /contracts/RocketJoeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/RocketJoeToken.sol -------------------------------------------------------------------------------- /contracts/interfaces/IJoeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/interfaces/IJoeFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IJoePair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/interfaces/IJoePair.sol -------------------------------------------------------------------------------- /contracts/interfaces/IJoeRouter01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/interfaces/IJoeRouter01.sol -------------------------------------------------------------------------------- /contracts/interfaces/IJoeRouter02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/interfaces/IJoeRouter02.sol -------------------------------------------------------------------------------- /contracts/interfaces/ILaunchEvent.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/interfaces/ILaunchEvent.sol -------------------------------------------------------------------------------- /contracts/interfaces/IRocketJoeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/interfaces/IRocketJoeFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IRocketJoeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/interfaces/IRocketJoeToken.sol -------------------------------------------------------------------------------- /contracts/interfaces/IWAVAX.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/interfaces/IWAVAX.sol -------------------------------------------------------------------------------- /contracts/mocks/ERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/mocks/ERC20Token.sol -------------------------------------------------------------------------------- /contracts/mocks/ERC20Token6decimals.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/contracts/mocks/ERC20Token6decimals.sol -------------------------------------------------------------------------------- /deploy/LaunchEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deploy/LaunchEvent.js -------------------------------------------------------------------------------- /deploy/LaunchEventLens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deploy/LaunchEventLens.js -------------------------------------------------------------------------------- /deploy/RocketJoeFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deploy/RocketJoeFactory.js -------------------------------------------------------------------------------- /deploy/RocketJoeStaking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deploy/RocketJoeStaking.js -------------------------------------------------------------------------------- /deploy/RocketJoeToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deploy/RocketJoeToken.js -------------------------------------------------------------------------------- /deployments/avalanche/.chainId: -------------------------------------------------------------------------------- 1 | 43114 -------------------------------------------------------------------------------- /deployments/avalanche/DefaultProxyAdmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/DefaultProxyAdmin.json -------------------------------------------------------------------------------- /deployments/avalanche/LaunchEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/LaunchEvent.json -------------------------------------------------------------------------------- /deployments/avalanche/LaunchEventLens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/LaunchEventLens.json -------------------------------------------------------------------------------- /deployments/avalanche/RocketJoeFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/RocketJoeFactory.json -------------------------------------------------------------------------------- /deployments/avalanche/RocketJoeFactory_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/RocketJoeFactory_Implementation.json -------------------------------------------------------------------------------- /deployments/avalanche/RocketJoeFactory_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/RocketJoeFactory_Proxy.json -------------------------------------------------------------------------------- /deployments/avalanche/RocketJoeStaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/RocketJoeStaking.json -------------------------------------------------------------------------------- /deployments/avalanche/RocketJoeStaking_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/RocketJoeStaking_Implementation.json -------------------------------------------------------------------------------- /deployments/avalanche/RocketJoeStaking_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/RocketJoeStaking_Proxy.json -------------------------------------------------------------------------------- /deployments/avalanche/RocketJoeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/RocketJoeToken.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/1635d55d57a0a2552952c0d22586ed23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/solcInputs/1635d55d57a0a2552952c0d22586ed23.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/2a4ee89e21afcf6ecfcdeb5a1ab77362.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/solcInputs/2a4ee89e21afcf6ecfcdeb5a1ab77362.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/314101db3bab97c2aa9e103522f48b3a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/solcInputs/314101db3bab97c2aa9e103522f48b3a.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/5ed1f6f116bb3c8aee1bab0267059162.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/solcInputs/5ed1f6f116bb3c8aee1bab0267059162.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/6ec54884a1a0bdebb26ec72150c78ba5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/solcInputs/6ec54884a1a0bdebb26ec72150c78ba5.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/8e7534e55a46e50e0d85f4f885453de2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/avalanche/solcInputs/8e7534e55a46e50e0d85f4f885453de2.json -------------------------------------------------------------------------------- /deployments/rinkeby/.chainId: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /deployments/rinkeby/DefaultProxyAdmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/DefaultProxyAdmin.json -------------------------------------------------------------------------------- /deployments/rinkeby/LaunchEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/LaunchEvent.json -------------------------------------------------------------------------------- /deployments/rinkeby/LaunchEventLens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/LaunchEventLens.json -------------------------------------------------------------------------------- /deployments/rinkeby/RocketJoeFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/RocketJoeFactory.json -------------------------------------------------------------------------------- /deployments/rinkeby/RocketJoeFactory_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/RocketJoeFactory_Implementation.json -------------------------------------------------------------------------------- /deployments/rinkeby/RocketJoeFactory_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/RocketJoeFactory_Proxy.json -------------------------------------------------------------------------------- /deployments/rinkeby/RocketJoeStaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/RocketJoeStaking.json -------------------------------------------------------------------------------- /deployments/rinkeby/RocketJoeStaking_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/RocketJoeStaking_Implementation.json -------------------------------------------------------------------------------- /deployments/rinkeby/RocketJoeStaking_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/RocketJoeStaking_Proxy.json -------------------------------------------------------------------------------- /deployments/rinkeby/RocketJoeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/RocketJoeToken.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/1635d55d57a0a2552952c0d22586ed23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/solcInputs/1635d55d57a0a2552952c0d22586ed23.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/2a4ee89e21afcf6ecfcdeb5a1ab77362.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/solcInputs/2a4ee89e21afcf6ecfcdeb5a1ab77362.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/314101db3bab97c2aa9e103522f48b3a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/solcInputs/314101db3bab97c2aa9e103522f48b3a.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/6ec54884a1a0bdebb26ec72150c78ba5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/solcInputs/6ec54884a1a0bdebb26ec72150c78ba5.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/8e7534e55a46e50e0d85f4f885453de2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/deployments/rinkeby/solcInputs/8e7534e55a46e50e0d85f4f885453de2.json -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | certora-cli==3.0.0 2 | -------------------------------------------------------------------------------- /tasks/enter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/tasks/enter.js -------------------------------------------------------------------------------- /tasks/launchtoken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/tasks/launchtoken.js -------------------------------------------------------------------------------- /test/LaunchEvent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/LaunchEvent.test.js -------------------------------------------------------------------------------- /test/LaunchEventPhaseOne.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/LaunchEventPhaseOne.test.js -------------------------------------------------------------------------------- /test/LaunchEventPhaseThree.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/LaunchEventPhaseThree.test.js -------------------------------------------------------------------------------- /test/LaunchEventPhaseTwo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/LaunchEventPhaseTwo.test.js -------------------------------------------------------------------------------- /test/RocketJoeFactory.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/RocketJoeFactory.test.js -------------------------------------------------------------------------------- /test/RocketJoeStaking.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/RocketJoeStaking.test.js -------------------------------------------------------------------------------- /test/RocketJoeToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/RocketJoeToken.test.js -------------------------------------------------------------------------------- /test/utils/contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/utils/contracts.js -------------------------------------------------------------------------------- /test/utils/hardhat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/utils/hardhat.js -------------------------------------------------------------------------------- /test/utils/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/test/utils/time.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/rocket-joe/HEAD/yarn.lock --------------------------------------------------------------------------------