├── .env.example ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── certora.yml │ ├── coveralls.yaml │ ├── lint.yml │ └── sushiswap.yml ├── .gitignore ├── .gitmodules ├── .mocharc.js ├── .mythx.yml ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .solcover.js ├── .solhint.json ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── bugbounty.md ├── contracts ├── BoostedMasterChefJoe.sol ├── Cliff.sol ├── JoeBar.sol ├── JoeHatToken.sol ├── JoeMaker.sol ├── JoeMakerV2.sol ├── JoeMakerV3.sol ├── JoeRoll.sol ├── JoeToken.sol ├── JoeVote.sol ├── MasterChefJoe.sol ├── MasterChefJoeV2.sol ├── MasterChefJoeV3.sol ├── MoneyMaker.sol ├── StableJoeStaking.sol ├── TokenVesting.sol ├── VeERC20.sol ├── VeJoeStaking.sol ├── VeJoeToken.sol ├── Zap.sol ├── boringcrypto │ ├── BoringBatchable.sol │ ├── BoringCryptoDashboardV2.sol │ ├── BoringCryptoTokenScanner.sol │ ├── BoringHelperV1.sol │ └── BoringOwnable.sol ├── interfaces │ ├── IBar.sol │ ├── IERC20.sol │ ├── IFactory.sol │ ├── IMasterChef.sol │ ├── IMasterChefJoe.sol │ ├── IPair.sol │ ├── IRewarder.sol │ └── IVeERC20.sol ├── libraries │ ├── BoringERC20.sol │ ├── BoringJoeERC20.sol │ ├── BoringMath.sol │ ├── BoringPair.sol │ ├── SafeERC20.sol │ ├── SafeMath.sol │ └── SignedSafeMath.sol ├── mocks │ ├── ERC20Mock.sol │ ├── ERC20MockDecimals.sol │ ├── JoeMakerExploitMock.sol │ └── WAVAX9Mock.sol ├── rewarders │ ├── MasterChefRewarderPerBlock.sol │ ├── MasterChefRewarderPerSec.sol │ ├── SimpleRewarderPerBlock.sol │ └── SimpleRewarderPerSec.sol ├── sushi │ ├── MasterChef.sol │ ├── MasterChefPerSec.sol │ └── SushiToken.sol ├── timelock │ ├── CustomMasterChefJoeV2Timelock.sol │ └── Timelock.sol └── traderjoe │ ├── FarmLens.sol │ ├── FarmLensV2.sol │ ├── JoeERC20.sol │ ├── JoeFactory.sol │ ├── JoePair.sol │ ├── JoeRouter02.sol │ ├── LICENSE │ ├── README.md │ ├── interfaces │ ├── IERC20.sol │ ├── IJoeCallee.sol │ ├── IJoeERC20.sol │ ├── IJoeFactory.sol │ ├── IJoePair.sol │ ├── IJoeRouter01.sol │ ├── IJoeRouter02.sol │ └── IWAVAX.sol │ └── libraries │ ├── JoeLibrary.sol │ ├── Math.sol │ ├── SafeMath.sol │ ├── TransferHelper.sol │ └── UQ112x112.sol ├── deploy ├── BoostedMasterChefJoe.js ├── BoostedMasterChefToken.js ├── BoringCryptoDashBoardV2.js ├── BoringCryptoTokenScanner.js ├── BoringHelperV1.js ├── Cliff.js ├── CustomMasterChefJoeV2Timelock.js ├── FarmLens.js ├── FarmLensV2.js ├── JoeBar.js ├── JoeFactory.js ├── JoeHatToken.js ├── JoeMaker.js ├── JoeMakerV2.js ├── JoeMakerV3.js ├── JoeRoll.js ├── JoeRouter02.js ├── JoeToken.js ├── JoeVote.js ├── MasterChef.js ├── MasterChefJoe.js ├── MasterChefJoeV2.js ├── MasterChefJoeV3.js ├── MasterChefRewarderPerBlock.js ├── Mocks.js ├── MoneyMaker.js ├── SimpleRewarderPerSec.js ├── StableJoeStaking.js ├── SushiToken.js ├── VeJoeStaking.js ├── VeJoeToken.js └── Zap.js ├── deployments ├── avalanche │ ├── .chainId │ ├── BoostedMasterChefJoe.json │ ├── BoostedMasterChefJoe_Implementation.json │ ├── BoostedMasterChefJoe_Proxy.json │ ├── BoostedMasterChefToken.json │ ├── BoringCryptoDashboardV2.json │ ├── BoringCryptoTokenScanner.json │ ├── BoringHelperV1.json │ ├── CustomMasterChefJoeV2Timelock.json │ ├── DefaultProxyAdmin.json │ ├── ERC20Mock.json │ ├── FarmLensV2.json │ ├── JoeBar.json │ ├── JoeFactory.json │ ├── JoeHatToken.json │ ├── JoeMaker.json │ ├── JoeMakerV3.json │ ├── JoeRoll.json │ ├── JoeRouter02.json │ ├── JoeToken.json │ ├── MasterChefJoeV2.json │ ├── MasterChefJoeV3.json │ ├── MoneyMaker.json │ ├── SimpleRewarderPerSec.json │ ├── StableJoeStaking.json │ ├── StableJoeStaking_Implementation.json │ ├── StableJoeStaking_Proxy.json │ ├── VeJoeStaking.json │ ├── VeJoeStaking_Implementation.json │ ├── VeJoeStaking_Proxy.json │ ├── VeJoeToken.json │ ├── Zap.json │ └── solcInputs │ │ ├── 05be5b065453cde7967331fef060caff.json │ │ ├── 0a6695ae9c10df28328edf6c934ea56d.json │ │ ├── 0c80a567bc6f07613af92debdcf521e8.json │ │ ├── 0d6970abad1fd65eaf80d75827c63f36.json │ │ ├── 1635d55d57a0a2552952c0d22586ed23.json │ │ ├── 18ab00e9e4fe9a999ac9fd9732bfc66c.json │ │ ├── 2116e05a1ff427b4efc02c947fff0c7e.json │ │ ├── 21c453f812b774929f22a0fccac41a9d.json │ │ ├── 289307b57bc4eef2fabf3ac3ae703dc1.json │ │ ├── 2be1b2304178372579351a98433f1fda.json │ │ ├── 35b409f2c1d843695292854253f22f63.json │ │ ├── 3b72199a9cd05fcb436b838715c2d238.json │ │ ├── 4b354819b06e47f8b8873a2dcdd7c4f6.json │ │ ├── 4d1dd50cb145a5817b82067d3276f180.json │ │ ├── 4f083a0139c4999ba19885135b635876.json │ │ ├── 6666ebd17c2fe7e299bc185448180939.json │ │ ├── 7edc216e1df73afb57f8a2a475054949.json │ │ ├── 8100c25dac5d474632ea1a3cbdbea53b.json │ │ ├── 8932de5fc1e2ef5cc003845187d87219.json │ │ ├── 8e2f9a48c0098ed6f143dc231263c002.json │ │ ├── 91087fe40f06a2d5d29d5c07f304564a.json │ │ ├── 93c251cbfc7aba11b0d909a00efc85a0.json │ │ ├── a5ff57f8e383ad054ba97a05de9a456a.json │ │ ├── a7dfbaad0781a718c115d90514082677.json │ │ ├── b5c98223e1504813f7674d94845f94be.json │ │ ├── b7a3f4918031d275820f67bab6047811.json │ │ ├── b9782959ed533003a8d92e89513fb5a7.json │ │ ├── c0d0dff5e3273ce2981e9b361d6e656e.json │ │ ├── c17aac81e711d81979123d5e77bb91fd.json │ │ ├── d4d26b0592fe4cd102c6c09196b5d3e9.json │ │ ├── d7494b22c5c58c075701b1a950ade0ea.json │ │ └── e11367eee20deb9b2e496d66278a2bed.json └── rinkeby │ ├── .chainId │ ├── BoostedMasterChefJoe.json │ ├── BoostedMasterChefJoe_Implementation.json │ ├── BoostedMasterChefJoe_Proxy.json │ ├── BoostedMasterChefToken.json │ ├── BoringCryptoDashboardV2.json │ ├── BoringCryptoTokenScanner.json │ ├── BoringHelperV1.json │ ├── Cliff.json │ ├── CustomMasterChefJoeV2Timelock.json │ ├── DefaultProxyAdmin.json │ ├── ERC20Mock.json │ ├── FarmLensV2.json │ ├── JoeBar.json │ ├── JoeFactory.json │ ├── JoeHatToken.json │ ├── JoeMaker.json │ ├── JoeRoll.json │ ├── JoeRouter02.json │ ├── JoeToken.json │ ├── JoeVote.json │ ├── MasterChef.json │ ├── MasterChefJoe.json │ ├── MasterChefJoeV2.json │ ├── MasterChefJoeV3.json │ ├── MasterChefRewarderPerBlock.json │ ├── MoneyMaker.json │ ├── SimpleRewarderPerSec.json │ ├── StableJoeStaking.json │ ├── StableJoeStaking_Implementation.json │ ├── StableJoeStaking_Proxy.json │ ├── SushiToken.json │ ├── VeJoeStaking.json │ ├── VeJoeStaking_Implementation.json │ ├── VeJoeStaking_Proxy.json │ ├── VeJoeToken.json │ ├── Zap.json │ └── solcInputs │ ├── 05be5b065453cde7967331fef060caff.json │ ├── 0a6695ae9c10df28328edf6c934ea56d.json │ ├── 0a9aed4941bbce604e76845e6fe9ffd8.json │ ├── 0c80a567bc6f07613af92debdcf521e8.json │ ├── 1635d55d57a0a2552952c0d22586ed23.json │ ├── 1fa7c730a1fa17a17ad9488b7a57d8ec.json │ ├── 2116e05a1ff427b4efc02c947fff0c7e.json │ ├── 25d7abd988c2b23a4297f454ee5e145a.json │ ├── 289307b57bc4eef2fabf3ac3ae703dc1.json │ ├── 2be1b2304178372579351a98433f1fda.json │ ├── 3beded3d71cd9204ab53fcee9a4dd028.json │ ├── 42c51492929e6ad427067dc8336af4a0.json │ ├── 4370831775586213ee2f8d35090f5ab5.json │ ├── 57af27241df1083267edbb671a901dce.json │ ├── 583a7ab4e2f2ec84aa570eede54f4303.json │ ├── 609c1c3618899e92a377d2c6341f654d.json │ ├── 6666ebd17c2fe7e299bc185448180939.json │ ├── 6743038823cbc01eec871af6b77ee723.json │ ├── 675ef6d6eeec1d7f7b11607cdb42fa83.json │ ├── 6778c361cc316acf9b2d076d173aede1.json │ ├── 8100c25dac5d474632ea1a3cbdbea53b.json │ ├── 8536a9811254562a5bc06a088cb5c514.json │ ├── 8e2f9a48c0098ed6f143dc231263c002.json │ ├── 91087fe40f06a2d5d29d5c07f304564a.json │ ├── 92d68daa4a63cbac99e0bdcbe23b2b61.json │ ├── 975d11dde36d6418e9f0168c494b7f5e.json │ ├── 981522de848aa8baa47dcc35ab894c3c.json │ ├── a3bfb80b24d8bb17964a24c16818d6bb.json │ ├── ad98aac588ca0cbca9c9db26da16580b.json │ ├── b5c98223e1504813f7674d94845f94be.json │ ├── b856254f6eb0c6f30f7faa497264420b.json │ ├── bd0de70534db79032ecb32d2f3332386.json │ ├── c0de1b4574eae3807fd62f557963c047.json │ ├── c981239b5f79c6ed3a1fb2620c74bc17.json │ ├── d7494b22c5c58c075701b1a950ade0ea.json │ ├── d8e6b5ed1356916151fab472a3ed0a01.json │ ├── e11367eee20deb9b2e496d66278a2bed.json │ ├── ed78665cd20697fe18942cdc634fcc18.json │ ├── edb9a81c274146338d0a6aa4eeebdefd.json │ └── f8d4fdce6ba68eeb45fbbbe686b3ddaa.json ├── docs ├── DEPLOYMENT.md ├── DEVELOPMENT.md ├── MASTERCHEFJOEV2.md └── MasterChefJoeV2.png ├── flat ├── BoringHelperV1_flat.sol ├── Cliff_flat.sol ├── CustomMasterChefJoeV2Timelock_flat.sol ├── ERC20Mock_flat.sol ├── FarmLens_flat.sol ├── JoeBar_flat.sol ├── JoeFactory_flat.sol ├── JoeHatToken_flat.sol ├── JoeMakerV2_flat.sol ├── JoeMakerV3_flat.sol ├── JoeMaker_flat.sol ├── JoePair_flat.sol ├── JoeRoll_flat.sol ├── JoeRouter02_flat.sol ├── JoeToken_flat.sol ├── JoeVote_flat.sol ├── MasterChefJoeV2_flat.sol ├── MasterChefJoeV3_flat.sol ├── MasterChefJoe_flat.sol ├── MasterChefRewarderPerBlockMock_flat.sol ├── MasterChef_flat.sol ├── SimpleRewarderPerSec_flat.sol ├── Timelock_flat.sol ├── TokenVesting_flat.sol └── Zap_flat.sol ├── foundry.toml ├── hardhat.config.ts ├── package.json ├── solhint.json ├── tasks ├── accounts.js ├── index.js ├── migrate.js └── utilities.js ├── test ├── BoostedMasterChef.test.ts ├── Cliff.test.ts ├── JoeBar.test.ts ├── JoeMaker.test.ts ├── JoeMakerV2.test.ts ├── JoeMakerV3.test.ts ├── JoeRoll.test.ts ├── JoeToken.test.ts ├── MasterChefJoe.test.ts ├── MasterChefJoeV2.test.ts ├── MasterChefJoeV3.test.ts ├── MoneyMaker.test.ts ├── StableJoeStaking.test.js ├── Timelock.test.ts ├── TokenVesting.test.ts ├── VeJoeStaking.test.js ├── foundry │ ├── BoringHelperV1.t.sol │ ├── FarmLensV2.t.sol │ ├── UpgradeBMCJ.t.sol │ └── UpgradeSJoe.t.sol ├── simpleRewarderPerSec.test.ts └── utilities │ ├── index.ts │ └── time.ts ├── truffle-config.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.sol linguist-language=Solidity -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global Owners 2 | 3 | * @cryptofish7 @0x0Louis 4 | -------------------------------------------------------------------------------- /.github/workflows/certora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.github/workflows/certora.yml -------------------------------------------------------------------------------- /.github/workflows/coveralls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.github/workflows/coveralls.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/sushiswap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.github/workflows/sushiswap.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.mythx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.mythx.yml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/erbium -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .github 2 | deployments 3 | abi 4 | artifacts 5 | coverage 6 | flat 7 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | norpc: true, 3 | // skipFiles: ["interfaces/", "uniswapv2/"], 4 | }; 5 | -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "solhint:default" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bugbounty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/bugbounty.md -------------------------------------------------------------------------------- /contracts/BoostedMasterChefJoe.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/BoostedMasterChefJoe.sol -------------------------------------------------------------------------------- /contracts/Cliff.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/Cliff.sol -------------------------------------------------------------------------------- /contracts/JoeBar.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/JoeBar.sol -------------------------------------------------------------------------------- /contracts/JoeHatToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/JoeHatToken.sol -------------------------------------------------------------------------------- /contracts/JoeMaker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/JoeMaker.sol -------------------------------------------------------------------------------- /contracts/JoeMakerV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/JoeMakerV2.sol -------------------------------------------------------------------------------- /contracts/JoeMakerV3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/JoeMakerV3.sol -------------------------------------------------------------------------------- /contracts/JoeRoll.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/JoeRoll.sol -------------------------------------------------------------------------------- /contracts/JoeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/JoeToken.sol -------------------------------------------------------------------------------- /contracts/JoeVote.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/JoeVote.sol -------------------------------------------------------------------------------- /contracts/MasterChefJoe.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/MasterChefJoe.sol -------------------------------------------------------------------------------- /contracts/MasterChefJoeV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/MasterChefJoeV2.sol -------------------------------------------------------------------------------- /contracts/MasterChefJoeV3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/MasterChefJoeV3.sol -------------------------------------------------------------------------------- /contracts/MoneyMaker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/MoneyMaker.sol -------------------------------------------------------------------------------- /contracts/StableJoeStaking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/StableJoeStaking.sol -------------------------------------------------------------------------------- /contracts/TokenVesting.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/TokenVesting.sol -------------------------------------------------------------------------------- /contracts/VeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/VeERC20.sol -------------------------------------------------------------------------------- /contracts/VeJoeStaking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/VeJoeStaking.sol -------------------------------------------------------------------------------- /contracts/VeJoeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/VeJoeToken.sol -------------------------------------------------------------------------------- /contracts/Zap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/Zap.sol -------------------------------------------------------------------------------- /contracts/boringcrypto/BoringBatchable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/boringcrypto/BoringBatchable.sol -------------------------------------------------------------------------------- /contracts/boringcrypto/BoringCryptoDashboardV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/boringcrypto/BoringCryptoDashboardV2.sol -------------------------------------------------------------------------------- /contracts/boringcrypto/BoringCryptoTokenScanner.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/boringcrypto/BoringCryptoTokenScanner.sol -------------------------------------------------------------------------------- /contracts/boringcrypto/BoringHelperV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/boringcrypto/BoringHelperV1.sol -------------------------------------------------------------------------------- /contracts/boringcrypto/BoringOwnable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/boringcrypto/BoringOwnable.sol -------------------------------------------------------------------------------- /contracts/interfaces/IBar.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/interfaces/IBar.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/interfaces/IERC20.sol -------------------------------------------------------------------------------- /contracts/interfaces/IFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/interfaces/IFactory.sol -------------------------------------------------------------------------------- /contracts/interfaces/IMasterChef.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/interfaces/IMasterChef.sol -------------------------------------------------------------------------------- /contracts/interfaces/IMasterChefJoe.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/interfaces/IMasterChefJoe.sol -------------------------------------------------------------------------------- /contracts/interfaces/IPair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/interfaces/IPair.sol -------------------------------------------------------------------------------- /contracts/interfaces/IRewarder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/interfaces/IRewarder.sol -------------------------------------------------------------------------------- /contracts/interfaces/IVeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/interfaces/IVeERC20.sol -------------------------------------------------------------------------------- /contracts/libraries/BoringERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/libraries/BoringERC20.sol -------------------------------------------------------------------------------- /contracts/libraries/BoringJoeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/libraries/BoringJoeERC20.sol -------------------------------------------------------------------------------- /contracts/libraries/BoringMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/libraries/BoringMath.sol -------------------------------------------------------------------------------- /contracts/libraries/BoringPair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/libraries/BoringPair.sol -------------------------------------------------------------------------------- /contracts/libraries/SafeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/libraries/SafeERC20.sol -------------------------------------------------------------------------------- /contracts/libraries/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/libraries/SafeMath.sol -------------------------------------------------------------------------------- /contracts/libraries/SignedSafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/libraries/SignedSafeMath.sol -------------------------------------------------------------------------------- /contracts/mocks/ERC20Mock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/mocks/ERC20Mock.sol -------------------------------------------------------------------------------- /contracts/mocks/ERC20MockDecimals.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/mocks/ERC20MockDecimals.sol -------------------------------------------------------------------------------- /contracts/mocks/JoeMakerExploitMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/mocks/JoeMakerExploitMock.sol -------------------------------------------------------------------------------- /contracts/mocks/WAVAX9Mock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/mocks/WAVAX9Mock.sol -------------------------------------------------------------------------------- /contracts/rewarders/MasterChefRewarderPerBlock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/rewarders/MasterChefRewarderPerBlock.sol -------------------------------------------------------------------------------- /contracts/rewarders/MasterChefRewarderPerSec.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/rewarders/MasterChefRewarderPerSec.sol -------------------------------------------------------------------------------- /contracts/rewarders/SimpleRewarderPerBlock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/rewarders/SimpleRewarderPerBlock.sol -------------------------------------------------------------------------------- /contracts/rewarders/SimpleRewarderPerSec.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/rewarders/SimpleRewarderPerSec.sol -------------------------------------------------------------------------------- /contracts/sushi/MasterChef.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/sushi/MasterChef.sol -------------------------------------------------------------------------------- /contracts/sushi/MasterChefPerSec.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/sushi/MasterChefPerSec.sol -------------------------------------------------------------------------------- /contracts/sushi/SushiToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/sushi/SushiToken.sol -------------------------------------------------------------------------------- /contracts/timelock/CustomMasterChefJoeV2Timelock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/timelock/CustomMasterChefJoeV2Timelock.sol -------------------------------------------------------------------------------- /contracts/timelock/Timelock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/timelock/Timelock.sol -------------------------------------------------------------------------------- /contracts/traderjoe/FarmLens.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/FarmLens.sol -------------------------------------------------------------------------------- /contracts/traderjoe/FarmLensV2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/FarmLensV2.sol -------------------------------------------------------------------------------- /contracts/traderjoe/JoeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/JoeERC20.sol -------------------------------------------------------------------------------- /contracts/traderjoe/JoeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/JoeFactory.sol -------------------------------------------------------------------------------- /contracts/traderjoe/JoePair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/JoePair.sol -------------------------------------------------------------------------------- /contracts/traderjoe/JoeRouter02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/JoeRouter02.sol -------------------------------------------------------------------------------- /contracts/traderjoe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/LICENSE -------------------------------------------------------------------------------- /contracts/traderjoe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/README.md -------------------------------------------------------------------------------- /contracts/traderjoe/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/interfaces/IERC20.sol -------------------------------------------------------------------------------- /contracts/traderjoe/interfaces/IJoeCallee.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/interfaces/IJoeCallee.sol -------------------------------------------------------------------------------- /contracts/traderjoe/interfaces/IJoeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/interfaces/IJoeERC20.sol -------------------------------------------------------------------------------- /contracts/traderjoe/interfaces/IJoeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/interfaces/IJoeFactory.sol -------------------------------------------------------------------------------- /contracts/traderjoe/interfaces/IJoePair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/interfaces/IJoePair.sol -------------------------------------------------------------------------------- /contracts/traderjoe/interfaces/IJoeRouter01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/interfaces/IJoeRouter01.sol -------------------------------------------------------------------------------- /contracts/traderjoe/interfaces/IJoeRouter02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/interfaces/IJoeRouter02.sol -------------------------------------------------------------------------------- /contracts/traderjoe/interfaces/IWAVAX.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/interfaces/IWAVAX.sol -------------------------------------------------------------------------------- /contracts/traderjoe/libraries/JoeLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/libraries/JoeLibrary.sol -------------------------------------------------------------------------------- /contracts/traderjoe/libraries/Math.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/libraries/Math.sol -------------------------------------------------------------------------------- /contracts/traderjoe/libraries/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/libraries/SafeMath.sol -------------------------------------------------------------------------------- /contracts/traderjoe/libraries/TransferHelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/libraries/TransferHelper.sol -------------------------------------------------------------------------------- /contracts/traderjoe/libraries/UQ112x112.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/contracts/traderjoe/libraries/UQ112x112.sol -------------------------------------------------------------------------------- /deploy/BoostedMasterChefJoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/BoostedMasterChefJoe.js -------------------------------------------------------------------------------- /deploy/BoostedMasterChefToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/BoostedMasterChefToken.js -------------------------------------------------------------------------------- /deploy/BoringCryptoDashBoardV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/BoringCryptoDashBoardV2.js -------------------------------------------------------------------------------- /deploy/BoringCryptoTokenScanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/BoringCryptoTokenScanner.js -------------------------------------------------------------------------------- /deploy/BoringHelperV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/BoringHelperV1.js -------------------------------------------------------------------------------- /deploy/Cliff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/Cliff.js -------------------------------------------------------------------------------- /deploy/CustomMasterChefJoeV2Timelock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/CustomMasterChefJoeV2Timelock.js -------------------------------------------------------------------------------- /deploy/FarmLens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/FarmLens.js -------------------------------------------------------------------------------- /deploy/FarmLensV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/FarmLensV2.js -------------------------------------------------------------------------------- /deploy/JoeBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeBar.js -------------------------------------------------------------------------------- /deploy/JoeFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeFactory.js -------------------------------------------------------------------------------- /deploy/JoeHatToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeHatToken.js -------------------------------------------------------------------------------- /deploy/JoeMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeMaker.js -------------------------------------------------------------------------------- /deploy/JoeMakerV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeMakerV2.js -------------------------------------------------------------------------------- /deploy/JoeMakerV3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeMakerV3.js -------------------------------------------------------------------------------- /deploy/JoeRoll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeRoll.js -------------------------------------------------------------------------------- /deploy/JoeRouter02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeRouter02.js -------------------------------------------------------------------------------- /deploy/JoeToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeToken.js -------------------------------------------------------------------------------- /deploy/JoeVote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/JoeVote.js -------------------------------------------------------------------------------- /deploy/MasterChef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/MasterChef.js -------------------------------------------------------------------------------- /deploy/MasterChefJoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/MasterChefJoe.js -------------------------------------------------------------------------------- /deploy/MasterChefJoeV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/MasterChefJoeV2.js -------------------------------------------------------------------------------- /deploy/MasterChefJoeV3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/MasterChefJoeV3.js -------------------------------------------------------------------------------- /deploy/MasterChefRewarderPerBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/MasterChefRewarderPerBlock.js -------------------------------------------------------------------------------- /deploy/Mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/Mocks.js -------------------------------------------------------------------------------- /deploy/MoneyMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/MoneyMaker.js -------------------------------------------------------------------------------- /deploy/SimpleRewarderPerSec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/SimpleRewarderPerSec.js -------------------------------------------------------------------------------- /deploy/StableJoeStaking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/StableJoeStaking.js -------------------------------------------------------------------------------- /deploy/SushiToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/SushiToken.js -------------------------------------------------------------------------------- /deploy/VeJoeStaking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/VeJoeStaking.js -------------------------------------------------------------------------------- /deploy/VeJoeToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/VeJoeToken.js -------------------------------------------------------------------------------- /deploy/Zap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deploy/Zap.js -------------------------------------------------------------------------------- /deployments/avalanche/.chainId: -------------------------------------------------------------------------------- 1 | 43114 -------------------------------------------------------------------------------- /deployments/avalanche/BoostedMasterChefJoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/BoostedMasterChefJoe.json -------------------------------------------------------------------------------- /deployments/avalanche/BoostedMasterChefJoe_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/BoostedMasterChefJoe_Implementation.json -------------------------------------------------------------------------------- /deployments/avalanche/BoostedMasterChefJoe_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/BoostedMasterChefJoe_Proxy.json -------------------------------------------------------------------------------- /deployments/avalanche/BoostedMasterChefToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/BoostedMasterChefToken.json -------------------------------------------------------------------------------- /deployments/avalanche/BoringCryptoDashboardV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/BoringCryptoDashboardV2.json -------------------------------------------------------------------------------- /deployments/avalanche/BoringCryptoTokenScanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/BoringCryptoTokenScanner.json -------------------------------------------------------------------------------- /deployments/avalanche/BoringHelperV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/BoringHelperV1.json -------------------------------------------------------------------------------- /deployments/avalanche/CustomMasterChefJoeV2Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/CustomMasterChefJoeV2Timelock.json -------------------------------------------------------------------------------- /deployments/avalanche/DefaultProxyAdmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/DefaultProxyAdmin.json -------------------------------------------------------------------------------- /deployments/avalanche/ERC20Mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/ERC20Mock.json -------------------------------------------------------------------------------- /deployments/avalanche/FarmLensV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/FarmLensV2.json -------------------------------------------------------------------------------- /deployments/avalanche/JoeBar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/JoeBar.json -------------------------------------------------------------------------------- /deployments/avalanche/JoeFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/JoeFactory.json -------------------------------------------------------------------------------- /deployments/avalanche/JoeHatToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/JoeHatToken.json -------------------------------------------------------------------------------- /deployments/avalanche/JoeMaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/JoeMaker.json -------------------------------------------------------------------------------- /deployments/avalanche/JoeMakerV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/JoeMakerV3.json -------------------------------------------------------------------------------- /deployments/avalanche/JoeRoll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/JoeRoll.json -------------------------------------------------------------------------------- /deployments/avalanche/JoeRouter02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/JoeRouter02.json -------------------------------------------------------------------------------- /deployments/avalanche/JoeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/JoeToken.json -------------------------------------------------------------------------------- /deployments/avalanche/MasterChefJoeV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/MasterChefJoeV2.json -------------------------------------------------------------------------------- /deployments/avalanche/MasterChefJoeV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/MasterChefJoeV3.json -------------------------------------------------------------------------------- /deployments/avalanche/MoneyMaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/MoneyMaker.json -------------------------------------------------------------------------------- /deployments/avalanche/SimpleRewarderPerSec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/SimpleRewarderPerSec.json -------------------------------------------------------------------------------- /deployments/avalanche/StableJoeStaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/StableJoeStaking.json -------------------------------------------------------------------------------- /deployments/avalanche/StableJoeStaking_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/StableJoeStaking_Implementation.json -------------------------------------------------------------------------------- /deployments/avalanche/StableJoeStaking_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/StableJoeStaking_Proxy.json -------------------------------------------------------------------------------- /deployments/avalanche/VeJoeStaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/VeJoeStaking.json -------------------------------------------------------------------------------- /deployments/avalanche/VeJoeStaking_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/VeJoeStaking_Implementation.json -------------------------------------------------------------------------------- /deployments/avalanche/VeJoeStaking_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/VeJoeStaking_Proxy.json -------------------------------------------------------------------------------- /deployments/avalanche/VeJoeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/VeJoeToken.json -------------------------------------------------------------------------------- /deployments/avalanche/Zap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/Zap.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/05be5b065453cde7967331fef060caff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/05be5b065453cde7967331fef060caff.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/0a6695ae9c10df28328edf6c934ea56d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/0a6695ae9c10df28328edf6c934ea56d.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/0c80a567bc6f07613af92debdcf521e8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/0c80a567bc6f07613af92debdcf521e8.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/0d6970abad1fd65eaf80d75827c63f36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/0d6970abad1fd65eaf80d75827c63f36.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/1635d55d57a0a2552952c0d22586ed23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/1635d55d57a0a2552952c0d22586ed23.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/18ab00e9e4fe9a999ac9fd9732bfc66c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/18ab00e9e4fe9a999ac9fd9732bfc66c.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/2116e05a1ff427b4efc02c947fff0c7e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/2116e05a1ff427b4efc02c947fff0c7e.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/21c453f812b774929f22a0fccac41a9d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/21c453f812b774929f22a0fccac41a9d.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/289307b57bc4eef2fabf3ac3ae703dc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/289307b57bc4eef2fabf3ac3ae703dc1.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/2be1b2304178372579351a98433f1fda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/2be1b2304178372579351a98433f1fda.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/35b409f2c1d843695292854253f22f63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/35b409f2c1d843695292854253f22f63.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/3b72199a9cd05fcb436b838715c2d238.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/3b72199a9cd05fcb436b838715c2d238.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/4b354819b06e47f8b8873a2dcdd7c4f6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/4b354819b06e47f8b8873a2dcdd7c4f6.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/4d1dd50cb145a5817b82067d3276f180.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/4d1dd50cb145a5817b82067d3276f180.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/4f083a0139c4999ba19885135b635876.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/4f083a0139c4999ba19885135b635876.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/6666ebd17c2fe7e299bc185448180939.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/6666ebd17c2fe7e299bc185448180939.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/7edc216e1df73afb57f8a2a475054949.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/7edc216e1df73afb57f8a2a475054949.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/8100c25dac5d474632ea1a3cbdbea53b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/8100c25dac5d474632ea1a3cbdbea53b.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/8932de5fc1e2ef5cc003845187d87219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/8932de5fc1e2ef5cc003845187d87219.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/8e2f9a48c0098ed6f143dc231263c002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/8e2f9a48c0098ed6f143dc231263c002.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/91087fe40f06a2d5d29d5c07f304564a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/91087fe40f06a2d5d29d5c07f304564a.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/93c251cbfc7aba11b0d909a00efc85a0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/93c251cbfc7aba11b0d909a00efc85a0.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/a5ff57f8e383ad054ba97a05de9a456a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/a5ff57f8e383ad054ba97a05de9a456a.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/a7dfbaad0781a718c115d90514082677.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/a7dfbaad0781a718c115d90514082677.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/b5c98223e1504813f7674d94845f94be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/b5c98223e1504813f7674d94845f94be.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/b7a3f4918031d275820f67bab6047811.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/b7a3f4918031d275820f67bab6047811.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/b9782959ed533003a8d92e89513fb5a7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/b9782959ed533003a8d92e89513fb5a7.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/c0d0dff5e3273ce2981e9b361d6e656e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/c0d0dff5e3273ce2981e9b361d6e656e.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/c17aac81e711d81979123d5e77bb91fd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/c17aac81e711d81979123d5e77bb91fd.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/d4d26b0592fe4cd102c6c09196b5d3e9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/d4d26b0592fe4cd102c6c09196b5d3e9.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/d7494b22c5c58c075701b1a950ade0ea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/d7494b22c5c58c075701b1a950ade0ea.json -------------------------------------------------------------------------------- /deployments/avalanche/solcInputs/e11367eee20deb9b2e496d66278a2bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/avalanche/solcInputs/e11367eee20deb9b2e496d66278a2bed.json -------------------------------------------------------------------------------- /deployments/rinkeby/.chainId: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /deployments/rinkeby/BoostedMasterChefJoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/BoostedMasterChefJoe.json -------------------------------------------------------------------------------- /deployments/rinkeby/BoostedMasterChefJoe_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/BoostedMasterChefJoe_Implementation.json -------------------------------------------------------------------------------- /deployments/rinkeby/BoostedMasterChefJoe_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/BoostedMasterChefJoe_Proxy.json -------------------------------------------------------------------------------- /deployments/rinkeby/BoostedMasterChefToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/BoostedMasterChefToken.json -------------------------------------------------------------------------------- /deployments/rinkeby/BoringCryptoDashboardV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/BoringCryptoDashboardV2.json -------------------------------------------------------------------------------- /deployments/rinkeby/BoringCryptoTokenScanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/BoringCryptoTokenScanner.json -------------------------------------------------------------------------------- /deployments/rinkeby/BoringHelperV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/BoringHelperV1.json -------------------------------------------------------------------------------- /deployments/rinkeby/Cliff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/Cliff.json -------------------------------------------------------------------------------- /deployments/rinkeby/CustomMasterChefJoeV2Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/CustomMasterChefJoeV2Timelock.json -------------------------------------------------------------------------------- /deployments/rinkeby/DefaultProxyAdmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/DefaultProxyAdmin.json -------------------------------------------------------------------------------- /deployments/rinkeby/ERC20Mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/ERC20Mock.json -------------------------------------------------------------------------------- /deployments/rinkeby/FarmLensV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/FarmLensV2.json -------------------------------------------------------------------------------- /deployments/rinkeby/JoeBar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/JoeBar.json -------------------------------------------------------------------------------- /deployments/rinkeby/JoeFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/JoeFactory.json -------------------------------------------------------------------------------- /deployments/rinkeby/JoeHatToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/JoeHatToken.json -------------------------------------------------------------------------------- /deployments/rinkeby/JoeMaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/JoeMaker.json -------------------------------------------------------------------------------- /deployments/rinkeby/JoeRoll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/JoeRoll.json -------------------------------------------------------------------------------- /deployments/rinkeby/JoeRouter02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/JoeRouter02.json -------------------------------------------------------------------------------- /deployments/rinkeby/JoeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/JoeToken.json -------------------------------------------------------------------------------- /deployments/rinkeby/JoeVote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/JoeVote.json -------------------------------------------------------------------------------- /deployments/rinkeby/MasterChef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/MasterChef.json -------------------------------------------------------------------------------- /deployments/rinkeby/MasterChefJoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/MasterChefJoe.json -------------------------------------------------------------------------------- /deployments/rinkeby/MasterChefJoeV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/MasterChefJoeV2.json -------------------------------------------------------------------------------- /deployments/rinkeby/MasterChefJoeV3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/MasterChefJoeV3.json -------------------------------------------------------------------------------- /deployments/rinkeby/MasterChefRewarderPerBlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/MasterChefRewarderPerBlock.json -------------------------------------------------------------------------------- /deployments/rinkeby/MoneyMaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/MoneyMaker.json -------------------------------------------------------------------------------- /deployments/rinkeby/SimpleRewarderPerSec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/SimpleRewarderPerSec.json -------------------------------------------------------------------------------- /deployments/rinkeby/StableJoeStaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/StableJoeStaking.json -------------------------------------------------------------------------------- /deployments/rinkeby/StableJoeStaking_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/StableJoeStaking_Implementation.json -------------------------------------------------------------------------------- /deployments/rinkeby/StableJoeStaking_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/StableJoeStaking_Proxy.json -------------------------------------------------------------------------------- /deployments/rinkeby/SushiToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/SushiToken.json -------------------------------------------------------------------------------- /deployments/rinkeby/VeJoeStaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/VeJoeStaking.json -------------------------------------------------------------------------------- /deployments/rinkeby/VeJoeStaking_Implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/VeJoeStaking_Implementation.json -------------------------------------------------------------------------------- /deployments/rinkeby/VeJoeStaking_Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/VeJoeStaking_Proxy.json -------------------------------------------------------------------------------- /deployments/rinkeby/VeJoeToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/VeJoeToken.json -------------------------------------------------------------------------------- /deployments/rinkeby/Zap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/Zap.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/05be5b065453cde7967331fef060caff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/05be5b065453cde7967331fef060caff.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/0a6695ae9c10df28328edf6c934ea56d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/0a6695ae9c10df28328edf6c934ea56d.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/0a9aed4941bbce604e76845e6fe9ffd8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/0a9aed4941bbce604e76845e6fe9ffd8.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/0c80a567bc6f07613af92debdcf521e8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/0c80a567bc6f07613af92debdcf521e8.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/1635d55d57a0a2552952c0d22586ed23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/1635d55d57a0a2552952c0d22586ed23.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/1fa7c730a1fa17a17ad9488b7a57d8ec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/1fa7c730a1fa17a17ad9488b7a57d8ec.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/2116e05a1ff427b4efc02c947fff0c7e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/2116e05a1ff427b4efc02c947fff0c7e.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/25d7abd988c2b23a4297f454ee5e145a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/25d7abd988c2b23a4297f454ee5e145a.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/289307b57bc4eef2fabf3ac3ae703dc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/289307b57bc4eef2fabf3ac3ae703dc1.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/2be1b2304178372579351a98433f1fda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/2be1b2304178372579351a98433f1fda.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/3beded3d71cd9204ab53fcee9a4dd028.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/3beded3d71cd9204ab53fcee9a4dd028.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/42c51492929e6ad427067dc8336af4a0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/42c51492929e6ad427067dc8336af4a0.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/4370831775586213ee2f8d35090f5ab5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/4370831775586213ee2f8d35090f5ab5.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/57af27241df1083267edbb671a901dce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/57af27241df1083267edbb671a901dce.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/583a7ab4e2f2ec84aa570eede54f4303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/583a7ab4e2f2ec84aa570eede54f4303.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/609c1c3618899e92a377d2c6341f654d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/609c1c3618899e92a377d2c6341f654d.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/6666ebd17c2fe7e299bc185448180939.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/6666ebd17c2fe7e299bc185448180939.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/6743038823cbc01eec871af6b77ee723.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/6743038823cbc01eec871af6b77ee723.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/675ef6d6eeec1d7f7b11607cdb42fa83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/675ef6d6eeec1d7f7b11607cdb42fa83.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/6778c361cc316acf9b2d076d173aede1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/6778c361cc316acf9b2d076d173aede1.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/8100c25dac5d474632ea1a3cbdbea53b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/8100c25dac5d474632ea1a3cbdbea53b.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/8536a9811254562a5bc06a088cb5c514.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/8536a9811254562a5bc06a088cb5c514.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/8e2f9a48c0098ed6f143dc231263c002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/8e2f9a48c0098ed6f143dc231263c002.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/91087fe40f06a2d5d29d5c07f304564a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/91087fe40f06a2d5d29d5c07f304564a.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/92d68daa4a63cbac99e0bdcbe23b2b61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/92d68daa4a63cbac99e0bdcbe23b2b61.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/975d11dde36d6418e9f0168c494b7f5e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/975d11dde36d6418e9f0168c494b7f5e.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/981522de848aa8baa47dcc35ab894c3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/981522de848aa8baa47dcc35ab894c3c.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/a3bfb80b24d8bb17964a24c16818d6bb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/a3bfb80b24d8bb17964a24c16818d6bb.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/ad98aac588ca0cbca9c9db26da16580b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/ad98aac588ca0cbca9c9db26da16580b.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/b5c98223e1504813f7674d94845f94be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/b5c98223e1504813f7674d94845f94be.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/b856254f6eb0c6f30f7faa497264420b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/b856254f6eb0c6f30f7faa497264420b.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/bd0de70534db79032ecb32d2f3332386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/bd0de70534db79032ecb32d2f3332386.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/c0de1b4574eae3807fd62f557963c047.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/c0de1b4574eae3807fd62f557963c047.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/c981239b5f79c6ed3a1fb2620c74bc17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/c981239b5f79c6ed3a1fb2620c74bc17.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/d7494b22c5c58c075701b1a950ade0ea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/d7494b22c5c58c075701b1a950ade0ea.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/d8e6b5ed1356916151fab472a3ed0a01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/d8e6b5ed1356916151fab472a3ed0a01.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/e11367eee20deb9b2e496d66278a2bed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/e11367eee20deb9b2e496d66278a2bed.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/ed78665cd20697fe18942cdc634fcc18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/ed78665cd20697fe18942cdc634fcc18.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/edb9a81c274146338d0a6aa4eeebdefd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/edb9a81c274146338d0a6aa4eeebdefd.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/f8d4fdce6ba68eeb45fbbbe686b3ddaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/deployments/rinkeby/solcInputs/f8d4fdce6ba68eeb45fbbbe686b3ddaa.json -------------------------------------------------------------------------------- /docs/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/docs/DEPLOYMENT.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/MASTERCHEFJOEV2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/docs/MASTERCHEFJOEV2.md -------------------------------------------------------------------------------- /docs/MasterChefJoeV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/docs/MasterChefJoeV2.png -------------------------------------------------------------------------------- /flat/BoringHelperV1_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/BoringHelperV1_flat.sol -------------------------------------------------------------------------------- /flat/Cliff_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/Cliff_flat.sol -------------------------------------------------------------------------------- /flat/CustomMasterChefJoeV2Timelock_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/CustomMasterChefJoeV2Timelock_flat.sol -------------------------------------------------------------------------------- /flat/ERC20Mock_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/ERC20Mock_flat.sol -------------------------------------------------------------------------------- /flat/FarmLens_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/FarmLens_flat.sol -------------------------------------------------------------------------------- /flat/JoeBar_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeBar_flat.sol -------------------------------------------------------------------------------- /flat/JoeFactory_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeFactory_flat.sol -------------------------------------------------------------------------------- /flat/JoeHatToken_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeHatToken_flat.sol -------------------------------------------------------------------------------- /flat/JoeMakerV2_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeMakerV2_flat.sol -------------------------------------------------------------------------------- /flat/JoeMakerV3_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeMakerV3_flat.sol -------------------------------------------------------------------------------- /flat/JoeMaker_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeMaker_flat.sol -------------------------------------------------------------------------------- /flat/JoePair_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoePair_flat.sol -------------------------------------------------------------------------------- /flat/JoeRoll_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeRoll_flat.sol -------------------------------------------------------------------------------- /flat/JoeRouter02_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeRouter02_flat.sol -------------------------------------------------------------------------------- /flat/JoeToken_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeToken_flat.sol -------------------------------------------------------------------------------- /flat/JoeVote_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/JoeVote_flat.sol -------------------------------------------------------------------------------- /flat/MasterChefJoeV2_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/MasterChefJoeV2_flat.sol -------------------------------------------------------------------------------- /flat/MasterChefJoeV3_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/MasterChefJoeV3_flat.sol -------------------------------------------------------------------------------- /flat/MasterChefJoe_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/MasterChefJoe_flat.sol -------------------------------------------------------------------------------- /flat/MasterChefRewarderPerBlockMock_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/MasterChefRewarderPerBlockMock_flat.sol -------------------------------------------------------------------------------- /flat/MasterChef_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/MasterChef_flat.sol -------------------------------------------------------------------------------- /flat/SimpleRewarderPerSec_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/SimpleRewarderPerSec_flat.sol -------------------------------------------------------------------------------- /flat/Timelock_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/Timelock_flat.sol -------------------------------------------------------------------------------- /flat/TokenVesting_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/TokenVesting_flat.sol -------------------------------------------------------------------------------- /flat/Zap_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/flat/Zap_flat.sol -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/foundry.toml -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/package.json -------------------------------------------------------------------------------- /solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/solhint.json -------------------------------------------------------------------------------- /tasks/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/tasks/accounts.js -------------------------------------------------------------------------------- /tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/tasks/index.js -------------------------------------------------------------------------------- /tasks/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/tasks/migrate.js -------------------------------------------------------------------------------- /tasks/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/tasks/utilities.js -------------------------------------------------------------------------------- /test/BoostedMasterChef.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/BoostedMasterChef.test.ts -------------------------------------------------------------------------------- /test/Cliff.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/Cliff.test.ts -------------------------------------------------------------------------------- /test/JoeBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/JoeBar.test.ts -------------------------------------------------------------------------------- /test/JoeMaker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/JoeMaker.test.ts -------------------------------------------------------------------------------- /test/JoeMakerV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/JoeMakerV2.test.ts -------------------------------------------------------------------------------- /test/JoeMakerV3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/JoeMakerV3.test.ts -------------------------------------------------------------------------------- /test/JoeRoll.test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/JoeToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/JoeToken.test.ts -------------------------------------------------------------------------------- /test/MasterChefJoe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/MasterChefJoe.test.ts -------------------------------------------------------------------------------- /test/MasterChefJoeV2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/MasterChefJoeV2.test.ts -------------------------------------------------------------------------------- /test/MasterChefJoeV3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/MasterChefJoeV3.test.ts -------------------------------------------------------------------------------- /test/MoneyMaker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/MoneyMaker.test.ts -------------------------------------------------------------------------------- /test/StableJoeStaking.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/StableJoeStaking.test.js -------------------------------------------------------------------------------- /test/Timelock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/Timelock.test.ts -------------------------------------------------------------------------------- /test/TokenVesting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/TokenVesting.test.ts -------------------------------------------------------------------------------- /test/VeJoeStaking.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/VeJoeStaking.test.js -------------------------------------------------------------------------------- /test/foundry/BoringHelperV1.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/foundry/BoringHelperV1.t.sol -------------------------------------------------------------------------------- /test/foundry/FarmLensV2.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/foundry/FarmLensV2.t.sol -------------------------------------------------------------------------------- /test/foundry/UpgradeBMCJ.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/foundry/UpgradeBMCJ.t.sol -------------------------------------------------------------------------------- /test/foundry/UpgradeSJoe.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/foundry/UpgradeSJoe.t.sol -------------------------------------------------------------------------------- /test/simpleRewarderPerSec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/simpleRewarderPerSec.test.ts -------------------------------------------------------------------------------- /test/utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/utilities/index.ts -------------------------------------------------------------------------------- /test/utilities/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/test/utilities/time.ts -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/truffle-config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfj-gg/joe-core/HEAD/yarn.lock --------------------------------------------------------------------------------