@raac/rpc 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +269 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +1335 -0
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1724 -0
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +1192 -0
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +215 -0
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +858 -0
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +814 -0
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +893 -0
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +1205 -0
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +1616 -0
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +479 -0
- package/dist/artifacts/zeno/Auction.sol/Auction.json +473 -0
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +307 -0
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +620 -0
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +275 -0
- package/dist/assets/getAsset.js +23 -0
- package/dist/assets/getAssets.js +26 -0
- package/dist/assets/getSupply.js +18 -0
- package/dist/configs/chains/8453.json +115 -0
- package/dist/configs/chains/index.js +13 -0
- package/dist/configs/createConfig.js +89 -0
- package/dist/configs/index.js +43 -0
- package/dist/contracts/crvUSDToken/getBalance.js +17 -0
- package/dist/contracts/crvUSDToken/getTotalSupply.js +31 -0
- package/dist/contracts/getContract.js +18 -0
- package/dist/contracts/getContractAddress.js +50 -0
- package/dist/contracts/housePrices/getLatestPrice.js +21 -0
- package/dist/contracts/housePrices/setOracle.js +24 -0
- package/dist/contracts/rcrvUSDToken/getBalance.js +14 -0
- package/dist/contracts/rcrvUSDToken/getTotalSupply.js +30 -0
- package/dist/contracts/zeno/createAuction.js +25 -0
- package/dist/contracts/zeno/createZeno.js +26 -0
- package/dist/contracts/zeno/getAuctions.js +28 -0
- package/dist/contracts/zeno/getZenos.js +28 -0
- package/dist/index.js +7 -0
- package/dist/methods/approveToken.js +35 -0
- package/dist/methods/commons/checkAllowance.js +19 -0
- package/dist/methods/commons/estimateGasPrice.js +23 -0
- package/dist/methods/getAssetBalance.js +33 -0
- package/dist/methods/getAssetsBalance.js +4 -0
- package/dist/minter/get.js +121 -0
- package/dist/minter/getApy.js +28 -0
- package/dist/minter/tick.js +33 -0
- package/dist/nfts/addNewBatch.js +24 -0
- package/dist/nfts/getCurrentBatchSize.js +19 -0
- package/dist/nfts/getDepositedNFTs.js +19 -0
- package/dist/nfts/getHousePrice.js +19 -0
- package/dist/nfts/getOwnedNFTs.js +34 -0
- package/dist/nfts/mint.js +24 -0
- package/dist/nfts/setBaseUri.js +24 -0
- package/dist/pools/lendingPool/borrowFromLendingPool.js +23 -0
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +51 -0
- package/dist/pools/lendingPool/depositToLendingPool.js +35 -0
- package/dist/pools/lendingPool/getHousePrice.js +26 -0
- package/dist/pools/lendingPool/getLendingPoolInfo.js +106 -0
- package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +22 -0
- package/dist/pools/lendingPool/repayToLendingPool.js +28 -0
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +42 -0
- package/dist/pools/lendingPool/withdrawNFTFromLendingPool.js +24 -0
- package/dist/pools/liquidityPool/getLiquidityPoolInfo.js +73 -0
- package/dist/pools/stabilityPool/calculateRAACRewards.js +21 -0
- package/dist/pools/stabilityPool/depositToStabilityPool.js +34 -0
- package/dist/pools/stabilityPool/getStabilityPoolInfo.js +90 -0
- package/dist/pools/stabilityPool/getStabilityPoolTotalDeposits.js +19 -0
- package/dist/pools/stabilityPool/withdrawFromStabilityPool.js +34 -0
- package/dist/scripts/index.js +83 -0
- package/dist/tests/test.js +32 -0
- package/dist/types/RPCLibrary.d.ts +139 -0
- package/dist/types/assets/getAsset.d.ts +5 -0
- package/dist/types/assets/getAssets.d.ts +4 -0
- package/dist/types/assets/getSupply.d.ts +5 -0
- package/dist/types/configs/chains/index.d.ts +11 -0
- package/dist/types/configs/createConfig.d.ts +86 -0
- package/dist/types/configs/index.d.ts +13 -0
- package/dist/types/contracts/crvUSDToken/getBalance.d.ts +2 -0
- package/dist/types/contracts/crvUSDToken/getTotalSupply.d.ts +10 -0
- package/dist/types/contracts/getContract.d.ts +4 -0
- package/dist/types/contracts/getContractAddress.d.ts +10 -0
- package/dist/types/contracts/housePrices/getLatestPrice.d.ts +10 -0
- package/dist/types/contracts/housePrices/setOracle.d.ts +4 -0
- package/dist/types/contracts/rcrvUSDToken/getBalance.d.ts +2 -0
- package/dist/types/contracts/rcrvUSDToken/getTotalSupply.d.ts +10 -0
- package/dist/types/contracts/zeno/createAuction.d.ts +4 -0
- package/dist/types/contracts/zeno/createZeno.d.ts +4 -0
- package/dist/types/contracts/zeno/getAuctions.d.ts +4 -0
- package/dist/types/contracts/zeno/getZenos.d.ts +4 -0
- package/{index.ts → dist/types/index.d.ts} +0 -1
- package/dist/types/methods/approveToken.d.ts +5 -0
- package/dist/types/methods/commons/checkAllowance.d.ts +6 -0
- package/dist/types/methods/commons/estimateGasPrice.d.ts +11 -0
- package/dist/types/methods/getAssetBalance.d.ts +6 -0
- package/dist/types/methods/getAssetsBalance.d.ts +3 -0
- package/dist/types/minter/get.d.ts +17 -0
- package/dist/types/minter/getApy.d.ts +4 -0
- package/dist/types/minter/tick.d.ts +4 -0
- package/dist/types/nfts/addNewBatch.d.ts +4 -0
- package/dist/types/nfts/getCurrentBatchSize.d.ts +4 -0
- package/dist/types/nfts/getDepositedNFTs.d.ts +7 -0
- package/dist/types/nfts/getHousePrice.d.ts +4 -0
- package/dist/types/nfts/getOwnedNFTs.d.ts +7 -0
- package/dist/types/nfts/mint.d.ts +4 -0
- package/dist/types/nfts/setBaseUri.d.ts +4 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/depositToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/getHousePrice.d.ts +4 -0
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +23 -0
- package/dist/types/pools/lendingPool/getLendingPoolTotalLiquidity.d.ts +4 -0
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/withdrawFromLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +4 -0
- package/dist/types/pools/liquidityPool/getLiquidityPoolInfo.d.ts +7 -0
- package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +4 -0
- package/dist/types/pools/stabilityPool/depositToStabilityPool.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +12 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolTotalDeposits.d.ts +4 -0
- package/dist/types/pools/stabilityPool/withdrawFromStabilityPool.d.ts +4 -0
- package/dist/types/scripts/index.d.ts +1 -0
- package/dist/types/tests/test.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +67 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +5 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +205 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +25 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +69 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +69 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +8 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/index.d.ts +4 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +12 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +68 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +6 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +69 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/index.d.ts +4 -0
- package/dist/types/typechain-types/common.d.ts +50 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +708 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +283 -0
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +573 -0
- package/dist/types/typechain-types/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +779 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +815 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +803 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +807 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +612 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +447 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/index.d.ts +14 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +703 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +503 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +165 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +188 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +195 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +935 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/MarketCreator.d.ts +274 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +283 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +572 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +111 -0
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +384 -0
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +415 -0
- package/dist/types/typechain-types/contracts/core/tokens/IndexToken.d.ts +155 -0
- package/dist/types/typechain-types/contracts/core/tokens/LPToken.d.ts +224 -0
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +334 -0
- package/dist/types/typechain-types/contracts/core/tokens/RAACToken.d.ts +401 -0
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +567 -0
- package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +816 -0
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/index.d.ts +10 -0
- package/dist/types/typechain-types/contracts/interfaces/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/contracts/interfaces/IHousePrices.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/IMarketCreator.d.ts +85 -0
- package/dist/types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +73 -0
- package/dist/types/typechain-types/contracts/interfaces/IPoolManager.d.ts +37 -0
- package/dist/types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +164 -0
- package/dist/types/typechain-types/contracts/interfaces/IUSDC.d.ts +129 -0
- package/dist/types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +59 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +300 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +139 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +269 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +235 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +341 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +577 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +279 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +12 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +316 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +235 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +110 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +147 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +497 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +350 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +226 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +195 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +279 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +346 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +397 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +362 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +144 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/index.d.ts +14 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +122 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +186 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +42 -0
- package/dist/types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +55 -0
- package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +87 -0
- package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +60 -0
- package/dist/types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +45 -0
- package/dist/types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +66 -0
- package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/libraries/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +104 -0
- package/dist/types/typechain-types/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +124 -0
- package/dist/types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +20 -0
- package/dist/types/typechain-types/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockFeeCollector.d.ts +708 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +169 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +845 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +72 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +12 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +41 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +45 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +43 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +204 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +211 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +121 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +539 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +55 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +69 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +39 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +47 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +212 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +155 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +229 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +220 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +191 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +155 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +510 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +186 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/mocks/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +275 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +83 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +163 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +141 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +41 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +281 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +203 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +78 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +225 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +71 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +100 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/tests/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +215 -0
- package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +177 -0
- package/dist/types/typechain-types/contracts/zeno/ZENO.d.ts +237 -0
- package/dist/types/typechain-types/contracts/zeno/ZENOFactory.d.ts +151 -0
- package/dist/types/typechain-types/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/erc721a/contracts/IERC721A.d.ts +242 -0
- package/dist/types/typechain-types/erc721a/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/erc721a/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +49 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +268 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +48 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +90 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +86 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +9 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +82 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +63 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +985 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +386 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +716 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +1083 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1124 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1154 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1154 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +976 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +773 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/index.d.ts +7 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1048 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +706 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +205 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +275 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +286 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +1327 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/MarketCreator__factory.d.ts +405 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +930 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +178 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +671 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +729 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +286 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +401 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +635 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +652 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +941 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1264 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IMarketCreator__factory.d.ts +101 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +43 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +189 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +75 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +396 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +165 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +295 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +449 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +307 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +878 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +468 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +380 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +275 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +146 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +153 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +642 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +480 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +256 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +279 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +363 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +436 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +496 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +435 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +194 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +11 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +126 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +246 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +54 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +68 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +111 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +69 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +92 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +74 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/libraries/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +125 -0
- package/dist/types/typechain-types/factories/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +135 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +26 -0
- package/dist/types/typechain-types/factories/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockFeeCollector__factory.d.ts +985 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +212 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +1182 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +91 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +37 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +66 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +62 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +293 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +304 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +740 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +199 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +84 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +109 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +379 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +282 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +388 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +407 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +338 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +278 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +714 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +335 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/mocks/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +351 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +124 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +197 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +183 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +70 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +341 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +247 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +154 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +277 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +80 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +113 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +250 -0
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +320 -0
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +223 -0
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +488 -0
- package/dist/types/typechain-types/factories/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/erc721a/contracts/IERC721A__factory.d.ts +368 -0
- package/dist/types/typechain-types/factories/erc721a/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/erc721a/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/index.d.ts +4 -0
- package/dist/types/typechain-types/index.d.ts +311 -0
- package/dist/types/utils/artifacts.d.ts +1627 -0
- package/dist/types/utils/chain.d.ts +13 -0
- package/dist/types/utils/config.d.ts +0 -0
- package/dist/types/utils/contracts.d.ts +20 -0
- package/dist/types/wallet/assets/approveAsset.d.ts +5 -0
- package/dist/types/wallet/assets/burnAsset.d.ts +5 -0
- package/dist/types/wallet/assets/getAllowance.d.ts +5 -0
- package/dist/types/wallet/assets/getAsset.d.ts +4 -0
- package/dist/types/wallet/assets/getAssets.d.ts +4 -0
- package/dist/types/wallet/assets/getBalance.d.ts +5 -0
- package/dist/types/wallet/assets/mintAsset.d.ts +5 -0
- package/dist/types/wallet/assets/transferAsset.d.ts +5 -0
- package/dist/utils/artifacts.js +65 -0
- package/dist/utils/chain.js +92 -0
- package/{utils/config.ts → dist/utils/config.js} +0 -6
- package/dist/utils/contracts.js +81 -0
- package/dist/wallet/assets/approveAsset.js +35 -0
- package/dist/wallet/assets/burnAsset.js +46 -0
- package/dist/wallet/assets/getAllowance.js +26 -0
- package/dist/wallet/assets/getAsset.js +22 -0
- package/dist/wallet/assets/getAssets.js +26 -0
- package/dist/wallet/assets/getBalance.js +24 -0
- package/dist/wallet/assets/mintAsset.js +47 -0
- package/dist/wallet/assets/transferAsset.js +62 -0
- package/package.json +34 -25
- package/RPCLibrary.ts +0 -358
- package/assets/getAsset.ts +0 -26
- package/assets/getAssets.ts +0 -30
- package/assets/getSupply.ts +0 -23
- package/configs/chains/8453.json +0 -116
- package/configs/chains/chain.d.ts +0 -87
- package/configs/chains/index.ts +0 -13
- package/configs/chains/list.json +0 -3
- package/configs/createConfig.ts +0 -91
- package/configs/index.ts +0 -51
- package/contracts/crvUSDToken/getBalance.ts +0 -23
- package/contracts/crvUSDToken/getTotalSupply.ts +0 -36
- package/contracts/getContract.ts +0 -21
- package/contracts/getContractAddress.ts +0 -61
- package/contracts/housePrices/getLatestPrice.ts +0 -38
- package/contracts/housePrices/setOracle.ts +0 -40
- package/contracts/rcrvUSDToken/getBalance.ts +0 -23
- package/contracts/rcrvUSDToken/getTotalSupply.ts +0 -39
- package/contracts/zeno/createAuction.ts +0 -57
- package/contracts/zeno/createZeno.ts +0 -45
- package/contracts/zeno/getAuctions.ts +0 -38
- package/contracts/zeno/getZenos.ts +0 -38
- package/custom-types.d.ts +0 -20
- package/methods/approveToken.ts +0 -47
- package/methods/commons/checkAllowance.ts +0 -36
- package/methods/commons/estimateGasPrice.ts +0 -21
- package/methods/debug/mintToken.js +0 -83
- package/methods/getAssetBalance.ts +0 -47
- package/methods/getAssetsBalance.ts +0 -9
- package/minter/get.ts +0 -150
- package/minter/getApy.ts +0 -37
- package/minter/tick.ts +0 -40
- package/nfts/addNewBatch.ts +0 -37
- package/nfts/getCurrentBatchSize.ts +0 -26
- package/nfts/getDepositedNFTs.ts +0 -31
- package/nfts/getHousePrice.ts +0 -30
- package/nfts/getOwnedNFTs.ts +0 -46
- package/nfts/mint.ts +0 -43
- package/nfts/setBaseUri.ts +0 -33
- package/pools/lendingPool/borrowFromLendingPool.ts +0 -39
- package/pools/lendingPool/depositNFTToLendingPool.ts +0 -70
- package/pools/lendingPool/depositToLendingPool.ts +0 -52
- package/pools/lendingPool/getHousePrice.ts +0 -46
- package/pools/lendingPool/getLendingPoolInfo.ts +0 -153
- package/pools/lendingPool/getLendingPoolTotalLiquidity.ts +0 -32
- package/pools/lendingPool/repayToLendingPool.ts +0 -52
- package/pools/lendingPool/withdrawFromLendingPool.ts +0 -68
- package/pools/lendingPool/withdrawNFTFromLendingPool.ts +0 -39
- package/pools/liquidityPool/getLiquidityPoolInfo.ts +0 -90
- package/pools/stabilityPool/calculateRAACRewards.ts +0 -37
- package/pools/stabilityPool/depositToStabilityPool.ts +0 -47
- package/pools/stabilityPool/getStabilityPoolInfo.ts +0 -121
- package/pools/stabilityPool/getStabilityPoolTotalDeposits.ts +0 -27
- package/pools/stabilityPool/withdrawFromStabilityPool.ts +0 -47
- package/sync-contracts.sh +0 -63
- package/tests/test.ts +0 -40
- package/tsconfig.json +0 -113
- package/utils/artifacts.ts +0 -66
- package/utils/chain.ts +0 -94
- package/utils/contracts.ts +0 -94
- package/wallet/assets/approveAsset.ts +0 -44
- package/wallet/assets/burnAsset.ts +0 -55
- package/wallet/assets/getAllowance.ts +0 -38
- package/wallet/assets/getAsset.ts +0 -33
- package/wallet/assets/getAssets.ts +0 -35
- package/wallet/assets/getBalance.ts +0 -34
- package/wallet/assets/mintAsset.ts +0 -57
- package/wallet/assets/transferAsset.ts +0 -78
|
@@ -0,0 +1,1335 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "RAACMinter",
|
|
4
|
+
"sourceName": "contracts/core/minters/RAACMinter/RAACMinter.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_raacToken",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "_stabilityPool",
|
|
16
|
+
"type": "address"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"internalType": "address",
|
|
20
|
+
"name": "_lendingPool",
|
|
21
|
+
"type": "address"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"internalType": "address",
|
|
25
|
+
"name": "initialOwner",
|
|
26
|
+
"type": "address"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"stateMutability": "nonpayable",
|
|
30
|
+
"type": "constructor"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [],
|
|
34
|
+
"name": "AccessControlBadConfirmation",
|
|
35
|
+
"type": "error"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"inputs": [
|
|
39
|
+
{
|
|
40
|
+
"internalType": "address",
|
|
41
|
+
"name": "account",
|
|
42
|
+
"type": "address"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"internalType": "bytes32",
|
|
46
|
+
"name": "neededRole",
|
|
47
|
+
"type": "bytes32"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "AccessControlUnauthorizedAccount",
|
|
51
|
+
"type": "error"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"inputs": [
|
|
55
|
+
{
|
|
56
|
+
"internalType": "address",
|
|
57
|
+
"name": "target",
|
|
58
|
+
"type": "address"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"name": "AddressEmptyCode",
|
|
62
|
+
"type": "error"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"inputs": [
|
|
66
|
+
{
|
|
67
|
+
"internalType": "address",
|
|
68
|
+
"name": "account",
|
|
69
|
+
"type": "address"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"name": "AddressInsufficientBalance",
|
|
73
|
+
"type": "error"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"inputs": [],
|
|
77
|
+
"name": "BurnTaxRateExceedsLimit",
|
|
78
|
+
"type": "error"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"inputs": [],
|
|
82
|
+
"name": "EmissionUpdateTooFrequent",
|
|
83
|
+
"type": "error"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"inputs": [],
|
|
87
|
+
"name": "EnforcedPause",
|
|
88
|
+
"type": "error"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"inputs": [],
|
|
92
|
+
"name": "ExpectedPause",
|
|
93
|
+
"type": "error"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"inputs": [],
|
|
97
|
+
"name": "FailedInnerCall",
|
|
98
|
+
"type": "error"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"inputs": [],
|
|
102
|
+
"name": "FeeCollectorCannotBeZeroAddress",
|
|
103
|
+
"type": "error"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"inputs": [],
|
|
107
|
+
"name": "InvalidAdjustmentFactor",
|
|
108
|
+
"type": "error"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"inputs": [],
|
|
112
|
+
"name": "InvalidBenchmarkRate",
|
|
113
|
+
"type": "error"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"inputs": [],
|
|
117
|
+
"name": "InvalidBlockNumber",
|
|
118
|
+
"type": "error"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"inputs": [],
|
|
122
|
+
"name": "InvalidEmissionUpdateInterval",
|
|
123
|
+
"type": "error"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"inputs": [],
|
|
127
|
+
"name": "InvalidMaxEmissionRate",
|
|
128
|
+
"type": "error"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"inputs": [],
|
|
132
|
+
"name": "InvalidMinEmissionRate",
|
|
133
|
+
"type": "error"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"inputs": [],
|
|
137
|
+
"name": "InvalidParameter",
|
|
138
|
+
"type": "error"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"inputs": [],
|
|
142
|
+
"name": "InvalidUtilizationTarget",
|
|
143
|
+
"type": "error"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"inputs": [],
|
|
147
|
+
"name": "NoOwnershipTransferPending",
|
|
148
|
+
"type": "error"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"inputs": [],
|
|
152
|
+
"name": "OnlyStabilityPool",
|
|
153
|
+
"type": "error"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"inputs": [
|
|
157
|
+
{
|
|
158
|
+
"internalType": "address",
|
|
159
|
+
"name": "owner",
|
|
160
|
+
"type": "address"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"name": "OwnableInvalidOwner",
|
|
164
|
+
"type": "error"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"inputs": [
|
|
168
|
+
{
|
|
169
|
+
"internalType": "address",
|
|
170
|
+
"name": "account",
|
|
171
|
+
"type": "address"
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"name": "OwnableUnauthorizedAccount",
|
|
175
|
+
"type": "error"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"inputs": [],
|
|
179
|
+
"name": "OwnershipTransferExpired",
|
|
180
|
+
"type": "error"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"inputs": [],
|
|
184
|
+
"name": "OwnershipTransferNotDue",
|
|
185
|
+
"type": "error"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"inputs": [],
|
|
189
|
+
"name": "ReentrancyGuardReentrantCall",
|
|
190
|
+
"type": "error"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"inputs": [
|
|
194
|
+
{
|
|
195
|
+
"internalType": "address",
|
|
196
|
+
"name": "token",
|
|
197
|
+
"type": "address"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"name": "SafeERC20FailedOperation",
|
|
201
|
+
"type": "error"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"inputs": [],
|
|
205
|
+
"name": "SwapTaxRateExceedsLimit",
|
|
206
|
+
"type": "error"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"inputs": [],
|
|
210
|
+
"name": "ZeroAddress",
|
|
211
|
+
"type": "error"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"anonymous": false,
|
|
215
|
+
"inputs": [
|
|
216
|
+
{
|
|
217
|
+
"indexed": false,
|
|
218
|
+
"internalType": "uint256",
|
|
219
|
+
"name": "oldFactor",
|
|
220
|
+
"type": "uint256"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"indexed": false,
|
|
224
|
+
"internalType": "uint256",
|
|
225
|
+
"name": "newFactor",
|
|
226
|
+
"type": "uint256"
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"name": "AdjustmentFactorUpdated",
|
|
230
|
+
"type": "event"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"anonymous": false,
|
|
234
|
+
"inputs": [
|
|
235
|
+
{
|
|
236
|
+
"indexed": false,
|
|
237
|
+
"internalType": "uint256",
|
|
238
|
+
"name": "oldRate",
|
|
239
|
+
"type": "uint256"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"indexed": false,
|
|
243
|
+
"internalType": "uint256",
|
|
244
|
+
"name": "newRate",
|
|
245
|
+
"type": "uint256"
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"name": "BenchmarkRateUpdated",
|
|
249
|
+
"type": "event"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"anonymous": false,
|
|
253
|
+
"inputs": [
|
|
254
|
+
{
|
|
255
|
+
"indexed": true,
|
|
256
|
+
"internalType": "address",
|
|
257
|
+
"name": "initiator",
|
|
258
|
+
"type": "address"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"indexed": false,
|
|
262
|
+
"internalType": "uint256",
|
|
263
|
+
"name": "lastUpdateBlock",
|
|
264
|
+
"type": "uint256"
|
|
265
|
+
}
|
|
266
|
+
],
|
|
267
|
+
"name": "EmergencyShutdown",
|
|
268
|
+
"type": "event"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"anonymous": false,
|
|
272
|
+
"inputs": [
|
|
273
|
+
{
|
|
274
|
+
"indexed": false,
|
|
275
|
+
"internalType": "uint256",
|
|
276
|
+
"name": "newRate",
|
|
277
|
+
"type": "uint256"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"name": "EmissionRateUpdated",
|
|
281
|
+
"type": "event"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"anonymous": false,
|
|
285
|
+
"inputs": [
|
|
286
|
+
{
|
|
287
|
+
"indexed": false,
|
|
288
|
+
"internalType": "uint256",
|
|
289
|
+
"name": "oldInterval",
|
|
290
|
+
"type": "uint256"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"indexed": false,
|
|
294
|
+
"internalType": "uint256",
|
|
295
|
+
"name": "newInterval",
|
|
296
|
+
"type": "uint256"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"name": "EmissionUpdateIntervalUpdated",
|
|
300
|
+
"type": "event"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"anonymous": false,
|
|
304
|
+
"inputs": [
|
|
305
|
+
{
|
|
306
|
+
"indexed": false,
|
|
307
|
+
"internalType": "uint256",
|
|
308
|
+
"name": "newLastUpdateBlock",
|
|
309
|
+
"type": "uint256"
|
|
310
|
+
}
|
|
311
|
+
],
|
|
312
|
+
"name": "LastUpdateBlockSet",
|
|
313
|
+
"type": "event"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"anonymous": false,
|
|
317
|
+
"inputs": [
|
|
318
|
+
{
|
|
319
|
+
"indexed": false,
|
|
320
|
+
"internalType": "uint256",
|
|
321
|
+
"name": "oldRate",
|
|
322
|
+
"type": "uint256"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"indexed": false,
|
|
326
|
+
"internalType": "uint256",
|
|
327
|
+
"name": "newRate",
|
|
328
|
+
"type": "uint256"
|
|
329
|
+
}
|
|
330
|
+
],
|
|
331
|
+
"name": "MaxEmissionRateUpdated",
|
|
332
|
+
"type": "event"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"anonymous": false,
|
|
336
|
+
"inputs": [
|
|
337
|
+
{
|
|
338
|
+
"indexed": false,
|
|
339
|
+
"internalType": "uint256",
|
|
340
|
+
"name": "oldRate",
|
|
341
|
+
"type": "uint256"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"indexed": false,
|
|
345
|
+
"internalType": "uint256",
|
|
346
|
+
"name": "newRate",
|
|
347
|
+
"type": "uint256"
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"name": "MinEmissionRateUpdated",
|
|
351
|
+
"type": "event"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"anonymous": false,
|
|
355
|
+
"inputs": [
|
|
356
|
+
{
|
|
357
|
+
"indexed": true,
|
|
358
|
+
"internalType": "address",
|
|
359
|
+
"name": "previousOwner",
|
|
360
|
+
"type": "address"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"indexed": true,
|
|
364
|
+
"internalType": "address",
|
|
365
|
+
"name": "newOwner",
|
|
366
|
+
"type": "address"
|
|
367
|
+
}
|
|
368
|
+
],
|
|
369
|
+
"name": "OwnershipTransferred",
|
|
370
|
+
"type": "event"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"anonymous": false,
|
|
374
|
+
"inputs": [
|
|
375
|
+
{
|
|
376
|
+
"indexed": true,
|
|
377
|
+
"internalType": "string",
|
|
378
|
+
"name": "parameter",
|
|
379
|
+
"type": "string"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"indexed": false,
|
|
383
|
+
"internalType": "uint256",
|
|
384
|
+
"name": "newValue",
|
|
385
|
+
"type": "uint256"
|
|
386
|
+
}
|
|
387
|
+
],
|
|
388
|
+
"name": "ParameterUpdated",
|
|
389
|
+
"type": "event"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"anonymous": false,
|
|
393
|
+
"inputs": [
|
|
394
|
+
{
|
|
395
|
+
"indexed": false,
|
|
396
|
+
"internalType": "address",
|
|
397
|
+
"name": "account",
|
|
398
|
+
"type": "address"
|
|
399
|
+
}
|
|
400
|
+
],
|
|
401
|
+
"name": "Paused",
|
|
402
|
+
"type": "event"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"anonymous": false,
|
|
406
|
+
"inputs": [
|
|
407
|
+
{
|
|
408
|
+
"indexed": false,
|
|
409
|
+
"internalType": "uint256",
|
|
410
|
+
"name": "amount",
|
|
411
|
+
"type": "uint256"
|
|
412
|
+
}
|
|
413
|
+
],
|
|
414
|
+
"name": "RAACMinted",
|
|
415
|
+
"type": "event"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"anonymous": false,
|
|
419
|
+
"inputs": [
|
|
420
|
+
{
|
|
421
|
+
"indexed": true,
|
|
422
|
+
"internalType": "address",
|
|
423
|
+
"name": "newOwner",
|
|
424
|
+
"type": "address"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"indexed": false,
|
|
428
|
+
"internalType": "uint256",
|
|
429
|
+
"name": "effectiveTime",
|
|
430
|
+
"type": "uint256"
|
|
431
|
+
}
|
|
432
|
+
],
|
|
433
|
+
"name": "RAACTokenOwnershipTransferInitiated",
|
|
434
|
+
"type": "event"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"anonymous": false,
|
|
438
|
+
"inputs": [
|
|
439
|
+
{
|
|
440
|
+
"indexed": true,
|
|
441
|
+
"internalType": "address",
|
|
442
|
+
"name": "newOwner",
|
|
443
|
+
"type": "address"
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
"name": "RAACTokenOwnershipTransferred",
|
|
447
|
+
"type": "event"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"anonymous": false,
|
|
451
|
+
"inputs": [
|
|
452
|
+
{
|
|
453
|
+
"indexed": true,
|
|
454
|
+
"internalType": "bytes32",
|
|
455
|
+
"name": "role",
|
|
456
|
+
"type": "bytes32"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"indexed": true,
|
|
460
|
+
"internalType": "bytes32",
|
|
461
|
+
"name": "previousAdminRole",
|
|
462
|
+
"type": "bytes32"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"indexed": true,
|
|
466
|
+
"internalType": "bytes32",
|
|
467
|
+
"name": "newAdminRole",
|
|
468
|
+
"type": "bytes32"
|
|
469
|
+
}
|
|
470
|
+
],
|
|
471
|
+
"name": "RoleAdminChanged",
|
|
472
|
+
"type": "event"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"anonymous": false,
|
|
476
|
+
"inputs": [
|
|
477
|
+
{
|
|
478
|
+
"indexed": true,
|
|
479
|
+
"internalType": "bytes32",
|
|
480
|
+
"name": "role",
|
|
481
|
+
"type": "bytes32"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"indexed": true,
|
|
485
|
+
"internalType": "address",
|
|
486
|
+
"name": "account",
|
|
487
|
+
"type": "address"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"indexed": true,
|
|
491
|
+
"internalType": "address",
|
|
492
|
+
"name": "sender",
|
|
493
|
+
"type": "address"
|
|
494
|
+
}
|
|
495
|
+
],
|
|
496
|
+
"name": "RoleGranted",
|
|
497
|
+
"type": "event"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"anonymous": false,
|
|
501
|
+
"inputs": [
|
|
502
|
+
{
|
|
503
|
+
"indexed": true,
|
|
504
|
+
"internalType": "bytes32",
|
|
505
|
+
"name": "role",
|
|
506
|
+
"type": "bytes32"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"indexed": true,
|
|
510
|
+
"internalType": "address",
|
|
511
|
+
"name": "account",
|
|
512
|
+
"type": "address"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"indexed": true,
|
|
516
|
+
"internalType": "address",
|
|
517
|
+
"name": "sender",
|
|
518
|
+
"type": "address"
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
"name": "RoleRevoked",
|
|
522
|
+
"type": "event"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"anonymous": false,
|
|
526
|
+
"inputs": [
|
|
527
|
+
{
|
|
528
|
+
"indexed": false,
|
|
529
|
+
"internalType": "address",
|
|
530
|
+
"name": "account",
|
|
531
|
+
"type": "address"
|
|
532
|
+
}
|
|
533
|
+
],
|
|
534
|
+
"name": "Unpaused",
|
|
535
|
+
"type": "event"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"anonymous": false,
|
|
539
|
+
"inputs": [
|
|
540
|
+
{
|
|
541
|
+
"indexed": false,
|
|
542
|
+
"internalType": "uint256",
|
|
543
|
+
"name": "oldTarget",
|
|
544
|
+
"type": "uint256"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"indexed": false,
|
|
548
|
+
"internalType": "uint256",
|
|
549
|
+
"name": "newTarget",
|
|
550
|
+
"type": "uint256"
|
|
551
|
+
}
|
|
552
|
+
],
|
|
553
|
+
"name": "UtilizationTargetUpdated",
|
|
554
|
+
"type": "event"
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"inputs": [],
|
|
558
|
+
"name": "BASE_EMISSION_UPDATE_INTERVAL",
|
|
559
|
+
"outputs": [
|
|
560
|
+
{
|
|
561
|
+
"internalType": "uint256",
|
|
562
|
+
"name": "",
|
|
563
|
+
"type": "uint256"
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"stateMutability": "view",
|
|
567
|
+
"type": "function"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"inputs": [],
|
|
571
|
+
"name": "BLOCKS_PER_DAY",
|
|
572
|
+
"outputs": [
|
|
573
|
+
{
|
|
574
|
+
"internalType": "uint256",
|
|
575
|
+
"name": "",
|
|
576
|
+
"type": "uint256"
|
|
577
|
+
}
|
|
578
|
+
],
|
|
579
|
+
"stateMutability": "view",
|
|
580
|
+
"type": "function"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"inputs": [],
|
|
584
|
+
"name": "DEFAULT_ADMIN_ROLE",
|
|
585
|
+
"outputs": [
|
|
586
|
+
{
|
|
587
|
+
"internalType": "bytes32",
|
|
588
|
+
"name": "",
|
|
589
|
+
"type": "bytes32"
|
|
590
|
+
}
|
|
591
|
+
],
|
|
592
|
+
"stateMutability": "view",
|
|
593
|
+
"type": "function"
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"inputs": [],
|
|
597
|
+
"name": "EMERGENCY_SHUTDOWN_ROLE",
|
|
598
|
+
"outputs": [
|
|
599
|
+
{
|
|
600
|
+
"internalType": "bytes32",
|
|
601
|
+
"name": "",
|
|
602
|
+
"type": "bytes32"
|
|
603
|
+
}
|
|
604
|
+
],
|
|
605
|
+
"stateMutability": "view",
|
|
606
|
+
"type": "function"
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"inputs": [],
|
|
610
|
+
"name": "INITIAL_RATE",
|
|
611
|
+
"outputs": [
|
|
612
|
+
{
|
|
613
|
+
"internalType": "uint256",
|
|
614
|
+
"name": "",
|
|
615
|
+
"type": "uint256"
|
|
616
|
+
}
|
|
617
|
+
],
|
|
618
|
+
"stateMutability": "view",
|
|
619
|
+
"type": "function"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"inputs": [],
|
|
623
|
+
"name": "MAX_ADJUSTMENT_FACTOR",
|
|
624
|
+
"outputs": [
|
|
625
|
+
{
|
|
626
|
+
"internalType": "uint256",
|
|
627
|
+
"name": "",
|
|
628
|
+
"type": "uint256"
|
|
629
|
+
}
|
|
630
|
+
],
|
|
631
|
+
"stateMutability": "view",
|
|
632
|
+
"type": "function"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"inputs": [],
|
|
636
|
+
"name": "MAX_BENCHMARK_RATE",
|
|
637
|
+
"outputs": [
|
|
638
|
+
{
|
|
639
|
+
"internalType": "uint256",
|
|
640
|
+
"name": "",
|
|
641
|
+
"type": "uint256"
|
|
642
|
+
}
|
|
643
|
+
],
|
|
644
|
+
"stateMutability": "view",
|
|
645
|
+
"type": "function"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"inputs": [],
|
|
649
|
+
"name": "MAX_EMISSION_UPDATE_INTERVAL",
|
|
650
|
+
"outputs": [
|
|
651
|
+
{
|
|
652
|
+
"internalType": "uint256",
|
|
653
|
+
"name": "",
|
|
654
|
+
"type": "uint256"
|
|
655
|
+
}
|
|
656
|
+
],
|
|
657
|
+
"stateMutability": "view",
|
|
658
|
+
"type": "function"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"inputs": [],
|
|
662
|
+
"name": "MAX_UTILIZATION_TARGET",
|
|
663
|
+
"outputs": [
|
|
664
|
+
{
|
|
665
|
+
"internalType": "uint256",
|
|
666
|
+
"name": "",
|
|
667
|
+
"type": "uint256"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
"stateMutability": "view",
|
|
671
|
+
"type": "function"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"inputs": [],
|
|
675
|
+
"name": "PAUSER_ROLE",
|
|
676
|
+
"outputs": [
|
|
677
|
+
{
|
|
678
|
+
"internalType": "bytes32",
|
|
679
|
+
"name": "",
|
|
680
|
+
"type": "bytes32"
|
|
681
|
+
}
|
|
682
|
+
],
|
|
683
|
+
"stateMutability": "view",
|
|
684
|
+
"type": "function"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"inputs": [],
|
|
688
|
+
"name": "TIMELOCK_DURATION",
|
|
689
|
+
"outputs": [
|
|
690
|
+
{
|
|
691
|
+
"internalType": "uint256",
|
|
692
|
+
"name": "",
|
|
693
|
+
"type": "uint256"
|
|
694
|
+
}
|
|
695
|
+
],
|
|
696
|
+
"stateMutability": "view",
|
|
697
|
+
"type": "function"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"inputs": [],
|
|
701
|
+
"name": "UPDATER_ROLE",
|
|
702
|
+
"outputs": [
|
|
703
|
+
{
|
|
704
|
+
"internalType": "bytes32",
|
|
705
|
+
"name": "",
|
|
706
|
+
"type": "bytes32"
|
|
707
|
+
}
|
|
708
|
+
],
|
|
709
|
+
"stateMutability": "view",
|
|
710
|
+
"type": "function"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"inputs": [],
|
|
714
|
+
"name": "adjustmentFactor",
|
|
715
|
+
"outputs": [
|
|
716
|
+
{
|
|
717
|
+
"internalType": "uint256",
|
|
718
|
+
"name": "",
|
|
719
|
+
"type": "uint256"
|
|
720
|
+
}
|
|
721
|
+
],
|
|
722
|
+
"stateMutability": "view",
|
|
723
|
+
"type": "function"
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"inputs": [],
|
|
727
|
+
"name": "benchmarkRate",
|
|
728
|
+
"outputs": [
|
|
729
|
+
{
|
|
730
|
+
"internalType": "uint256",
|
|
731
|
+
"name": "",
|
|
732
|
+
"type": "uint256"
|
|
733
|
+
}
|
|
734
|
+
],
|
|
735
|
+
"stateMutability": "view",
|
|
736
|
+
"type": "function"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"inputs": [
|
|
740
|
+
{
|
|
741
|
+
"internalType": "bool",
|
|
742
|
+
"name": "updateLastBlock",
|
|
743
|
+
"type": "bool"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"internalType": "uint256",
|
|
747
|
+
"name": "newLastUpdateBlock",
|
|
748
|
+
"type": "uint256"
|
|
749
|
+
}
|
|
750
|
+
],
|
|
751
|
+
"name": "emergencyShutdown",
|
|
752
|
+
"outputs": [],
|
|
753
|
+
"stateMutability": "nonpayable",
|
|
754
|
+
"type": "function"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"inputs": [],
|
|
758
|
+
"name": "emissionRate",
|
|
759
|
+
"outputs": [
|
|
760
|
+
{
|
|
761
|
+
"internalType": "uint256",
|
|
762
|
+
"name": "",
|
|
763
|
+
"type": "uint256"
|
|
764
|
+
}
|
|
765
|
+
],
|
|
766
|
+
"stateMutability": "view",
|
|
767
|
+
"type": "function"
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"inputs": [],
|
|
771
|
+
"name": "emissionUpdateInterval",
|
|
772
|
+
"outputs": [
|
|
773
|
+
{
|
|
774
|
+
"internalType": "uint256",
|
|
775
|
+
"name": "",
|
|
776
|
+
"type": "uint256"
|
|
777
|
+
}
|
|
778
|
+
],
|
|
779
|
+
"stateMutability": "view",
|
|
780
|
+
"type": "function"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"inputs": [],
|
|
784
|
+
"name": "excessTokens",
|
|
785
|
+
"outputs": [
|
|
786
|
+
{
|
|
787
|
+
"internalType": "uint256",
|
|
788
|
+
"name": "",
|
|
789
|
+
"type": "uint256"
|
|
790
|
+
}
|
|
791
|
+
],
|
|
792
|
+
"stateMutability": "view",
|
|
793
|
+
"type": "function"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"inputs": [],
|
|
797
|
+
"name": "getEmissionRate",
|
|
798
|
+
"outputs": [
|
|
799
|
+
{
|
|
800
|
+
"internalType": "uint256",
|
|
801
|
+
"name": "",
|
|
802
|
+
"type": "uint256"
|
|
803
|
+
}
|
|
804
|
+
],
|
|
805
|
+
"stateMutability": "view",
|
|
806
|
+
"type": "function"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"inputs": [],
|
|
810
|
+
"name": "getExcessTokens",
|
|
811
|
+
"outputs": [
|
|
812
|
+
{
|
|
813
|
+
"internalType": "uint256",
|
|
814
|
+
"name": "",
|
|
815
|
+
"type": "uint256"
|
|
816
|
+
}
|
|
817
|
+
],
|
|
818
|
+
"stateMutability": "view",
|
|
819
|
+
"type": "function"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"inputs": [
|
|
823
|
+
{
|
|
824
|
+
"internalType": "bytes32",
|
|
825
|
+
"name": "role",
|
|
826
|
+
"type": "bytes32"
|
|
827
|
+
}
|
|
828
|
+
],
|
|
829
|
+
"name": "getRoleAdmin",
|
|
830
|
+
"outputs": [
|
|
831
|
+
{
|
|
832
|
+
"internalType": "bytes32",
|
|
833
|
+
"name": "",
|
|
834
|
+
"type": "bytes32"
|
|
835
|
+
}
|
|
836
|
+
],
|
|
837
|
+
"stateMutability": "view",
|
|
838
|
+
"type": "function"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"inputs": [],
|
|
842
|
+
"name": "getTotalSupply",
|
|
843
|
+
"outputs": [
|
|
844
|
+
{
|
|
845
|
+
"internalType": "uint256",
|
|
846
|
+
"name": "",
|
|
847
|
+
"type": "uint256"
|
|
848
|
+
}
|
|
849
|
+
],
|
|
850
|
+
"stateMutability": "view",
|
|
851
|
+
"type": "function"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"inputs": [
|
|
855
|
+
{
|
|
856
|
+
"internalType": "bytes32",
|
|
857
|
+
"name": "role",
|
|
858
|
+
"type": "bytes32"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"internalType": "address",
|
|
862
|
+
"name": "account",
|
|
863
|
+
"type": "address"
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
"name": "grantRole",
|
|
867
|
+
"outputs": [],
|
|
868
|
+
"stateMutability": "nonpayable",
|
|
869
|
+
"type": "function"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"inputs": [
|
|
873
|
+
{
|
|
874
|
+
"internalType": "bytes32",
|
|
875
|
+
"name": "role",
|
|
876
|
+
"type": "bytes32"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"internalType": "address",
|
|
880
|
+
"name": "account",
|
|
881
|
+
"type": "address"
|
|
882
|
+
}
|
|
883
|
+
],
|
|
884
|
+
"name": "hasRole",
|
|
885
|
+
"outputs": [
|
|
886
|
+
{
|
|
887
|
+
"internalType": "bool",
|
|
888
|
+
"name": "",
|
|
889
|
+
"type": "bool"
|
|
890
|
+
}
|
|
891
|
+
],
|
|
892
|
+
"stateMutability": "view",
|
|
893
|
+
"type": "function"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"inputs": [],
|
|
897
|
+
"name": "lastEmissionUpdateTimestamp",
|
|
898
|
+
"outputs": [
|
|
899
|
+
{
|
|
900
|
+
"internalType": "uint256",
|
|
901
|
+
"name": "",
|
|
902
|
+
"type": "uint256"
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
"stateMutability": "view",
|
|
906
|
+
"type": "function"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"inputs": [],
|
|
910
|
+
"name": "lastUpdateBlock",
|
|
911
|
+
"outputs": [
|
|
912
|
+
{
|
|
913
|
+
"internalType": "uint256",
|
|
914
|
+
"name": "",
|
|
915
|
+
"type": "uint256"
|
|
916
|
+
}
|
|
917
|
+
],
|
|
918
|
+
"stateMutability": "view",
|
|
919
|
+
"type": "function"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"inputs": [],
|
|
923
|
+
"name": "lendingPool",
|
|
924
|
+
"outputs": [
|
|
925
|
+
{
|
|
926
|
+
"internalType": "contract ILendingPool",
|
|
927
|
+
"name": "",
|
|
928
|
+
"type": "address"
|
|
929
|
+
}
|
|
930
|
+
],
|
|
931
|
+
"stateMutability": "view",
|
|
932
|
+
"type": "function"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"inputs": [],
|
|
936
|
+
"name": "maxEmissionRate",
|
|
937
|
+
"outputs": [
|
|
938
|
+
{
|
|
939
|
+
"internalType": "uint256",
|
|
940
|
+
"name": "",
|
|
941
|
+
"type": "uint256"
|
|
942
|
+
}
|
|
943
|
+
],
|
|
944
|
+
"stateMutability": "view",
|
|
945
|
+
"type": "function"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"inputs": [],
|
|
949
|
+
"name": "minEmissionRate",
|
|
950
|
+
"outputs": [
|
|
951
|
+
{
|
|
952
|
+
"internalType": "uint256",
|
|
953
|
+
"name": "",
|
|
954
|
+
"type": "uint256"
|
|
955
|
+
}
|
|
956
|
+
],
|
|
957
|
+
"stateMutability": "view",
|
|
958
|
+
"type": "function"
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"inputs": [
|
|
962
|
+
{
|
|
963
|
+
"internalType": "address",
|
|
964
|
+
"name": "to",
|
|
965
|
+
"type": "address"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"internalType": "uint256",
|
|
969
|
+
"name": "amount",
|
|
970
|
+
"type": "uint256"
|
|
971
|
+
}
|
|
972
|
+
],
|
|
973
|
+
"name": "mintRewards",
|
|
974
|
+
"outputs": [],
|
|
975
|
+
"stateMutability": "nonpayable",
|
|
976
|
+
"type": "function"
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"inputs": [],
|
|
980
|
+
"name": "owner",
|
|
981
|
+
"outputs": [
|
|
982
|
+
{
|
|
983
|
+
"internalType": "address",
|
|
984
|
+
"name": "",
|
|
985
|
+
"type": "address"
|
|
986
|
+
}
|
|
987
|
+
],
|
|
988
|
+
"stateMutability": "view",
|
|
989
|
+
"type": "function"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"inputs": [
|
|
993
|
+
{
|
|
994
|
+
"internalType": "bool",
|
|
995
|
+
"name": "updateLastBlock",
|
|
996
|
+
"type": "bool"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"internalType": "uint256",
|
|
1000
|
+
"name": "newLastUpdateBlock",
|
|
1001
|
+
"type": "uint256"
|
|
1002
|
+
}
|
|
1003
|
+
],
|
|
1004
|
+
"name": "pause",
|
|
1005
|
+
"outputs": [],
|
|
1006
|
+
"stateMutability": "nonpayable",
|
|
1007
|
+
"type": "function"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"inputs": [],
|
|
1011
|
+
"name": "paused",
|
|
1012
|
+
"outputs": [
|
|
1013
|
+
{
|
|
1014
|
+
"internalType": "bool",
|
|
1015
|
+
"name": "",
|
|
1016
|
+
"type": "bool"
|
|
1017
|
+
}
|
|
1018
|
+
],
|
|
1019
|
+
"stateMutability": "view",
|
|
1020
|
+
"type": "function"
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"inputs": [],
|
|
1024
|
+
"name": "raacToken",
|
|
1025
|
+
"outputs": [
|
|
1026
|
+
{
|
|
1027
|
+
"internalType": "contract IRAACToken",
|
|
1028
|
+
"name": "",
|
|
1029
|
+
"type": "address"
|
|
1030
|
+
}
|
|
1031
|
+
],
|
|
1032
|
+
"stateMutability": "view",
|
|
1033
|
+
"type": "function"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"inputs": [],
|
|
1037
|
+
"name": "renounceOwnership",
|
|
1038
|
+
"outputs": [],
|
|
1039
|
+
"stateMutability": "nonpayable",
|
|
1040
|
+
"type": "function"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"inputs": [
|
|
1044
|
+
{
|
|
1045
|
+
"internalType": "bytes32",
|
|
1046
|
+
"name": "role",
|
|
1047
|
+
"type": "bytes32"
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"internalType": "address",
|
|
1051
|
+
"name": "callerConfirmation",
|
|
1052
|
+
"type": "address"
|
|
1053
|
+
}
|
|
1054
|
+
],
|
|
1055
|
+
"name": "renounceRole",
|
|
1056
|
+
"outputs": [],
|
|
1057
|
+
"stateMutability": "nonpayable",
|
|
1058
|
+
"type": "function"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"inputs": [
|
|
1062
|
+
{
|
|
1063
|
+
"internalType": "bytes32",
|
|
1064
|
+
"name": "role",
|
|
1065
|
+
"type": "bytes32"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"internalType": "address",
|
|
1069
|
+
"name": "account",
|
|
1070
|
+
"type": "address"
|
|
1071
|
+
}
|
|
1072
|
+
],
|
|
1073
|
+
"name": "revokeRole",
|
|
1074
|
+
"outputs": [],
|
|
1075
|
+
"stateMutability": "nonpayable",
|
|
1076
|
+
"type": "function"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"inputs": [
|
|
1080
|
+
{
|
|
1081
|
+
"internalType": "uint256",
|
|
1082
|
+
"name": "_adjustmentFactor",
|
|
1083
|
+
"type": "uint256"
|
|
1084
|
+
}
|
|
1085
|
+
],
|
|
1086
|
+
"name": "setAdjustmentFactor",
|
|
1087
|
+
"outputs": [],
|
|
1088
|
+
"stateMutability": "nonpayable",
|
|
1089
|
+
"type": "function"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"inputs": [
|
|
1093
|
+
{
|
|
1094
|
+
"internalType": "uint256",
|
|
1095
|
+
"name": "_burnTaxRate",
|
|
1096
|
+
"type": "uint256"
|
|
1097
|
+
}
|
|
1098
|
+
],
|
|
1099
|
+
"name": "setBurnTaxRate",
|
|
1100
|
+
"outputs": [],
|
|
1101
|
+
"stateMutability": "nonpayable",
|
|
1102
|
+
"type": "function"
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"inputs": [
|
|
1106
|
+
{
|
|
1107
|
+
"internalType": "uint256",
|
|
1108
|
+
"name": "_emissionUpdateInterval",
|
|
1109
|
+
"type": "uint256"
|
|
1110
|
+
}
|
|
1111
|
+
],
|
|
1112
|
+
"name": "setEmissionUpdateInterval",
|
|
1113
|
+
"outputs": [],
|
|
1114
|
+
"stateMutability": "nonpayable",
|
|
1115
|
+
"type": "function"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"inputs": [
|
|
1119
|
+
{
|
|
1120
|
+
"internalType": "address",
|
|
1121
|
+
"name": "_feeCollector",
|
|
1122
|
+
"type": "address"
|
|
1123
|
+
}
|
|
1124
|
+
],
|
|
1125
|
+
"name": "setFeeCollector",
|
|
1126
|
+
"outputs": [],
|
|
1127
|
+
"stateMutability": "nonpayable",
|
|
1128
|
+
"type": "function"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"inputs": [
|
|
1132
|
+
{
|
|
1133
|
+
"internalType": "address",
|
|
1134
|
+
"name": "_lendingPool",
|
|
1135
|
+
"type": "address"
|
|
1136
|
+
}
|
|
1137
|
+
],
|
|
1138
|
+
"name": "setLendingPool",
|
|
1139
|
+
"outputs": [],
|
|
1140
|
+
"stateMutability": "nonpayable",
|
|
1141
|
+
"type": "function"
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
"inputs": [
|
|
1145
|
+
{
|
|
1146
|
+
"internalType": "uint256",
|
|
1147
|
+
"name": "_maxEmissionRate",
|
|
1148
|
+
"type": "uint256"
|
|
1149
|
+
}
|
|
1150
|
+
],
|
|
1151
|
+
"name": "setMaxEmissionRate",
|
|
1152
|
+
"outputs": [],
|
|
1153
|
+
"stateMutability": "nonpayable",
|
|
1154
|
+
"type": "function"
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"inputs": [
|
|
1158
|
+
{
|
|
1159
|
+
"internalType": "uint256",
|
|
1160
|
+
"name": "_minEmissionRate",
|
|
1161
|
+
"type": "uint256"
|
|
1162
|
+
}
|
|
1163
|
+
],
|
|
1164
|
+
"name": "setMinEmissionRate",
|
|
1165
|
+
"outputs": [],
|
|
1166
|
+
"stateMutability": "nonpayable",
|
|
1167
|
+
"type": "function"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"inputs": [
|
|
1171
|
+
{
|
|
1172
|
+
"internalType": "address",
|
|
1173
|
+
"name": "_stabilityPool",
|
|
1174
|
+
"type": "address"
|
|
1175
|
+
}
|
|
1176
|
+
],
|
|
1177
|
+
"name": "setStabilityPool",
|
|
1178
|
+
"outputs": [],
|
|
1179
|
+
"stateMutability": "nonpayable",
|
|
1180
|
+
"type": "function"
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"inputs": [
|
|
1184
|
+
{
|
|
1185
|
+
"internalType": "uint256",
|
|
1186
|
+
"name": "_swapTaxRate",
|
|
1187
|
+
"type": "uint256"
|
|
1188
|
+
}
|
|
1189
|
+
],
|
|
1190
|
+
"name": "setSwapTaxRate",
|
|
1191
|
+
"outputs": [],
|
|
1192
|
+
"stateMutability": "nonpayable",
|
|
1193
|
+
"type": "function"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"inputs": [
|
|
1197
|
+
{
|
|
1198
|
+
"internalType": "uint256",
|
|
1199
|
+
"name": "_utilizationTarget",
|
|
1200
|
+
"type": "uint256"
|
|
1201
|
+
}
|
|
1202
|
+
],
|
|
1203
|
+
"name": "setUtilizationTarget",
|
|
1204
|
+
"outputs": [],
|
|
1205
|
+
"stateMutability": "nonpayable",
|
|
1206
|
+
"type": "function"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"inputs": [],
|
|
1210
|
+
"name": "stabilityPool",
|
|
1211
|
+
"outputs": [
|
|
1212
|
+
{
|
|
1213
|
+
"internalType": "contract IStabilityPool",
|
|
1214
|
+
"name": "",
|
|
1215
|
+
"type": "address"
|
|
1216
|
+
}
|
|
1217
|
+
],
|
|
1218
|
+
"stateMutability": "view",
|
|
1219
|
+
"type": "function"
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"inputs": [
|
|
1223
|
+
{
|
|
1224
|
+
"internalType": "bytes4",
|
|
1225
|
+
"name": "interfaceId",
|
|
1226
|
+
"type": "bytes4"
|
|
1227
|
+
}
|
|
1228
|
+
],
|
|
1229
|
+
"name": "supportsInterface",
|
|
1230
|
+
"outputs": [
|
|
1231
|
+
{
|
|
1232
|
+
"internalType": "bool",
|
|
1233
|
+
"name": "",
|
|
1234
|
+
"type": "bool"
|
|
1235
|
+
}
|
|
1236
|
+
],
|
|
1237
|
+
"stateMutability": "view",
|
|
1238
|
+
"type": "function"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"inputs": [],
|
|
1242
|
+
"name": "tick",
|
|
1243
|
+
"outputs": [],
|
|
1244
|
+
"stateMutability": "nonpayable",
|
|
1245
|
+
"type": "function"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"inputs": [
|
|
1249
|
+
{
|
|
1250
|
+
"internalType": "bytes32",
|
|
1251
|
+
"name": "",
|
|
1252
|
+
"type": "bytes32"
|
|
1253
|
+
}
|
|
1254
|
+
],
|
|
1255
|
+
"name": "timeLocks",
|
|
1256
|
+
"outputs": [
|
|
1257
|
+
{
|
|
1258
|
+
"internalType": "uint256",
|
|
1259
|
+
"name": "",
|
|
1260
|
+
"type": "uint256"
|
|
1261
|
+
}
|
|
1262
|
+
],
|
|
1263
|
+
"stateMutability": "view",
|
|
1264
|
+
"type": "function"
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"inputs": [
|
|
1268
|
+
{
|
|
1269
|
+
"internalType": "address",
|
|
1270
|
+
"name": "newOwner",
|
|
1271
|
+
"type": "address"
|
|
1272
|
+
}
|
|
1273
|
+
],
|
|
1274
|
+
"name": "transferOwnership",
|
|
1275
|
+
"outputs": [],
|
|
1276
|
+
"stateMutability": "nonpayable",
|
|
1277
|
+
"type": "function"
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"inputs": [
|
|
1281
|
+
{
|
|
1282
|
+
"internalType": "bool",
|
|
1283
|
+
"name": "updateLastBlock",
|
|
1284
|
+
"type": "bool"
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"internalType": "uint256",
|
|
1288
|
+
"name": "newLastUpdateBlock",
|
|
1289
|
+
"type": "uint256"
|
|
1290
|
+
}
|
|
1291
|
+
],
|
|
1292
|
+
"name": "unpause",
|
|
1293
|
+
"outputs": [],
|
|
1294
|
+
"stateMutability": "nonpayable",
|
|
1295
|
+
"type": "function"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"inputs": [
|
|
1299
|
+
{
|
|
1300
|
+
"internalType": "uint256",
|
|
1301
|
+
"name": "_newRate",
|
|
1302
|
+
"type": "uint256"
|
|
1303
|
+
}
|
|
1304
|
+
],
|
|
1305
|
+
"name": "updateBenchmarkRate",
|
|
1306
|
+
"outputs": [],
|
|
1307
|
+
"stateMutability": "nonpayable",
|
|
1308
|
+
"type": "function"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"inputs": [],
|
|
1312
|
+
"name": "updateEmissionRate",
|
|
1313
|
+
"outputs": [],
|
|
1314
|
+
"stateMutability": "nonpayable",
|
|
1315
|
+
"type": "function"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"inputs": [],
|
|
1319
|
+
"name": "utilizationTarget",
|
|
1320
|
+
"outputs": [
|
|
1321
|
+
{
|
|
1322
|
+
"internalType": "uint256",
|
|
1323
|
+
"name": "",
|
|
1324
|
+
"type": "uint256"
|
|
1325
|
+
}
|
|
1326
|
+
],
|
|
1327
|
+
"stateMutability": "view",
|
|
1328
|
+
"type": "function"
|
|
1329
|
+
}
|
|
1330
|
+
],
|
|
1331
|
+
"bytecode": "0x60a06040526200001b611c2068056bc75e2d6310000062000305565b60085562000035611c20686c6b935b8bbd40000062000305565b6009556005600a556046600b553480156200004f57600080fd5b506040516200218d3803806200218d833981016040819052620000729162000345565b806001600160a01b038116620000a257604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000ad8162000202565b50600180556002805460ff191690556001600160a01b0384161580620000da57506001600160a01b038316155b80620000ed57506001600160a01b038216155b806200010057506001600160a01b038116155b156200011f5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03848116608052600480546001600160a01b031990811686841617909155600580549091169184169190911790556200016b611c20683635c9adc5dea0000062000305565b600781905543600655600d55620001866201518042620003a2565b600e5562015180600f556200019d60008262000252565b50620001ca7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a8262000252565b50620001f77f73e573f9566d61418a34d5de3ff49360f9c51fec37f7486551670290f6285dab8262000252565b5050505050620003c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008281526003602090815260408083206001600160a01b038516845290915281205460ff16620002fb5760008381526003602090815260408083206001600160a01b03861684529091529020805460ff19166001179055620002b23390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001620002ff565b5060005b92915050565b6000826200032357634e487b7160e01b600052601260045260246000fd5b500490565b80516001600160a01b03811681146200034057600080fd5b919050565b600080600080608085870312156200035c57600080fd5b620003678562000328565b9350620003776020860162000328565b9250620003876040860162000328565b9150620003976060860162000328565b905092959194509250565b81810381811115620002ff57634e487b7160e01b600052601160045260246000fd5b608051611d7c620004116000396000818161069d01528181610a4c01528181610bd601528181610deb01528181610e5d01528181611147015281816111c601526113740152611d7c6000f3fe608060405234801561001057600080fd5b50600436106103785760003560e01c80638c3aeb08116101d3578063b88a3f7c11610104578063dc2db84d116100a2578063eaa18f271161007c578063eaa18f27146106e6578063efd12fc8146106ee578063eff8143514610701578063f2fde38b1461071457600080fd5b8063dc2db84d14610685578063e40963f214610698578063e63ab1e9146106bf57600080fd5b8063c4e41b22116100de578063c4e41b2214610658578063cb6741ed14610660578063cdafa64914610669578063d547741f1461067257600080fd5b8063b88a3f7c14610630578063bad49311146105e9578063c0a77da91461065057600080fd5b806398d721e011610171578063a217fddf1161014b578063a217fddf146105f9578063a218141b14610601578063a42dce801461060a578063a59a99731461061d57600080fd5b806398d721e0146105d65780639ba9e5c4146105e95780639d677ec1146105f157600080fd5b80638da5cb5b116101ad5780638da5cb5b146105a05780638e5e11cb146105b157806391d14854146105ba57806396afc450146105cd57600080fd5b80638c3aeb08146105845780638c5f187a1461057a5780638d4564e91461059757600080fd5b80634623c81e116102ad5780635c975abb1161024b5780636bb987fe116102255780636bb987fe146105565780636eaefec81461055f578063715018a61461057257806386ae8bac1461057a57600080fd5b80635c975abb146105255780636822b8bb146105305780636a20de921461054357600080fd5b80634dfbe6f1116102875780634dfbe6f1146104e3578063575014fa146104f65780635794f9d4146104ff5780635b3968511461051257600080fd5b80634623c81e146104b457806347e63380146104be5780634dbac733146104d357600080fd5b80632445c9371161031a5780632f2ff15d116102f45780632f2ff15d1461047357806336568abe146104865780633b45911a146104995780633eaf5d9f146104ac57600080fd5b80632445c9371461043f578063248a9ca31461044757806327d8c1bb1461046a57600080fd5b80630bfc1f75116103565780630bfc1f75146103e75780630f648bca1461040e578063113aa8b114610423578063142fc5821461043657600080fd5b806301ffc9a71461037d5780630342cd21146103a5578063048c661d146103bc575b600080fd5b61039061038b366004611b50565b610727565b60405190151581526020015b60405180910390f35b6103ae600d5481565b60405190815260200161039c565b6004546103cf906001600160a01b031681565b6040516001600160a01b03909116815260200161039c565b6103ae7f2ba088aeac4c69066badb5456997747974789cf8224c06112a8fa3d88cb8092981565b61042161041c366004611b7a565b61075e565b005b610421610431366004611baf565b6107df565b6103ae60095481565b6103ae610899565b6103ae610455366004611b7a565b60009081526003602052604090206001015490565b6103ae600c5481565b610421610481366004611bca565b6108b1565b610421610494366004611bca565b6108dc565b6104216104a7366004611b7a565b610914565b610421610997565b6103ae6202a30081565b6103ae600080516020611d2783398151915281565b6103ae683635c9adc5dea0000081565b6104216104f1366004611b7a565b610af1565b6103ae600f5481565b61042161050d366004611b7a565b610b85565b610421610520366004611b7a565b610c8f565b60025460ff16610390565b61042161053e366004611c04565b610d10565b610421610551366004611c30565b610d51565b6103ae611c2081565b61042161056d366004611c04565b610ec5565b610421610f29565b6103ae6201518081565b610421610592366004611b7a565b610f3b565b6103ae600b5481565b6000546001600160a01b03166103cf565b6103ae60085481565b6103906105c8366004611bca565b610fb3565b6103ae60075481565b6104216105e4366004611baf565b610fde565b6103ae606481565b610421611056565b6103ae600081565b6103ae60065481565b610421610618366004611baf565b6110e9565b6005546103cf906001600160a01b031681565b6103ae61063e366004611b7a565b60106020526000908152604090205481565b6007546103ae565b6103ae6111c2565b6103ae600a5481565b6103ae600e5481565b610421610680366004611bca565b61124b565b610421610693366004611b7a565b611270565b6103cf7f000000000000000000000000000000000000000000000000000000000000000081565b6103ae7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600c546103ae565b6104216106fc366004611c04565b6112f1565b61042161070f366004611b7a565b611323565b610421610722366004611baf565b6113f6565b60006001600160e01b03198216637965db0b60e01b148061075857506301ffc9a760e01b6001600160e01b03198316145b92915050565b600080516020611d2783398151915261077681611439565b600954821061079857604051638052912360e01b815260040160405180910390fd5b600880549083905560408051828152602081018590527f8359ab540da756ff7366c37f8853d542ab5fd94e865744e65be20ae91b02af7d91015b60405180910390a1505050565b600080516020611d278339815191526107f781611439565b6001600160a01b03821661081e5760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0384161790556040516a1b195b991a5b99d41bdbdb60aa1b8152600b015b6040519081900381206001600160a01b0384168252907f3a64504f0bc0c335e2aecb78638a257e0351a3fe0370861fd54ee4190b920933906020015b60405180910390a25050565b6108ae611c20686c6b935b8bbd400000611c62565b81565b6000828152600360205260409020600101546108cc81611439565b6108d68383611443565b50505050565b6001600160a01b03811633146109055760405163334bd91960e11b815260040160405180910390fd5b61090f82826114d7565b505050565b600080516020611d2783398151915261092c81611439565b81158061093b57506201518082115b1561095957604051631e0ea1f760e01b815260040160405180910390fd5b600f80549083905560408051828152602081018590527f44bdf4c27b08858bf057592811f06b65ae5019592d2491f1f02e332ded4db2a091016107d2565b61099f611544565b6109a761156e565b600f5415806109c55750600f54600e546109c19190611c84565b4210155b156109d2576109d2611056565b60065443906000906109e49083611c97565b90508015610ae4576000816007546109fc9190611caa565b90508015610ae25780600c6000828254610a169190611c84565b90915550506006839055600480546040516340c10f1960e01b81526001600160a01b0391821692810192909252602482018390527f000000000000000000000000000000000000000000000000000000000000000016906340c10f1990604401600060405180830381600087803b158015610a9057600080fd5b505af1158015610aa4573d6000803e3d6000fd5b505050507fb8edcf384232216a36dfba640d1eb85eed0635d7a5d2698919ee7aa7bf36dfb681604051610ad991815260200190565b60405180910390a15b505b5050610aef60018055565b565b600080516020611d27833981519152610b0981611439565b811580610b295750610b26611c20686c6b935b8bbd400000611c62565b82115b15610b47576040516305f840af60e31b815260040160405180910390fd5b600d80549083905560408051828152602081018590527fd0b2c4b0d8a73885e6af967e0873f2b6964d56f61cf06fcf57145162b153746591016107d2565b600080516020611d27833981519152610b9d81611439565b6103e8821115610bc0576040516353d892d160e01b815260040160405180910390fd5b6040516315e53e7560e21b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690635794f9d490602401600060405180830381600087803b158015610c2257600080fd5b505af1158015610c36573d6000803e3d6000fd5b50505050604051610c58906a737761705461785261746560a81b8152600b0190565b604051908190038120838252907f3a64504f0bc0c335e2aecb78638a257e0351a3fe0370861fd54ee4190b9209339060200161088d565b600080516020611d27833981519152610ca781611439565b811580610cb45750606482115b15610cd257604051632fb3045560e21b815260040160405180910390fd5b600b80549083905560408051828152602081018590527fee018a4b32d34638feed5025ed7c19ded938c601784251ee13fd898854f0d4b991016107d2565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d3a81611439565b610d42611592565b821561090f5761090f826115e4565b610d59611544565b610d6161156e565b6004546001600160a01b03163314610d8c57604051633cc93d6760e21b815260040160405180910390fd5b600081600c5410610db45781600c6000828254610da99190611c97565b90915550610dc99050565b600c54610dc19083611c97565b6000600c5590505b8015610e50576040516340c10f1960e01b8152306004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906340c10f1990604401600060405180830381600087803b158015610e3757600080fd5b505af1158015610e4b573d6000803e3d6000fd5b505050505b610e846001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016848461164f565b6040518281527fb8edcf384232216a36dfba640d1eb85eed0635d7a5d2698919ee7aa7bf36dfb69060200160405180910390a150610ec160018055565b5050565b6000610ed081611439565b6000600755610edd6116a1565b8215610eec57610eec826115e4565b60065460405190815233907f077382e0341a6d8666d1f8ed15b8c933a01f5c1a3e6c5229e2db8c5dc1c06ae19060200160405180910390a2505050565b610f316116de565b610aef600061170b565b600080516020611d27833981519152610f5381611439565b6008548211610f755760405163acabfa6160e01b815260040160405180910390fd5b600980549083905560408051828152602081018590527fc75dfdf293290d7c0b82cd4bbd3e59891026c72807e6a904d60b099fdf76d3a691016107d2565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600080516020611d27833981519152610ff681611439565b6001600160a01b03821661101d5760405163d92e233d60e01b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b0384161790556040516c1cdd18589a5b1a5d1e541bdbdb609a1b8152600d01610851565b61105e61156e565b6000600f5411801561107e5750600f54600e5461107b9190611c84565b42105b1561109c576040516372c95beb60e11b815260040160405180910390fd5b60006110a661175b565b600781905542600e556040518181529091507fffcc630bf88a67ba7c8b27440787c31777ae923aee1e9bbd0127feea56da2cd0906020015b60405180910390a150565b600080516020611d2783398151915261110181611439565b6001600160a01b038216611128576040516308b522ab60e11b815260040160405180910390fd5b6040516301485b9d60e71b81526001600160a01b0383811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063a42dce8090602401600060405180830381600087803b15801561118b57600080fd5b505af115801561119f573d6000803e3d6000fd5b50505050604051610851906b3332b2a1b7b63632b1ba37b960a11b8152600c0190565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611222573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112469190611cc1565b905090565b60008281526003602052604090206001015461126681611439565b6108d683836114d7565b600080516020611d2783398151915261128881611439565b8115806112955750606482115b156112b3576040516329adebad60e21b815260040160405180910390fd5b600a80549083905560408051828152602081018590527f1fb3715671b01e7683667e5567b072e0309d5d13df0ef9f6446f0006c47c1c7391016107d2565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61131b81611439565b610d426116a1565b600080516020611d2783398151915261133b81611439565b6103e882111561135e57604051637122fedf60e11b815260040160405180910390fd5b60405163eff8143560e01b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063eff8143590602401600060405180830381600087803b1580156113c057600080fd5b505af11580156113d4573d6000803e3d6000fd5b50505050604051610c58906a6275726e5461785261746560a81b8152600b0190565b6113fe6116de565b6001600160a01b03811661142d57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6114368161170b565b50565b6114368133611835565b600061144f8383610fb3565b6114cf5760008381526003602090815260408083206001600160a01b03861684529091529020805460ff191660011790556114873390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610758565b506000610758565b60006114e38383610fb3565b156114cf5760008381526003602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610758565b60026001540361156757604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff1615610aef5760405163d93c066560e01b815260040160405180910390fd5b61159a61186e565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b806000036115f5574360065561161c565b4381111561161657604051631391e11b60e21b815260040160405180910390fd5b60068190555b7f233aad4436659905d00f94d1d3a39c2126a5088956fc9e02d714ce315d0de7f16006546040516110de91815260200190565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261090f908490611891565b6116a961156e565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115c73390565b6000546001600160a01b03163314610aef5760405163118cdaa760e01b8152336004820152602401611424565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806117666118f4565b905060006064600a5460075461177c9190611caa565b6117869190611c62565b9050600b548211156117d7576000816007546117a29190611c84565b90506000600d5482116117b757600d546117b9565b815b905060095481106117cc576009546117ce565b805b94505050505090565b600b5482101561182b57600081600754116117f3576000611801565b816007546118019190611c97565b90506000600d54821061181657600d54611818565b815b905060085481116117cc576008546117ce565b6007549250505090565b61183f8282610fb3565b610ec15760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401611424565b60025460ff16610aef57604051638dfc202b60e01b815260040160405180910390fd5b60006118a66001600160a01b03841683611a19565b905080516000141580156118cb5750808060200190518101906118c99190611cda565b155b1561090f57604051635274afe760e01b81526001600160a01b0384166004820152602401611424565b600080600560009054906101000a90046001600160a01b03166001600160a01b0316630ab30d8a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561194a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196e9190611cc1565b90506000600460009054906101000a90046001600160a01b03166001600160a01b031663168a48226040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e99190611cc1565b9050806000036119fc5760009250505090565b80611a08836064611caa565b611a129190611c62565b9250505090565b6060611a2783836000611a2e565b9392505050565b606081471015611a535760405163cd78605960e01b8152306004820152602401611424565b600080856001600160a01b03168486604051611a6f9190611cf7565b60006040518083038185875af1925050503d8060008114611aac576040519150601f19603f3d011682016040523d82523d6000602084013e611ab1565b606091505b5091509150611ac1868383611acb565b9695505050505050565b606082611ae057611adb82611b27565b611a27565b8151158015611af757506001600160a01b0384163b155b15611b2057604051639996b31560e01b81526001600160a01b0385166004820152602401611424565b5080611a27565b805115611b375780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b600060208284031215611b6257600080fd5b81356001600160e01b031981168114611a2757600080fd5b600060208284031215611b8c57600080fd5b5035919050565b80356001600160a01b0381168114611baa57600080fd5b919050565b600060208284031215611bc157600080fd5b611a2782611b93565b60008060408385031215611bdd57600080fd5b82359150611bed60208401611b93565b90509250929050565b801515811461143657600080fd5b60008060408385031215611c1757600080fd5b8235611c2281611bf6565b946020939093013593505050565b60008060408385031215611c4357600080fd5b611c2283611b93565b634e487b7160e01b600052601160045260246000fd5b600082611c7f57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561075857610758611c4c565b8181038181111561075857610758611c4c565b808202811582820484141761075857610758611c4c565b600060208284031215611cd357600080fd5b5051919050565b600060208284031215611cec57600080fd5b8151611a2781611bf6565b6000825160005b81811015611d185760208186018101518583015201611cfe565b50600092019182525091905056fe73e573f9566d61418a34d5de3ff49360f9c51fec37f7486551670290f6285daba2646970667358221220e6567265c6b1d4208b2abb689d36db455748a2f3eb65feb1c21581288a192d1964736f6c63430008140033",
|
|
1332
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106103785760003560e01c80638c3aeb08116101d3578063b88a3f7c11610104578063dc2db84d116100a2578063eaa18f271161007c578063eaa18f27146106e6578063efd12fc8146106ee578063eff8143514610701578063f2fde38b1461071457600080fd5b8063dc2db84d14610685578063e40963f214610698578063e63ab1e9146106bf57600080fd5b8063c4e41b22116100de578063c4e41b2214610658578063cb6741ed14610660578063cdafa64914610669578063d547741f1461067257600080fd5b8063b88a3f7c14610630578063bad49311146105e9578063c0a77da91461065057600080fd5b806398d721e011610171578063a217fddf1161014b578063a217fddf146105f9578063a218141b14610601578063a42dce801461060a578063a59a99731461061d57600080fd5b806398d721e0146105d65780639ba9e5c4146105e95780639d677ec1146105f157600080fd5b80638da5cb5b116101ad5780638da5cb5b146105a05780638e5e11cb146105b157806391d14854146105ba57806396afc450146105cd57600080fd5b80638c3aeb08146105845780638c5f187a1461057a5780638d4564e91461059757600080fd5b80634623c81e116102ad5780635c975abb1161024b5780636bb987fe116102255780636bb987fe146105565780636eaefec81461055f578063715018a61461057257806386ae8bac1461057a57600080fd5b80635c975abb146105255780636822b8bb146105305780636a20de921461054357600080fd5b80634dfbe6f1116102875780634dfbe6f1146104e3578063575014fa146104f65780635794f9d4146104ff5780635b3968511461051257600080fd5b80634623c81e146104b457806347e63380146104be5780634dbac733146104d357600080fd5b80632445c9371161031a5780632f2ff15d116102f45780632f2ff15d1461047357806336568abe146104865780633b45911a146104995780633eaf5d9f146104ac57600080fd5b80632445c9371461043f578063248a9ca31461044757806327d8c1bb1461046a57600080fd5b80630bfc1f75116103565780630bfc1f75146103e75780630f648bca1461040e578063113aa8b114610423578063142fc5821461043657600080fd5b806301ffc9a71461037d5780630342cd21146103a5578063048c661d146103bc575b600080fd5b61039061038b366004611b50565b610727565b60405190151581526020015b60405180910390f35b6103ae600d5481565b60405190815260200161039c565b6004546103cf906001600160a01b031681565b6040516001600160a01b03909116815260200161039c565b6103ae7f2ba088aeac4c69066badb5456997747974789cf8224c06112a8fa3d88cb8092981565b61042161041c366004611b7a565b61075e565b005b610421610431366004611baf565b6107df565b6103ae60095481565b6103ae610899565b6103ae610455366004611b7a565b60009081526003602052604090206001015490565b6103ae600c5481565b610421610481366004611bca565b6108b1565b610421610494366004611bca565b6108dc565b6104216104a7366004611b7a565b610914565b610421610997565b6103ae6202a30081565b6103ae600080516020611d2783398151915281565b6103ae683635c9adc5dea0000081565b6104216104f1366004611b7a565b610af1565b6103ae600f5481565b61042161050d366004611b7a565b610b85565b610421610520366004611b7a565b610c8f565b60025460ff16610390565b61042161053e366004611c04565b610d10565b610421610551366004611c30565b610d51565b6103ae611c2081565b61042161056d366004611c04565b610ec5565b610421610f29565b6103ae6201518081565b610421610592366004611b7a565b610f3b565b6103ae600b5481565b6000546001600160a01b03166103cf565b6103ae60085481565b6103906105c8366004611bca565b610fb3565b6103ae60075481565b6104216105e4366004611baf565b610fde565b6103ae606481565b610421611056565b6103ae600081565b6103ae60065481565b610421610618366004611baf565b6110e9565b6005546103cf906001600160a01b031681565b6103ae61063e366004611b7a565b60106020526000908152604090205481565b6007546103ae565b6103ae6111c2565b6103ae600a5481565b6103ae600e5481565b610421610680366004611bca565b61124b565b610421610693366004611b7a565b611270565b6103cf7f000000000000000000000000000000000000000000000000000000000000000081565b6103ae7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600c546103ae565b6104216106fc366004611c04565b6112f1565b61042161070f366004611b7a565b611323565b610421610722366004611baf565b6113f6565b60006001600160e01b03198216637965db0b60e01b148061075857506301ffc9a760e01b6001600160e01b03198316145b92915050565b600080516020611d2783398151915261077681611439565b600954821061079857604051638052912360e01b815260040160405180910390fd5b600880549083905560408051828152602081018590527f8359ab540da756ff7366c37f8853d542ab5fd94e865744e65be20ae91b02af7d91015b60405180910390a1505050565b600080516020611d278339815191526107f781611439565b6001600160a01b03821661081e5760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0384161790556040516a1b195b991a5b99d41bdbdb60aa1b8152600b015b6040519081900381206001600160a01b0384168252907f3a64504f0bc0c335e2aecb78638a257e0351a3fe0370861fd54ee4190b920933906020015b60405180910390a25050565b6108ae611c20686c6b935b8bbd400000611c62565b81565b6000828152600360205260409020600101546108cc81611439565b6108d68383611443565b50505050565b6001600160a01b03811633146109055760405163334bd91960e11b815260040160405180910390fd5b61090f82826114d7565b505050565b600080516020611d2783398151915261092c81611439565b81158061093b57506201518082115b1561095957604051631e0ea1f760e01b815260040160405180910390fd5b600f80549083905560408051828152602081018590527f44bdf4c27b08858bf057592811f06b65ae5019592d2491f1f02e332ded4db2a091016107d2565b61099f611544565b6109a761156e565b600f5415806109c55750600f54600e546109c19190611c84565b4210155b156109d2576109d2611056565b60065443906000906109e49083611c97565b90508015610ae4576000816007546109fc9190611caa565b90508015610ae25780600c6000828254610a169190611c84565b90915550506006839055600480546040516340c10f1960e01b81526001600160a01b0391821692810192909252602482018390527f000000000000000000000000000000000000000000000000000000000000000016906340c10f1990604401600060405180830381600087803b158015610a9057600080fd5b505af1158015610aa4573d6000803e3d6000fd5b505050507fb8edcf384232216a36dfba640d1eb85eed0635d7a5d2698919ee7aa7bf36dfb681604051610ad991815260200190565b60405180910390a15b505b5050610aef60018055565b565b600080516020611d27833981519152610b0981611439565b811580610b295750610b26611c20686c6b935b8bbd400000611c62565b82115b15610b47576040516305f840af60e31b815260040160405180910390fd5b600d80549083905560408051828152602081018590527fd0b2c4b0d8a73885e6af967e0873f2b6964d56f61cf06fcf57145162b153746591016107d2565b600080516020611d27833981519152610b9d81611439565b6103e8821115610bc0576040516353d892d160e01b815260040160405180910390fd5b6040516315e53e7560e21b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690635794f9d490602401600060405180830381600087803b158015610c2257600080fd5b505af1158015610c36573d6000803e3d6000fd5b50505050604051610c58906a737761705461785261746560a81b8152600b0190565b604051908190038120838252907f3a64504f0bc0c335e2aecb78638a257e0351a3fe0370861fd54ee4190b9209339060200161088d565b600080516020611d27833981519152610ca781611439565b811580610cb45750606482115b15610cd257604051632fb3045560e21b815260040160405180910390fd5b600b80549083905560408051828152602081018590527fee018a4b32d34638feed5025ed7c19ded938c601784251ee13fd898854f0d4b991016107d2565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d3a81611439565b610d42611592565b821561090f5761090f826115e4565b610d59611544565b610d6161156e565b6004546001600160a01b03163314610d8c57604051633cc93d6760e21b815260040160405180910390fd5b600081600c5410610db45781600c6000828254610da99190611c97565b90915550610dc99050565b600c54610dc19083611c97565b6000600c5590505b8015610e50576040516340c10f1960e01b8152306004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906340c10f1990604401600060405180830381600087803b158015610e3757600080fd5b505af1158015610e4b573d6000803e3d6000fd5b505050505b610e846001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016848461164f565b6040518281527fb8edcf384232216a36dfba640d1eb85eed0635d7a5d2698919ee7aa7bf36dfb69060200160405180910390a150610ec160018055565b5050565b6000610ed081611439565b6000600755610edd6116a1565b8215610eec57610eec826115e4565b60065460405190815233907f077382e0341a6d8666d1f8ed15b8c933a01f5c1a3e6c5229e2db8c5dc1c06ae19060200160405180910390a2505050565b610f316116de565b610aef600061170b565b600080516020611d27833981519152610f5381611439565b6008548211610f755760405163acabfa6160e01b815260040160405180910390fd5b600980549083905560408051828152602081018590527fc75dfdf293290d7c0b82cd4bbd3e59891026c72807e6a904d60b099fdf76d3a691016107d2565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600080516020611d27833981519152610ff681611439565b6001600160a01b03821661101d5760405163d92e233d60e01b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b0384161790556040516c1cdd18589a5b1a5d1e541bdbdb609a1b8152600d01610851565b61105e61156e565b6000600f5411801561107e5750600f54600e5461107b9190611c84565b42105b1561109c576040516372c95beb60e11b815260040160405180910390fd5b60006110a661175b565b600781905542600e556040518181529091507fffcc630bf88a67ba7c8b27440787c31777ae923aee1e9bbd0127feea56da2cd0906020015b60405180910390a150565b600080516020611d2783398151915261110181611439565b6001600160a01b038216611128576040516308b522ab60e11b815260040160405180910390fd5b6040516301485b9d60e71b81526001600160a01b0383811660048301527f0000000000000000000000000000000000000000000000000000000000000000169063a42dce8090602401600060405180830381600087803b15801561118b57600080fd5b505af115801561119f573d6000803e3d6000fd5b50505050604051610851906b3332b2a1b7b63632b1ba37b960a11b8152600c0190565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611222573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112469190611cc1565b905090565b60008281526003602052604090206001015461126681611439565b6108d683836114d7565b600080516020611d2783398151915261128881611439565b8115806112955750606482115b156112b3576040516329adebad60e21b815260040160405180910390fd5b600a80549083905560408051828152602081018590527f1fb3715671b01e7683667e5567b072e0309d5d13df0ef9f6446f0006c47c1c7391016107d2565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61131b81611439565b610d426116a1565b600080516020611d2783398151915261133b81611439565b6103e882111561135e57604051637122fedf60e11b815260040160405180910390fd5b60405163eff8143560e01b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063eff8143590602401600060405180830381600087803b1580156113c057600080fd5b505af11580156113d4573d6000803e3d6000fd5b50505050604051610c58906a6275726e5461785261746560a81b8152600b0190565b6113fe6116de565b6001600160a01b03811661142d57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6114368161170b565b50565b6114368133611835565b600061144f8383610fb3565b6114cf5760008381526003602090815260408083206001600160a01b03861684529091529020805460ff191660011790556114873390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610758565b506000610758565b60006114e38383610fb3565b156114cf5760008381526003602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610758565b60026001540361156757604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff1615610aef5760405163d93c066560e01b815260040160405180910390fd5b61159a61186e565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b806000036115f5574360065561161c565b4381111561161657604051631391e11b60e21b815260040160405180910390fd5b60068190555b7f233aad4436659905d00f94d1d3a39c2126a5088956fc9e02d714ce315d0de7f16006546040516110de91815260200190565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261090f908490611891565b6116a961156e565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115c73390565b6000546001600160a01b03163314610aef5760405163118cdaa760e01b8152336004820152602401611424565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806117666118f4565b905060006064600a5460075461177c9190611caa565b6117869190611c62565b9050600b548211156117d7576000816007546117a29190611c84565b90506000600d5482116117b757600d546117b9565b815b905060095481106117cc576009546117ce565b805b94505050505090565b600b5482101561182b57600081600754116117f3576000611801565b816007546118019190611c97565b90506000600d54821061181657600d54611818565b815b905060085481116117cc576008546117ce565b6007549250505090565b61183f8282610fb3565b610ec15760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401611424565b60025460ff16610aef57604051638dfc202b60e01b815260040160405180910390fd5b60006118a66001600160a01b03841683611a19565b905080516000141580156118cb5750808060200190518101906118c99190611cda565b155b1561090f57604051635274afe760e01b81526001600160a01b0384166004820152602401611424565b600080600560009054906101000a90046001600160a01b03166001600160a01b0316630ab30d8a6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561194a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196e9190611cc1565b90506000600460009054906101000a90046001600160a01b03166001600160a01b031663168a48226040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e99190611cc1565b9050806000036119fc5760009250505090565b80611a08836064611caa565b611a129190611c62565b9250505090565b6060611a2783836000611a2e565b9392505050565b606081471015611a535760405163cd78605960e01b8152306004820152602401611424565b600080856001600160a01b03168486604051611a6f9190611cf7565b60006040518083038185875af1925050503d8060008114611aac576040519150601f19603f3d011682016040523d82523d6000602084013e611ab1565b606091505b5091509150611ac1868383611acb565b9695505050505050565b606082611ae057611adb82611b27565b611a27565b8151158015611af757506001600160a01b0384163b155b15611b2057604051639996b31560e01b81526001600160a01b0385166004820152602401611424565b5080611a27565b805115611b375780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b600060208284031215611b6257600080fd5b81356001600160e01b031981168114611a2757600080fd5b600060208284031215611b8c57600080fd5b5035919050565b80356001600160a01b0381168114611baa57600080fd5b919050565b600060208284031215611bc157600080fd5b611a2782611b93565b60008060408385031215611bdd57600080fd5b82359150611bed60208401611b93565b90509250929050565b801515811461143657600080fd5b60008060408385031215611c1757600080fd5b8235611c2281611bf6565b946020939093013593505050565b60008060408385031215611c4357600080fd5b611c2283611b93565b634e487b7160e01b600052601160045260246000fd5b600082611c7f57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561075857610758611c4c565b8181038181111561075857610758611c4c565b808202811582820484141761075857610758611c4c565b600060208284031215611cd357600080fd5b5051919050565b600060208284031215611cec57600080fd5b8151611a2781611bf6565b6000825160005b81811015611d185760208186018101518583015201611cfe565b50600092019182525091905056fe73e573f9566d61418a34d5de3ff49360f9c51fec37f7486551670290f6285daba2646970667358221220e6567265c6b1d4208b2abb689d36db455748a2f3eb65feb1c21581288a192d1964736f6c63430008140033",
|
|
1333
|
+
"linkReferences": {},
|
|
1334
|
+
"deployedLinkReferences": {}
|
|
1335
|
+
}
|