@raac/rpc 1.1.0-beta.8 → 1.1.0-beta.80
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 +53 -6
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +279 -309
- package/dist/artifacts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.json +246 -0
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +458 -0
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +458 -0
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +529 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +2 -93
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +169 -13
- package/dist/artifacts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.json +556 -0
- package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +637 -0
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +190 -29
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +20 -2
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +55 -3
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +267 -220
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +421 -124
- package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +397 -0
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +223 -7
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +111 -8
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +272 -28
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +50 -39
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +25 -2
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +2 -2
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +17 -9
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +89 -9
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +405 -108
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +2 -2
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
- package/dist/artifacts/zeno/Auction.sol/Auction.json +57 -2
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +44 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +2 -2
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/11155111.json +80 -20
- package/dist/configs/chains/17000.json +25 -0
- package/dist/configs/chains/18453.json +187 -0
- package/dist/configs/chains/8453.json +66 -18
- package/dist/configs/chains/index.js +2 -0
- package/dist/minter/get.js +1 -3
- package/dist/minter/getApy.js +2 -2
- package/dist/nfts/approveNFT.js +25 -0
- package/dist/nfts/getApprovalForAll.js +32 -0
- package/dist/nfts/getNFTApproval.js +33 -0
- package/dist/nfts/getOwnerOfNFT.js +39 -0
- package/dist/nfts/setApprovalForAll.js +34 -0
- package/dist/oracles/chainlink-networks-config.js +252 -0
- package/dist/oracles/encryptSecretURLs.js +25 -0
- package/dist/oracles/encryptSecrets.js +29 -0
- package/dist/oracles/houses/config.js +19 -0
- package/dist/oracles/houses/request.js +176 -0
- package/dist/oracles/houses/simulate.js +21 -0
- package/dist/oracles/prime-rate/config.js +16 -0
- package/dist/oracles/prime-rate/request.js +149 -0
- package/dist/oracles/prime-rate/simulate.js +25 -0
- package/dist/pools/lendingPool/_helpers.js +2 -3
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +4 -3
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +4 -3
- package/dist/pools/lendingPool/borrowFromLendingPool.js +5 -3
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +34 -3
- package/dist/pools/lendingPool/calculateInsuranceFee.js +2 -2
- package/dist/pools/lendingPool/closeLiquidation.js +2 -2
- package/dist/pools/lendingPool/depositAssetToLendingPool.js +2 -2
- package/dist/pools/lendingPool/depositToLendingPool.js +4 -2
- package/dist/pools/lendingPool/getAdapterAddress.js +8 -10
- package/dist/pools/lendingPool/getAdapters.js +1 -1
- package/dist/pools/lendingPool/getEligibleUserDeposits.js +1 -1
- package/dist/pools/lendingPool/getHealthFactor.js +2 -2
- package/dist/pools/lendingPool/getLendingPoolInfo.js +24 -15
- package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +1 -1
- package/dist/pools/lendingPool/getParameters.js +3 -4
- package/dist/pools/lendingPool/getPositionDebt.js +2 -2
- package/dist/pools/lendingPool/getPositionScaledDebt.js +2 -2
- package/dist/pools/lendingPool/getPositionView.js +1 -1
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +1 -1
- package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +1 -1
- package/dist/pools/lendingPool/getUserCollateralValue.js +1 -1
- package/dist/pools/lendingPool/initializeLiquidation.js +2 -2
- package/dist/pools/lendingPool/openVaultPosition.js +2 -4
- package/dist/pools/lendingPool/repayToLendingPool.js +2 -2
- package/dist/pools/lendingPool/vaultOpened.js +22 -0
- package/dist/pools/lendingPool/withdrawAssetFromLendingPool.js +3 -4
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +7 -4
- package/dist/pools/rwaVault/_helpers.js +2 -3
- package/dist/pools/rwaVault/depositToRWAVault.js +6 -5
- package/dist/pools/rwaVault/getNextRandomNFT.js +1 -1
- package/dist/pools/rwaVault/getRWAVaultInfo.js +3 -14
- package/dist/pools/rwaVault/previewDeposit.js +16 -0
- package/dist/pools/rwaVault/previewWithdraw.js +16 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +9 -5
- package/dist/pools/rwaVault/requestRandomSeed.js +1 -1
- package/dist/pools/stabilityPool/_helpers.js +11 -0
- package/dist/pools/stabilityPool/getStabilityPoolInfo.js +2 -39
- package/dist/pools/stabilityPool/getWithdrawRequestInfo.js +28 -0
- package/dist/pools/{lendingPool → stabilityPool}/requestWithdraw.js +2 -7
- package/dist/scripts/analyze_lending_positions.js +277 -0
- package/dist/scripts/analyze_transfers.js +247 -0
- package/dist/scripts/calculate_portfolio.js +167 -0
- package/dist/scripts/generateErrorMap.js +180 -0
- package/dist/scripts/index.js +211 -78
- package/dist/scripts/liquidation.js +176 -0
- package/dist/scripts/run_analysis.js +115 -0
- package/dist/scripts/test_lending_analysis.js +105 -0
- package/dist/scripts/users.js +305 -0
- package/dist/test.js +323 -0
- package/dist/types/RPCLibrary.d.ts +37 -9
- package/dist/types/configs/chains/index.d.ts +5 -3
- package/dist/types/configs/index.d.ts +2 -1
- package/dist/types/nfts/approveNFT.d.ts +9 -0
- package/dist/types/nfts/getApprovalForAll.d.ts +14 -0
- package/dist/types/nfts/getNFTApproval.d.ts +14 -0
- package/dist/types/nfts/getOwnerOfNFT.d.ts +13 -0
- package/dist/types/nfts/setApprovalForAll.d.ts +14 -0
- package/dist/types/oracles/chainlink-networks-config.d.ts +222 -0
- package/dist/types/oracles/encryptSecretURLs.d.ts +5 -0
- package/dist/types/oracles/encryptSecrets.d.ts +4 -0
- package/dist/types/oracles/houses/config.d.ts +13 -0
- package/dist/types/oracles/houses/request.d.ts +5 -0
- package/dist/types/oracles/houses/simulate.d.ts +1 -0
- package/dist/types/oracles/prime-rate/config.d.ts +14 -0
- package/dist/types/oracles/prime-rate/request.d.ts +2 -0
- package/dist/types/oracles/prime-rate/simulate.d.ts +1 -0
- package/dist/types/pools/lendingPool/_helpers.d.ts +2 -2
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +4 -2
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +4 -2
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +2 -2
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +2 -2
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +2 -0
- package/dist/types/pools/lendingPool/getParameters.d.ts +1 -2
- package/dist/types/pools/lendingPool/getPositionDebt.d.ts +2 -2
- package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +2 -2
- package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/vaultOpened.d.ts +11 -0
- package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +2 -3
- package/dist/types/pools/rwaVault/_helpers.d.ts +2 -2
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +2 -2
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +2 -6
- package/dist/types/pools/rwaVault/previewDeposit.d.ts +4 -0
- package/dist/types/pools/rwaVault/previewWithdraw.d.ts +4 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +3 -2
- package/dist/types/pools/stabilityPool/_helpers.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +0 -3
- package/dist/types/pools/stabilityPool/getWithdrawRequestInfo.d.ts +13 -0
- package/dist/types/scripts/analyze_lending_positions.d.ts +1 -0
- package/dist/types/scripts/analyze_transfers.d.ts +1 -0
- package/dist/types/scripts/calculate_portfolio.d.ts +1 -0
- package/dist/types/scripts/generateErrorMap.d.ts +1 -0
- package/dist/types/scripts/liquidation.d.ts +1 -0
- package/dist/types/scripts/run_analysis.d.ts +1 -0
- package/dist/types/scripts/test_lending_analysis.d.ts +1 -0
- package/dist/types/scripts/users.d.ts +1 -0
- package/dist/types/test.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -3
- package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.d.ts +65 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/{utils/math/Math.d.ts → proxy/ERC1967/ERC1967Utils.d.ts} +4 -4
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/Proxy.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/IBeacon.d.ts +25 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/index.d.ts +7 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.d.ts +74 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts +80 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts +51 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +180 -178
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +17 -5
- package/dist/types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +53 -52
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +19 -1
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +2 -6
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +1 -41
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +36 -20
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +116 -10
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +338 -0
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts +55 -0
- package/dist/types/typechain-types/contracts/{mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts} +9 -9
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +37 -0
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/{mocks/core/oracles/MockERC20PriceOracle.sol → core/oracles/crvUSDPriceOracle.sol}/IPriceOracle.d.ts +1 -1
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/{ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts → ERC721AssetAdapter.d.ts} +29 -2
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +145 -153
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +94 -63
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +94 -63
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +105 -62
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +66 -28
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +36 -8
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +312 -81
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +61 -25
- package/dist/types/typechain-types/contracts/core/primitives/{ComplianceRegistry.d.ts → ComplianceRegistry.sol/ComplianceRegistry.d.ts} +30 -2
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +129 -7
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -1
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +39 -9
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +12 -111
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +191 -31
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +15 -33
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/vaults/{ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts → ERC20VaultAdapter.d.ts} +10 -8
- package/dist/types/typechain-types/contracts/core/vaults/{ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts → ERC721VaultAdapter.d.ts} +40 -8
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts +262 -0
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +321 -65
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +3 -4
- package/dist/types/typechain-types/contracts/{mocks/libraries/governance/RAACVotingMock.d.ts → interfaces/core/collectors/IDistributionTarget.d.ts} +25 -23
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +136 -44
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +23 -42
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +101 -5
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +2 -6
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +1 -37
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +21 -20
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +47 -1
- package/dist/types/typechain-types/contracts/{core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts → interfaces/core/oracles/IERC20PriceOracle.d.ts} +9 -13
- package/dist/types/typechain-types/contracts/{core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → interfaces/core/oracles/IERC721PriceOracle.d.ts} +6 -6
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer.d.ts +71 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePrices.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +35 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +6 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +80 -70
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +52 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +205 -42
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +31 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +7 -15
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +127 -29
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +11 -33
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +315 -23
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +37 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +1 -3
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +33 -1
- package/dist/types/typechain-types/contracts/libraries/pools/LendingPoolFeeLibrary.d.ts +20 -0
- package/dist/types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +23 -58
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +358 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +37 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +151 -0
- package/dist/types/typechain-types/contracts/{interfaces/IHousePrices.d.ts → mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts} +10 -14
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA.d.ts +59 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/{MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts → MockERC20PriceOracle.d.ts} +1 -1
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +169 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +171 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +6 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool.d.ts +593 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +11 -17
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +10 -7
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +80 -70
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/{@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts → contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts} +18 -14
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/{core/tokens/IndexToken.d.ts → mocks/core/tokens/CrvUSDTokenLimited.d.ts} +53 -155
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +5 -1
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +185 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +33 -2
- package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +34 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +115 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts +56 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +102 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.d.ts +29 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +373 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +214 -238
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +29 -3
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +369 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +369 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +80 -59
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +159 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +29 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +160 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +160 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +14 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -71
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +43 -10
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +128 -23
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +135 -14
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +443 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/contracts/{interfaces/IHousePrices__factory.d.ts → core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts} +6 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +203 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +153 -28
- package/dist/types/typechain-types/factories/contracts/{mocks/core/oracles/MockERC20PriceOracle.sol → core/oracles/RWAIndexTokenOracle.sol}/IPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +74 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +52 -0
- package/dist/types/typechain-types/factories/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/crvUSDPriceOracle.sol}/IPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/crvUSDPriceOracle.sol}/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/{ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts → ERC721AssetAdapter__factory.d.ts} +44 -4
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +103 -50
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +186 -173
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +101 -56
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +117 -48
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +70 -34
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +82 -8
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +58 -34
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +344 -109
- package/dist/types/typechain-types/factories/contracts/core/primitives/{ComplianceRegistry__factory.d.ts → ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts} +47 -3
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +174 -8
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +87 -9
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +15 -168
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +213 -24
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +40 -32
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +22 -4
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/{ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts → ERC20VaultAdapter__factory.d.ts} +15 -9
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +417 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +318 -86
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +3 -2
- package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IDistributionTarget__factory.d.ts +39 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +131 -95
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +20 -49
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +133 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +24 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -60
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +19 -16
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +52 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/{core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts → interfaces/core/oracles/IERC721PriceOracle__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer__factory.d.ts +59 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePrices__factory.d.ts +67 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +26 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +113 -92
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +12 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +236 -41
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +70 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +10 -16
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +122 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +19 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +301 -19
- package/dist/types/typechain-types/factories/contracts/interfaces/{IPoolManager__factory.d.ts → core/vaults/IERC721VaultAdapter__factory.d.ts} +20 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/LendingPoolFeeLibrary__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +21 -68
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +651 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- 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/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
- package/dist/types/typechain-types/factories/contracts/{core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts → mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts} +7 -7
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +98 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/{MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts → MockERC20PriceOracle__factory.d.ts} +3 -3
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +242 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +184 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +203 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +153 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +938 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +9 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +114 -83
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -19
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +27 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +431 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +228 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +23 -5
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +34 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +44 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
- package/dist/types/typechain-types/index.d.ts +88 -18
- package/dist/types/utils/artifacts.d.ts +997 -284
- package/dist/types/utils/contracts.d.ts +4 -2
- package/dist/types/utils/errorDecoder.d.ts +37 -0
- package/dist/types/wallet/assets/approveNFT.d.ts +0 -0
- package/dist/types/wallet/assets/getAllowance.d.ts +1 -1
- package/dist/types/wallet/assets/getBalance.d.ts +3 -3
- package/dist/utils/artifacts.js +16 -0
- package/dist/utils/errorDecoder.js +137 -0
- package/dist/wallet/assets/approveNFT.js +0 -0
- package/dist/wallet/assets/getAllowance.js +3 -3
- package/dist/wallet/assets/getBalance.js +14 -6
- package/package.json +8 -4
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +0 -25
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +0 -8
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
- package/dist/types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
- package/dist/types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
- package/dist/types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
- package/dist/types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +0 -117
- package/dist/types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
- package/dist/types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
- package/dist/types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
- package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -287
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
- package/dist/types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +0 -141
- package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
- package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- /package/dist/types/pools/{lendingPool → stabilityPool}/requestWithdraw.d.ts +0 -0
- /package/dist/types/typechain-types/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/RWAIndexTokenOracle.sol}/IPriceOracle.d.ts +0 -0
|
@@ -605,6 +605,56 @@ declare const ABIS: {
|
|
|
605
605
|
type: string;
|
|
606
606
|
anonymous?: undefined;
|
|
607
607
|
})[];
|
|
608
|
+
raachousepriceoracle: ({
|
|
609
|
+
inputs: {
|
|
610
|
+
internalType: string;
|
|
611
|
+
name: string;
|
|
612
|
+
type: string;
|
|
613
|
+
}[];
|
|
614
|
+
stateMutability: string;
|
|
615
|
+
type: string;
|
|
616
|
+
name?: undefined;
|
|
617
|
+
anonymous?: undefined;
|
|
618
|
+
outputs?: undefined;
|
|
619
|
+
} | {
|
|
620
|
+
inputs: {
|
|
621
|
+
internalType: string;
|
|
622
|
+
name: string;
|
|
623
|
+
type: string;
|
|
624
|
+
}[];
|
|
625
|
+
name: string;
|
|
626
|
+
type: string;
|
|
627
|
+
stateMutability?: undefined;
|
|
628
|
+
anonymous?: undefined;
|
|
629
|
+
outputs?: undefined;
|
|
630
|
+
} | {
|
|
631
|
+
anonymous: boolean;
|
|
632
|
+
inputs: {
|
|
633
|
+
indexed: boolean;
|
|
634
|
+
internalType: string;
|
|
635
|
+
name: string;
|
|
636
|
+
type: string;
|
|
637
|
+
}[];
|
|
638
|
+
name: string;
|
|
639
|
+
type: string;
|
|
640
|
+
stateMutability?: undefined;
|
|
641
|
+
outputs?: undefined;
|
|
642
|
+
} | {
|
|
643
|
+
inputs: {
|
|
644
|
+
internalType: string;
|
|
645
|
+
name: string;
|
|
646
|
+
type: string;
|
|
647
|
+
}[];
|
|
648
|
+
name: string;
|
|
649
|
+
outputs: {
|
|
650
|
+
internalType: string;
|
|
651
|
+
name: string;
|
|
652
|
+
type: string;
|
|
653
|
+
}[];
|
|
654
|
+
stateMutability: string;
|
|
655
|
+
type: string;
|
|
656
|
+
anonymous?: undefined;
|
|
657
|
+
})[];
|
|
608
658
|
feecollector: ({
|
|
609
659
|
inputs: {
|
|
610
660
|
internalType: string;
|
|
@@ -1472,128 +1522,320 @@ declare const ABIS: {
|
|
|
1472
1522
|
type: string;
|
|
1473
1523
|
anonymous?: undefined;
|
|
1474
1524
|
})[];
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
declare const getABI: (name: keyof typeof ABIS) => ({
|
|
1479
|
-
inputs: {
|
|
1480
|
-
internalType: string;
|
|
1481
|
-
name: string;
|
|
1525
|
+
complianceregistry: ({
|
|
1526
|
+
inputs: any[];
|
|
1527
|
+
stateMutability: string;
|
|
1482
1528
|
type: string;
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1529
|
+
name?: undefined;
|
|
1530
|
+
anonymous?: undefined;
|
|
1531
|
+
outputs?: undefined;
|
|
1532
|
+
} | {
|
|
1533
|
+
inputs: {
|
|
1534
|
+
internalType: string;
|
|
1535
|
+
name: string;
|
|
1536
|
+
type: string;
|
|
1537
|
+
}[];
|
|
1492
1538
|
name: string;
|
|
1493
1539
|
type: string;
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1540
|
+
stateMutability?: undefined;
|
|
1541
|
+
anonymous?: undefined;
|
|
1542
|
+
outputs?: undefined;
|
|
1543
|
+
} | {
|
|
1544
|
+
anonymous: boolean;
|
|
1545
|
+
inputs: {
|
|
1546
|
+
indexed: boolean;
|
|
1547
|
+
internalType: string;
|
|
1548
|
+
name: string;
|
|
1549
|
+
type: string;
|
|
1550
|
+
}[];
|
|
1505
1551
|
name: string;
|
|
1506
1552
|
type: string;
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1553
|
+
stateMutability?: undefined;
|
|
1554
|
+
outputs?: undefined;
|
|
1555
|
+
} | {
|
|
1556
|
+
inputs: {
|
|
1557
|
+
internalType: string;
|
|
1558
|
+
name: string;
|
|
1559
|
+
type: string;
|
|
1560
|
+
}[];
|
|
1515
1561
|
name: string;
|
|
1562
|
+
outputs: {
|
|
1563
|
+
internalType: string;
|
|
1564
|
+
name: string;
|
|
1565
|
+
type: string;
|
|
1566
|
+
}[];
|
|
1567
|
+
stateMutability: string;
|
|
1516
1568
|
type: string;
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1569
|
+
anonymous?: undefined;
|
|
1570
|
+
})[];
|
|
1571
|
+
treasury: ({
|
|
1572
|
+
inputs: {
|
|
1573
|
+
internalType: string;
|
|
1574
|
+
name: string;
|
|
1575
|
+
type: string;
|
|
1576
|
+
}[];
|
|
1577
|
+
stateMutability: string;
|
|
1522
1578
|
type: string;
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1579
|
+
name?: undefined;
|
|
1580
|
+
anonymous?: undefined;
|
|
1581
|
+
outputs?: undefined;
|
|
1582
|
+
} | {
|
|
1583
|
+
inputs: {
|
|
1584
|
+
internalType: string;
|
|
1585
|
+
name: string;
|
|
1586
|
+
type: string;
|
|
1587
|
+
}[];
|
|
1530
1588
|
name: string;
|
|
1531
1589
|
type: string;
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1590
|
+
stateMutability?: undefined;
|
|
1591
|
+
anonymous?: undefined;
|
|
1592
|
+
outputs?: undefined;
|
|
1593
|
+
} | {
|
|
1594
|
+
anonymous: boolean;
|
|
1595
|
+
inputs: {
|
|
1596
|
+
indexed: boolean;
|
|
1597
|
+
internalType: string;
|
|
1598
|
+
name: string;
|
|
1599
|
+
type: string;
|
|
1600
|
+
}[];
|
|
1541
1601
|
name: string;
|
|
1542
1602
|
type: string;
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
inputs: {
|
|
1552
|
-
indexed: boolean;
|
|
1553
|
-
internalType: string;
|
|
1603
|
+
stateMutability?: undefined;
|
|
1604
|
+
outputs?: undefined;
|
|
1605
|
+
} | {
|
|
1606
|
+
inputs: {
|
|
1607
|
+
internalType: string;
|
|
1608
|
+
name: string;
|
|
1609
|
+
type: string;
|
|
1610
|
+
}[];
|
|
1554
1611
|
name: string;
|
|
1612
|
+
outputs: {
|
|
1613
|
+
internalType: string;
|
|
1614
|
+
name: string;
|
|
1615
|
+
type: string;
|
|
1616
|
+
}[];
|
|
1617
|
+
stateMutability: string;
|
|
1555
1618
|
type: string;
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1619
|
+
anonymous?: undefined;
|
|
1620
|
+
})[];
|
|
1621
|
+
rwaindextokencollector: ({
|
|
1622
|
+
inputs: {
|
|
1623
|
+
internalType: string;
|
|
1624
|
+
name: string;
|
|
1625
|
+
type: string;
|
|
1626
|
+
}[];
|
|
1627
|
+
stateMutability: string;
|
|
1565
1628
|
type: string;
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1629
|
+
name?: undefined;
|
|
1630
|
+
anonymous?: undefined;
|
|
1631
|
+
outputs?: undefined;
|
|
1632
|
+
} | {
|
|
1633
|
+
inputs: {
|
|
1634
|
+
internalType: string;
|
|
1635
|
+
name: string;
|
|
1636
|
+
type: string;
|
|
1637
|
+
}[];
|
|
1570
1638
|
name: string;
|
|
1571
1639
|
type: string;
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1640
|
+
stateMutability?: undefined;
|
|
1641
|
+
anonymous?: undefined;
|
|
1642
|
+
outputs?: undefined;
|
|
1643
|
+
} | {
|
|
1644
|
+
anonymous: boolean;
|
|
1645
|
+
inputs: {
|
|
1646
|
+
indexed: boolean;
|
|
1647
|
+
internalType: string;
|
|
1648
|
+
name: string;
|
|
1649
|
+
type: string;
|
|
1650
|
+
}[];
|
|
1579
1651
|
name: string;
|
|
1580
1652
|
type: string;
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1653
|
+
stateMutability?: undefined;
|
|
1654
|
+
outputs?: undefined;
|
|
1655
|
+
} | {
|
|
1656
|
+
inputs: {
|
|
1585
1657
|
internalType: string;
|
|
1586
1658
|
name: string;
|
|
1587
1659
|
type: string;
|
|
1588
1660
|
}[];
|
|
1589
|
-
internalType: string;
|
|
1590
1661
|
name: string;
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1662
|
+
outputs: {
|
|
1663
|
+
internalType: string;
|
|
1664
|
+
name: string;
|
|
1665
|
+
type: string;
|
|
1666
|
+
}[];
|
|
1667
|
+
stateMutability: string;
|
|
1668
|
+
type: string;
|
|
1669
|
+
anonymous?: undefined;
|
|
1670
|
+
})[];
|
|
1671
|
+
raactokencollector: ({
|
|
1672
|
+
inputs: {
|
|
1673
|
+
internalType: string;
|
|
1674
|
+
name: string;
|
|
1675
|
+
type: string;
|
|
1676
|
+
}[];
|
|
1677
|
+
stateMutability: string;
|
|
1678
|
+
type: string;
|
|
1679
|
+
name?: undefined;
|
|
1680
|
+
anonymous?: undefined;
|
|
1681
|
+
outputs?: undefined;
|
|
1682
|
+
} | {
|
|
1683
|
+
inputs: {
|
|
1684
|
+
internalType: string;
|
|
1685
|
+
name: string;
|
|
1686
|
+
type: string;
|
|
1687
|
+
}[];
|
|
1688
|
+
name: string;
|
|
1689
|
+
type: string;
|
|
1690
|
+
stateMutability?: undefined;
|
|
1691
|
+
anonymous?: undefined;
|
|
1692
|
+
outputs?: undefined;
|
|
1693
|
+
} | {
|
|
1694
|
+
anonymous: boolean;
|
|
1695
|
+
inputs: {
|
|
1696
|
+
indexed: boolean;
|
|
1697
|
+
internalType: string;
|
|
1698
|
+
name: string;
|
|
1699
|
+
type: string;
|
|
1700
|
+
}[];
|
|
1701
|
+
name: string;
|
|
1702
|
+
type: string;
|
|
1703
|
+
stateMutability?: undefined;
|
|
1704
|
+
outputs?: undefined;
|
|
1705
|
+
} | {
|
|
1706
|
+
inputs: {
|
|
1707
|
+
internalType: string;
|
|
1708
|
+
name: string;
|
|
1709
|
+
type: string;
|
|
1710
|
+
}[];
|
|
1711
|
+
name: string;
|
|
1712
|
+
outputs: {
|
|
1713
|
+
internalType: string;
|
|
1714
|
+
name: string;
|
|
1715
|
+
type: string;
|
|
1716
|
+
}[];
|
|
1717
|
+
stateMutability: string;
|
|
1718
|
+
type: string;
|
|
1719
|
+
anonymous?: undefined;
|
|
1720
|
+
})[];
|
|
1721
|
+
crvusdtousdoracle: ({
|
|
1722
|
+
inputs: {
|
|
1723
|
+
internalType: string;
|
|
1724
|
+
name: string;
|
|
1725
|
+
type: string;
|
|
1726
|
+
}[];
|
|
1727
|
+
stateMutability: string;
|
|
1728
|
+
type: string;
|
|
1729
|
+
name?: undefined;
|
|
1730
|
+
anonymous?: undefined;
|
|
1731
|
+
outputs?: undefined;
|
|
1732
|
+
} | {
|
|
1733
|
+
inputs: {
|
|
1734
|
+
internalType: string;
|
|
1735
|
+
name: string;
|
|
1736
|
+
type: string;
|
|
1737
|
+
}[];
|
|
1738
|
+
name: string;
|
|
1739
|
+
type: string;
|
|
1740
|
+
stateMutability?: undefined;
|
|
1741
|
+
anonymous?: undefined;
|
|
1742
|
+
outputs?: undefined;
|
|
1743
|
+
} | {
|
|
1744
|
+
anonymous: boolean;
|
|
1745
|
+
inputs: {
|
|
1746
|
+
indexed: boolean;
|
|
1747
|
+
internalType: string;
|
|
1748
|
+
name: string;
|
|
1749
|
+
type: string;
|
|
1750
|
+
}[];
|
|
1751
|
+
name: string;
|
|
1752
|
+
type: string;
|
|
1753
|
+
stateMutability?: undefined;
|
|
1754
|
+
outputs?: undefined;
|
|
1755
|
+
} | {
|
|
1756
|
+
inputs: any[];
|
|
1757
|
+
name: string;
|
|
1758
|
+
outputs: {
|
|
1759
|
+
internalType: string;
|
|
1760
|
+
name: string;
|
|
1761
|
+
type: string;
|
|
1762
|
+
}[];
|
|
1763
|
+
stateMutability: string;
|
|
1764
|
+
type: string;
|
|
1765
|
+
anonymous?: undefined;
|
|
1766
|
+
} | {
|
|
1767
|
+
inputs: {
|
|
1768
|
+
internalType: string;
|
|
1769
|
+
name: string;
|
|
1770
|
+
type: string;
|
|
1771
|
+
}[];
|
|
1772
|
+
name: string;
|
|
1773
|
+
outputs: any[];
|
|
1774
|
+
stateMutability: string;
|
|
1775
|
+
type: string;
|
|
1776
|
+
anonymous?: undefined;
|
|
1777
|
+
})[];
|
|
1778
|
+
nftroyaltyfeecollector: ({
|
|
1779
|
+
inputs: {
|
|
1780
|
+
internalType: string;
|
|
1781
|
+
name: string;
|
|
1782
|
+
type: string;
|
|
1783
|
+
}[];
|
|
1784
|
+
stateMutability: string;
|
|
1785
|
+
type: string;
|
|
1786
|
+
name?: undefined;
|
|
1787
|
+
anonymous?: undefined;
|
|
1788
|
+
outputs?: undefined;
|
|
1789
|
+
} | {
|
|
1790
|
+
inputs: {
|
|
1791
|
+
internalType: string;
|
|
1792
|
+
name: string;
|
|
1793
|
+
type: string;
|
|
1794
|
+
}[];
|
|
1795
|
+
name: string;
|
|
1796
|
+
type: string;
|
|
1797
|
+
stateMutability?: undefined;
|
|
1798
|
+
anonymous?: undefined;
|
|
1799
|
+
outputs?: undefined;
|
|
1800
|
+
} | {
|
|
1801
|
+
anonymous: boolean;
|
|
1802
|
+
inputs: {
|
|
1803
|
+
indexed: boolean;
|
|
1804
|
+
internalType: string;
|
|
1805
|
+
name: string;
|
|
1806
|
+
type: string;
|
|
1807
|
+
}[];
|
|
1808
|
+
name: string;
|
|
1809
|
+
type: string;
|
|
1810
|
+
stateMutability?: undefined;
|
|
1811
|
+
outputs?: undefined;
|
|
1812
|
+
} | {
|
|
1813
|
+
inputs: {
|
|
1814
|
+
internalType: string;
|
|
1815
|
+
name: string;
|
|
1816
|
+
type: string;
|
|
1817
|
+
}[];
|
|
1818
|
+
name: string;
|
|
1819
|
+
outputs: {
|
|
1820
|
+
internalType: string;
|
|
1821
|
+
name: string;
|
|
1822
|
+
type: string;
|
|
1823
|
+
}[];
|
|
1824
|
+
stateMutability: string;
|
|
1825
|
+
type: string;
|
|
1826
|
+
anonymous?: undefined;
|
|
1827
|
+
} | {
|
|
1828
|
+
stateMutability: string;
|
|
1829
|
+
type: string;
|
|
1830
|
+
inputs?: undefined;
|
|
1831
|
+
name?: undefined;
|
|
1832
|
+
anonymous?: undefined;
|
|
1833
|
+
outputs?: undefined;
|
|
1834
|
+
})[];
|
|
1835
|
+
};
|
|
1836
|
+
export type AssetType = keyof typeof ABIS | string;
|
|
1837
|
+
export type ContractType = keyof typeof ABIS;
|
|
1838
|
+
declare const getABI: (name: keyof typeof ABIS) => ({
|
|
1597
1839
|
inputs: {
|
|
1598
1840
|
internalType: string;
|
|
1599
1841
|
name: string;
|
|
@@ -1810,7 +2052,11 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
1810
2052
|
type: string;
|
|
1811
2053
|
anonymous?: undefined;
|
|
1812
2054
|
} | {
|
|
1813
|
-
inputs:
|
|
2055
|
+
inputs: {
|
|
2056
|
+
internalType: string;
|
|
2057
|
+
name: string;
|
|
2058
|
+
type: string;
|
|
2059
|
+
}[];
|
|
1814
2060
|
name: string;
|
|
1815
2061
|
outputs: {
|
|
1816
2062
|
components: {
|
|
@@ -1913,13 +2159,594 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
1913
2159
|
internalType: string;
|
|
1914
2160
|
name: string;
|
|
1915
2161
|
type: string;
|
|
1916
|
-
}[];
|
|
2162
|
+
}[];
|
|
2163
|
+
name: string;
|
|
2164
|
+
outputs: {
|
|
2165
|
+
internalType: string;
|
|
2166
|
+
name: string;
|
|
2167
|
+
type: string;
|
|
2168
|
+
}[];
|
|
2169
|
+
stateMutability: string;
|
|
2170
|
+
type: string;
|
|
2171
|
+
anonymous?: undefined;
|
|
2172
|
+
} | {
|
|
2173
|
+
inputs: any[];
|
|
2174
|
+
name: string;
|
|
2175
|
+
outputs: {
|
|
2176
|
+
components: {
|
|
2177
|
+
internalType: string;
|
|
2178
|
+
name: string;
|
|
2179
|
+
type: string;
|
|
2180
|
+
}[];
|
|
2181
|
+
internalType: string;
|
|
2182
|
+
name: string;
|
|
2183
|
+
type: string;
|
|
2184
|
+
}[];
|
|
2185
|
+
stateMutability: string;
|
|
2186
|
+
type: string;
|
|
2187
|
+
anonymous?: undefined;
|
|
2188
|
+
})[] | ({
|
|
2189
|
+
inputs: {
|
|
2190
|
+
internalType: string;
|
|
2191
|
+
name: string;
|
|
2192
|
+
type: string;
|
|
2193
|
+
}[];
|
|
2194
|
+
stateMutability: string;
|
|
2195
|
+
type: string;
|
|
2196
|
+
name?: undefined;
|
|
2197
|
+
anonymous?: undefined;
|
|
2198
|
+
outputs?: undefined;
|
|
2199
|
+
} | {
|
|
2200
|
+
inputs: {
|
|
2201
|
+
internalType: string;
|
|
2202
|
+
name: string;
|
|
2203
|
+
type: string;
|
|
2204
|
+
}[];
|
|
2205
|
+
name: string;
|
|
2206
|
+
type: string;
|
|
2207
|
+
stateMutability?: undefined;
|
|
2208
|
+
anonymous?: undefined;
|
|
2209
|
+
outputs?: undefined;
|
|
2210
|
+
} | {
|
|
2211
|
+
anonymous: boolean;
|
|
2212
|
+
inputs: {
|
|
2213
|
+
indexed: boolean;
|
|
2214
|
+
internalType: string;
|
|
2215
|
+
name: string;
|
|
2216
|
+
type: string;
|
|
2217
|
+
}[];
|
|
2218
|
+
name: string;
|
|
2219
|
+
type: string;
|
|
2220
|
+
stateMutability?: undefined;
|
|
2221
|
+
outputs?: undefined;
|
|
2222
|
+
} | {
|
|
2223
|
+
inputs: {
|
|
2224
|
+
internalType: string;
|
|
2225
|
+
name: string;
|
|
2226
|
+
type: string;
|
|
2227
|
+
}[];
|
|
2228
|
+
name: string;
|
|
2229
|
+
outputs: {
|
|
2230
|
+
internalType: string;
|
|
2231
|
+
name: string;
|
|
2232
|
+
type: string;
|
|
2233
|
+
}[];
|
|
2234
|
+
stateMutability: string;
|
|
2235
|
+
type: string;
|
|
2236
|
+
anonymous?: undefined;
|
|
2237
|
+
})[] | ({
|
|
2238
|
+
inputs: {
|
|
2239
|
+
internalType: string;
|
|
2240
|
+
name: string;
|
|
2241
|
+
type: string;
|
|
2242
|
+
}[];
|
|
2243
|
+
stateMutability: string;
|
|
2244
|
+
type: string;
|
|
2245
|
+
name?: undefined;
|
|
2246
|
+
anonymous?: undefined;
|
|
2247
|
+
outputs?: undefined;
|
|
2248
|
+
} | {
|
|
2249
|
+
inputs: {
|
|
2250
|
+
internalType: string;
|
|
2251
|
+
name: string;
|
|
2252
|
+
type: string;
|
|
2253
|
+
}[];
|
|
2254
|
+
name: string;
|
|
2255
|
+
type: string;
|
|
2256
|
+
stateMutability?: undefined;
|
|
2257
|
+
anonymous?: undefined;
|
|
2258
|
+
outputs?: undefined;
|
|
2259
|
+
} | {
|
|
2260
|
+
anonymous: boolean;
|
|
2261
|
+
inputs: {
|
|
2262
|
+
indexed: boolean;
|
|
2263
|
+
internalType: string;
|
|
2264
|
+
name: string;
|
|
2265
|
+
type: string;
|
|
2266
|
+
}[];
|
|
2267
|
+
name: string;
|
|
2268
|
+
type: string;
|
|
2269
|
+
stateMutability?: undefined;
|
|
2270
|
+
outputs?: undefined;
|
|
2271
|
+
} | {
|
|
2272
|
+
inputs: {
|
|
2273
|
+
internalType: string;
|
|
2274
|
+
name: string;
|
|
2275
|
+
type: string;
|
|
2276
|
+
}[];
|
|
2277
|
+
name: string;
|
|
2278
|
+
outputs: {
|
|
2279
|
+
internalType: string;
|
|
2280
|
+
name: string;
|
|
2281
|
+
type: string;
|
|
2282
|
+
}[];
|
|
2283
|
+
stateMutability: string;
|
|
2284
|
+
type: string;
|
|
2285
|
+
anonymous?: undefined;
|
|
2286
|
+
})[] | ({
|
|
2287
|
+
inputs: {
|
|
2288
|
+
internalType: string;
|
|
2289
|
+
name: string;
|
|
2290
|
+
type: string;
|
|
2291
|
+
}[];
|
|
2292
|
+
stateMutability: string;
|
|
2293
|
+
type: string;
|
|
2294
|
+
name?: undefined;
|
|
2295
|
+
anonymous?: undefined;
|
|
2296
|
+
outputs?: undefined;
|
|
2297
|
+
} | {
|
|
2298
|
+
inputs: {
|
|
2299
|
+
internalType: string;
|
|
2300
|
+
name: string;
|
|
2301
|
+
type: string;
|
|
2302
|
+
}[];
|
|
2303
|
+
name: string;
|
|
2304
|
+
type: string;
|
|
2305
|
+
stateMutability?: undefined;
|
|
2306
|
+
anonymous?: undefined;
|
|
2307
|
+
outputs?: undefined;
|
|
2308
|
+
} | {
|
|
2309
|
+
anonymous: boolean;
|
|
2310
|
+
inputs: {
|
|
2311
|
+
indexed: boolean;
|
|
2312
|
+
internalType: string;
|
|
2313
|
+
name: string;
|
|
2314
|
+
type: string;
|
|
2315
|
+
}[];
|
|
2316
|
+
name: string;
|
|
2317
|
+
type: string;
|
|
2318
|
+
stateMutability?: undefined;
|
|
2319
|
+
outputs?: undefined;
|
|
2320
|
+
} | {
|
|
2321
|
+
inputs: {
|
|
2322
|
+
internalType: string;
|
|
2323
|
+
name: string;
|
|
2324
|
+
type: string;
|
|
2325
|
+
}[];
|
|
2326
|
+
name: string;
|
|
2327
|
+
outputs: {
|
|
2328
|
+
internalType: string;
|
|
2329
|
+
name: string;
|
|
2330
|
+
type: string;
|
|
2331
|
+
}[];
|
|
2332
|
+
stateMutability: string;
|
|
2333
|
+
type: string;
|
|
2334
|
+
anonymous?: undefined;
|
|
2335
|
+
})[] | ({
|
|
2336
|
+
inputs: {
|
|
2337
|
+
internalType: string;
|
|
2338
|
+
name: string;
|
|
2339
|
+
type: string;
|
|
2340
|
+
}[];
|
|
2341
|
+
stateMutability: string;
|
|
2342
|
+
type: string;
|
|
2343
|
+
name?: undefined;
|
|
2344
|
+
anonymous?: undefined;
|
|
2345
|
+
outputs?: undefined;
|
|
2346
|
+
} | {
|
|
2347
|
+
inputs: {
|
|
2348
|
+
internalType: string;
|
|
2349
|
+
name: string;
|
|
2350
|
+
type: string;
|
|
2351
|
+
}[];
|
|
2352
|
+
name: string;
|
|
2353
|
+
type: string;
|
|
2354
|
+
stateMutability?: undefined;
|
|
2355
|
+
anonymous?: undefined;
|
|
2356
|
+
outputs?: undefined;
|
|
2357
|
+
} | {
|
|
2358
|
+
anonymous: boolean;
|
|
2359
|
+
inputs: {
|
|
2360
|
+
indexed: boolean;
|
|
2361
|
+
internalType: string;
|
|
2362
|
+
name: string;
|
|
2363
|
+
type: string;
|
|
2364
|
+
}[];
|
|
2365
|
+
name: string;
|
|
2366
|
+
type: string;
|
|
2367
|
+
stateMutability?: undefined;
|
|
2368
|
+
outputs?: undefined;
|
|
2369
|
+
} | {
|
|
2370
|
+
inputs: {
|
|
2371
|
+
internalType: string;
|
|
2372
|
+
name: string;
|
|
2373
|
+
type: string;
|
|
2374
|
+
}[];
|
|
2375
|
+
name: string;
|
|
2376
|
+
outputs: {
|
|
2377
|
+
internalType: string;
|
|
2378
|
+
name: string;
|
|
2379
|
+
type: string;
|
|
2380
|
+
}[];
|
|
2381
|
+
stateMutability: string;
|
|
2382
|
+
type: string;
|
|
2383
|
+
anonymous?: undefined;
|
|
2384
|
+
})[] | ({
|
|
2385
|
+
inputs: {
|
|
2386
|
+
internalType: string;
|
|
2387
|
+
name: string;
|
|
2388
|
+
type: string;
|
|
2389
|
+
}[];
|
|
2390
|
+
stateMutability: string;
|
|
2391
|
+
type: string;
|
|
2392
|
+
name?: undefined;
|
|
2393
|
+
anonymous?: undefined;
|
|
2394
|
+
outputs?: undefined;
|
|
2395
|
+
} | {
|
|
2396
|
+
inputs: {
|
|
2397
|
+
internalType: string;
|
|
2398
|
+
name: string;
|
|
2399
|
+
type: string;
|
|
2400
|
+
}[];
|
|
2401
|
+
name: string;
|
|
2402
|
+
type: string;
|
|
2403
|
+
stateMutability?: undefined;
|
|
2404
|
+
anonymous?: undefined;
|
|
2405
|
+
outputs?: undefined;
|
|
2406
|
+
} | {
|
|
2407
|
+
anonymous: boolean;
|
|
2408
|
+
inputs: {
|
|
2409
|
+
indexed: boolean;
|
|
2410
|
+
internalType: string;
|
|
2411
|
+
name: string;
|
|
2412
|
+
type: string;
|
|
2413
|
+
}[];
|
|
2414
|
+
name: string;
|
|
2415
|
+
type: string;
|
|
2416
|
+
stateMutability?: undefined;
|
|
2417
|
+
outputs?: undefined;
|
|
2418
|
+
} | {
|
|
2419
|
+
inputs: {
|
|
2420
|
+
internalType: string;
|
|
2421
|
+
name: string;
|
|
2422
|
+
type: string;
|
|
2423
|
+
}[];
|
|
2424
|
+
name: string;
|
|
2425
|
+
outputs: {
|
|
2426
|
+
internalType: string;
|
|
2427
|
+
name: string;
|
|
2428
|
+
type: string;
|
|
2429
|
+
}[];
|
|
2430
|
+
stateMutability: string;
|
|
2431
|
+
type: string;
|
|
2432
|
+
anonymous?: undefined;
|
|
2433
|
+
} | {
|
|
2434
|
+
inputs: {
|
|
2435
|
+
internalType: string;
|
|
2436
|
+
name: string;
|
|
2437
|
+
type: string;
|
|
2438
|
+
}[];
|
|
2439
|
+
name: string;
|
|
2440
|
+
outputs: {
|
|
2441
|
+
components: {
|
|
2442
|
+
internalType: string;
|
|
2443
|
+
name: string;
|
|
2444
|
+
type: string;
|
|
2445
|
+
}[];
|
|
2446
|
+
internalType: string;
|
|
2447
|
+
name: string;
|
|
2448
|
+
type: string;
|
|
2449
|
+
}[];
|
|
2450
|
+
stateMutability: string;
|
|
2451
|
+
type: string;
|
|
2452
|
+
anonymous?: undefined;
|
|
2453
|
+
})[] | ({
|
|
2454
|
+
inputs: {
|
|
2455
|
+
internalType: string;
|
|
2456
|
+
name: string;
|
|
2457
|
+
type: string;
|
|
2458
|
+
}[];
|
|
2459
|
+
stateMutability: string;
|
|
2460
|
+
type: string;
|
|
2461
|
+
name?: undefined;
|
|
2462
|
+
anonymous?: undefined;
|
|
2463
|
+
outputs?: undefined;
|
|
2464
|
+
} | {
|
|
2465
|
+
inputs: {
|
|
2466
|
+
internalType: string;
|
|
2467
|
+
name: string;
|
|
2468
|
+
type: string;
|
|
2469
|
+
}[];
|
|
2470
|
+
name: string;
|
|
2471
|
+
type: string;
|
|
2472
|
+
stateMutability?: undefined;
|
|
2473
|
+
anonymous?: undefined;
|
|
2474
|
+
outputs?: undefined;
|
|
2475
|
+
} | {
|
|
2476
|
+
anonymous: boolean;
|
|
2477
|
+
inputs: {
|
|
2478
|
+
indexed: boolean;
|
|
2479
|
+
internalType: string;
|
|
2480
|
+
name: string;
|
|
2481
|
+
type: string;
|
|
2482
|
+
}[];
|
|
2483
|
+
name: string;
|
|
2484
|
+
type: string;
|
|
2485
|
+
stateMutability?: undefined;
|
|
2486
|
+
outputs?: undefined;
|
|
2487
|
+
} | {
|
|
2488
|
+
inputs: {
|
|
2489
|
+
internalType: string;
|
|
2490
|
+
name: string;
|
|
2491
|
+
type: string;
|
|
2492
|
+
}[];
|
|
2493
|
+
name: string;
|
|
2494
|
+
outputs: {
|
|
2495
|
+
internalType: string;
|
|
2496
|
+
name: string;
|
|
2497
|
+
type: string;
|
|
2498
|
+
}[];
|
|
2499
|
+
stateMutability: string;
|
|
2500
|
+
type: string;
|
|
2501
|
+
anonymous?: undefined;
|
|
2502
|
+
} | {
|
|
2503
|
+
inputs: any[];
|
|
2504
|
+
name: string;
|
|
2505
|
+
outputs: {
|
|
2506
|
+
components: {
|
|
2507
|
+
internalType: string;
|
|
2508
|
+
name: string;
|
|
2509
|
+
type: string;
|
|
2510
|
+
}[];
|
|
2511
|
+
internalType: string;
|
|
2512
|
+
name: string;
|
|
2513
|
+
type: string;
|
|
2514
|
+
}[];
|
|
2515
|
+
stateMutability: string;
|
|
2516
|
+
type: string;
|
|
2517
|
+
anonymous?: undefined;
|
|
2518
|
+
})[] | ({
|
|
2519
|
+
inputs: {
|
|
2520
|
+
internalType: string;
|
|
2521
|
+
name: string;
|
|
2522
|
+
type: string;
|
|
2523
|
+
}[];
|
|
2524
|
+
stateMutability: string;
|
|
2525
|
+
type: string;
|
|
2526
|
+
name?: undefined;
|
|
2527
|
+
anonymous?: undefined;
|
|
2528
|
+
outputs?: undefined;
|
|
2529
|
+
} | {
|
|
2530
|
+
inputs: {
|
|
2531
|
+
internalType: string;
|
|
2532
|
+
name: string;
|
|
2533
|
+
type: string;
|
|
2534
|
+
}[];
|
|
2535
|
+
name: string;
|
|
2536
|
+
type: string;
|
|
2537
|
+
stateMutability?: undefined;
|
|
2538
|
+
anonymous?: undefined;
|
|
2539
|
+
outputs?: undefined;
|
|
2540
|
+
} | {
|
|
2541
|
+
anonymous: boolean;
|
|
2542
|
+
inputs: {
|
|
2543
|
+
indexed: boolean;
|
|
2544
|
+
internalType: string;
|
|
2545
|
+
name: string;
|
|
2546
|
+
type: string;
|
|
2547
|
+
}[];
|
|
2548
|
+
name: string;
|
|
2549
|
+
type: string;
|
|
2550
|
+
stateMutability?: undefined;
|
|
2551
|
+
outputs?: undefined;
|
|
2552
|
+
} | {
|
|
2553
|
+
inputs: {
|
|
2554
|
+
internalType: string;
|
|
2555
|
+
name: string;
|
|
2556
|
+
type: string;
|
|
2557
|
+
}[];
|
|
2558
|
+
name: string;
|
|
2559
|
+
outputs: {
|
|
2560
|
+
internalType: string;
|
|
2561
|
+
name: string;
|
|
2562
|
+
type: string;
|
|
2563
|
+
}[];
|
|
2564
|
+
stateMutability: string;
|
|
2565
|
+
type: string;
|
|
2566
|
+
anonymous?: undefined;
|
|
2567
|
+
} | {
|
|
2568
|
+
inputs: {
|
|
2569
|
+
internalType: string;
|
|
2570
|
+
name: string;
|
|
2571
|
+
type: string;
|
|
2572
|
+
}[];
|
|
2573
|
+
name: string;
|
|
2574
|
+
outputs: {
|
|
2575
|
+
components: {
|
|
2576
|
+
internalType: string;
|
|
2577
|
+
name: string;
|
|
2578
|
+
type: string;
|
|
2579
|
+
}[];
|
|
2580
|
+
internalType: string;
|
|
2581
|
+
name: string;
|
|
2582
|
+
type: string;
|
|
2583
|
+
}[];
|
|
2584
|
+
stateMutability: string;
|
|
2585
|
+
type: string;
|
|
2586
|
+
anonymous?: undefined;
|
|
2587
|
+
})[] | ({
|
|
2588
|
+
inputs: {
|
|
2589
|
+
internalType: string;
|
|
2590
|
+
name: string;
|
|
2591
|
+
type: string;
|
|
2592
|
+
}[];
|
|
2593
|
+
stateMutability: string;
|
|
2594
|
+
type: string;
|
|
2595
|
+
name?: undefined;
|
|
2596
|
+
anonymous?: undefined;
|
|
2597
|
+
outputs?: undefined;
|
|
2598
|
+
} | {
|
|
2599
|
+
inputs: {
|
|
2600
|
+
internalType: string;
|
|
2601
|
+
name: string;
|
|
2602
|
+
type: string;
|
|
2603
|
+
}[];
|
|
2604
|
+
name: string;
|
|
2605
|
+
type: string;
|
|
2606
|
+
stateMutability?: undefined;
|
|
2607
|
+
anonymous?: undefined;
|
|
2608
|
+
outputs?: undefined;
|
|
2609
|
+
} | {
|
|
2610
|
+
anonymous: boolean;
|
|
2611
|
+
inputs: {
|
|
2612
|
+
indexed: boolean;
|
|
2613
|
+
internalType: string;
|
|
2614
|
+
name: string;
|
|
2615
|
+
type: string;
|
|
2616
|
+
}[];
|
|
2617
|
+
name: string;
|
|
2618
|
+
type: string;
|
|
2619
|
+
stateMutability?: undefined;
|
|
2620
|
+
outputs?: undefined;
|
|
2621
|
+
} | {
|
|
2622
|
+
inputs: {
|
|
2623
|
+
internalType: string;
|
|
2624
|
+
name: string;
|
|
2625
|
+
type: string;
|
|
2626
|
+
}[];
|
|
2627
|
+
name: string;
|
|
2628
|
+
outputs: {
|
|
2629
|
+
internalType: string;
|
|
2630
|
+
name: string;
|
|
2631
|
+
type: string;
|
|
2632
|
+
}[];
|
|
2633
|
+
stateMutability: string;
|
|
2634
|
+
type: string;
|
|
2635
|
+
anonymous?: undefined;
|
|
2636
|
+
} | {
|
|
2637
|
+
inputs: any[];
|
|
2638
|
+
name: string;
|
|
2639
|
+
outputs: {
|
|
2640
|
+
components: {
|
|
2641
|
+
internalType: string;
|
|
2642
|
+
name: string;
|
|
2643
|
+
type: string;
|
|
2644
|
+
}[];
|
|
2645
|
+
internalType: string;
|
|
2646
|
+
name: string;
|
|
2647
|
+
type: string;
|
|
2648
|
+
}[];
|
|
2649
|
+
stateMutability: string;
|
|
2650
|
+
type: string;
|
|
2651
|
+
anonymous?: undefined;
|
|
2652
|
+
})[] | ({
|
|
2653
|
+
inputs: {
|
|
2654
|
+
internalType: string;
|
|
2655
|
+
name: string;
|
|
2656
|
+
type: string;
|
|
2657
|
+
}[];
|
|
2658
|
+
stateMutability: string;
|
|
2659
|
+
type: string;
|
|
2660
|
+
name?: undefined;
|
|
2661
|
+
anonymous?: undefined;
|
|
2662
|
+
outputs?: undefined;
|
|
2663
|
+
} | {
|
|
2664
|
+
inputs: {
|
|
2665
|
+
internalType: string;
|
|
2666
|
+
name: string;
|
|
2667
|
+
type: string;
|
|
2668
|
+
}[];
|
|
2669
|
+
name: string;
|
|
2670
|
+
type: string;
|
|
2671
|
+
stateMutability?: undefined;
|
|
2672
|
+
anonymous?: undefined;
|
|
2673
|
+
outputs?: undefined;
|
|
2674
|
+
} | {
|
|
2675
|
+
anonymous: boolean;
|
|
2676
|
+
inputs: ({
|
|
2677
|
+
indexed: boolean;
|
|
2678
|
+
internalType: string;
|
|
2679
|
+
name: string;
|
|
2680
|
+
type: string;
|
|
2681
|
+
components?: undefined;
|
|
2682
|
+
} | {
|
|
2683
|
+
components: {
|
|
2684
|
+
internalType: string;
|
|
2685
|
+
name: string;
|
|
2686
|
+
type: string;
|
|
2687
|
+
}[];
|
|
2688
|
+
indexed: boolean;
|
|
2689
|
+
internalType: string;
|
|
2690
|
+
name: string;
|
|
2691
|
+
type: string;
|
|
2692
|
+
})[];
|
|
2693
|
+
name: string;
|
|
2694
|
+
type: string;
|
|
2695
|
+
stateMutability?: undefined;
|
|
2696
|
+
outputs?: undefined;
|
|
2697
|
+
} | {
|
|
2698
|
+
inputs: {
|
|
2699
|
+
internalType: string;
|
|
2700
|
+
name: string;
|
|
2701
|
+
type: string;
|
|
2702
|
+
}[];
|
|
2703
|
+
name: string;
|
|
2704
|
+
outputs: {
|
|
2705
|
+
internalType: string;
|
|
2706
|
+
name: string;
|
|
2707
|
+
type: string;
|
|
2708
|
+
}[];
|
|
2709
|
+
stateMutability: string;
|
|
2710
|
+
type: string;
|
|
2711
|
+
anonymous?: undefined;
|
|
2712
|
+
} | {
|
|
2713
|
+
inputs: {
|
|
2714
|
+
internalType: string;
|
|
2715
|
+
name: string;
|
|
2716
|
+
type: string;
|
|
2717
|
+
}[];
|
|
2718
|
+
name: string;
|
|
2719
|
+
outputs: {
|
|
2720
|
+
components: {
|
|
2721
|
+
internalType: string;
|
|
2722
|
+
name: string;
|
|
2723
|
+
type: string;
|
|
2724
|
+
}[];
|
|
2725
|
+
internalType: string;
|
|
2726
|
+
name: string;
|
|
2727
|
+
type: string;
|
|
2728
|
+
}[];
|
|
2729
|
+
stateMutability: string;
|
|
2730
|
+
type: string;
|
|
2731
|
+
anonymous?: undefined;
|
|
2732
|
+
} | {
|
|
2733
|
+
inputs: ({
|
|
2734
|
+
internalType: string;
|
|
2735
|
+
name: string;
|
|
2736
|
+
type: string;
|
|
2737
|
+
components?: undefined;
|
|
2738
|
+
} | {
|
|
2739
|
+
components: {
|
|
2740
|
+
internalType: string;
|
|
2741
|
+
name: string;
|
|
2742
|
+
type: string;
|
|
2743
|
+
}[];
|
|
2744
|
+
internalType: string;
|
|
2745
|
+
name: string;
|
|
2746
|
+
type: string;
|
|
2747
|
+
})[];
|
|
1917
2748
|
name: string;
|
|
1918
|
-
outputs:
|
|
1919
|
-
internalType: string;
|
|
1920
|
-
name: string;
|
|
1921
|
-
type: string;
|
|
1922
|
-
}[];
|
|
2749
|
+
outputs: any[];
|
|
1923
2750
|
stateMutability: string;
|
|
1924
2751
|
type: string;
|
|
1925
2752
|
anonymous?: undefined;
|
|
@@ -1972,6 +2799,26 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
1972
2799
|
stateMutability: string;
|
|
1973
2800
|
type: string;
|
|
1974
2801
|
anonymous?: undefined;
|
|
2802
|
+
} | {
|
|
2803
|
+
inputs: {
|
|
2804
|
+
components: {
|
|
2805
|
+
internalType: string;
|
|
2806
|
+
name: string;
|
|
2807
|
+
type: string;
|
|
2808
|
+
}[];
|
|
2809
|
+
internalType: string;
|
|
2810
|
+
name: string;
|
|
2811
|
+
type: string;
|
|
2812
|
+
}[];
|
|
2813
|
+
name: string;
|
|
2814
|
+
outputs: {
|
|
2815
|
+
internalType: string;
|
|
2816
|
+
name: string;
|
|
2817
|
+
type: string;
|
|
2818
|
+
}[];
|
|
2819
|
+
stateMutability: string;
|
|
2820
|
+
type: string;
|
|
2821
|
+
anonymous?: undefined;
|
|
1975
2822
|
})[] | ({
|
|
1976
2823
|
inputs: {
|
|
1977
2824
|
internalType: string;
|
|
@@ -2007,13 +2854,25 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2007
2854
|
stateMutability?: undefined;
|
|
2008
2855
|
outputs?: undefined;
|
|
2009
2856
|
} | {
|
|
2010
|
-
inputs:
|
|
2857
|
+
inputs: any[];
|
|
2858
|
+
name: string;
|
|
2859
|
+
outputs: {
|
|
2011
2860
|
internalType: string;
|
|
2012
2861
|
name: string;
|
|
2013
2862
|
type: string;
|
|
2014
2863
|
}[];
|
|
2864
|
+
stateMutability: string;
|
|
2865
|
+
type: string;
|
|
2866
|
+
anonymous?: undefined;
|
|
2867
|
+
} | {
|
|
2868
|
+
inputs: any[];
|
|
2015
2869
|
name: string;
|
|
2016
2870
|
outputs: {
|
|
2871
|
+
components: {
|
|
2872
|
+
internalType: string;
|
|
2873
|
+
name: string;
|
|
2874
|
+
type: string;
|
|
2875
|
+
}[];
|
|
2017
2876
|
internalType: string;
|
|
2018
2877
|
name: string;
|
|
2019
2878
|
type: string;
|
|
@@ -2021,32 +2880,30 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2021
2880
|
stateMutability: string;
|
|
2022
2881
|
type: string;
|
|
2023
2882
|
anonymous?: undefined;
|
|
2024
|
-
}
|
|
2883
|
+
} | {
|
|
2025
2884
|
inputs: {
|
|
2026
2885
|
internalType: string;
|
|
2027
2886
|
name: string;
|
|
2028
2887
|
type: string;
|
|
2029
2888
|
}[];
|
|
2889
|
+
name: string;
|
|
2890
|
+
outputs: any[];
|
|
2030
2891
|
stateMutability: string;
|
|
2031
2892
|
type: string;
|
|
2032
|
-
name?: undefined;
|
|
2033
2893
|
anonymous?: undefined;
|
|
2034
|
-
|
|
2035
|
-
} | {
|
|
2894
|
+
})[] | ({
|
|
2036
2895
|
inputs: {
|
|
2037
2896
|
internalType: string;
|
|
2038
2897
|
name: string;
|
|
2039
2898
|
type: string;
|
|
2040
2899
|
}[];
|
|
2041
|
-
|
|
2900
|
+
stateMutability: string;
|
|
2042
2901
|
type: string;
|
|
2043
|
-
|
|
2902
|
+
name?: undefined;
|
|
2044
2903
|
anonymous?: undefined;
|
|
2045
2904
|
outputs?: undefined;
|
|
2046
2905
|
} | {
|
|
2047
|
-
anonymous: boolean;
|
|
2048
2906
|
inputs: {
|
|
2049
|
-
indexed: boolean;
|
|
2050
2907
|
internalType: string;
|
|
2051
2908
|
name: string;
|
|
2052
2909
|
type: string;
|
|
@@ -2054,22 +2911,20 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2054
2911
|
name: string;
|
|
2055
2912
|
type: string;
|
|
2056
2913
|
stateMutability?: undefined;
|
|
2914
|
+
anonymous?: undefined;
|
|
2057
2915
|
outputs?: undefined;
|
|
2058
2916
|
} | {
|
|
2917
|
+
anonymous: boolean;
|
|
2059
2918
|
inputs: {
|
|
2919
|
+
indexed: boolean;
|
|
2060
2920
|
internalType: string;
|
|
2061
2921
|
name: string;
|
|
2062
2922
|
type: string;
|
|
2063
2923
|
}[];
|
|
2064
2924
|
name: string;
|
|
2065
|
-
outputs: {
|
|
2066
|
-
internalType: string;
|
|
2067
|
-
name: string;
|
|
2068
|
-
type: string;
|
|
2069
|
-
}[];
|
|
2070
|
-
stateMutability: string;
|
|
2071
2925
|
type: string;
|
|
2072
|
-
|
|
2926
|
+
stateMutability?: undefined;
|
|
2927
|
+
outputs?: undefined;
|
|
2073
2928
|
} | {
|
|
2074
2929
|
inputs: {
|
|
2075
2930
|
internalType: string;
|
|
@@ -2078,11 +2933,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2078
2933
|
}[];
|
|
2079
2934
|
name: string;
|
|
2080
2935
|
outputs: {
|
|
2081
|
-
components: {
|
|
2082
|
-
internalType: string;
|
|
2083
|
-
name: string;
|
|
2084
|
-
type: string;
|
|
2085
|
-
}[];
|
|
2086
2936
|
internalType: string;
|
|
2087
2937
|
name: string;
|
|
2088
2938
|
type: string;
|
|
@@ -2139,22 +2989,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2139
2989
|
stateMutability: string;
|
|
2140
2990
|
type: string;
|
|
2141
2991
|
anonymous?: undefined;
|
|
2142
|
-
} | {
|
|
2143
|
-
inputs: any[];
|
|
2144
|
-
name: string;
|
|
2145
|
-
outputs: {
|
|
2146
|
-
components: {
|
|
2147
|
-
internalType: string;
|
|
2148
|
-
name: string;
|
|
2149
|
-
type: string;
|
|
2150
|
-
}[];
|
|
2151
|
-
internalType: string;
|
|
2152
|
-
name: string;
|
|
2153
|
-
type: string;
|
|
2154
|
-
}[];
|
|
2155
|
-
stateMutability: string;
|
|
2156
|
-
type: string;
|
|
2157
|
-
anonymous?: undefined;
|
|
2158
2992
|
})[] | ({
|
|
2159
2993
|
inputs: {
|
|
2160
2994
|
internalType: string;
|
|
@@ -2204,26 +3038,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2204
3038
|
stateMutability: string;
|
|
2205
3039
|
type: string;
|
|
2206
3040
|
anonymous?: undefined;
|
|
2207
|
-
} | {
|
|
2208
|
-
inputs: {
|
|
2209
|
-
internalType: string;
|
|
2210
|
-
name: string;
|
|
2211
|
-
type: string;
|
|
2212
|
-
}[];
|
|
2213
|
-
name: string;
|
|
2214
|
-
outputs: {
|
|
2215
|
-
components: {
|
|
2216
|
-
internalType: string;
|
|
2217
|
-
name: string;
|
|
2218
|
-
type: string;
|
|
2219
|
-
}[];
|
|
2220
|
-
internalType: string;
|
|
2221
|
-
name: string;
|
|
2222
|
-
type: string;
|
|
2223
|
-
}[];
|
|
2224
|
-
stateMutability: string;
|
|
2225
|
-
type: string;
|
|
2226
|
-
anonymous?: undefined;
|
|
2227
3041
|
})[] | ({
|
|
2228
3042
|
inputs: {
|
|
2229
3043
|
internalType: string;
|
|
@@ -2273,22 +3087,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2273
3087
|
stateMutability: string;
|
|
2274
3088
|
type: string;
|
|
2275
3089
|
anonymous?: undefined;
|
|
2276
|
-
} | {
|
|
2277
|
-
inputs: any[];
|
|
2278
|
-
name: string;
|
|
2279
|
-
outputs: {
|
|
2280
|
-
components: {
|
|
2281
|
-
internalType: string;
|
|
2282
|
-
name: string;
|
|
2283
|
-
type: string;
|
|
2284
|
-
}[];
|
|
2285
|
-
internalType: string;
|
|
2286
|
-
name: string;
|
|
2287
|
-
type: string;
|
|
2288
|
-
}[];
|
|
2289
|
-
stateMutability: string;
|
|
2290
|
-
type: string;
|
|
2291
|
-
anonymous?: undefined;
|
|
2292
3090
|
})[] | ({
|
|
2293
3091
|
inputs: {
|
|
2294
3092
|
internalType: string;
|
|
@@ -2313,23 +3111,12 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2313
3111
|
outputs?: undefined;
|
|
2314
3112
|
} | {
|
|
2315
3113
|
anonymous: boolean;
|
|
2316
|
-
inputs:
|
|
2317
|
-
indexed: boolean;
|
|
2318
|
-
internalType: string;
|
|
2319
|
-
name: string;
|
|
2320
|
-
type: string;
|
|
2321
|
-
components?: undefined;
|
|
2322
|
-
} | {
|
|
2323
|
-
components: {
|
|
2324
|
-
internalType: string;
|
|
2325
|
-
name: string;
|
|
2326
|
-
type: string;
|
|
2327
|
-
}[];
|
|
3114
|
+
inputs: {
|
|
2328
3115
|
indexed: boolean;
|
|
2329
3116
|
internalType: string;
|
|
2330
3117
|
name: string;
|
|
2331
3118
|
type: string;
|
|
2332
|
-
}
|
|
3119
|
+
}[];
|
|
2333
3120
|
name: string;
|
|
2334
3121
|
type: string;
|
|
2335
3122
|
stateMutability?: undefined;
|
|
@@ -2349,47 +3136,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2349
3136
|
stateMutability: string;
|
|
2350
3137
|
type: string;
|
|
2351
3138
|
anonymous?: undefined;
|
|
2352
|
-
} | {
|
|
2353
|
-
inputs: {
|
|
2354
|
-
internalType: string;
|
|
2355
|
-
name: string;
|
|
2356
|
-
type: string;
|
|
2357
|
-
}[];
|
|
2358
|
-
name: string;
|
|
2359
|
-
outputs: {
|
|
2360
|
-
components: {
|
|
2361
|
-
internalType: string;
|
|
2362
|
-
name: string;
|
|
2363
|
-
type: string;
|
|
2364
|
-
}[];
|
|
2365
|
-
internalType: string;
|
|
2366
|
-
name: string;
|
|
2367
|
-
type: string;
|
|
2368
|
-
}[];
|
|
2369
|
-
stateMutability: string;
|
|
2370
|
-
type: string;
|
|
2371
|
-
anonymous?: undefined;
|
|
2372
|
-
} | {
|
|
2373
|
-
inputs: ({
|
|
2374
|
-
internalType: string;
|
|
2375
|
-
name: string;
|
|
2376
|
-
type: string;
|
|
2377
|
-
components?: undefined;
|
|
2378
|
-
} | {
|
|
2379
|
-
components: {
|
|
2380
|
-
internalType: string;
|
|
2381
|
-
name: string;
|
|
2382
|
-
type: string;
|
|
2383
|
-
}[];
|
|
2384
|
-
internalType: string;
|
|
2385
|
-
name: string;
|
|
2386
|
-
type: string;
|
|
2387
|
-
})[];
|
|
2388
|
-
name: string;
|
|
2389
|
-
outputs: any[];
|
|
2390
|
-
stateMutability: string;
|
|
2391
|
-
type: string;
|
|
2392
|
-
anonymous?: undefined;
|
|
2393
3139
|
})[] | ({
|
|
2394
3140
|
inputs: {
|
|
2395
3141
|
internalType: string;
|
|
@@ -2439,26 +3185,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2439
3185
|
stateMutability: string;
|
|
2440
3186
|
type: string;
|
|
2441
3187
|
anonymous?: undefined;
|
|
2442
|
-
} | {
|
|
2443
|
-
inputs: {
|
|
2444
|
-
components: {
|
|
2445
|
-
internalType: string;
|
|
2446
|
-
name: string;
|
|
2447
|
-
type: string;
|
|
2448
|
-
}[];
|
|
2449
|
-
internalType: string;
|
|
2450
|
-
name: string;
|
|
2451
|
-
type: string;
|
|
2452
|
-
}[];
|
|
2453
|
-
name: string;
|
|
2454
|
-
outputs: {
|
|
2455
|
-
internalType: string;
|
|
2456
|
-
name: string;
|
|
2457
|
-
type: string;
|
|
2458
|
-
}[];
|
|
2459
|
-
stateMutability: string;
|
|
2460
|
-
type: string;
|
|
2461
|
-
anonymous?: undefined;
|
|
2462
3188
|
})[] | ({
|
|
2463
3189
|
inputs: {
|
|
2464
3190
|
internalType: string;
|
|
@@ -2494,40 +3220,17 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2494
3220
|
stateMutability?: undefined;
|
|
2495
3221
|
outputs?: undefined;
|
|
2496
3222
|
} | {
|
|
2497
|
-
inputs:
|
|
2498
|
-
name: string;
|
|
2499
|
-
outputs: {
|
|
3223
|
+
inputs: {
|
|
2500
3224
|
internalType: string;
|
|
2501
3225
|
name: string;
|
|
2502
3226
|
type: string;
|
|
2503
3227
|
}[];
|
|
2504
|
-
stateMutability: string;
|
|
2505
|
-
type: string;
|
|
2506
|
-
anonymous?: undefined;
|
|
2507
|
-
} | {
|
|
2508
|
-
inputs: any[];
|
|
2509
3228
|
name: string;
|
|
2510
3229
|
outputs: {
|
|
2511
|
-
components: {
|
|
2512
|
-
internalType: string;
|
|
2513
|
-
name: string;
|
|
2514
|
-
type: string;
|
|
2515
|
-
}[];
|
|
2516
|
-
internalType: string;
|
|
2517
|
-
name: string;
|
|
2518
|
-
type: string;
|
|
2519
|
-
}[];
|
|
2520
|
-
stateMutability: string;
|
|
2521
|
-
type: string;
|
|
2522
|
-
anonymous?: undefined;
|
|
2523
|
-
} | {
|
|
2524
|
-
inputs: {
|
|
2525
3230
|
internalType: string;
|
|
2526
3231
|
name: string;
|
|
2527
3232
|
type: string;
|
|
2528
3233
|
}[];
|
|
2529
|
-
name: string;
|
|
2530
|
-
outputs: any[];
|
|
2531
3234
|
stateMutability: string;
|
|
2532
3235
|
type: string;
|
|
2533
3236
|
anonymous?: undefined;
|
|
@@ -2581,11 +3284,7 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2581
3284
|
type: string;
|
|
2582
3285
|
anonymous?: undefined;
|
|
2583
3286
|
})[] | ({
|
|
2584
|
-
inputs:
|
|
2585
|
-
internalType: string;
|
|
2586
|
-
name: string;
|
|
2587
|
-
type: string;
|
|
2588
|
-
}[];
|
|
3287
|
+
inputs: any[];
|
|
2589
3288
|
stateMutability: string;
|
|
2590
3289
|
type: string;
|
|
2591
3290
|
name?: undefined;
|
|
@@ -2811,17 +3510,24 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2811
3510
|
stateMutability?: undefined;
|
|
2812
3511
|
outputs?: undefined;
|
|
2813
3512
|
} | {
|
|
2814
|
-
inputs:
|
|
3513
|
+
inputs: any[];
|
|
3514
|
+
name: string;
|
|
3515
|
+
outputs: {
|
|
2815
3516
|
internalType: string;
|
|
2816
3517
|
name: string;
|
|
2817
3518
|
type: string;
|
|
2818
3519
|
}[];
|
|
2819
|
-
|
|
2820
|
-
|
|
3520
|
+
stateMutability: string;
|
|
3521
|
+
type: string;
|
|
3522
|
+
anonymous?: undefined;
|
|
3523
|
+
} | {
|
|
3524
|
+
inputs: {
|
|
2821
3525
|
internalType: string;
|
|
2822
3526
|
name: string;
|
|
2823
3527
|
type: string;
|
|
2824
3528
|
}[];
|
|
3529
|
+
name: string;
|
|
3530
|
+
outputs: any[];
|
|
2825
3531
|
stateMutability: string;
|
|
2826
3532
|
type: string;
|
|
2827
3533
|
anonymous?: undefined;
|
|
@@ -2874,5 +3580,12 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2874
3580
|
stateMutability: string;
|
|
2875
3581
|
type: string;
|
|
2876
3582
|
anonymous?: undefined;
|
|
3583
|
+
} | {
|
|
3584
|
+
stateMutability: string;
|
|
3585
|
+
type: string;
|
|
3586
|
+
inputs?: undefined;
|
|
3587
|
+
name?: undefined;
|
|
3588
|
+
anonymous?: undefined;
|
|
3589
|
+
outputs?: undefined;
|
|
2877
3590
|
})[];
|
|
2878
3591
|
export { getABI, ABIS };
|