@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,1627 @@
|
|
|
1
|
+
declare const ABIS: {
|
|
2
|
+
crvusd: ({
|
|
3
|
+
inputs: {
|
|
4
|
+
internalType: string;
|
|
5
|
+
name: string;
|
|
6
|
+
type: string;
|
|
7
|
+
}[];
|
|
8
|
+
stateMutability: string;
|
|
9
|
+
type: string;
|
|
10
|
+
name?: undefined;
|
|
11
|
+
anonymous?: undefined;
|
|
12
|
+
outputs?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
inputs: {
|
|
15
|
+
internalType: string;
|
|
16
|
+
name: string;
|
|
17
|
+
type: string;
|
|
18
|
+
}[];
|
|
19
|
+
name: string;
|
|
20
|
+
type: string;
|
|
21
|
+
stateMutability?: undefined;
|
|
22
|
+
anonymous?: undefined;
|
|
23
|
+
outputs?: undefined;
|
|
24
|
+
} | {
|
|
25
|
+
anonymous: boolean;
|
|
26
|
+
inputs: {
|
|
27
|
+
indexed: boolean;
|
|
28
|
+
internalType: string;
|
|
29
|
+
name: string;
|
|
30
|
+
type: string;
|
|
31
|
+
}[];
|
|
32
|
+
name: string;
|
|
33
|
+
type: string;
|
|
34
|
+
stateMutability?: undefined;
|
|
35
|
+
outputs?: undefined;
|
|
36
|
+
} | {
|
|
37
|
+
inputs: {
|
|
38
|
+
internalType: string;
|
|
39
|
+
name: string;
|
|
40
|
+
type: string;
|
|
41
|
+
}[];
|
|
42
|
+
name: string;
|
|
43
|
+
outputs: {
|
|
44
|
+
internalType: string;
|
|
45
|
+
name: string;
|
|
46
|
+
type: string;
|
|
47
|
+
}[];
|
|
48
|
+
stateMutability: string;
|
|
49
|
+
type: string;
|
|
50
|
+
anonymous?: undefined;
|
|
51
|
+
})[];
|
|
52
|
+
raacnft: ({
|
|
53
|
+
inputs: {
|
|
54
|
+
internalType: string;
|
|
55
|
+
name: string;
|
|
56
|
+
type: string;
|
|
57
|
+
}[];
|
|
58
|
+
stateMutability: string;
|
|
59
|
+
type: string;
|
|
60
|
+
name?: undefined;
|
|
61
|
+
anonymous?: undefined;
|
|
62
|
+
outputs?: undefined;
|
|
63
|
+
} | {
|
|
64
|
+
inputs: {
|
|
65
|
+
internalType: string;
|
|
66
|
+
name: string;
|
|
67
|
+
type: string;
|
|
68
|
+
}[];
|
|
69
|
+
name: string;
|
|
70
|
+
type: string;
|
|
71
|
+
stateMutability?: undefined;
|
|
72
|
+
anonymous?: undefined;
|
|
73
|
+
outputs?: undefined;
|
|
74
|
+
} | {
|
|
75
|
+
anonymous: boolean;
|
|
76
|
+
inputs: {
|
|
77
|
+
indexed: boolean;
|
|
78
|
+
internalType: string;
|
|
79
|
+
name: string;
|
|
80
|
+
type: string;
|
|
81
|
+
}[];
|
|
82
|
+
name: string;
|
|
83
|
+
type: string;
|
|
84
|
+
stateMutability?: undefined;
|
|
85
|
+
outputs?: undefined;
|
|
86
|
+
} | {
|
|
87
|
+
inputs: {
|
|
88
|
+
internalType: string;
|
|
89
|
+
name: string;
|
|
90
|
+
type: string;
|
|
91
|
+
}[];
|
|
92
|
+
name: string;
|
|
93
|
+
outputs: {
|
|
94
|
+
internalType: string;
|
|
95
|
+
name: string;
|
|
96
|
+
type: string;
|
|
97
|
+
}[];
|
|
98
|
+
stateMutability: string;
|
|
99
|
+
type: string;
|
|
100
|
+
anonymous?: undefined;
|
|
101
|
+
})[];
|
|
102
|
+
raactoken: ({
|
|
103
|
+
inputs: {
|
|
104
|
+
internalType: string;
|
|
105
|
+
name: string;
|
|
106
|
+
type: string;
|
|
107
|
+
}[];
|
|
108
|
+
stateMutability: string;
|
|
109
|
+
type: string;
|
|
110
|
+
name?: undefined;
|
|
111
|
+
anonymous?: undefined;
|
|
112
|
+
outputs?: undefined;
|
|
113
|
+
} | {
|
|
114
|
+
inputs: {
|
|
115
|
+
internalType: string;
|
|
116
|
+
name: string;
|
|
117
|
+
type: string;
|
|
118
|
+
}[];
|
|
119
|
+
name: string;
|
|
120
|
+
type: string;
|
|
121
|
+
stateMutability?: undefined;
|
|
122
|
+
anonymous?: undefined;
|
|
123
|
+
outputs?: undefined;
|
|
124
|
+
} | {
|
|
125
|
+
anonymous: boolean;
|
|
126
|
+
inputs: {
|
|
127
|
+
indexed: boolean;
|
|
128
|
+
internalType: string;
|
|
129
|
+
name: string;
|
|
130
|
+
type: string;
|
|
131
|
+
}[];
|
|
132
|
+
name: string;
|
|
133
|
+
type: string;
|
|
134
|
+
stateMutability?: undefined;
|
|
135
|
+
outputs?: undefined;
|
|
136
|
+
} | {
|
|
137
|
+
inputs: {
|
|
138
|
+
internalType: string;
|
|
139
|
+
name: string;
|
|
140
|
+
type: string;
|
|
141
|
+
}[];
|
|
142
|
+
name: string;
|
|
143
|
+
outputs: {
|
|
144
|
+
internalType: string;
|
|
145
|
+
name: string;
|
|
146
|
+
type: string;
|
|
147
|
+
}[];
|
|
148
|
+
stateMutability: string;
|
|
149
|
+
type: string;
|
|
150
|
+
anonymous?: undefined;
|
|
151
|
+
})[];
|
|
152
|
+
veraac: ({
|
|
153
|
+
inputs: {
|
|
154
|
+
internalType: string;
|
|
155
|
+
name: string;
|
|
156
|
+
type: string;
|
|
157
|
+
}[];
|
|
158
|
+
stateMutability: string;
|
|
159
|
+
type: string;
|
|
160
|
+
name?: undefined;
|
|
161
|
+
anonymous?: undefined;
|
|
162
|
+
outputs?: undefined;
|
|
163
|
+
} | {
|
|
164
|
+
inputs: {
|
|
165
|
+
internalType: string;
|
|
166
|
+
name: string;
|
|
167
|
+
type: string;
|
|
168
|
+
}[];
|
|
169
|
+
name: string;
|
|
170
|
+
type: string;
|
|
171
|
+
stateMutability?: undefined;
|
|
172
|
+
anonymous?: undefined;
|
|
173
|
+
outputs?: undefined;
|
|
174
|
+
} | {
|
|
175
|
+
anonymous: boolean;
|
|
176
|
+
inputs: {
|
|
177
|
+
indexed: boolean;
|
|
178
|
+
internalType: string;
|
|
179
|
+
name: string;
|
|
180
|
+
type: string;
|
|
181
|
+
}[];
|
|
182
|
+
name: string;
|
|
183
|
+
type: string;
|
|
184
|
+
stateMutability?: undefined;
|
|
185
|
+
outputs?: undefined;
|
|
186
|
+
} | {
|
|
187
|
+
inputs: {
|
|
188
|
+
internalType: string;
|
|
189
|
+
name: string;
|
|
190
|
+
type: string;
|
|
191
|
+
}[];
|
|
192
|
+
name: string;
|
|
193
|
+
outputs: {
|
|
194
|
+
internalType: string;
|
|
195
|
+
name: string;
|
|
196
|
+
type: string;
|
|
197
|
+
}[];
|
|
198
|
+
stateMutability: string;
|
|
199
|
+
type: string;
|
|
200
|
+
anonymous?: undefined;
|
|
201
|
+
} | {
|
|
202
|
+
inputs: {
|
|
203
|
+
internalType: string;
|
|
204
|
+
name: string;
|
|
205
|
+
type: string;
|
|
206
|
+
}[];
|
|
207
|
+
name: string;
|
|
208
|
+
outputs: {
|
|
209
|
+
components: {
|
|
210
|
+
internalType: string;
|
|
211
|
+
name: string;
|
|
212
|
+
type: string;
|
|
213
|
+
}[];
|
|
214
|
+
internalType: string;
|
|
215
|
+
name: string;
|
|
216
|
+
type: string;
|
|
217
|
+
}[];
|
|
218
|
+
stateMutability: string;
|
|
219
|
+
type: string;
|
|
220
|
+
anonymous?: undefined;
|
|
221
|
+
})[];
|
|
222
|
+
rcrvusd: ({
|
|
223
|
+
inputs: {
|
|
224
|
+
internalType: string;
|
|
225
|
+
name: string;
|
|
226
|
+
type: string;
|
|
227
|
+
}[];
|
|
228
|
+
stateMutability: string;
|
|
229
|
+
type: string;
|
|
230
|
+
name?: undefined;
|
|
231
|
+
anonymous?: undefined;
|
|
232
|
+
outputs?: undefined;
|
|
233
|
+
} | {
|
|
234
|
+
inputs: {
|
|
235
|
+
internalType: string;
|
|
236
|
+
name: string;
|
|
237
|
+
type: string;
|
|
238
|
+
}[];
|
|
239
|
+
name: string;
|
|
240
|
+
type: string;
|
|
241
|
+
stateMutability?: undefined;
|
|
242
|
+
anonymous?: undefined;
|
|
243
|
+
outputs?: undefined;
|
|
244
|
+
} | {
|
|
245
|
+
anonymous: boolean;
|
|
246
|
+
inputs: {
|
|
247
|
+
indexed: boolean;
|
|
248
|
+
internalType: string;
|
|
249
|
+
name: string;
|
|
250
|
+
type: string;
|
|
251
|
+
}[];
|
|
252
|
+
name: string;
|
|
253
|
+
type: string;
|
|
254
|
+
stateMutability?: undefined;
|
|
255
|
+
outputs?: undefined;
|
|
256
|
+
} | {
|
|
257
|
+
inputs: {
|
|
258
|
+
internalType: string;
|
|
259
|
+
name: string;
|
|
260
|
+
type: string;
|
|
261
|
+
}[];
|
|
262
|
+
name: string;
|
|
263
|
+
outputs: {
|
|
264
|
+
internalType: string;
|
|
265
|
+
name: string;
|
|
266
|
+
type: string;
|
|
267
|
+
}[];
|
|
268
|
+
stateMutability: string;
|
|
269
|
+
type: string;
|
|
270
|
+
anonymous?: undefined;
|
|
271
|
+
})[];
|
|
272
|
+
rtoken: ({
|
|
273
|
+
inputs: {
|
|
274
|
+
internalType: string;
|
|
275
|
+
name: string;
|
|
276
|
+
type: string;
|
|
277
|
+
}[];
|
|
278
|
+
stateMutability: string;
|
|
279
|
+
type: string;
|
|
280
|
+
name?: undefined;
|
|
281
|
+
anonymous?: undefined;
|
|
282
|
+
outputs?: undefined;
|
|
283
|
+
} | {
|
|
284
|
+
inputs: {
|
|
285
|
+
internalType: string;
|
|
286
|
+
name: string;
|
|
287
|
+
type: string;
|
|
288
|
+
}[];
|
|
289
|
+
name: string;
|
|
290
|
+
type: string;
|
|
291
|
+
stateMutability?: undefined;
|
|
292
|
+
anonymous?: undefined;
|
|
293
|
+
outputs?: undefined;
|
|
294
|
+
} | {
|
|
295
|
+
anonymous: boolean;
|
|
296
|
+
inputs: {
|
|
297
|
+
indexed: boolean;
|
|
298
|
+
internalType: string;
|
|
299
|
+
name: string;
|
|
300
|
+
type: string;
|
|
301
|
+
}[];
|
|
302
|
+
name: string;
|
|
303
|
+
type: string;
|
|
304
|
+
stateMutability?: undefined;
|
|
305
|
+
outputs?: undefined;
|
|
306
|
+
} | {
|
|
307
|
+
inputs: {
|
|
308
|
+
internalType: string;
|
|
309
|
+
name: string;
|
|
310
|
+
type: string;
|
|
311
|
+
}[];
|
|
312
|
+
name: string;
|
|
313
|
+
outputs: {
|
|
314
|
+
internalType: string;
|
|
315
|
+
name: string;
|
|
316
|
+
type: string;
|
|
317
|
+
}[];
|
|
318
|
+
stateMutability: string;
|
|
319
|
+
type: string;
|
|
320
|
+
anonymous?: undefined;
|
|
321
|
+
})[];
|
|
322
|
+
detoken: ({
|
|
323
|
+
inputs: {
|
|
324
|
+
internalType: string;
|
|
325
|
+
name: string;
|
|
326
|
+
type: string;
|
|
327
|
+
}[];
|
|
328
|
+
stateMutability: string;
|
|
329
|
+
type: string;
|
|
330
|
+
name?: undefined;
|
|
331
|
+
anonymous?: undefined;
|
|
332
|
+
outputs?: undefined;
|
|
333
|
+
} | {
|
|
334
|
+
inputs: {
|
|
335
|
+
internalType: string;
|
|
336
|
+
name: string;
|
|
337
|
+
type: string;
|
|
338
|
+
}[];
|
|
339
|
+
name: string;
|
|
340
|
+
type: string;
|
|
341
|
+
stateMutability?: undefined;
|
|
342
|
+
anonymous?: undefined;
|
|
343
|
+
outputs?: undefined;
|
|
344
|
+
} | {
|
|
345
|
+
anonymous: boolean;
|
|
346
|
+
inputs: {
|
|
347
|
+
indexed: boolean;
|
|
348
|
+
internalType: string;
|
|
349
|
+
name: string;
|
|
350
|
+
type: string;
|
|
351
|
+
}[];
|
|
352
|
+
name: string;
|
|
353
|
+
type: string;
|
|
354
|
+
stateMutability?: undefined;
|
|
355
|
+
outputs?: undefined;
|
|
356
|
+
} | {
|
|
357
|
+
inputs: {
|
|
358
|
+
internalType: string;
|
|
359
|
+
name: string;
|
|
360
|
+
type: string;
|
|
361
|
+
}[];
|
|
362
|
+
name: string;
|
|
363
|
+
outputs: {
|
|
364
|
+
internalType: string;
|
|
365
|
+
name: string;
|
|
366
|
+
type: string;
|
|
367
|
+
}[];
|
|
368
|
+
stateMutability: string;
|
|
369
|
+
type: string;
|
|
370
|
+
anonymous?: undefined;
|
|
371
|
+
})[];
|
|
372
|
+
lendingpool: ({
|
|
373
|
+
inputs: {
|
|
374
|
+
internalType: string;
|
|
375
|
+
name: string;
|
|
376
|
+
type: string;
|
|
377
|
+
}[];
|
|
378
|
+
stateMutability: string;
|
|
379
|
+
type: string;
|
|
380
|
+
name?: undefined;
|
|
381
|
+
anonymous?: undefined;
|
|
382
|
+
outputs?: undefined;
|
|
383
|
+
} | {
|
|
384
|
+
inputs: {
|
|
385
|
+
internalType: string;
|
|
386
|
+
name: string;
|
|
387
|
+
type: string;
|
|
388
|
+
}[];
|
|
389
|
+
name: string;
|
|
390
|
+
type: string;
|
|
391
|
+
stateMutability?: undefined;
|
|
392
|
+
anonymous?: undefined;
|
|
393
|
+
outputs?: undefined;
|
|
394
|
+
} | {
|
|
395
|
+
anonymous: boolean;
|
|
396
|
+
inputs: {
|
|
397
|
+
indexed: boolean;
|
|
398
|
+
internalType: string;
|
|
399
|
+
name: string;
|
|
400
|
+
type: string;
|
|
401
|
+
}[];
|
|
402
|
+
name: string;
|
|
403
|
+
type: string;
|
|
404
|
+
stateMutability?: undefined;
|
|
405
|
+
outputs?: undefined;
|
|
406
|
+
} | {
|
|
407
|
+
inputs: {
|
|
408
|
+
internalType: string;
|
|
409
|
+
name: string;
|
|
410
|
+
type: string;
|
|
411
|
+
}[];
|
|
412
|
+
name: string;
|
|
413
|
+
outputs: {
|
|
414
|
+
internalType: string;
|
|
415
|
+
name: string;
|
|
416
|
+
type: string;
|
|
417
|
+
}[];
|
|
418
|
+
stateMutability: string;
|
|
419
|
+
type: string;
|
|
420
|
+
anonymous?: undefined;
|
|
421
|
+
})[];
|
|
422
|
+
stabilitypool: ({
|
|
423
|
+
inputs: {
|
|
424
|
+
internalType: string;
|
|
425
|
+
name: string;
|
|
426
|
+
type: string;
|
|
427
|
+
}[];
|
|
428
|
+
stateMutability: string;
|
|
429
|
+
type: string;
|
|
430
|
+
name?: undefined;
|
|
431
|
+
anonymous?: undefined;
|
|
432
|
+
outputs?: undefined;
|
|
433
|
+
} | {
|
|
434
|
+
inputs: {
|
|
435
|
+
internalType: string;
|
|
436
|
+
name: string;
|
|
437
|
+
type: string;
|
|
438
|
+
}[];
|
|
439
|
+
name: string;
|
|
440
|
+
type: string;
|
|
441
|
+
stateMutability?: undefined;
|
|
442
|
+
anonymous?: undefined;
|
|
443
|
+
outputs?: undefined;
|
|
444
|
+
} | {
|
|
445
|
+
anonymous: boolean;
|
|
446
|
+
inputs: {
|
|
447
|
+
indexed: boolean;
|
|
448
|
+
internalType: string;
|
|
449
|
+
name: string;
|
|
450
|
+
type: string;
|
|
451
|
+
}[];
|
|
452
|
+
name: string;
|
|
453
|
+
type: string;
|
|
454
|
+
stateMutability?: undefined;
|
|
455
|
+
outputs?: undefined;
|
|
456
|
+
} | {
|
|
457
|
+
inputs: {
|
|
458
|
+
internalType: string;
|
|
459
|
+
name: string;
|
|
460
|
+
type: string;
|
|
461
|
+
}[];
|
|
462
|
+
name: string;
|
|
463
|
+
outputs: {
|
|
464
|
+
internalType: string;
|
|
465
|
+
name: string;
|
|
466
|
+
type: string;
|
|
467
|
+
}[];
|
|
468
|
+
stateMutability: string;
|
|
469
|
+
type: string;
|
|
470
|
+
anonymous?: undefined;
|
|
471
|
+
})[];
|
|
472
|
+
raacminter: ({
|
|
473
|
+
inputs: {
|
|
474
|
+
internalType: string;
|
|
475
|
+
name: string;
|
|
476
|
+
type: string;
|
|
477
|
+
}[];
|
|
478
|
+
stateMutability: string;
|
|
479
|
+
type: string;
|
|
480
|
+
name?: undefined;
|
|
481
|
+
anonymous?: undefined;
|
|
482
|
+
outputs?: undefined;
|
|
483
|
+
} | {
|
|
484
|
+
inputs: {
|
|
485
|
+
internalType: string;
|
|
486
|
+
name: string;
|
|
487
|
+
type: string;
|
|
488
|
+
}[];
|
|
489
|
+
name: string;
|
|
490
|
+
type: string;
|
|
491
|
+
stateMutability?: undefined;
|
|
492
|
+
anonymous?: undefined;
|
|
493
|
+
outputs?: undefined;
|
|
494
|
+
} | {
|
|
495
|
+
anonymous: boolean;
|
|
496
|
+
inputs: {
|
|
497
|
+
indexed: boolean;
|
|
498
|
+
internalType: string;
|
|
499
|
+
name: string;
|
|
500
|
+
type: string;
|
|
501
|
+
}[];
|
|
502
|
+
name: string;
|
|
503
|
+
type: string;
|
|
504
|
+
stateMutability?: undefined;
|
|
505
|
+
outputs?: undefined;
|
|
506
|
+
} | {
|
|
507
|
+
inputs: {
|
|
508
|
+
internalType: string;
|
|
509
|
+
name: string;
|
|
510
|
+
type: string;
|
|
511
|
+
}[];
|
|
512
|
+
name: string;
|
|
513
|
+
outputs: {
|
|
514
|
+
internalType: string;
|
|
515
|
+
name: string;
|
|
516
|
+
type: string;
|
|
517
|
+
}[];
|
|
518
|
+
stateMutability: string;
|
|
519
|
+
type: string;
|
|
520
|
+
anonymous?: undefined;
|
|
521
|
+
})[];
|
|
522
|
+
raachouseprices: ({
|
|
523
|
+
inputs: {
|
|
524
|
+
internalType: string;
|
|
525
|
+
name: string;
|
|
526
|
+
type: string;
|
|
527
|
+
}[];
|
|
528
|
+
stateMutability: string;
|
|
529
|
+
type: string;
|
|
530
|
+
name?: undefined;
|
|
531
|
+
anonymous?: undefined;
|
|
532
|
+
outputs?: undefined;
|
|
533
|
+
} | {
|
|
534
|
+
inputs: {
|
|
535
|
+
internalType: string;
|
|
536
|
+
name: string;
|
|
537
|
+
type: string;
|
|
538
|
+
}[];
|
|
539
|
+
name: string;
|
|
540
|
+
type: string;
|
|
541
|
+
stateMutability?: undefined;
|
|
542
|
+
anonymous?: undefined;
|
|
543
|
+
outputs?: undefined;
|
|
544
|
+
} | {
|
|
545
|
+
anonymous: boolean;
|
|
546
|
+
inputs: {
|
|
547
|
+
indexed: boolean;
|
|
548
|
+
internalType: string;
|
|
549
|
+
name: string;
|
|
550
|
+
type: string;
|
|
551
|
+
}[];
|
|
552
|
+
name: string;
|
|
553
|
+
type: string;
|
|
554
|
+
stateMutability?: undefined;
|
|
555
|
+
outputs?: undefined;
|
|
556
|
+
} | {
|
|
557
|
+
inputs: {
|
|
558
|
+
internalType: string;
|
|
559
|
+
name: string;
|
|
560
|
+
type: string;
|
|
561
|
+
}[];
|
|
562
|
+
name: string;
|
|
563
|
+
outputs: {
|
|
564
|
+
internalType: string;
|
|
565
|
+
name: string;
|
|
566
|
+
type: string;
|
|
567
|
+
}[];
|
|
568
|
+
stateMutability: string;
|
|
569
|
+
type: string;
|
|
570
|
+
anonymous?: undefined;
|
|
571
|
+
})[];
|
|
572
|
+
auction: ({
|
|
573
|
+
inputs: {
|
|
574
|
+
internalType: string;
|
|
575
|
+
name: string;
|
|
576
|
+
type: string;
|
|
577
|
+
}[];
|
|
578
|
+
stateMutability: string;
|
|
579
|
+
type: string;
|
|
580
|
+
name?: undefined;
|
|
581
|
+
anonymous?: undefined;
|
|
582
|
+
outputs?: undefined;
|
|
583
|
+
} | {
|
|
584
|
+
inputs: {
|
|
585
|
+
internalType: string;
|
|
586
|
+
name: string;
|
|
587
|
+
type: string;
|
|
588
|
+
}[];
|
|
589
|
+
name: string;
|
|
590
|
+
type: string;
|
|
591
|
+
stateMutability?: undefined;
|
|
592
|
+
anonymous?: undefined;
|
|
593
|
+
outputs?: undefined;
|
|
594
|
+
} | {
|
|
595
|
+
anonymous: boolean;
|
|
596
|
+
inputs: {
|
|
597
|
+
indexed: boolean;
|
|
598
|
+
internalType: string;
|
|
599
|
+
name: string;
|
|
600
|
+
type: string;
|
|
601
|
+
}[];
|
|
602
|
+
name: string;
|
|
603
|
+
type: string;
|
|
604
|
+
stateMutability?: undefined;
|
|
605
|
+
outputs?: undefined;
|
|
606
|
+
} | {
|
|
607
|
+
inputs: {
|
|
608
|
+
internalType: string;
|
|
609
|
+
name: string;
|
|
610
|
+
type: string;
|
|
611
|
+
}[];
|
|
612
|
+
name: string;
|
|
613
|
+
outputs: {
|
|
614
|
+
internalType: string;
|
|
615
|
+
name: string;
|
|
616
|
+
type: string;
|
|
617
|
+
}[];
|
|
618
|
+
stateMutability: string;
|
|
619
|
+
type: string;
|
|
620
|
+
anonymous?: undefined;
|
|
621
|
+
} | {
|
|
622
|
+
inputs: any[];
|
|
623
|
+
name: string;
|
|
624
|
+
outputs: {
|
|
625
|
+
components: {
|
|
626
|
+
internalType: string;
|
|
627
|
+
name: string;
|
|
628
|
+
type: string;
|
|
629
|
+
}[];
|
|
630
|
+
internalType: string;
|
|
631
|
+
name: string;
|
|
632
|
+
type: string;
|
|
633
|
+
}[];
|
|
634
|
+
stateMutability: string;
|
|
635
|
+
type: string;
|
|
636
|
+
anonymous?: undefined;
|
|
637
|
+
})[];
|
|
638
|
+
auctionfactory: ({
|
|
639
|
+
inputs: {
|
|
640
|
+
internalType: string;
|
|
641
|
+
name: string;
|
|
642
|
+
type: string;
|
|
643
|
+
}[];
|
|
644
|
+
stateMutability: string;
|
|
645
|
+
type: string;
|
|
646
|
+
name?: undefined;
|
|
647
|
+
anonymous?: undefined;
|
|
648
|
+
outputs?: undefined;
|
|
649
|
+
} | {
|
|
650
|
+
inputs: {
|
|
651
|
+
internalType: string;
|
|
652
|
+
name: string;
|
|
653
|
+
type: string;
|
|
654
|
+
}[];
|
|
655
|
+
name: string;
|
|
656
|
+
type: string;
|
|
657
|
+
stateMutability?: undefined;
|
|
658
|
+
anonymous?: undefined;
|
|
659
|
+
outputs?: undefined;
|
|
660
|
+
} | {
|
|
661
|
+
anonymous: boolean;
|
|
662
|
+
inputs: {
|
|
663
|
+
indexed: boolean;
|
|
664
|
+
internalType: string;
|
|
665
|
+
name: string;
|
|
666
|
+
type: string;
|
|
667
|
+
}[];
|
|
668
|
+
name: string;
|
|
669
|
+
type: string;
|
|
670
|
+
stateMutability?: undefined;
|
|
671
|
+
outputs?: undefined;
|
|
672
|
+
} | {
|
|
673
|
+
inputs: {
|
|
674
|
+
internalType: string;
|
|
675
|
+
name: string;
|
|
676
|
+
type: string;
|
|
677
|
+
}[];
|
|
678
|
+
name: string;
|
|
679
|
+
outputs: {
|
|
680
|
+
internalType: string;
|
|
681
|
+
name: string;
|
|
682
|
+
type: string;
|
|
683
|
+
}[];
|
|
684
|
+
stateMutability: string;
|
|
685
|
+
type: string;
|
|
686
|
+
anonymous?: undefined;
|
|
687
|
+
} | {
|
|
688
|
+
inputs: {
|
|
689
|
+
internalType: string;
|
|
690
|
+
name: string;
|
|
691
|
+
type: string;
|
|
692
|
+
}[];
|
|
693
|
+
name: string;
|
|
694
|
+
outputs: {
|
|
695
|
+
components: {
|
|
696
|
+
internalType: string;
|
|
697
|
+
name: string;
|
|
698
|
+
type: string;
|
|
699
|
+
}[];
|
|
700
|
+
internalType: string;
|
|
701
|
+
name: string;
|
|
702
|
+
type: string;
|
|
703
|
+
}[];
|
|
704
|
+
stateMutability: string;
|
|
705
|
+
type: string;
|
|
706
|
+
anonymous?: undefined;
|
|
707
|
+
})[];
|
|
708
|
+
zeno: ({
|
|
709
|
+
inputs: {
|
|
710
|
+
internalType: string;
|
|
711
|
+
name: string;
|
|
712
|
+
type: string;
|
|
713
|
+
}[];
|
|
714
|
+
stateMutability: string;
|
|
715
|
+
type: string;
|
|
716
|
+
name?: undefined;
|
|
717
|
+
anonymous?: undefined;
|
|
718
|
+
outputs?: undefined;
|
|
719
|
+
} | {
|
|
720
|
+
inputs: {
|
|
721
|
+
internalType: string;
|
|
722
|
+
name: string;
|
|
723
|
+
type: string;
|
|
724
|
+
}[];
|
|
725
|
+
name: string;
|
|
726
|
+
type: string;
|
|
727
|
+
stateMutability?: undefined;
|
|
728
|
+
anonymous?: undefined;
|
|
729
|
+
outputs?: undefined;
|
|
730
|
+
} | {
|
|
731
|
+
anonymous: boolean;
|
|
732
|
+
inputs: {
|
|
733
|
+
indexed: boolean;
|
|
734
|
+
internalType: string;
|
|
735
|
+
name: string;
|
|
736
|
+
type: string;
|
|
737
|
+
}[];
|
|
738
|
+
name: string;
|
|
739
|
+
type: string;
|
|
740
|
+
stateMutability?: undefined;
|
|
741
|
+
outputs?: undefined;
|
|
742
|
+
} | {
|
|
743
|
+
inputs: {
|
|
744
|
+
internalType: string;
|
|
745
|
+
name: string;
|
|
746
|
+
type: string;
|
|
747
|
+
}[];
|
|
748
|
+
name: string;
|
|
749
|
+
outputs: {
|
|
750
|
+
internalType: string;
|
|
751
|
+
name: string;
|
|
752
|
+
type: string;
|
|
753
|
+
}[];
|
|
754
|
+
stateMutability: string;
|
|
755
|
+
type: string;
|
|
756
|
+
anonymous?: undefined;
|
|
757
|
+
} | {
|
|
758
|
+
inputs: any[];
|
|
759
|
+
name: string;
|
|
760
|
+
outputs: {
|
|
761
|
+
components: {
|
|
762
|
+
internalType: string;
|
|
763
|
+
name: string;
|
|
764
|
+
type: string;
|
|
765
|
+
}[];
|
|
766
|
+
internalType: string;
|
|
767
|
+
name: string;
|
|
768
|
+
type: string;
|
|
769
|
+
}[];
|
|
770
|
+
stateMutability: string;
|
|
771
|
+
type: string;
|
|
772
|
+
anonymous?: undefined;
|
|
773
|
+
})[];
|
|
774
|
+
zenofactory: ({
|
|
775
|
+
inputs: {
|
|
776
|
+
internalType: string;
|
|
777
|
+
name: string;
|
|
778
|
+
type: string;
|
|
779
|
+
}[];
|
|
780
|
+
stateMutability: string;
|
|
781
|
+
type: string;
|
|
782
|
+
name?: undefined;
|
|
783
|
+
anonymous?: undefined;
|
|
784
|
+
outputs?: undefined;
|
|
785
|
+
} | {
|
|
786
|
+
inputs: {
|
|
787
|
+
internalType: string;
|
|
788
|
+
name: string;
|
|
789
|
+
type: string;
|
|
790
|
+
}[];
|
|
791
|
+
name: string;
|
|
792
|
+
type: string;
|
|
793
|
+
stateMutability?: undefined;
|
|
794
|
+
anonymous?: undefined;
|
|
795
|
+
outputs?: undefined;
|
|
796
|
+
} | {
|
|
797
|
+
anonymous: boolean;
|
|
798
|
+
inputs: {
|
|
799
|
+
indexed: boolean;
|
|
800
|
+
internalType: string;
|
|
801
|
+
name: string;
|
|
802
|
+
type: string;
|
|
803
|
+
}[];
|
|
804
|
+
name: string;
|
|
805
|
+
type: string;
|
|
806
|
+
stateMutability?: undefined;
|
|
807
|
+
outputs?: undefined;
|
|
808
|
+
} | {
|
|
809
|
+
inputs: {
|
|
810
|
+
internalType: string;
|
|
811
|
+
name: string;
|
|
812
|
+
type: string;
|
|
813
|
+
}[];
|
|
814
|
+
name: string;
|
|
815
|
+
outputs: {
|
|
816
|
+
internalType: string;
|
|
817
|
+
name: string;
|
|
818
|
+
type: string;
|
|
819
|
+
}[];
|
|
820
|
+
stateMutability: string;
|
|
821
|
+
type: string;
|
|
822
|
+
anonymous?: undefined;
|
|
823
|
+
} | {
|
|
824
|
+
inputs: {
|
|
825
|
+
internalType: string;
|
|
826
|
+
name: string;
|
|
827
|
+
type: string;
|
|
828
|
+
}[];
|
|
829
|
+
name: string;
|
|
830
|
+
outputs: {
|
|
831
|
+
components: {
|
|
832
|
+
internalType: string;
|
|
833
|
+
name: string;
|
|
834
|
+
type: string;
|
|
835
|
+
}[];
|
|
836
|
+
internalType: string;
|
|
837
|
+
name: string;
|
|
838
|
+
type: string;
|
|
839
|
+
}[];
|
|
840
|
+
stateMutability: string;
|
|
841
|
+
type: string;
|
|
842
|
+
anonymous?: undefined;
|
|
843
|
+
})[];
|
|
844
|
+
eth: any[];
|
|
845
|
+
};
|
|
846
|
+
export type AssetType = keyof typeof ABIS | string;
|
|
847
|
+
export type ContractType = keyof typeof ABIS;
|
|
848
|
+
declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
849
|
+
inputs: {
|
|
850
|
+
internalType: string;
|
|
851
|
+
name: string;
|
|
852
|
+
type: string;
|
|
853
|
+
}[];
|
|
854
|
+
stateMutability: string;
|
|
855
|
+
type: string;
|
|
856
|
+
name?: undefined;
|
|
857
|
+
anonymous?: undefined;
|
|
858
|
+
outputs?: undefined;
|
|
859
|
+
} | {
|
|
860
|
+
inputs: {
|
|
861
|
+
internalType: string;
|
|
862
|
+
name: string;
|
|
863
|
+
type: string;
|
|
864
|
+
}[];
|
|
865
|
+
name: string;
|
|
866
|
+
type: string;
|
|
867
|
+
stateMutability?: undefined;
|
|
868
|
+
anonymous?: undefined;
|
|
869
|
+
outputs?: undefined;
|
|
870
|
+
} | {
|
|
871
|
+
anonymous: boolean;
|
|
872
|
+
inputs: {
|
|
873
|
+
indexed: boolean;
|
|
874
|
+
internalType: string;
|
|
875
|
+
name: string;
|
|
876
|
+
type: string;
|
|
877
|
+
}[];
|
|
878
|
+
name: string;
|
|
879
|
+
type: string;
|
|
880
|
+
stateMutability?: undefined;
|
|
881
|
+
outputs?: undefined;
|
|
882
|
+
} | {
|
|
883
|
+
inputs: {
|
|
884
|
+
internalType: string;
|
|
885
|
+
name: string;
|
|
886
|
+
type: string;
|
|
887
|
+
}[];
|
|
888
|
+
name: string;
|
|
889
|
+
outputs: {
|
|
890
|
+
internalType: string;
|
|
891
|
+
name: string;
|
|
892
|
+
type: string;
|
|
893
|
+
}[];
|
|
894
|
+
stateMutability: string;
|
|
895
|
+
type: string;
|
|
896
|
+
anonymous?: undefined;
|
|
897
|
+
})[] | ({
|
|
898
|
+
inputs: {
|
|
899
|
+
internalType: string;
|
|
900
|
+
name: string;
|
|
901
|
+
type: string;
|
|
902
|
+
}[];
|
|
903
|
+
stateMutability: string;
|
|
904
|
+
type: string;
|
|
905
|
+
name?: undefined;
|
|
906
|
+
anonymous?: undefined;
|
|
907
|
+
outputs?: undefined;
|
|
908
|
+
} | {
|
|
909
|
+
inputs: {
|
|
910
|
+
internalType: string;
|
|
911
|
+
name: string;
|
|
912
|
+
type: string;
|
|
913
|
+
}[];
|
|
914
|
+
name: string;
|
|
915
|
+
type: string;
|
|
916
|
+
stateMutability?: undefined;
|
|
917
|
+
anonymous?: undefined;
|
|
918
|
+
outputs?: undefined;
|
|
919
|
+
} | {
|
|
920
|
+
anonymous: boolean;
|
|
921
|
+
inputs: {
|
|
922
|
+
indexed: boolean;
|
|
923
|
+
internalType: string;
|
|
924
|
+
name: string;
|
|
925
|
+
type: string;
|
|
926
|
+
}[];
|
|
927
|
+
name: string;
|
|
928
|
+
type: string;
|
|
929
|
+
stateMutability?: undefined;
|
|
930
|
+
outputs?: undefined;
|
|
931
|
+
} | {
|
|
932
|
+
inputs: {
|
|
933
|
+
internalType: string;
|
|
934
|
+
name: string;
|
|
935
|
+
type: string;
|
|
936
|
+
}[];
|
|
937
|
+
name: string;
|
|
938
|
+
outputs: {
|
|
939
|
+
internalType: string;
|
|
940
|
+
name: string;
|
|
941
|
+
type: string;
|
|
942
|
+
}[];
|
|
943
|
+
stateMutability: string;
|
|
944
|
+
type: string;
|
|
945
|
+
anonymous?: undefined;
|
|
946
|
+
} | {
|
|
947
|
+
inputs: {
|
|
948
|
+
internalType: string;
|
|
949
|
+
name: string;
|
|
950
|
+
type: string;
|
|
951
|
+
}[];
|
|
952
|
+
name: string;
|
|
953
|
+
outputs: {
|
|
954
|
+
components: {
|
|
955
|
+
internalType: string;
|
|
956
|
+
name: string;
|
|
957
|
+
type: string;
|
|
958
|
+
}[];
|
|
959
|
+
internalType: string;
|
|
960
|
+
name: string;
|
|
961
|
+
type: string;
|
|
962
|
+
}[];
|
|
963
|
+
stateMutability: string;
|
|
964
|
+
type: string;
|
|
965
|
+
anonymous?: undefined;
|
|
966
|
+
})[] | ({
|
|
967
|
+
inputs: {
|
|
968
|
+
internalType: string;
|
|
969
|
+
name: string;
|
|
970
|
+
type: string;
|
|
971
|
+
}[];
|
|
972
|
+
stateMutability: string;
|
|
973
|
+
type: string;
|
|
974
|
+
name?: undefined;
|
|
975
|
+
anonymous?: undefined;
|
|
976
|
+
outputs?: undefined;
|
|
977
|
+
} | {
|
|
978
|
+
inputs: {
|
|
979
|
+
internalType: string;
|
|
980
|
+
name: string;
|
|
981
|
+
type: string;
|
|
982
|
+
}[];
|
|
983
|
+
name: string;
|
|
984
|
+
type: string;
|
|
985
|
+
stateMutability?: undefined;
|
|
986
|
+
anonymous?: undefined;
|
|
987
|
+
outputs?: undefined;
|
|
988
|
+
} | {
|
|
989
|
+
anonymous: boolean;
|
|
990
|
+
inputs: {
|
|
991
|
+
indexed: boolean;
|
|
992
|
+
internalType: string;
|
|
993
|
+
name: string;
|
|
994
|
+
type: string;
|
|
995
|
+
}[];
|
|
996
|
+
name: string;
|
|
997
|
+
type: string;
|
|
998
|
+
stateMutability?: undefined;
|
|
999
|
+
outputs?: undefined;
|
|
1000
|
+
} | {
|
|
1001
|
+
inputs: {
|
|
1002
|
+
internalType: string;
|
|
1003
|
+
name: string;
|
|
1004
|
+
type: string;
|
|
1005
|
+
}[];
|
|
1006
|
+
name: string;
|
|
1007
|
+
outputs: {
|
|
1008
|
+
internalType: string;
|
|
1009
|
+
name: string;
|
|
1010
|
+
type: string;
|
|
1011
|
+
}[];
|
|
1012
|
+
stateMutability: string;
|
|
1013
|
+
type: string;
|
|
1014
|
+
anonymous?: undefined;
|
|
1015
|
+
})[] | ({
|
|
1016
|
+
inputs: {
|
|
1017
|
+
internalType: string;
|
|
1018
|
+
name: string;
|
|
1019
|
+
type: string;
|
|
1020
|
+
}[];
|
|
1021
|
+
stateMutability: string;
|
|
1022
|
+
type: string;
|
|
1023
|
+
name?: undefined;
|
|
1024
|
+
anonymous?: undefined;
|
|
1025
|
+
outputs?: undefined;
|
|
1026
|
+
} | {
|
|
1027
|
+
inputs: {
|
|
1028
|
+
internalType: string;
|
|
1029
|
+
name: string;
|
|
1030
|
+
type: string;
|
|
1031
|
+
}[];
|
|
1032
|
+
name: string;
|
|
1033
|
+
type: string;
|
|
1034
|
+
stateMutability?: undefined;
|
|
1035
|
+
anonymous?: undefined;
|
|
1036
|
+
outputs?: undefined;
|
|
1037
|
+
} | {
|
|
1038
|
+
anonymous: boolean;
|
|
1039
|
+
inputs: {
|
|
1040
|
+
indexed: boolean;
|
|
1041
|
+
internalType: string;
|
|
1042
|
+
name: string;
|
|
1043
|
+
type: string;
|
|
1044
|
+
}[];
|
|
1045
|
+
name: string;
|
|
1046
|
+
type: string;
|
|
1047
|
+
stateMutability?: undefined;
|
|
1048
|
+
outputs?: undefined;
|
|
1049
|
+
} | {
|
|
1050
|
+
inputs: {
|
|
1051
|
+
internalType: string;
|
|
1052
|
+
name: string;
|
|
1053
|
+
type: string;
|
|
1054
|
+
}[];
|
|
1055
|
+
name: string;
|
|
1056
|
+
outputs: {
|
|
1057
|
+
internalType: string;
|
|
1058
|
+
name: string;
|
|
1059
|
+
type: string;
|
|
1060
|
+
}[];
|
|
1061
|
+
stateMutability: string;
|
|
1062
|
+
type: string;
|
|
1063
|
+
anonymous?: undefined;
|
|
1064
|
+
})[] | ({
|
|
1065
|
+
inputs: {
|
|
1066
|
+
internalType: string;
|
|
1067
|
+
name: string;
|
|
1068
|
+
type: string;
|
|
1069
|
+
}[];
|
|
1070
|
+
stateMutability: string;
|
|
1071
|
+
type: string;
|
|
1072
|
+
name?: undefined;
|
|
1073
|
+
anonymous?: undefined;
|
|
1074
|
+
outputs?: undefined;
|
|
1075
|
+
} | {
|
|
1076
|
+
inputs: {
|
|
1077
|
+
internalType: string;
|
|
1078
|
+
name: string;
|
|
1079
|
+
type: string;
|
|
1080
|
+
}[];
|
|
1081
|
+
name: string;
|
|
1082
|
+
type: string;
|
|
1083
|
+
stateMutability?: undefined;
|
|
1084
|
+
anonymous?: undefined;
|
|
1085
|
+
outputs?: undefined;
|
|
1086
|
+
} | {
|
|
1087
|
+
anonymous: boolean;
|
|
1088
|
+
inputs: {
|
|
1089
|
+
indexed: boolean;
|
|
1090
|
+
internalType: string;
|
|
1091
|
+
name: string;
|
|
1092
|
+
type: string;
|
|
1093
|
+
}[];
|
|
1094
|
+
name: string;
|
|
1095
|
+
type: string;
|
|
1096
|
+
stateMutability?: undefined;
|
|
1097
|
+
outputs?: undefined;
|
|
1098
|
+
} | {
|
|
1099
|
+
inputs: {
|
|
1100
|
+
internalType: string;
|
|
1101
|
+
name: string;
|
|
1102
|
+
type: string;
|
|
1103
|
+
}[];
|
|
1104
|
+
name: string;
|
|
1105
|
+
outputs: {
|
|
1106
|
+
internalType: string;
|
|
1107
|
+
name: string;
|
|
1108
|
+
type: string;
|
|
1109
|
+
}[];
|
|
1110
|
+
stateMutability: string;
|
|
1111
|
+
type: string;
|
|
1112
|
+
anonymous?: undefined;
|
|
1113
|
+
})[] | ({
|
|
1114
|
+
inputs: {
|
|
1115
|
+
internalType: string;
|
|
1116
|
+
name: string;
|
|
1117
|
+
type: string;
|
|
1118
|
+
}[];
|
|
1119
|
+
stateMutability: string;
|
|
1120
|
+
type: string;
|
|
1121
|
+
name?: undefined;
|
|
1122
|
+
anonymous?: undefined;
|
|
1123
|
+
outputs?: undefined;
|
|
1124
|
+
} | {
|
|
1125
|
+
inputs: {
|
|
1126
|
+
internalType: string;
|
|
1127
|
+
name: string;
|
|
1128
|
+
type: string;
|
|
1129
|
+
}[];
|
|
1130
|
+
name: string;
|
|
1131
|
+
type: string;
|
|
1132
|
+
stateMutability?: undefined;
|
|
1133
|
+
anonymous?: undefined;
|
|
1134
|
+
outputs?: undefined;
|
|
1135
|
+
} | {
|
|
1136
|
+
anonymous: boolean;
|
|
1137
|
+
inputs: {
|
|
1138
|
+
indexed: boolean;
|
|
1139
|
+
internalType: string;
|
|
1140
|
+
name: string;
|
|
1141
|
+
type: string;
|
|
1142
|
+
}[];
|
|
1143
|
+
name: string;
|
|
1144
|
+
type: string;
|
|
1145
|
+
stateMutability?: undefined;
|
|
1146
|
+
outputs?: undefined;
|
|
1147
|
+
} | {
|
|
1148
|
+
inputs: {
|
|
1149
|
+
internalType: string;
|
|
1150
|
+
name: string;
|
|
1151
|
+
type: string;
|
|
1152
|
+
}[];
|
|
1153
|
+
name: string;
|
|
1154
|
+
outputs: {
|
|
1155
|
+
internalType: string;
|
|
1156
|
+
name: string;
|
|
1157
|
+
type: string;
|
|
1158
|
+
}[];
|
|
1159
|
+
stateMutability: string;
|
|
1160
|
+
type: string;
|
|
1161
|
+
anonymous?: undefined;
|
|
1162
|
+
})[] | ({
|
|
1163
|
+
inputs: {
|
|
1164
|
+
internalType: string;
|
|
1165
|
+
name: string;
|
|
1166
|
+
type: string;
|
|
1167
|
+
}[];
|
|
1168
|
+
stateMutability: string;
|
|
1169
|
+
type: string;
|
|
1170
|
+
name?: undefined;
|
|
1171
|
+
anonymous?: undefined;
|
|
1172
|
+
outputs?: undefined;
|
|
1173
|
+
} | {
|
|
1174
|
+
inputs: {
|
|
1175
|
+
internalType: string;
|
|
1176
|
+
name: string;
|
|
1177
|
+
type: string;
|
|
1178
|
+
}[];
|
|
1179
|
+
name: string;
|
|
1180
|
+
type: string;
|
|
1181
|
+
stateMutability?: undefined;
|
|
1182
|
+
anonymous?: undefined;
|
|
1183
|
+
outputs?: undefined;
|
|
1184
|
+
} | {
|
|
1185
|
+
anonymous: boolean;
|
|
1186
|
+
inputs: {
|
|
1187
|
+
indexed: boolean;
|
|
1188
|
+
internalType: string;
|
|
1189
|
+
name: string;
|
|
1190
|
+
type: string;
|
|
1191
|
+
}[];
|
|
1192
|
+
name: string;
|
|
1193
|
+
type: string;
|
|
1194
|
+
stateMutability?: undefined;
|
|
1195
|
+
outputs?: undefined;
|
|
1196
|
+
} | {
|
|
1197
|
+
inputs: {
|
|
1198
|
+
internalType: string;
|
|
1199
|
+
name: string;
|
|
1200
|
+
type: string;
|
|
1201
|
+
}[];
|
|
1202
|
+
name: string;
|
|
1203
|
+
outputs: {
|
|
1204
|
+
internalType: string;
|
|
1205
|
+
name: string;
|
|
1206
|
+
type: string;
|
|
1207
|
+
}[];
|
|
1208
|
+
stateMutability: string;
|
|
1209
|
+
type: string;
|
|
1210
|
+
anonymous?: undefined;
|
|
1211
|
+
})[] | ({
|
|
1212
|
+
inputs: {
|
|
1213
|
+
internalType: string;
|
|
1214
|
+
name: string;
|
|
1215
|
+
type: string;
|
|
1216
|
+
}[];
|
|
1217
|
+
stateMutability: string;
|
|
1218
|
+
type: string;
|
|
1219
|
+
name?: undefined;
|
|
1220
|
+
anonymous?: undefined;
|
|
1221
|
+
outputs?: undefined;
|
|
1222
|
+
} | {
|
|
1223
|
+
inputs: {
|
|
1224
|
+
internalType: string;
|
|
1225
|
+
name: string;
|
|
1226
|
+
type: string;
|
|
1227
|
+
}[];
|
|
1228
|
+
name: string;
|
|
1229
|
+
type: string;
|
|
1230
|
+
stateMutability?: undefined;
|
|
1231
|
+
anonymous?: undefined;
|
|
1232
|
+
outputs?: undefined;
|
|
1233
|
+
} | {
|
|
1234
|
+
anonymous: boolean;
|
|
1235
|
+
inputs: {
|
|
1236
|
+
indexed: boolean;
|
|
1237
|
+
internalType: string;
|
|
1238
|
+
name: string;
|
|
1239
|
+
type: string;
|
|
1240
|
+
}[];
|
|
1241
|
+
name: string;
|
|
1242
|
+
type: string;
|
|
1243
|
+
stateMutability?: undefined;
|
|
1244
|
+
outputs?: undefined;
|
|
1245
|
+
} | {
|
|
1246
|
+
inputs: {
|
|
1247
|
+
internalType: string;
|
|
1248
|
+
name: string;
|
|
1249
|
+
type: string;
|
|
1250
|
+
}[];
|
|
1251
|
+
name: string;
|
|
1252
|
+
outputs: {
|
|
1253
|
+
internalType: string;
|
|
1254
|
+
name: string;
|
|
1255
|
+
type: string;
|
|
1256
|
+
}[];
|
|
1257
|
+
stateMutability: string;
|
|
1258
|
+
type: string;
|
|
1259
|
+
anonymous?: undefined;
|
|
1260
|
+
})[] | ({
|
|
1261
|
+
inputs: {
|
|
1262
|
+
internalType: string;
|
|
1263
|
+
name: string;
|
|
1264
|
+
type: string;
|
|
1265
|
+
}[];
|
|
1266
|
+
stateMutability: string;
|
|
1267
|
+
type: string;
|
|
1268
|
+
name?: undefined;
|
|
1269
|
+
anonymous?: undefined;
|
|
1270
|
+
outputs?: undefined;
|
|
1271
|
+
} | {
|
|
1272
|
+
inputs: {
|
|
1273
|
+
internalType: string;
|
|
1274
|
+
name: string;
|
|
1275
|
+
type: string;
|
|
1276
|
+
}[];
|
|
1277
|
+
name: string;
|
|
1278
|
+
type: string;
|
|
1279
|
+
stateMutability?: undefined;
|
|
1280
|
+
anonymous?: undefined;
|
|
1281
|
+
outputs?: undefined;
|
|
1282
|
+
} | {
|
|
1283
|
+
anonymous: boolean;
|
|
1284
|
+
inputs: {
|
|
1285
|
+
indexed: boolean;
|
|
1286
|
+
internalType: string;
|
|
1287
|
+
name: string;
|
|
1288
|
+
type: string;
|
|
1289
|
+
}[];
|
|
1290
|
+
name: string;
|
|
1291
|
+
type: string;
|
|
1292
|
+
stateMutability?: undefined;
|
|
1293
|
+
outputs?: undefined;
|
|
1294
|
+
} | {
|
|
1295
|
+
inputs: {
|
|
1296
|
+
internalType: string;
|
|
1297
|
+
name: string;
|
|
1298
|
+
type: string;
|
|
1299
|
+
}[];
|
|
1300
|
+
name: string;
|
|
1301
|
+
outputs: {
|
|
1302
|
+
internalType: string;
|
|
1303
|
+
name: string;
|
|
1304
|
+
type: string;
|
|
1305
|
+
}[];
|
|
1306
|
+
stateMutability: string;
|
|
1307
|
+
type: string;
|
|
1308
|
+
anonymous?: undefined;
|
|
1309
|
+
})[] | ({
|
|
1310
|
+
inputs: {
|
|
1311
|
+
internalType: string;
|
|
1312
|
+
name: string;
|
|
1313
|
+
type: string;
|
|
1314
|
+
}[];
|
|
1315
|
+
stateMutability: string;
|
|
1316
|
+
type: string;
|
|
1317
|
+
name?: undefined;
|
|
1318
|
+
anonymous?: undefined;
|
|
1319
|
+
outputs?: undefined;
|
|
1320
|
+
} | {
|
|
1321
|
+
inputs: {
|
|
1322
|
+
internalType: string;
|
|
1323
|
+
name: string;
|
|
1324
|
+
type: string;
|
|
1325
|
+
}[];
|
|
1326
|
+
name: string;
|
|
1327
|
+
type: string;
|
|
1328
|
+
stateMutability?: undefined;
|
|
1329
|
+
anonymous?: undefined;
|
|
1330
|
+
outputs?: undefined;
|
|
1331
|
+
} | {
|
|
1332
|
+
anonymous: boolean;
|
|
1333
|
+
inputs: {
|
|
1334
|
+
indexed: boolean;
|
|
1335
|
+
internalType: string;
|
|
1336
|
+
name: string;
|
|
1337
|
+
type: string;
|
|
1338
|
+
}[];
|
|
1339
|
+
name: string;
|
|
1340
|
+
type: string;
|
|
1341
|
+
stateMutability?: undefined;
|
|
1342
|
+
outputs?: undefined;
|
|
1343
|
+
} | {
|
|
1344
|
+
inputs: {
|
|
1345
|
+
internalType: string;
|
|
1346
|
+
name: string;
|
|
1347
|
+
type: string;
|
|
1348
|
+
}[];
|
|
1349
|
+
name: string;
|
|
1350
|
+
outputs: {
|
|
1351
|
+
internalType: string;
|
|
1352
|
+
name: string;
|
|
1353
|
+
type: string;
|
|
1354
|
+
}[];
|
|
1355
|
+
stateMutability: string;
|
|
1356
|
+
type: string;
|
|
1357
|
+
anonymous?: undefined;
|
|
1358
|
+
})[] | ({
|
|
1359
|
+
inputs: {
|
|
1360
|
+
internalType: string;
|
|
1361
|
+
name: string;
|
|
1362
|
+
type: string;
|
|
1363
|
+
}[];
|
|
1364
|
+
stateMutability: string;
|
|
1365
|
+
type: string;
|
|
1366
|
+
name?: undefined;
|
|
1367
|
+
anonymous?: undefined;
|
|
1368
|
+
outputs?: undefined;
|
|
1369
|
+
} | {
|
|
1370
|
+
inputs: {
|
|
1371
|
+
internalType: string;
|
|
1372
|
+
name: string;
|
|
1373
|
+
type: string;
|
|
1374
|
+
}[];
|
|
1375
|
+
name: string;
|
|
1376
|
+
type: string;
|
|
1377
|
+
stateMutability?: undefined;
|
|
1378
|
+
anonymous?: undefined;
|
|
1379
|
+
outputs?: undefined;
|
|
1380
|
+
} | {
|
|
1381
|
+
anonymous: boolean;
|
|
1382
|
+
inputs: {
|
|
1383
|
+
indexed: boolean;
|
|
1384
|
+
internalType: string;
|
|
1385
|
+
name: string;
|
|
1386
|
+
type: string;
|
|
1387
|
+
}[];
|
|
1388
|
+
name: string;
|
|
1389
|
+
type: string;
|
|
1390
|
+
stateMutability?: undefined;
|
|
1391
|
+
outputs?: undefined;
|
|
1392
|
+
} | {
|
|
1393
|
+
inputs: {
|
|
1394
|
+
internalType: string;
|
|
1395
|
+
name: string;
|
|
1396
|
+
type: string;
|
|
1397
|
+
}[];
|
|
1398
|
+
name: string;
|
|
1399
|
+
outputs: {
|
|
1400
|
+
internalType: string;
|
|
1401
|
+
name: string;
|
|
1402
|
+
type: string;
|
|
1403
|
+
}[];
|
|
1404
|
+
stateMutability: string;
|
|
1405
|
+
type: string;
|
|
1406
|
+
anonymous?: undefined;
|
|
1407
|
+
} | {
|
|
1408
|
+
inputs: {
|
|
1409
|
+
internalType: string;
|
|
1410
|
+
name: string;
|
|
1411
|
+
type: string;
|
|
1412
|
+
}[];
|
|
1413
|
+
name: string;
|
|
1414
|
+
outputs: {
|
|
1415
|
+
components: {
|
|
1416
|
+
internalType: string;
|
|
1417
|
+
name: string;
|
|
1418
|
+
type: string;
|
|
1419
|
+
}[];
|
|
1420
|
+
internalType: string;
|
|
1421
|
+
name: string;
|
|
1422
|
+
type: string;
|
|
1423
|
+
}[];
|
|
1424
|
+
stateMutability: string;
|
|
1425
|
+
type: string;
|
|
1426
|
+
anonymous?: undefined;
|
|
1427
|
+
})[] | ({
|
|
1428
|
+
inputs: {
|
|
1429
|
+
internalType: string;
|
|
1430
|
+
name: string;
|
|
1431
|
+
type: string;
|
|
1432
|
+
}[];
|
|
1433
|
+
stateMutability: string;
|
|
1434
|
+
type: string;
|
|
1435
|
+
name?: undefined;
|
|
1436
|
+
anonymous?: undefined;
|
|
1437
|
+
outputs?: undefined;
|
|
1438
|
+
} | {
|
|
1439
|
+
inputs: {
|
|
1440
|
+
internalType: string;
|
|
1441
|
+
name: string;
|
|
1442
|
+
type: string;
|
|
1443
|
+
}[];
|
|
1444
|
+
name: string;
|
|
1445
|
+
type: string;
|
|
1446
|
+
stateMutability?: undefined;
|
|
1447
|
+
anonymous?: undefined;
|
|
1448
|
+
outputs?: undefined;
|
|
1449
|
+
} | {
|
|
1450
|
+
anonymous: boolean;
|
|
1451
|
+
inputs: {
|
|
1452
|
+
indexed: boolean;
|
|
1453
|
+
internalType: string;
|
|
1454
|
+
name: string;
|
|
1455
|
+
type: string;
|
|
1456
|
+
}[];
|
|
1457
|
+
name: string;
|
|
1458
|
+
type: string;
|
|
1459
|
+
stateMutability?: undefined;
|
|
1460
|
+
outputs?: undefined;
|
|
1461
|
+
} | {
|
|
1462
|
+
inputs: {
|
|
1463
|
+
internalType: string;
|
|
1464
|
+
name: string;
|
|
1465
|
+
type: string;
|
|
1466
|
+
}[];
|
|
1467
|
+
name: string;
|
|
1468
|
+
outputs: {
|
|
1469
|
+
internalType: string;
|
|
1470
|
+
name: string;
|
|
1471
|
+
type: string;
|
|
1472
|
+
}[];
|
|
1473
|
+
stateMutability: string;
|
|
1474
|
+
type: string;
|
|
1475
|
+
anonymous?: undefined;
|
|
1476
|
+
} | {
|
|
1477
|
+
inputs: any[];
|
|
1478
|
+
name: string;
|
|
1479
|
+
outputs: {
|
|
1480
|
+
components: {
|
|
1481
|
+
internalType: string;
|
|
1482
|
+
name: string;
|
|
1483
|
+
type: string;
|
|
1484
|
+
}[];
|
|
1485
|
+
internalType: string;
|
|
1486
|
+
name: string;
|
|
1487
|
+
type: string;
|
|
1488
|
+
}[];
|
|
1489
|
+
stateMutability: string;
|
|
1490
|
+
type: string;
|
|
1491
|
+
anonymous?: undefined;
|
|
1492
|
+
})[] | ({
|
|
1493
|
+
inputs: {
|
|
1494
|
+
internalType: string;
|
|
1495
|
+
name: string;
|
|
1496
|
+
type: string;
|
|
1497
|
+
}[];
|
|
1498
|
+
stateMutability: string;
|
|
1499
|
+
type: string;
|
|
1500
|
+
name?: undefined;
|
|
1501
|
+
anonymous?: undefined;
|
|
1502
|
+
outputs?: undefined;
|
|
1503
|
+
} | {
|
|
1504
|
+
inputs: {
|
|
1505
|
+
internalType: string;
|
|
1506
|
+
name: string;
|
|
1507
|
+
type: string;
|
|
1508
|
+
}[];
|
|
1509
|
+
name: string;
|
|
1510
|
+
type: string;
|
|
1511
|
+
stateMutability?: undefined;
|
|
1512
|
+
anonymous?: undefined;
|
|
1513
|
+
outputs?: undefined;
|
|
1514
|
+
} | {
|
|
1515
|
+
anonymous: boolean;
|
|
1516
|
+
inputs: {
|
|
1517
|
+
indexed: boolean;
|
|
1518
|
+
internalType: string;
|
|
1519
|
+
name: string;
|
|
1520
|
+
type: string;
|
|
1521
|
+
}[];
|
|
1522
|
+
name: string;
|
|
1523
|
+
type: string;
|
|
1524
|
+
stateMutability?: undefined;
|
|
1525
|
+
outputs?: undefined;
|
|
1526
|
+
} | {
|
|
1527
|
+
inputs: {
|
|
1528
|
+
internalType: string;
|
|
1529
|
+
name: string;
|
|
1530
|
+
type: string;
|
|
1531
|
+
}[];
|
|
1532
|
+
name: string;
|
|
1533
|
+
outputs: {
|
|
1534
|
+
internalType: string;
|
|
1535
|
+
name: string;
|
|
1536
|
+
type: string;
|
|
1537
|
+
}[];
|
|
1538
|
+
stateMutability: string;
|
|
1539
|
+
type: string;
|
|
1540
|
+
anonymous?: undefined;
|
|
1541
|
+
} | {
|
|
1542
|
+
inputs: {
|
|
1543
|
+
internalType: string;
|
|
1544
|
+
name: string;
|
|
1545
|
+
type: string;
|
|
1546
|
+
}[];
|
|
1547
|
+
name: string;
|
|
1548
|
+
outputs: {
|
|
1549
|
+
components: {
|
|
1550
|
+
internalType: string;
|
|
1551
|
+
name: string;
|
|
1552
|
+
type: string;
|
|
1553
|
+
}[];
|
|
1554
|
+
internalType: string;
|
|
1555
|
+
name: string;
|
|
1556
|
+
type: string;
|
|
1557
|
+
}[];
|
|
1558
|
+
stateMutability: string;
|
|
1559
|
+
type: string;
|
|
1560
|
+
anonymous?: undefined;
|
|
1561
|
+
})[] | ({
|
|
1562
|
+
inputs: {
|
|
1563
|
+
internalType: string;
|
|
1564
|
+
name: string;
|
|
1565
|
+
type: string;
|
|
1566
|
+
}[];
|
|
1567
|
+
stateMutability: string;
|
|
1568
|
+
type: string;
|
|
1569
|
+
name?: undefined;
|
|
1570
|
+
anonymous?: undefined;
|
|
1571
|
+
outputs?: undefined;
|
|
1572
|
+
} | {
|
|
1573
|
+
inputs: {
|
|
1574
|
+
internalType: string;
|
|
1575
|
+
name: string;
|
|
1576
|
+
type: string;
|
|
1577
|
+
}[];
|
|
1578
|
+
name: string;
|
|
1579
|
+
type: string;
|
|
1580
|
+
stateMutability?: undefined;
|
|
1581
|
+
anonymous?: undefined;
|
|
1582
|
+
outputs?: undefined;
|
|
1583
|
+
} | {
|
|
1584
|
+
anonymous: boolean;
|
|
1585
|
+
inputs: {
|
|
1586
|
+
indexed: boolean;
|
|
1587
|
+
internalType: string;
|
|
1588
|
+
name: string;
|
|
1589
|
+
type: string;
|
|
1590
|
+
}[];
|
|
1591
|
+
name: string;
|
|
1592
|
+
type: string;
|
|
1593
|
+
stateMutability?: undefined;
|
|
1594
|
+
outputs?: undefined;
|
|
1595
|
+
} | {
|
|
1596
|
+
inputs: {
|
|
1597
|
+
internalType: string;
|
|
1598
|
+
name: string;
|
|
1599
|
+
type: string;
|
|
1600
|
+
}[];
|
|
1601
|
+
name: string;
|
|
1602
|
+
outputs: {
|
|
1603
|
+
internalType: string;
|
|
1604
|
+
name: string;
|
|
1605
|
+
type: string;
|
|
1606
|
+
}[];
|
|
1607
|
+
stateMutability: string;
|
|
1608
|
+
type: string;
|
|
1609
|
+
anonymous?: undefined;
|
|
1610
|
+
} | {
|
|
1611
|
+
inputs: any[];
|
|
1612
|
+
name: string;
|
|
1613
|
+
outputs: {
|
|
1614
|
+
components: {
|
|
1615
|
+
internalType: string;
|
|
1616
|
+
name: string;
|
|
1617
|
+
type: string;
|
|
1618
|
+
}[];
|
|
1619
|
+
internalType: string;
|
|
1620
|
+
name: string;
|
|
1621
|
+
type: string;
|
|
1622
|
+
}[];
|
|
1623
|
+
stateMutability: string;
|
|
1624
|
+
type: string;
|
|
1625
|
+
anonymous?: undefined;
|
|
1626
|
+
})[];
|
|
1627
|
+
export { getABI, ABIS };
|