├── .editorconfig ├── .env.sample ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github └── workflows │ ├── coverage.yml │ └── test.yaml ├── .gitignore ├── .gitmodules ├── .mocharc.json ├── .nvmrc ├── .prettierrc ├── .solcover.js ├── .soliumignore ├── .soliumrc.json ├── README.md ├── contracts ├── BaseOrchestrator.sol ├── BaseTreasury.sol ├── ERC20VaultHandler.sol ├── ETHVaultHandler.sol ├── IVaultHandler.sol ├── IWETH.sol ├── IWMATIC.sol ├── JPEGZ.sol ├── LiquidityReward.sol ├── MATICVaultHandler.sol ├── Orchestrator.sol ├── Proprietor.sol ├── RewardHandler.sol ├── TCAP.sol ├── arbitrum │ ├── AddressAliasHelper.sol │ ├── ArbitrumOrchestrator.sol │ ├── ArbitrumTreasury.sol │ ├── L1MessageRelayer.sol │ ├── L2AdminProxy.sol │ ├── L2MessageExecutor.sol │ └── L2MessageExecutorProxy.sol ├── base │ └── CryptexBaseTreasury.sol ├── ccip │ ├── AUDIT_README.md │ ├── GovernanceCCIPReceiver.sol │ ├── GovernanceCCIPRelay.sol │ └── interfaces │ │ ├── IGovernanceCCIPReceiver.sol │ │ └── IGovernanceCCIPRelay.sol ├── governance │ ├── Ctx.sol │ ├── GovernorBeta.sol │ ├── Timelock.sol │ └── TreasuryVester.sol ├── mocks │ ├── AAVE.sol │ ├── AggregatorInterface.sol │ ├── AggregatorInterfaceETH.sol │ ├── AggregatorInterfaceJPEGZ.sol │ ├── AggregatorInterfaceStable.sol │ ├── AggregatorInterfaceTCAP.sol │ ├── CrossChainMsgTester.sol │ ├── DAI.sol │ ├── FxRoot.sol │ ├── GovernorAlpha.sol │ ├── Greeter.sol │ ├── LINK.sol │ ├── MockFxChild.sol │ ├── NumberUpdater.sol │ ├── StateSender.sol │ ├── USDC.sol │ ├── WBTC.sol │ ├── WETH.sol │ └── WMATIC.sol ├── optimism │ ├── OptimisticOrchestrator.sol │ ├── OptimisticTreasury.sol │ ├── iOVM_CrossDomainMessenger.sol │ └── iOVM_L2CrossDomainMessenger.sol ├── oracles │ └── ChainlinkOracle.sol └── polygon │ ├── PolygonL2Messenger.sol │ ├── PolygonOrchestrator.sol │ └── PolygonTreasury.sol ├── deploy ├── arbitrum │ ├── .chainId │ ├── 001_message_executor.ts │ ├── 002_orchestrator.ts │ ├── 003_treasury.ts │ ├── 004_reference_oracles.ts │ ├── 005_jpegz_token.ts │ ├── 006_jpegz_weth_handler.ts │ ├── 007_jpegz_dai_handler.ts │ └── 008_initialize_jpgz.ts ├── arbitrumGoerli │ ├── .chainId │ ├── 001_message_executor.ts │ ├── 002_orchestrator.ts │ ├── 003_treasury.ts │ ├── 004_aggregator_tcap.ts │ ├── 005_aggregator_jpegz.ts │ ├── 006_mockup_tokens.ts │ ├── 007_reference_oracles.ts │ ├── 008_tcap_token.ts │ ├── 009_jpegz_token.ts │ ├── 010_weth_handler.ts │ ├── 012_jpegz_weth_handler.ts │ └── 013_initialize_jpgz.ts ├── goerli │ ├── 001_governance.ts │ ├── 001_mockup_tokens_aave.ts │ ├── 002_link_collateral.ts │ ├── 002_orchestrator.ts │ ├── 003_arbitrum_message_relayer.ts │ ├── 004_aave_collateral.ts │ ├── 004_reference_oracles.ts │ ├── 005_mockup_tokens.ts │ ├── 006_tcap_token.ts │ ├── 006_weth_handler.ts │ ├── 007_btc_handler.ts │ ├── 007_dai_handler.ts │ ├── 008_hardmode_vaults.ts │ ├── 008_initialize_tcap.ts │ └── 009_transfer_ownership_DAO.ts ├── kovan │ ├── 000_governance.ts │ ├── 001_mockup_tokens_aave.ts │ ├── 001_orchestrator.ts │ ├── 002_aggregator_tcap.ts │ ├── 002_tcap_token.ts │ ├── 003_mockup_tokens.ts │ ├── 004_reference_oracles.ts │ ├── 005_btc_handler.ts │ ├── 006_weth_handler.ts │ ├── 007_dai_handler.ts │ └── 008_initialize_tcap.ts ├── mainnet │ ├── 000_vesting_contracts.ts │ ├── 001_governor_beta.ts │ ├── 002_link_collateral.ts │ ├── 003_aave_collateral.ts │ ├── 003_arbitrum_message_relayer.ts │ ├── 004_usdc_collateral.ts │ └── 005_hard_vaults.ts ├── mumbai │ ├── 001_messenger.ts │ ├── 002_orchestrator.ts │ ├── 003_polygon_treasury.ts │ ├── 004_aggregator_tcap.ts │ ├── 005_mockup_tokens_aave.ts │ ├── 006_mockup_tokens.ts │ ├── 007_reference_oracles.ts │ ├── 008_tcap_token.ts │ ├── 009_dai_handler.ts │ ├── 010_wmatic_handler.ts │ └── 011_initialise_tcap.ts ├── optimism │ ├── 000_treasury.ts │ ├── 001_orchestrator.ts │ ├── 002_oracles.ts │ ├── 003_tcap.ts │ └── 004_vaults.ts ├── optimismKovan │ ├── 001_mockup_tokens_aave.ts │ ├── 001_orchestrator.ts │ ├── 002_aggregator_tcap.ts │ ├── 002_tcap_token.ts │ ├── 003_mockup_tokens.ts │ ├── 004_reference_oracles.ts │ ├── 006_weth_handler.ts │ ├── 007_dai_handler.ts │ └── 008_initialize_tcap.ts ├── polygon-test │ ├── 000_orchestrator.ts │ ├── 001_tcap_token.ts │ ├── 002_reference_oracle.ts │ ├── 003_matic_handler.ts │ ├── 004_eth_handler.ts │ └── 005_dai_handler.ts └── rinkeby │ ├── 000_governance.ts │ ├── 001_mockup_tokens_aave.ts │ ├── 001_orchestrator.ts │ ├── 002_link_collateral.ts │ ├── 002_tcap_token.ts │ ├── 003_aave_collateral.ts │ ├── 003_mockup_tokens.ts │ ├── 004_reference_oracles.ts │ ├── 005_btc_handler.ts │ ├── 006_weth_handler.ts │ ├── 007_dai_handler.ts │ ├── 008_hardmode_vaults.ts │ └── 008_initialize_tcap.ts ├── deployments ├── arbitrum │ ├── .chainId │ ├── ArbitrumOrchestrator.json │ ├── ArbitrumTreasury.json │ ├── DAIOracle.json │ ├── JPEGZ.json │ ├── JPEGZOracle.json │ ├── L2AdminProxy.json │ ├── L2MessageExecutor.json │ ├── L2MessageExecutorProxy.json │ ├── WETHOracle.json │ ├── jpegzDAIVaultHandler.json │ ├── jpegzWETHVaultHandler.json │ └── solcInputs │ │ └── 5c91186ce59de7680b65d4ddddd80c54.json ├── arbitrumGoerli │ ├── .chainId │ ├── AggregatorInterfaceJPEGZ.json │ ├── AggregatorInterfaceTCAP.json │ ├── ArbitrumOrchestrator.json │ ├── ArbitrumTreasury.json │ ├── DAI.json │ ├── JPEGZ.json │ ├── JPEGZOracle.json │ ├── L2AdminProxy.json │ ├── L2MessageExecutor.json │ ├── L2MessageExecutorProxy.json │ ├── TCAP.json │ ├── TCAPOracle.json │ ├── WETH.json │ ├── WETHOracle.json │ ├── WETHVaultHandler.json │ ├── jWETHVaultHandler.json │ └── solcInputs │ │ ├── 5c91186ce59de7680b65d4ddddd80c54.json │ │ ├── b891babe7f90156dfcdcd94b93a789a8.json │ │ ├── c075f2fb203ee83a0a3d7cfc802c17e7.json │ │ └── f7d11a89063fadac090270d1e0a4734a.json ├── goerli │ ├── .chainId │ ├── AAVE.json │ ├── AaveOracle.json │ ├── AaveVaultHandler.json │ ├── BTCOracle.json │ ├── BTCVaultHandler.json │ ├── Ctx.json │ ├── DAI.json │ ├── DAIOracle.json │ ├── DAIVaultHandler.json │ ├── GovernorBeta.json │ ├── HardDAIVaultHandler.json │ ├── HardETHVaultHandler.json │ ├── HardUSDCVaultHandler.json │ ├── L1MessageRelayer.json │ ├── LINK.json │ ├── LinkOracle.json │ ├── LinkVaultHandler.json │ ├── Orchestrator.json │ ├── TCAP.json │ ├── TCAPOracle.json │ ├── Timelock.json │ ├── USDC.json │ ├── USDCOracle.json │ ├── WBTC.json │ ├── WETH.json │ ├── WETHOracle.json │ ├── WETHVaultHandler.json │ └── solcInputs │ │ ├── 03abd73a92b925ac1e7df33c04421604.json │ │ ├── 33f1f6b8a12d7e08d655091c8594b37b.json │ │ ├── 57fd964943961eb21329ffa8c2b6f646.json │ │ ├── 5c91186ce59de7680b65d4ddddd80c54.json │ │ ├── 687fa6bbba82cfbc75d96c71e0a450c5.json │ │ └── f7d11a89063fadac090270d1e0a4734a.json ├── hardhat │ ├── .chainId │ ├── AaveOracle.json │ ├── AaveVaultHandler.json │ ├── AdvisorTreasuryVester1.json │ ├── AdvisorTreasuryVester2.json │ ├── BTCOracle.json │ ├── CTXLiquidityReward.json │ ├── Ctx.json │ ├── DAIOracle.json │ ├── DAIRewardHandler.json │ ├── DAIVaultHandler.json │ ├── ETHLiquidityReward.json │ ├── GovernorAlpha.json │ ├── GovernorBeta.json │ ├── HardDAIVaultHandler.json │ ├── HardETHVaultHandler.json │ ├── HardUSDCVaultHandler.json │ ├── HardWBTCVaultHandler.json │ ├── LinkOracle.json │ ├── LinkVaultHandler.json │ ├── Orchestrator.json │ ├── TCAP.json │ ├── TCAPOracle.json │ ├── TeamTreasuryVester.json │ ├── Timelock.json │ ├── UsdcOracle.json │ ├── WBTCRewardHandler.json │ ├── WBTCVaultHandler.json │ ├── WETHOracle.json │ ├── WETHRewardHandler.json │ ├── WETHVaultHandler.json │ └── solcInputs │ │ ├── 1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json │ │ ├── 7a2ec06170535469f280147f73cb3aa1.json │ │ └── ff00d3fb3677c8fc6d545b2420b2c7f9.json ├── kovan │ ├── .chainId │ ├── AAVE.json │ ├── AggregatorInterfaceTCAP.json │ ├── Ctx.json │ ├── DAI.json │ ├── DAIOracle.json │ ├── DAIRewardHandler.json │ ├── DAIVaultHandler.json │ ├── GovernorAlpha.json │ ├── LINK.json │ ├── Orchestrator.json │ ├── TCAP.json │ ├── TCAPOracle.json │ ├── Timelock.json │ ├── WETH.json │ ├── WETHOracle.json │ ├── WETHRewardHandler.json │ ├── WETHVaultHandler.json │ └── solcInputs │ │ ├── 66666f7c9bd7b336e4a71e2e22b0ad52.json │ │ ├── a1d51e6061ee50c85c12d3cdc02ab8fe.json │ │ ├── ab268cce9239e734cefd30766c12815a.json │ │ └── f7d11a89063fadac090270d1e0a4734a.json ├── mainnet │ ├── .chainId │ ├── AaveOracle.json │ ├── AaveVaultHandler.json │ ├── AdvisorTreasuryVester1.json │ ├── AdvisorTreasuryVester2.json │ ├── BTCOracle.json │ ├── CTXLiquidityReward.json │ ├── Ctx.json │ ├── DAIOracle.json │ ├── DAIRewardHandler.json │ ├── DAIVaultHandler.json │ ├── ETHLiquidityReward.json │ ├── GovernorAlpha.json │ ├── GovernorBeta.json │ ├── HardDAIVaultHandler.json │ ├── HardETHVaultHandler.json │ ├── HardUSDCVaultHandler.json │ ├── HardWBTCVaultHandler.json │ ├── L1MessageRelayer.json │ ├── LinkOracle.json │ ├── LinkVaultHandler.json │ ├── Orchestrator.json │ ├── TCAP.json │ ├── TCAPOracle.json │ ├── TeamTreasuryVester.json │ ├── Timelock.json │ ├── UsdcOracle.json │ ├── WBTCRewardHandler.json │ ├── WBTCVaultHandler.json │ ├── WETHOracle.json │ ├── WETHRewardHandler.json │ ├── WETHVaultHandler.json │ └── solcInputs │ │ ├── 1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json │ │ ├── 3efeca14dc738eda541e04604926c891.json │ │ ├── 5c91186ce59de7680b65d4ddddd80c54.json │ │ ├── 7a2ec06170535469f280147f73cb3aa1.json │ │ ├── 7e7c4fb19065086bca784da0c1700afc.json │ │ ├── f626c641902e21c100bfa593a268ab60.json │ │ └── ff00d3fb3677c8fc6d545b2420b2c7f9.json ├── optimism │ ├── .chainId │ ├── DAIOracle.json │ ├── DAIVaultHandler.json │ ├── ETHOracle.json │ ├── LINKOracle.json │ ├── LINKVaultHandler.json │ ├── OptimisticOrchestrator.json │ ├── OptimisticTreasury.json │ ├── SNXOracle.json │ ├── SNXVaultHandler.json │ ├── TCAP.json │ ├── TCAPOracle.json │ ├── UNIOracle.json │ ├── UNIVaultHandler.json │ ├── WETHVaultHandler.json │ └── solcInputs │ │ ├── 21d2302792d9dd0dfff5b9f691cd70b9.json │ │ └── 50b1adcd3faaa337d8c6f9a38d3cdbdb.json ├── optimismKovan │ ├── .chainId │ ├── AAVE.json │ ├── AggregatorInterfaceTCAP.json │ ├── DAI.json │ ├── DAIOracle.json │ ├── DAIVaultHandler.json │ ├── LINK.json │ ├── OptimisticOrchestrator.json │ ├── TCAP.json │ ├── TCAPOracle.json │ ├── WETH.json │ ├── WETHOracle.json │ ├── WETHVaultHandler.json │ └── solcInputs │ │ ├── 095d293f0f453bd0e3e5a1a8276528db.json │ │ ├── 1196f637d0481a5fce54285bd4eb67d4.json │ │ └── f7d11a89063fadac090270d1e0a4734a.json ├── polygon │ ├── .chainId │ ├── DAIOracle.json │ ├── DAIVaultHandler.json │ ├── ETHOracle.json │ ├── ETHVaultHandler.json │ ├── MATICOracle.json │ ├── MATICVaultHandler.json │ ├── Orchestrator.json │ ├── TCAP.json │ ├── TCAPOracle.json │ └── solcInputs │ │ ├── 688fd0328113227bcadc4a65416c576f.json │ │ └── cea2311376d6f3af51e976c7da0d64c2.json └── rinkeby │ ├── .chainId │ ├── AAVE.json │ ├── AaveOracle.json │ ├── AaveVaultHandler.json │ ├── BTCOracle.json │ ├── BTCVaultHandler.json │ ├── Ctx.json │ ├── DAI.json │ ├── DAIOracle.json │ ├── DAIRewardHandler.json │ ├── DAIVaultHandler.json │ ├── ETHLiquidityReward.json │ ├── GovernorAlpha.json │ ├── HardDAIVaultHandler.json │ ├── HardETHVaultHandler.json │ ├── HardUSDCVaultHandler.json │ ├── LINK.json │ ├── LinkOracle.json │ ├── LinkVaultHandler.json │ ├── Orchestrator.json │ ├── TCAP.json │ ├── TCAPOracle.json │ ├── Timelock.json │ ├── USDC.json │ ├── USDCOracle.json │ ├── WBTC.json │ ├── WETH.json │ ├── WETHOracle.json │ ├── WETHRewardHandler.json │ ├── WETHVaultHandler.json │ └── solcInputs │ ├── 1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json │ ├── 21d2302792d9dd0dfff5b9f691cd70b9.json │ ├── 27786411e9f2b1f87b269cec36e20ccb.json │ ├── 87c3bb8a4f5be887a971ff7fa942a7ea.json │ ├── a2201d41b2ce5f6df228de2f84cf0689.json │ ├── ab268cce9239e734cefd30766c12815a.json │ ├── f7d11a89063fadac090270d1e0a4734a.json │ └── ff00d3fb3677c8fc6d545b2420b2c7f9.json ├── forge_scripts ├── DeployGovernanceReceiver.s.sol ├── DeployGovernanceRelay.s.sol ├── DeployNumberUpdater.s.sol └── RelayMessage.s.sol ├── foundry.toml ├── hardhat.config.ts ├── package.json ├── remappings.txt ├── scripts ├── CIP-11.ts ├── CIP-12.ts ├── CIP-13.ts ├── CIP-14.ts ├── CIP-15.ts ├── CIP-19.ts ├── CIP-2.ts ├── CIP-20.ts ├── CIP-21.ts ├── CIP-22.ts ├── CIP-23.ts ├── CIP-24.ts ├── CIP-25-26.ts ├── CIP-27.ts ├── CIP-29.ts ├── CIP-3-4.ts ├── CIP-30.ts ├── CIP-36.ts ├── CIP-37.ts ├── CIP-38.ts ├── CIP-39.ts ├── CIP-5.ts ├── CIP-7-10.ts ├── CIP-8.ts ├── examples │ ├── addVaultHandler.ts │ └── arbitrumDemo.ts ├── proposal.ts └── utils.ts ├── test.sh ├── test ├── ChainlinkOracle.test.js ├── ERCNon18DecimalsVaultHandler.test.ts ├── ERCVaultHandler.test.js ├── ETHVaultHandler.test.js ├── HardETHVaultHandler.t.sol ├── LinkAave.t.sol ├── LiquidityRewards.test.js ├── MATICVaultHandler.test.js ├── OptimisticTreasury.t.sol ├── Orchestrator.test.js ├── RewardHandler.test.js ├── TCAP.test.js ├── VaultsPausing.t.sol ├── arbitrum │ ├── ArbitrumBridgeTest.t.sol │ ├── ArbitrumMessages.t.sol │ ├── ArbitrumOrchestartor.t.sol │ ├── ArbitrumTreasury.sol │ ├── GovernanceBridgeIntegration.t.sol │ ├── JPEGZBridgeFork.t.sol │ ├── JPEGzMainnetOracleFork.t.sol │ ├── L2AdminProxy.t.sol │ ├── L2MessageExecutorProxy.t.sol │ └── mocks │ │ └── MockInbox.sol ├── base │ └── CryptexBaseTreasuryTest.t.sol ├── ccip │ ├── GovernanceCCIPIntegrationTest.t.sol │ ├── GovernanceCCIPReceiverTest.t.sol │ └── GovernanceCCIPRelayTest.t.sol ├── governance │ ├── Ctx.test.ts │ ├── GovernorBeta.test.ts │ ├── TreasuryVester.test.ts │ ├── fixtures.ts │ └── utils.ts ├── interfaces │ ├── IArbitrumInboxErrors.sol │ ├── ICtx.sol │ ├── IGovernorBeta.sol │ └── ITimelock.sol ├── polygon │ ├── IntegrationTest.ts │ └── PolygonL2Messenger.test.ts ├── proposals │ └── TestProposal.t.sol └── utils.ts ├── tsconfig.json ├── yarn-error.log └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.0.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.prettierrc -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.solcover.js -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/README.md -------------------------------------------------------------------------------- /contracts/BaseOrchestrator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/BaseOrchestrator.sol -------------------------------------------------------------------------------- /contracts/BaseTreasury.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/BaseTreasury.sol -------------------------------------------------------------------------------- /contracts/ERC20VaultHandler.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/ERC20VaultHandler.sol -------------------------------------------------------------------------------- /contracts/ETHVaultHandler.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/ETHVaultHandler.sol -------------------------------------------------------------------------------- /contracts/IVaultHandler.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/IVaultHandler.sol -------------------------------------------------------------------------------- /contracts/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/IWETH.sol -------------------------------------------------------------------------------- /contracts/IWMATIC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/IWMATIC.sol -------------------------------------------------------------------------------- /contracts/JPEGZ.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/JPEGZ.sol -------------------------------------------------------------------------------- /contracts/LiquidityReward.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/LiquidityReward.sol -------------------------------------------------------------------------------- /contracts/MATICVaultHandler.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/MATICVaultHandler.sol -------------------------------------------------------------------------------- /contracts/Orchestrator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/Orchestrator.sol -------------------------------------------------------------------------------- /contracts/Proprietor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/Proprietor.sol -------------------------------------------------------------------------------- /contracts/RewardHandler.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/RewardHandler.sol -------------------------------------------------------------------------------- /contracts/TCAP.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/TCAP.sol -------------------------------------------------------------------------------- /contracts/arbitrum/AddressAliasHelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/arbitrum/AddressAliasHelper.sol -------------------------------------------------------------------------------- /contracts/arbitrum/ArbitrumOrchestrator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/arbitrum/ArbitrumOrchestrator.sol -------------------------------------------------------------------------------- /contracts/arbitrum/ArbitrumTreasury.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/arbitrum/ArbitrumTreasury.sol -------------------------------------------------------------------------------- /contracts/arbitrum/L1MessageRelayer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/arbitrum/L1MessageRelayer.sol -------------------------------------------------------------------------------- /contracts/arbitrum/L2AdminProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/arbitrum/L2AdminProxy.sol -------------------------------------------------------------------------------- /contracts/arbitrum/L2MessageExecutor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/arbitrum/L2MessageExecutor.sol -------------------------------------------------------------------------------- /contracts/arbitrum/L2MessageExecutorProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/arbitrum/L2MessageExecutorProxy.sol -------------------------------------------------------------------------------- /contracts/base/CryptexBaseTreasury.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/base/CryptexBaseTreasury.sol -------------------------------------------------------------------------------- /contracts/ccip/AUDIT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/ccip/AUDIT_README.md -------------------------------------------------------------------------------- /contracts/ccip/GovernanceCCIPReceiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/ccip/GovernanceCCIPReceiver.sol -------------------------------------------------------------------------------- /contracts/ccip/GovernanceCCIPRelay.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/ccip/GovernanceCCIPRelay.sol -------------------------------------------------------------------------------- /contracts/ccip/interfaces/IGovernanceCCIPReceiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/ccip/interfaces/IGovernanceCCIPReceiver.sol -------------------------------------------------------------------------------- /contracts/ccip/interfaces/IGovernanceCCIPRelay.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/ccip/interfaces/IGovernanceCCIPRelay.sol -------------------------------------------------------------------------------- /contracts/governance/Ctx.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/governance/Ctx.sol -------------------------------------------------------------------------------- /contracts/governance/GovernorBeta.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/governance/GovernorBeta.sol -------------------------------------------------------------------------------- /contracts/governance/Timelock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/governance/Timelock.sol -------------------------------------------------------------------------------- /contracts/governance/TreasuryVester.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/governance/TreasuryVester.sol -------------------------------------------------------------------------------- /contracts/mocks/AAVE.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/AAVE.sol -------------------------------------------------------------------------------- /contracts/mocks/AggregatorInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/AggregatorInterface.sol -------------------------------------------------------------------------------- /contracts/mocks/AggregatorInterfaceETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/AggregatorInterfaceETH.sol -------------------------------------------------------------------------------- /contracts/mocks/AggregatorInterfaceJPEGZ.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/AggregatorInterfaceJPEGZ.sol -------------------------------------------------------------------------------- /contracts/mocks/AggregatorInterfaceStable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/AggregatorInterfaceStable.sol -------------------------------------------------------------------------------- /contracts/mocks/AggregatorInterfaceTCAP.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/AggregatorInterfaceTCAP.sol -------------------------------------------------------------------------------- /contracts/mocks/CrossChainMsgTester.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/CrossChainMsgTester.sol -------------------------------------------------------------------------------- /contracts/mocks/DAI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/DAI.sol -------------------------------------------------------------------------------- /contracts/mocks/FxRoot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/FxRoot.sol -------------------------------------------------------------------------------- /contracts/mocks/GovernorAlpha.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/GovernorAlpha.sol -------------------------------------------------------------------------------- /contracts/mocks/Greeter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/Greeter.sol -------------------------------------------------------------------------------- /contracts/mocks/LINK.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/LINK.sol -------------------------------------------------------------------------------- /contracts/mocks/MockFxChild.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/MockFxChild.sol -------------------------------------------------------------------------------- /contracts/mocks/NumberUpdater.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/NumberUpdater.sol -------------------------------------------------------------------------------- /contracts/mocks/StateSender.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/StateSender.sol -------------------------------------------------------------------------------- /contracts/mocks/USDC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/USDC.sol -------------------------------------------------------------------------------- /contracts/mocks/WBTC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/WBTC.sol -------------------------------------------------------------------------------- /contracts/mocks/WETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/WETH.sol -------------------------------------------------------------------------------- /contracts/mocks/WMATIC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/mocks/WMATIC.sol -------------------------------------------------------------------------------- /contracts/optimism/OptimisticOrchestrator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/optimism/OptimisticOrchestrator.sol -------------------------------------------------------------------------------- /contracts/optimism/OptimisticTreasury.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/optimism/OptimisticTreasury.sol -------------------------------------------------------------------------------- /contracts/optimism/iOVM_CrossDomainMessenger.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/optimism/iOVM_CrossDomainMessenger.sol -------------------------------------------------------------------------------- /contracts/optimism/iOVM_L2CrossDomainMessenger.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/optimism/iOVM_L2CrossDomainMessenger.sol -------------------------------------------------------------------------------- /contracts/oracles/ChainlinkOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/oracles/ChainlinkOracle.sol -------------------------------------------------------------------------------- /contracts/polygon/PolygonL2Messenger.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/polygon/PolygonL2Messenger.sol -------------------------------------------------------------------------------- /contracts/polygon/PolygonOrchestrator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/polygon/PolygonOrchestrator.sol -------------------------------------------------------------------------------- /contracts/polygon/PolygonTreasury.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/contracts/polygon/PolygonTreasury.sol -------------------------------------------------------------------------------- /deploy/arbitrum/.chainId: -------------------------------------------------------------------------------- 1 | 42161 2 | -------------------------------------------------------------------------------- /deploy/arbitrum/001_message_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrum/001_message_executor.ts -------------------------------------------------------------------------------- /deploy/arbitrum/002_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrum/002_orchestrator.ts -------------------------------------------------------------------------------- /deploy/arbitrum/003_treasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrum/003_treasury.ts -------------------------------------------------------------------------------- /deploy/arbitrum/004_reference_oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrum/004_reference_oracles.ts -------------------------------------------------------------------------------- /deploy/arbitrum/005_jpegz_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrum/005_jpegz_token.ts -------------------------------------------------------------------------------- /deploy/arbitrum/006_jpegz_weth_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrum/006_jpegz_weth_handler.ts -------------------------------------------------------------------------------- /deploy/arbitrum/007_jpegz_dai_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrum/007_jpegz_dai_handler.ts -------------------------------------------------------------------------------- /deploy/arbitrum/008_initialize_jpgz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrum/008_initialize_jpgz.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/.chainId: -------------------------------------------------------------------------------- 1 | 421613 2 | -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/001_message_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/001_message_executor.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/002_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/002_orchestrator.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/003_treasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/003_treasury.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/004_aggregator_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/004_aggregator_tcap.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/005_aggregator_jpegz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/005_aggregator_jpegz.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/006_mockup_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/006_mockup_tokens.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/007_reference_oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/007_reference_oracles.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/008_tcap_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/008_tcap_token.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/009_jpegz_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/009_jpegz_token.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/010_weth_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/010_weth_handler.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/012_jpegz_weth_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/012_jpegz_weth_handler.ts -------------------------------------------------------------------------------- /deploy/arbitrumGoerli/013_initialize_jpgz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/arbitrumGoerli/013_initialize_jpgz.ts -------------------------------------------------------------------------------- /deploy/goerli/001_governance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/001_governance.ts -------------------------------------------------------------------------------- /deploy/goerli/001_mockup_tokens_aave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/001_mockup_tokens_aave.ts -------------------------------------------------------------------------------- /deploy/goerli/002_link_collateral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/002_link_collateral.ts -------------------------------------------------------------------------------- /deploy/goerli/002_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/002_orchestrator.ts -------------------------------------------------------------------------------- /deploy/goerli/003_arbitrum_message_relayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/003_arbitrum_message_relayer.ts -------------------------------------------------------------------------------- /deploy/goerli/004_aave_collateral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/004_aave_collateral.ts -------------------------------------------------------------------------------- /deploy/goerli/004_reference_oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/004_reference_oracles.ts -------------------------------------------------------------------------------- /deploy/goerli/005_mockup_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/005_mockup_tokens.ts -------------------------------------------------------------------------------- /deploy/goerli/006_tcap_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/006_tcap_token.ts -------------------------------------------------------------------------------- /deploy/goerli/006_weth_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/006_weth_handler.ts -------------------------------------------------------------------------------- /deploy/goerli/007_btc_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/007_btc_handler.ts -------------------------------------------------------------------------------- /deploy/goerli/007_dai_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/007_dai_handler.ts -------------------------------------------------------------------------------- /deploy/goerli/008_hardmode_vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/008_hardmode_vaults.ts -------------------------------------------------------------------------------- /deploy/goerli/008_initialize_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/008_initialize_tcap.ts -------------------------------------------------------------------------------- /deploy/goerli/009_transfer_ownership_DAO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/goerli/009_transfer_ownership_DAO.ts -------------------------------------------------------------------------------- /deploy/kovan/000_governance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/000_governance.ts -------------------------------------------------------------------------------- /deploy/kovan/001_mockup_tokens_aave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/001_mockup_tokens_aave.ts -------------------------------------------------------------------------------- /deploy/kovan/001_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/001_orchestrator.ts -------------------------------------------------------------------------------- /deploy/kovan/002_aggregator_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/002_aggregator_tcap.ts -------------------------------------------------------------------------------- /deploy/kovan/002_tcap_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/002_tcap_token.ts -------------------------------------------------------------------------------- /deploy/kovan/003_mockup_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/003_mockup_tokens.ts -------------------------------------------------------------------------------- /deploy/kovan/004_reference_oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/004_reference_oracles.ts -------------------------------------------------------------------------------- /deploy/kovan/005_btc_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/005_btc_handler.ts -------------------------------------------------------------------------------- /deploy/kovan/006_weth_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/006_weth_handler.ts -------------------------------------------------------------------------------- /deploy/kovan/007_dai_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/007_dai_handler.ts -------------------------------------------------------------------------------- /deploy/kovan/008_initialize_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/kovan/008_initialize_tcap.ts -------------------------------------------------------------------------------- /deploy/mainnet/000_vesting_contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mainnet/000_vesting_contracts.ts -------------------------------------------------------------------------------- /deploy/mainnet/001_governor_beta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mainnet/001_governor_beta.ts -------------------------------------------------------------------------------- /deploy/mainnet/002_link_collateral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mainnet/002_link_collateral.ts -------------------------------------------------------------------------------- /deploy/mainnet/003_aave_collateral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mainnet/003_aave_collateral.ts -------------------------------------------------------------------------------- /deploy/mainnet/003_arbitrum_message_relayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mainnet/003_arbitrum_message_relayer.ts -------------------------------------------------------------------------------- /deploy/mainnet/004_usdc_collateral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mainnet/004_usdc_collateral.ts -------------------------------------------------------------------------------- /deploy/mainnet/005_hard_vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mainnet/005_hard_vaults.ts -------------------------------------------------------------------------------- /deploy/mumbai/001_messenger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/001_messenger.ts -------------------------------------------------------------------------------- /deploy/mumbai/002_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/002_orchestrator.ts -------------------------------------------------------------------------------- /deploy/mumbai/003_polygon_treasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/003_polygon_treasury.ts -------------------------------------------------------------------------------- /deploy/mumbai/004_aggregator_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/004_aggregator_tcap.ts -------------------------------------------------------------------------------- /deploy/mumbai/005_mockup_tokens_aave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/005_mockup_tokens_aave.ts -------------------------------------------------------------------------------- /deploy/mumbai/006_mockup_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/006_mockup_tokens.ts -------------------------------------------------------------------------------- /deploy/mumbai/007_reference_oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/007_reference_oracles.ts -------------------------------------------------------------------------------- /deploy/mumbai/008_tcap_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/008_tcap_token.ts -------------------------------------------------------------------------------- /deploy/mumbai/009_dai_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/009_dai_handler.ts -------------------------------------------------------------------------------- /deploy/mumbai/010_wmatic_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/010_wmatic_handler.ts -------------------------------------------------------------------------------- /deploy/mumbai/011_initialise_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/mumbai/011_initialise_tcap.ts -------------------------------------------------------------------------------- /deploy/optimism/000_treasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimism/000_treasury.ts -------------------------------------------------------------------------------- /deploy/optimism/001_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimism/001_orchestrator.ts -------------------------------------------------------------------------------- /deploy/optimism/002_oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimism/002_oracles.ts -------------------------------------------------------------------------------- /deploy/optimism/003_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimism/003_tcap.ts -------------------------------------------------------------------------------- /deploy/optimism/004_vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimism/004_vaults.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/001_mockup_tokens_aave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/001_mockup_tokens_aave.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/001_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/001_orchestrator.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/002_aggregator_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/002_aggregator_tcap.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/002_tcap_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/002_tcap_token.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/003_mockup_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/003_mockup_tokens.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/004_reference_oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/004_reference_oracles.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/006_weth_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/006_weth_handler.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/007_dai_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/007_dai_handler.ts -------------------------------------------------------------------------------- /deploy/optimismKovan/008_initialize_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/optimismKovan/008_initialize_tcap.ts -------------------------------------------------------------------------------- /deploy/polygon-test/000_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/polygon-test/000_orchestrator.ts -------------------------------------------------------------------------------- /deploy/polygon-test/001_tcap_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/polygon-test/001_tcap_token.ts -------------------------------------------------------------------------------- /deploy/polygon-test/002_reference_oracle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/polygon-test/002_reference_oracle.ts -------------------------------------------------------------------------------- /deploy/polygon-test/003_matic_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/polygon-test/003_matic_handler.ts -------------------------------------------------------------------------------- /deploy/polygon-test/004_eth_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/polygon-test/004_eth_handler.ts -------------------------------------------------------------------------------- /deploy/polygon-test/005_dai_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/polygon-test/005_dai_handler.ts -------------------------------------------------------------------------------- /deploy/rinkeby/000_governance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/000_governance.ts -------------------------------------------------------------------------------- /deploy/rinkeby/001_mockup_tokens_aave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/001_mockup_tokens_aave.ts -------------------------------------------------------------------------------- /deploy/rinkeby/001_orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/001_orchestrator.ts -------------------------------------------------------------------------------- /deploy/rinkeby/002_link_collateral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/002_link_collateral.ts -------------------------------------------------------------------------------- /deploy/rinkeby/002_tcap_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/002_tcap_token.ts -------------------------------------------------------------------------------- /deploy/rinkeby/003_aave_collateral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/003_aave_collateral.ts -------------------------------------------------------------------------------- /deploy/rinkeby/003_mockup_tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/003_mockup_tokens.ts -------------------------------------------------------------------------------- /deploy/rinkeby/004_reference_oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/004_reference_oracles.ts -------------------------------------------------------------------------------- /deploy/rinkeby/005_btc_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/005_btc_handler.ts -------------------------------------------------------------------------------- /deploy/rinkeby/006_weth_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/006_weth_handler.ts -------------------------------------------------------------------------------- /deploy/rinkeby/007_dai_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/007_dai_handler.ts -------------------------------------------------------------------------------- /deploy/rinkeby/008_hardmode_vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/008_hardmode_vaults.ts -------------------------------------------------------------------------------- /deploy/rinkeby/008_initialize_tcap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deploy/rinkeby/008_initialize_tcap.ts -------------------------------------------------------------------------------- /deployments/arbitrum/.chainId: -------------------------------------------------------------------------------- 1 | 42161 -------------------------------------------------------------------------------- /deployments/arbitrum/ArbitrumOrchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/ArbitrumOrchestrator.json -------------------------------------------------------------------------------- /deployments/arbitrum/ArbitrumTreasury.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/ArbitrumTreasury.json -------------------------------------------------------------------------------- /deployments/arbitrum/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/DAIOracle.json -------------------------------------------------------------------------------- /deployments/arbitrum/JPEGZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/JPEGZ.json -------------------------------------------------------------------------------- /deployments/arbitrum/JPEGZOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/JPEGZOracle.json -------------------------------------------------------------------------------- /deployments/arbitrum/L2AdminProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/L2AdminProxy.json -------------------------------------------------------------------------------- /deployments/arbitrum/L2MessageExecutor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/L2MessageExecutor.json -------------------------------------------------------------------------------- /deployments/arbitrum/L2MessageExecutorProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/L2MessageExecutorProxy.json -------------------------------------------------------------------------------- /deployments/arbitrum/WETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/WETHOracle.json -------------------------------------------------------------------------------- /deployments/arbitrum/jpegzDAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/jpegzDAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/arbitrum/jpegzWETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/jpegzWETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/arbitrum/solcInputs/5c91186ce59de7680b65d4ddddd80c54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrum/solcInputs/5c91186ce59de7680b65d4ddddd80c54.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/.chainId: -------------------------------------------------------------------------------- 1 | 421613 -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/AggregatorInterfaceJPEGZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/AggregatorInterfaceJPEGZ.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/AggregatorInterfaceTCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/AggregatorInterfaceTCAP.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/ArbitrumOrchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/ArbitrumOrchestrator.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/ArbitrumTreasury.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/ArbitrumTreasury.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/DAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/DAI.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/JPEGZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/JPEGZ.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/JPEGZOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/JPEGZOracle.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/L2AdminProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/L2AdminProxy.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/L2MessageExecutor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/L2MessageExecutor.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/L2MessageExecutorProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/L2MessageExecutorProxy.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/TCAP.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/WETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/WETH.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/WETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/WETHOracle.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/WETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/WETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/jWETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/jWETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/solcInputs/5c91186ce59de7680b65d4ddddd80c54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/solcInputs/5c91186ce59de7680b65d4ddddd80c54.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/solcInputs/b891babe7f90156dfcdcd94b93a789a8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/solcInputs/b891babe7f90156dfcdcd94b93a789a8.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/solcInputs/c075f2fb203ee83a0a3d7cfc802c17e7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/solcInputs/c075f2fb203ee83a0a3d7cfc802c17e7.json -------------------------------------------------------------------------------- /deployments/arbitrumGoerli/solcInputs/f7d11a89063fadac090270d1e0a4734a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/arbitrumGoerli/solcInputs/f7d11a89063fadac090270d1e0a4734a.json -------------------------------------------------------------------------------- /deployments/goerli/.chainId: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /deployments/goerli/AAVE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/AAVE.json -------------------------------------------------------------------------------- /deployments/goerli/AaveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/AaveOracle.json -------------------------------------------------------------------------------- /deployments/goerli/AaveVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/AaveVaultHandler.json -------------------------------------------------------------------------------- /deployments/goerli/BTCOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/BTCOracle.json -------------------------------------------------------------------------------- /deployments/goerli/BTCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/BTCVaultHandler.json -------------------------------------------------------------------------------- /deployments/goerli/Ctx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/Ctx.json -------------------------------------------------------------------------------- /deployments/goerli/DAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/DAI.json -------------------------------------------------------------------------------- /deployments/goerli/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/DAIOracle.json -------------------------------------------------------------------------------- /deployments/goerli/DAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/DAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/goerli/GovernorBeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/GovernorBeta.json -------------------------------------------------------------------------------- /deployments/goerli/HardDAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/HardDAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/goerli/HardETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/HardETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/goerli/HardUSDCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/HardUSDCVaultHandler.json -------------------------------------------------------------------------------- /deployments/goerli/L1MessageRelayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/L1MessageRelayer.json -------------------------------------------------------------------------------- /deployments/goerli/LINK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/LINK.json -------------------------------------------------------------------------------- /deployments/goerli/LinkOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/LinkOracle.json -------------------------------------------------------------------------------- /deployments/goerli/LinkVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/LinkVaultHandler.json -------------------------------------------------------------------------------- /deployments/goerli/Orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/Orchestrator.json -------------------------------------------------------------------------------- /deployments/goerli/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/TCAP.json -------------------------------------------------------------------------------- /deployments/goerli/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/goerli/Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/Timelock.json -------------------------------------------------------------------------------- /deployments/goerli/USDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/USDC.json -------------------------------------------------------------------------------- /deployments/goerli/USDCOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/USDCOracle.json -------------------------------------------------------------------------------- /deployments/goerli/WBTC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/WBTC.json -------------------------------------------------------------------------------- /deployments/goerli/WETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/WETH.json -------------------------------------------------------------------------------- /deployments/goerli/WETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/WETHOracle.json -------------------------------------------------------------------------------- /deployments/goerli/WETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/WETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/03abd73a92b925ac1e7df33c04421604.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/solcInputs/03abd73a92b925ac1e7df33c04421604.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/33f1f6b8a12d7e08d655091c8594b37b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/solcInputs/33f1f6b8a12d7e08d655091c8594b37b.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/57fd964943961eb21329ffa8c2b6f646.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/solcInputs/57fd964943961eb21329ffa8c2b6f646.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/5c91186ce59de7680b65d4ddddd80c54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/solcInputs/5c91186ce59de7680b65d4ddddd80c54.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/687fa6bbba82cfbc75d96c71e0a450c5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/solcInputs/687fa6bbba82cfbc75d96c71e0a450c5.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/f7d11a89063fadac090270d1e0a4734a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/goerli/solcInputs/f7d11a89063fadac090270d1e0a4734a.json -------------------------------------------------------------------------------- /deployments/hardhat/.chainId: -------------------------------------------------------------------------------- 1 | 31337 2 | -------------------------------------------------------------------------------- /deployments/hardhat/AaveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/AaveOracle.json -------------------------------------------------------------------------------- /deployments/hardhat/AaveVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/AaveVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/AdvisorTreasuryVester1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/AdvisorTreasuryVester1.json -------------------------------------------------------------------------------- /deployments/hardhat/AdvisorTreasuryVester2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/AdvisorTreasuryVester2.json -------------------------------------------------------------------------------- /deployments/hardhat/BTCOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/BTCOracle.json -------------------------------------------------------------------------------- /deployments/hardhat/CTXLiquidityReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/CTXLiquidityReward.json -------------------------------------------------------------------------------- /deployments/hardhat/Ctx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/Ctx.json -------------------------------------------------------------------------------- /deployments/hardhat/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/DAIOracle.json -------------------------------------------------------------------------------- /deployments/hardhat/DAIRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/DAIRewardHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/DAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/DAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/ETHLiquidityReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/ETHLiquidityReward.json -------------------------------------------------------------------------------- /deployments/hardhat/GovernorAlpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/GovernorAlpha.json -------------------------------------------------------------------------------- /deployments/hardhat/GovernorBeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/GovernorBeta.json -------------------------------------------------------------------------------- /deployments/hardhat/HardDAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/HardDAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/HardETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/HardETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/HardUSDCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/HardUSDCVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/HardWBTCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/HardWBTCVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/LinkOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/LinkOracle.json -------------------------------------------------------------------------------- /deployments/hardhat/LinkVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/LinkVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/Orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/Orchestrator.json -------------------------------------------------------------------------------- /deployments/hardhat/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/TCAP.json -------------------------------------------------------------------------------- /deployments/hardhat/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/hardhat/TeamTreasuryVester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/TeamTreasuryVester.json -------------------------------------------------------------------------------- /deployments/hardhat/Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/Timelock.json -------------------------------------------------------------------------------- /deployments/hardhat/UsdcOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/UsdcOracle.json -------------------------------------------------------------------------------- /deployments/hardhat/WBTCRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/WBTCRewardHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/WBTCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/WBTCVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/WETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/WETHOracle.json -------------------------------------------------------------------------------- /deployments/hardhat/WETHRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/WETHRewardHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/WETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/WETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/hardhat/solcInputs/1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/solcInputs/1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json -------------------------------------------------------------------------------- /deployments/hardhat/solcInputs/7a2ec06170535469f280147f73cb3aa1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/solcInputs/7a2ec06170535469f280147f73cb3aa1.json -------------------------------------------------------------------------------- /deployments/hardhat/solcInputs/ff00d3fb3677c8fc6d545b2420b2c7f9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/hardhat/solcInputs/ff00d3fb3677c8fc6d545b2420b2c7f9.json -------------------------------------------------------------------------------- /deployments/kovan/.chainId: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /deployments/kovan/AAVE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/AAVE.json -------------------------------------------------------------------------------- /deployments/kovan/AggregatorInterfaceTCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/AggregatorInterfaceTCAP.json -------------------------------------------------------------------------------- /deployments/kovan/Ctx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/Ctx.json -------------------------------------------------------------------------------- /deployments/kovan/DAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/DAI.json -------------------------------------------------------------------------------- /deployments/kovan/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/DAIOracle.json -------------------------------------------------------------------------------- /deployments/kovan/DAIRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/DAIRewardHandler.json -------------------------------------------------------------------------------- /deployments/kovan/DAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/DAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/kovan/GovernorAlpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/GovernorAlpha.json -------------------------------------------------------------------------------- /deployments/kovan/LINK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/LINK.json -------------------------------------------------------------------------------- /deployments/kovan/Orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/Orchestrator.json -------------------------------------------------------------------------------- /deployments/kovan/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/TCAP.json -------------------------------------------------------------------------------- /deployments/kovan/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/kovan/Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/Timelock.json -------------------------------------------------------------------------------- /deployments/kovan/WETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/WETH.json -------------------------------------------------------------------------------- /deployments/kovan/WETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/WETHOracle.json -------------------------------------------------------------------------------- /deployments/kovan/WETHRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/WETHRewardHandler.json -------------------------------------------------------------------------------- /deployments/kovan/WETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/WETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/kovan/solcInputs/66666f7c9bd7b336e4a71e2e22b0ad52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/solcInputs/66666f7c9bd7b336e4a71e2e22b0ad52.json -------------------------------------------------------------------------------- /deployments/kovan/solcInputs/a1d51e6061ee50c85c12d3cdc02ab8fe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/solcInputs/a1d51e6061ee50c85c12d3cdc02ab8fe.json -------------------------------------------------------------------------------- /deployments/kovan/solcInputs/ab268cce9239e734cefd30766c12815a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/solcInputs/ab268cce9239e734cefd30766c12815a.json -------------------------------------------------------------------------------- /deployments/kovan/solcInputs/f7d11a89063fadac090270d1e0a4734a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/kovan/solcInputs/f7d11a89063fadac090270d1e0a4734a.json -------------------------------------------------------------------------------- /deployments/mainnet/.chainId: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /deployments/mainnet/AaveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/AaveOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/AaveVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/AaveVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/AdvisorTreasuryVester1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/AdvisorTreasuryVester1.json -------------------------------------------------------------------------------- /deployments/mainnet/AdvisorTreasuryVester2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/AdvisorTreasuryVester2.json -------------------------------------------------------------------------------- /deployments/mainnet/BTCOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/BTCOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/CTXLiquidityReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/CTXLiquidityReward.json -------------------------------------------------------------------------------- /deployments/mainnet/Ctx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/Ctx.json -------------------------------------------------------------------------------- /deployments/mainnet/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/DAIOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/DAIRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/DAIRewardHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/DAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/DAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/ETHLiquidityReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/ETHLiquidityReward.json -------------------------------------------------------------------------------- /deployments/mainnet/GovernorAlpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/GovernorAlpha.json -------------------------------------------------------------------------------- /deployments/mainnet/GovernorBeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/GovernorBeta.json -------------------------------------------------------------------------------- /deployments/mainnet/HardDAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/HardDAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/HardETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/HardETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/HardUSDCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/HardUSDCVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/HardWBTCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/HardWBTCVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/L1MessageRelayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/L1MessageRelayer.json -------------------------------------------------------------------------------- /deployments/mainnet/LinkOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/LinkOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/LinkVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/LinkVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/Orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/Orchestrator.json -------------------------------------------------------------------------------- /deployments/mainnet/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/TCAP.json -------------------------------------------------------------------------------- /deployments/mainnet/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/TeamTreasuryVester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/TeamTreasuryVester.json -------------------------------------------------------------------------------- /deployments/mainnet/Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/Timelock.json -------------------------------------------------------------------------------- /deployments/mainnet/UsdcOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/UsdcOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/WBTCRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/WBTCRewardHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/WBTCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/WBTCVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/WETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/WETHOracle.json -------------------------------------------------------------------------------- /deployments/mainnet/WETHRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/WETHRewardHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/WETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/WETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/solcInputs/1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/3efeca14dc738eda541e04604926c891.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/solcInputs/3efeca14dc738eda541e04604926c891.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/5c91186ce59de7680b65d4ddddd80c54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/solcInputs/5c91186ce59de7680b65d4ddddd80c54.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/7a2ec06170535469f280147f73cb3aa1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/solcInputs/7a2ec06170535469f280147f73cb3aa1.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/7e7c4fb19065086bca784da0c1700afc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/solcInputs/7e7c4fb19065086bca784da0c1700afc.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/f626c641902e21c100bfa593a268ab60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/solcInputs/f626c641902e21c100bfa593a268ab60.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/ff00d3fb3677c8fc6d545b2420b2c7f9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/mainnet/solcInputs/ff00d3fb3677c8fc6d545b2420b2c7f9.json -------------------------------------------------------------------------------- /deployments/optimism/.chainId: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /deployments/optimism/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/DAIOracle.json -------------------------------------------------------------------------------- /deployments/optimism/DAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/DAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/optimism/ETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/ETHOracle.json -------------------------------------------------------------------------------- /deployments/optimism/LINKOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/LINKOracle.json -------------------------------------------------------------------------------- /deployments/optimism/LINKVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/LINKVaultHandler.json -------------------------------------------------------------------------------- /deployments/optimism/OptimisticOrchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/OptimisticOrchestrator.json -------------------------------------------------------------------------------- /deployments/optimism/OptimisticTreasury.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/OptimisticTreasury.json -------------------------------------------------------------------------------- /deployments/optimism/SNXOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/SNXOracle.json -------------------------------------------------------------------------------- /deployments/optimism/SNXVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/SNXVaultHandler.json -------------------------------------------------------------------------------- /deployments/optimism/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/TCAP.json -------------------------------------------------------------------------------- /deployments/optimism/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/optimism/UNIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/UNIOracle.json -------------------------------------------------------------------------------- /deployments/optimism/UNIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/UNIVaultHandler.json -------------------------------------------------------------------------------- /deployments/optimism/WETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/WETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/optimism/solcInputs/21d2302792d9dd0dfff5b9f691cd70b9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/solcInputs/21d2302792d9dd0dfff5b9f691cd70b9.json -------------------------------------------------------------------------------- /deployments/optimism/solcInputs/50b1adcd3faaa337d8c6f9a38d3cdbdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimism/solcInputs/50b1adcd3faaa337d8c6f9a38d3cdbdb.json -------------------------------------------------------------------------------- /deployments/optimismKovan/.chainId: -------------------------------------------------------------------------------- 1 | 69 -------------------------------------------------------------------------------- /deployments/optimismKovan/AAVE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/AAVE.json -------------------------------------------------------------------------------- /deployments/optimismKovan/AggregatorInterfaceTCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/AggregatorInterfaceTCAP.json -------------------------------------------------------------------------------- /deployments/optimismKovan/DAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/DAI.json -------------------------------------------------------------------------------- /deployments/optimismKovan/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/DAIOracle.json -------------------------------------------------------------------------------- /deployments/optimismKovan/DAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/DAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/optimismKovan/LINK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/LINK.json -------------------------------------------------------------------------------- /deployments/optimismKovan/OptimisticOrchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/OptimisticOrchestrator.json -------------------------------------------------------------------------------- /deployments/optimismKovan/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/TCAP.json -------------------------------------------------------------------------------- /deployments/optimismKovan/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/optimismKovan/WETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/WETH.json -------------------------------------------------------------------------------- /deployments/optimismKovan/WETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/WETHOracle.json -------------------------------------------------------------------------------- /deployments/optimismKovan/WETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/WETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/optimismKovan/solcInputs/095d293f0f453bd0e3e5a1a8276528db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/solcInputs/095d293f0f453bd0e3e5a1a8276528db.json -------------------------------------------------------------------------------- /deployments/optimismKovan/solcInputs/1196f637d0481a5fce54285bd4eb67d4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/solcInputs/1196f637d0481a5fce54285bd4eb67d4.json -------------------------------------------------------------------------------- /deployments/optimismKovan/solcInputs/f7d11a89063fadac090270d1e0a4734a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/optimismKovan/solcInputs/f7d11a89063fadac090270d1e0a4734a.json -------------------------------------------------------------------------------- /deployments/polygon/.chainId: -------------------------------------------------------------------------------- 1 | 137 -------------------------------------------------------------------------------- /deployments/polygon/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/DAIOracle.json -------------------------------------------------------------------------------- /deployments/polygon/DAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/DAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/polygon/ETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/ETHOracle.json -------------------------------------------------------------------------------- /deployments/polygon/ETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/ETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/polygon/MATICOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/MATICOracle.json -------------------------------------------------------------------------------- /deployments/polygon/MATICVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/MATICVaultHandler.json -------------------------------------------------------------------------------- /deployments/polygon/Orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/Orchestrator.json -------------------------------------------------------------------------------- /deployments/polygon/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/TCAP.json -------------------------------------------------------------------------------- /deployments/polygon/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/polygon/solcInputs/688fd0328113227bcadc4a65416c576f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/solcInputs/688fd0328113227bcadc4a65416c576f.json -------------------------------------------------------------------------------- /deployments/polygon/solcInputs/cea2311376d6f3af51e976c7da0d64c2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/polygon/solcInputs/cea2311376d6f3af51e976c7da0d64c2.json -------------------------------------------------------------------------------- /deployments/rinkeby/.chainId: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /deployments/rinkeby/AAVE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/AAVE.json -------------------------------------------------------------------------------- /deployments/rinkeby/AaveOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/AaveOracle.json -------------------------------------------------------------------------------- /deployments/rinkeby/AaveVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/AaveVaultHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/BTCOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/BTCOracle.json -------------------------------------------------------------------------------- /deployments/rinkeby/BTCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/BTCVaultHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/Ctx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/Ctx.json -------------------------------------------------------------------------------- /deployments/rinkeby/DAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/DAI.json -------------------------------------------------------------------------------- /deployments/rinkeby/DAIOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/DAIOracle.json -------------------------------------------------------------------------------- /deployments/rinkeby/DAIRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/DAIRewardHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/DAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/DAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/ETHLiquidityReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/ETHLiquidityReward.json -------------------------------------------------------------------------------- /deployments/rinkeby/GovernorAlpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/GovernorAlpha.json -------------------------------------------------------------------------------- /deployments/rinkeby/HardDAIVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/HardDAIVaultHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/HardETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/HardETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/HardUSDCVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/HardUSDCVaultHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/LINK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/LINK.json -------------------------------------------------------------------------------- /deployments/rinkeby/LinkOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/LinkOracle.json -------------------------------------------------------------------------------- /deployments/rinkeby/LinkVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/LinkVaultHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/Orchestrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/Orchestrator.json -------------------------------------------------------------------------------- /deployments/rinkeby/TCAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/TCAP.json -------------------------------------------------------------------------------- /deployments/rinkeby/TCAPOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/TCAPOracle.json -------------------------------------------------------------------------------- /deployments/rinkeby/Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/Timelock.json -------------------------------------------------------------------------------- /deployments/rinkeby/USDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/USDC.json -------------------------------------------------------------------------------- /deployments/rinkeby/USDCOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/USDCOracle.json -------------------------------------------------------------------------------- /deployments/rinkeby/WBTC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/WBTC.json -------------------------------------------------------------------------------- /deployments/rinkeby/WETH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/WETH.json -------------------------------------------------------------------------------- /deployments/rinkeby/WETHOracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/WETHOracle.json -------------------------------------------------------------------------------- /deployments/rinkeby/WETHRewardHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/WETHRewardHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/WETHVaultHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/WETHVaultHandler.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/solcInputs/1e7e1b0ad8e2bc8488b2d5a9dee1cd22.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/21d2302792d9dd0dfff5b9f691cd70b9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/solcInputs/21d2302792d9dd0dfff5b9f691cd70b9.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/27786411e9f2b1f87b269cec36e20ccb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/solcInputs/27786411e9f2b1f87b269cec36e20ccb.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/87c3bb8a4f5be887a971ff7fa942a7ea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/solcInputs/87c3bb8a4f5be887a971ff7fa942a7ea.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/a2201d41b2ce5f6df228de2f84cf0689.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/solcInputs/a2201d41b2ce5f6df228de2f84cf0689.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/ab268cce9239e734cefd30766c12815a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/solcInputs/ab268cce9239e734cefd30766c12815a.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/f7d11a89063fadac090270d1e0a4734a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/solcInputs/f7d11a89063fadac090270d1e0a4734a.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/ff00d3fb3677c8fc6d545b2420b2c7f9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/deployments/rinkeby/solcInputs/ff00d3fb3677c8fc6d545b2420b2c7f9.json -------------------------------------------------------------------------------- /forge_scripts/DeployGovernanceReceiver.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/forge_scripts/DeployGovernanceReceiver.s.sol -------------------------------------------------------------------------------- /forge_scripts/DeployGovernanceRelay.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/forge_scripts/DeployGovernanceRelay.s.sol -------------------------------------------------------------------------------- /forge_scripts/DeployNumberUpdater.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/forge_scripts/DeployNumberUpdater.s.sol -------------------------------------------------------------------------------- /forge_scripts/RelayMessage.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/forge_scripts/RelayMessage.s.sol -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/foundry.toml -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/package.json -------------------------------------------------------------------------------- /remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/remappings.txt -------------------------------------------------------------------------------- /scripts/CIP-11.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-11.ts -------------------------------------------------------------------------------- /scripts/CIP-12.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-12.ts -------------------------------------------------------------------------------- /scripts/CIP-13.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-13.ts -------------------------------------------------------------------------------- /scripts/CIP-14.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-14.ts -------------------------------------------------------------------------------- /scripts/CIP-15.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-15.ts -------------------------------------------------------------------------------- /scripts/CIP-19.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-19.ts -------------------------------------------------------------------------------- /scripts/CIP-2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-2.ts -------------------------------------------------------------------------------- /scripts/CIP-20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-20.ts -------------------------------------------------------------------------------- /scripts/CIP-21.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-21.ts -------------------------------------------------------------------------------- /scripts/CIP-22.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-22.ts -------------------------------------------------------------------------------- /scripts/CIP-23.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-23.ts -------------------------------------------------------------------------------- /scripts/CIP-24.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-24.ts -------------------------------------------------------------------------------- /scripts/CIP-25-26.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-25-26.ts -------------------------------------------------------------------------------- /scripts/CIP-27.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-27.ts -------------------------------------------------------------------------------- /scripts/CIP-29.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-29.ts -------------------------------------------------------------------------------- /scripts/CIP-3-4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-3-4.ts -------------------------------------------------------------------------------- /scripts/CIP-30.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-30.ts -------------------------------------------------------------------------------- /scripts/CIP-36.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-36.ts -------------------------------------------------------------------------------- /scripts/CIP-37.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-37.ts -------------------------------------------------------------------------------- /scripts/CIP-38.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-38.ts -------------------------------------------------------------------------------- /scripts/CIP-39.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-39.ts -------------------------------------------------------------------------------- /scripts/CIP-5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-5.ts -------------------------------------------------------------------------------- /scripts/CIP-7-10.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-7-10.ts -------------------------------------------------------------------------------- /scripts/CIP-8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/CIP-8.ts -------------------------------------------------------------------------------- /scripts/examples/addVaultHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/examples/addVaultHandler.ts -------------------------------------------------------------------------------- /scripts/examples/arbitrumDemo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/examples/arbitrumDemo.ts -------------------------------------------------------------------------------- /scripts/proposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/proposal.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test.sh -------------------------------------------------------------------------------- /test/ChainlinkOracle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/ChainlinkOracle.test.js -------------------------------------------------------------------------------- /test/ERCNon18DecimalsVaultHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/ERCNon18DecimalsVaultHandler.test.ts -------------------------------------------------------------------------------- /test/ERCVaultHandler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/ERCVaultHandler.test.js -------------------------------------------------------------------------------- /test/ETHVaultHandler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/ETHVaultHandler.test.js -------------------------------------------------------------------------------- /test/HardETHVaultHandler.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/HardETHVaultHandler.t.sol -------------------------------------------------------------------------------- /test/LinkAave.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/LinkAave.t.sol -------------------------------------------------------------------------------- /test/LiquidityRewards.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/LiquidityRewards.test.js -------------------------------------------------------------------------------- /test/MATICVaultHandler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/MATICVaultHandler.test.js -------------------------------------------------------------------------------- /test/OptimisticTreasury.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/OptimisticTreasury.t.sol -------------------------------------------------------------------------------- /test/Orchestrator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/Orchestrator.test.js -------------------------------------------------------------------------------- /test/RewardHandler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/RewardHandler.test.js -------------------------------------------------------------------------------- /test/TCAP.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/TCAP.test.js -------------------------------------------------------------------------------- /test/VaultsPausing.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/VaultsPausing.t.sol -------------------------------------------------------------------------------- /test/arbitrum/ArbitrumBridgeTest.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/ArbitrumBridgeTest.t.sol -------------------------------------------------------------------------------- /test/arbitrum/ArbitrumMessages.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/ArbitrumMessages.t.sol -------------------------------------------------------------------------------- /test/arbitrum/ArbitrumOrchestartor.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/ArbitrumOrchestartor.t.sol -------------------------------------------------------------------------------- /test/arbitrum/ArbitrumTreasury.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/ArbitrumTreasury.sol -------------------------------------------------------------------------------- /test/arbitrum/GovernanceBridgeIntegration.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/GovernanceBridgeIntegration.t.sol -------------------------------------------------------------------------------- /test/arbitrum/JPEGZBridgeFork.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/JPEGZBridgeFork.t.sol -------------------------------------------------------------------------------- /test/arbitrum/JPEGzMainnetOracleFork.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/JPEGzMainnetOracleFork.t.sol -------------------------------------------------------------------------------- /test/arbitrum/L2AdminProxy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/L2AdminProxy.t.sol -------------------------------------------------------------------------------- /test/arbitrum/L2MessageExecutorProxy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/L2MessageExecutorProxy.t.sol -------------------------------------------------------------------------------- /test/arbitrum/mocks/MockInbox.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/arbitrum/mocks/MockInbox.sol -------------------------------------------------------------------------------- /test/base/CryptexBaseTreasuryTest.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/base/CryptexBaseTreasuryTest.t.sol -------------------------------------------------------------------------------- /test/ccip/GovernanceCCIPIntegrationTest.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/ccip/GovernanceCCIPIntegrationTest.t.sol -------------------------------------------------------------------------------- /test/ccip/GovernanceCCIPReceiverTest.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/ccip/GovernanceCCIPReceiverTest.t.sol -------------------------------------------------------------------------------- /test/ccip/GovernanceCCIPRelayTest.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/ccip/GovernanceCCIPRelayTest.t.sol -------------------------------------------------------------------------------- /test/governance/Ctx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/governance/Ctx.test.ts -------------------------------------------------------------------------------- /test/governance/GovernorBeta.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/governance/GovernorBeta.test.ts -------------------------------------------------------------------------------- /test/governance/TreasuryVester.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/governance/TreasuryVester.test.ts -------------------------------------------------------------------------------- /test/governance/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/governance/fixtures.ts -------------------------------------------------------------------------------- /test/governance/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/governance/utils.ts -------------------------------------------------------------------------------- /test/interfaces/IArbitrumInboxErrors.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/interfaces/IArbitrumInboxErrors.sol -------------------------------------------------------------------------------- /test/interfaces/ICtx.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/interfaces/ICtx.sol -------------------------------------------------------------------------------- /test/interfaces/IGovernorBeta.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/interfaces/IGovernorBeta.sol -------------------------------------------------------------------------------- /test/interfaces/ITimelock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/interfaces/ITimelock.sol -------------------------------------------------------------------------------- /test/polygon/IntegrationTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/polygon/IntegrationTest.ts -------------------------------------------------------------------------------- /test/polygon/PolygonL2Messenger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/polygon/PolygonL2Messenger.test.ts -------------------------------------------------------------------------------- /test/proposals/TestProposal.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/proposals/TestProposal.t.sol -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptexfinance/contracts/HEAD/yarn.lock --------------------------------------------------------------------------------