@raac/rpc 1.1.0-beta.7 → 1.1.0-beta.71
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 +302 -305
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +485 -0
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +485 -0
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +556 -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/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 +47 -2
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +55 -3
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +227 -209
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +400 -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 +138 -8
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +299 -28
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +77 -21
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +614 -0
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +29 -2
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +44 -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 +84 -2
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +44 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +29 -2
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/11155111.json +70 -20
- package/dist/configs/chains/17000.json +25 -0
- package/dist/configs/chains/18453.json +187 -0
- package/dist/configs/chains/8453.json +61 -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 +21 -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 +182 -70
- package/dist/scripts/run_analysis.js +115 -0
- package/dist/scripts/test_lending_analysis.js +105 -0
- package/dist/scripts/users.js +304 -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 +1 -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/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/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -3
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +1 -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 +316 -0
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts +55 -0
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts +25 -0
- 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/IPriceOracle.d.ts +25 -0
- 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/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +25 -0
- 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.d.ts +281 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +117 -138
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +86 -63
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +86 -63
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +97 -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 +62 -28
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +23 -7
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +273 -81
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +57 -25
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +231 -0
- 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 -19
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +176 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.d.ts +210 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +17 -7
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts +218 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +47 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- 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/interfaces/core/collectors/IDistributionTarget.d.ts +43 -0
- 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/interfaces/core/oracles/IERC20PriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IERC721PriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +8 -68
- 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 -56
- 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 +170 -43
- 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 +7 -19
- 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/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/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts +25 -0
- 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.d.ts +33 -0
- 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 -3
- 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 -56
- 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/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +39 -0
- 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/mocks/core/tokens/CrvUSDTokenLimited.d.ts +238 -0
- 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/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +472 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +632 -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 +13 -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 -9
- 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/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__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/utils/math/index.d.ts +1 -0
- 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 +393 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +234 -238
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +100 -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 +179 -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 +49 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +180 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +180 -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 +25 -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 +409 -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/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts +21 -0
- 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/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +17 -0
- 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/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +35 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +433 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +98 -53
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +178 -161
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +118 -53
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +132 -51
- 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 +60 -42
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +72 -10
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +56 -42
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +324 -107
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +320 -0
- 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 +107 -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 +233 -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 +60 -18
- 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 +21 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +311 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +26 -6
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +350 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -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/interfaces/core/oracles/IERC721PriceOracle__factory.d.ts +25 -0
- 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/IRAACHousePrices__factory.d.ts +1 -89
- 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 +109 -78
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +201 -44
- 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 +12 -18
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +301 -19
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts +41 -0
- 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/ReserveLibrary__factory.d.ts +1 -1
- 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 +671 -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 +25 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts +21 -0
- 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__factory.d.ts +42 -0
- 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 +958 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +29 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +110 -69
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -5
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +47 -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 +35 -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 +21 -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 +21 -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 +224 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +19 -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 +64 -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 +21 -1
- package/dist/types/typechain-types/index.d.ts +72 -22
- package/dist/types/utils/artifacts.d.ts +678 -93
- 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 +5 -1
- package/dist/utils/artifacts.js +14 -1
- 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 +20 -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/pools/{lendingPool → stabilityPool}/requestWithdraw.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;
|
|
@@ -1422,122 +1472,367 @@ declare const ABIS: {
|
|
|
1422
1472
|
type: string;
|
|
1423
1473
|
anonymous?: undefined;
|
|
1424
1474
|
})[];
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
name: string;
|
|
1475
|
+
rwaindextoken: ({
|
|
1476
|
+
inputs: {
|
|
1477
|
+
internalType: string;
|
|
1478
|
+
name: string;
|
|
1479
|
+
type: string;
|
|
1480
|
+
}[];
|
|
1481
|
+
stateMutability: string;
|
|
1433
1482
|
type: string;
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1483
|
+
name?: undefined;
|
|
1484
|
+
anonymous?: undefined;
|
|
1485
|
+
outputs?: undefined;
|
|
1486
|
+
} | {
|
|
1487
|
+
inputs: {
|
|
1488
|
+
internalType: string;
|
|
1489
|
+
name: string;
|
|
1490
|
+
type: string;
|
|
1491
|
+
}[];
|
|
1443
1492
|
name: string;
|
|
1444
1493
|
type: string;
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1494
|
+
stateMutability?: undefined;
|
|
1495
|
+
anonymous?: undefined;
|
|
1496
|
+
outputs?: undefined;
|
|
1497
|
+
} | {
|
|
1498
|
+
anonymous: boolean;
|
|
1499
|
+
inputs: {
|
|
1500
|
+
indexed: boolean;
|
|
1501
|
+
internalType: string;
|
|
1502
|
+
name: string;
|
|
1503
|
+
type: string;
|
|
1504
|
+
}[];
|
|
1456
1505
|
name: string;
|
|
1457
1506
|
type: string;
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1507
|
+
stateMutability?: undefined;
|
|
1508
|
+
outputs?: undefined;
|
|
1509
|
+
} | {
|
|
1510
|
+
inputs: {
|
|
1511
|
+
internalType: string;
|
|
1512
|
+
name: string;
|
|
1513
|
+
type: string;
|
|
1514
|
+
}[];
|
|
1466
1515
|
name: string;
|
|
1516
|
+
outputs: {
|
|
1517
|
+
internalType: string;
|
|
1518
|
+
name: string;
|
|
1519
|
+
type: string;
|
|
1520
|
+
}[];
|
|
1521
|
+
stateMutability: string;
|
|
1467
1522
|
type: string;
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1523
|
+
anonymous?: undefined;
|
|
1524
|
+
})[];
|
|
1525
|
+
complianceregistry: ({
|
|
1526
|
+
inputs: any[];
|
|
1527
|
+
stateMutability: string;
|
|
1473
1528
|
type: string;
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1529
|
+
name?: undefined;
|
|
1530
|
+
anonymous?: undefined;
|
|
1531
|
+
outputs?: undefined;
|
|
1532
|
+
} | {
|
|
1533
|
+
inputs: {
|
|
1534
|
+
internalType: string;
|
|
1535
|
+
name: string;
|
|
1536
|
+
type: string;
|
|
1537
|
+
}[];
|
|
1481
1538
|
name: string;
|
|
1482
1539
|
type: string;
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
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
|
+
}[];
|
|
1492
1551
|
name: string;
|
|
1493
1552
|
type: string;
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
inputs: {
|
|
1503
|
-
indexed: boolean;
|
|
1504
|
-
internalType: string;
|
|
1553
|
+
stateMutability?: undefined;
|
|
1554
|
+
outputs?: undefined;
|
|
1555
|
+
} | {
|
|
1556
|
+
inputs: {
|
|
1557
|
+
internalType: string;
|
|
1558
|
+
name: string;
|
|
1559
|
+
type: string;
|
|
1560
|
+
}[];
|
|
1505
1561
|
name: string;
|
|
1562
|
+
outputs: {
|
|
1563
|
+
internalType: string;
|
|
1564
|
+
name: string;
|
|
1565
|
+
type: string;
|
|
1566
|
+
}[];
|
|
1567
|
+
stateMutability: string;
|
|
1506
1568
|
type: string;
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1569
|
+
anonymous?: undefined;
|
|
1570
|
+
})[];
|
|
1571
|
+
treasury: ({
|
|
1572
|
+
inputs: {
|
|
1573
|
+
internalType: string;
|
|
1574
|
+
name: string;
|
|
1575
|
+
type: string;
|
|
1576
|
+
}[];
|
|
1577
|
+
stateMutability: string;
|
|
1516
1578
|
type: string;
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1579
|
+
name?: undefined;
|
|
1580
|
+
anonymous?: undefined;
|
|
1581
|
+
outputs?: undefined;
|
|
1582
|
+
} | {
|
|
1583
|
+
inputs: {
|
|
1584
|
+
internalType: string;
|
|
1585
|
+
name: string;
|
|
1586
|
+
type: string;
|
|
1587
|
+
}[];
|
|
1521
1588
|
name: string;
|
|
1522
1589
|
type: string;
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
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
|
+
}[];
|
|
1530
1601
|
name: string;
|
|
1531
1602
|
type: string;
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1603
|
+
stateMutability?: undefined;
|
|
1604
|
+
outputs?: undefined;
|
|
1605
|
+
} | {
|
|
1606
|
+
inputs: {
|
|
1536
1607
|
internalType: string;
|
|
1537
1608
|
name: string;
|
|
1538
1609
|
type: string;
|
|
1539
1610
|
}[];
|
|
1540
|
-
|
|
1611
|
+
name: string;
|
|
1612
|
+
outputs: {
|
|
1613
|
+
internalType: string;
|
|
1614
|
+
name: string;
|
|
1615
|
+
type: string;
|
|
1616
|
+
}[];
|
|
1617
|
+
stateMutability: string;
|
|
1618
|
+
type: string;
|
|
1619
|
+
anonymous?: undefined;
|
|
1620
|
+
})[];
|
|
1621
|
+
rwaindextokencollector: ({
|
|
1622
|
+
inputs: {
|
|
1623
|
+
internalType: string;
|
|
1624
|
+
name: string;
|
|
1625
|
+
type: string;
|
|
1626
|
+
}[];
|
|
1627
|
+
stateMutability: string;
|
|
1628
|
+
type: string;
|
|
1629
|
+
name?: undefined;
|
|
1630
|
+
anonymous?: undefined;
|
|
1631
|
+
outputs?: undefined;
|
|
1632
|
+
} | {
|
|
1633
|
+
inputs: {
|
|
1634
|
+
internalType: string;
|
|
1635
|
+
name: string;
|
|
1636
|
+
type: string;
|
|
1637
|
+
}[];
|
|
1638
|
+
name: string;
|
|
1639
|
+
type: string;
|
|
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
|
+
}[];
|
|
1651
|
+
name: string;
|
|
1652
|
+
type: string;
|
|
1653
|
+
stateMutability?: undefined;
|
|
1654
|
+
outputs?: undefined;
|
|
1655
|
+
} | {
|
|
1656
|
+
inputs: {
|
|
1657
|
+
internalType: string;
|
|
1658
|
+
name: string;
|
|
1659
|
+
type: string;
|
|
1660
|
+
}[];
|
|
1661
|
+
name: string;
|
|
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
|
+
};
|
|
1722
|
+
export type AssetType = keyof typeof ABIS | string;
|
|
1723
|
+
export type ContractType = keyof typeof ABIS;
|
|
1724
|
+
declare const getABI: (name: keyof typeof ABIS) => ({
|
|
1725
|
+
inputs: {
|
|
1726
|
+
internalType: string;
|
|
1727
|
+
name: string;
|
|
1728
|
+
type: string;
|
|
1729
|
+
}[];
|
|
1730
|
+
stateMutability: string;
|
|
1731
|
+
type: string;
|
|
1732
|
+
name?: undefined;
|
|
1733
|
+
anonymous?: undefined;
|
|
1734
|
+
outputs?: undefined;
|
|
1735
|
+
} | {
|
|
1736
|
+
inputs: {
|
|
1737
|
+
internalType: string;
|
|
1738
|
+
name: string;
|
|
1739
|
+
type: string;
|
|
1740
|
+
}[];
|
|
1741
|
+
name: string;
|
|
1742
|
+
type: string;
|
|
1743
|
+
stateMutability?: undefined;
|
|
1744
|
+
anonymous?: undefined;
|
|
1745
|
+
outputs?: undefined;
|
|
1746
|
+
} | {
|
|
1747
|
+
anonymous: boolean;
|
|
1748
|
+
inputs: {
|
|
1749
|
+
indexed: boolean;
|
|
1750
|
+
internalType: string;
|
|
1751
|
+
name: string;
|
|
1752
|
+
type: string;
|
|
1753
|
+
}[];
|
|
1754
|
+
name: string;
|
|
1755
|
+
type: string;
|
|
1756
|
+
stateMutability?: undefined;
|
|
1757
|
+
outputs?: undefined;
|
|
1758
|
+
} | {
|
|
1759
|
+
inputs: {
|
|
1760
|
+
internalType: string;
|
|
1761
|
+
name: string;
|
|
1762
|
+
type: string;
|
|
1763
|
+
}[];
|
|
1764
|
+
name: string;
|
|
1765
|
+
outputs: {
|
|
1766
|
+
internalType: string;
|
|
1767
|
+
name: string;
|
|
1768
|
+
type: string;
|
|
1769
|
+
}[];
|
|
1770
|
+
stateMutability: string;
|
|
1771
|
+
type: string;
|
|
1772
|
+
anonymous?: undefined;
|
|
1773
|
+
})[] | ({
|
|
1774
|
+
inputs: {
|
|
1775
|
+
internalType: string;
|
|
1776
|
+
name: string;
|
|
1777
|
+
type: string;
|
|
1778
|
+
}[];
|
|
1779
|
+
stateMutability: string;
|
|
1780
|
+
type: string;
|
|
1781
|
+
name?: undefined;
|
|
1782
|
+
anonymous?: undefined;
|
|
1783
|
+
outputs?: undefined;
|
|
1784
|
+
} | {
|
|
1785
|
+
inputs: {
|
|
1786
|
+
internalType: string;
|
|
1787
|
+
name: string;
|
|
1788
|
+
type: string;
|
|
1789
|
+
}[];
|
|
1790
|
+
name: string;
|
|
1791
|
+
type: string;
|
|
1792
|
+
stateMutability?: undefined;
|
|
1793
|
+
anonymous?: undefined;
|
|
1794
|
+
outputs?: undefined;
|
|
1795
|
+
} | {
|
|
1796
|
+
anonymous: boolean;
|
|
1797
|
+
inputs: {
|
|
1798
|
+
indexed: boolean;
|
|
1799
|
+
internalType: string;
|
|
1800
|
+
name: string;
|
|
1801
|
+
type: string;
|
|
1802
|
+
}[];
|
|
1803
|
+
name: string;
|
|
1804
|
+
type: string;
|
|
1805
|
+
stateMutability?: undefined;
|
|
1806
|
+
outputs?: undefined;
|
|
1807
|
+
} | {
|
|
1808
|
+
inputs: {
|
|
1809
|
+
internalType: string;
|
|
1810
|
+
name: string;
|
|
1811
|
+
type: string;
|
|
1812
|
+
}[];
|
|
1813
|
+
name: string;
|
|
1814
|
+
outputs: {
|
|
1815
|
+
internalType: string;
|
|
1816
|
+
name: string;
|
|
1817
|
+
type: string;
|
|
1818
|
+
}[];
|
|
1819
|
+
stateMutability: string;
|
|
1820
|
+
type: string;
|
|
1821
|
+
anonymous?: undefined;
|
|
1822
|
+
} | {
|
|
1823
|
+
inputs: {
|
|
1824
|
+
internalType: string;
|
|
1825
|
+
name: string;
|
|
1826
|
+
type: string;
|
|
1827
|
+
}[];
|
|
1828
|
+
name: string;
|
|
1829
|
+
outputs: {
|
|
1830
|
+
components: {
|
|
1831
|
+
internalType: string;
|
|
1832
|
+
name: string;
|
|
1833
|
+
type: string;
|
|
1834
|
+
}[];
|
|
1835
|
+
internalType: string;
|
|
1541
1836
|
name: string;
|
|
1542
1837
|
type: string;
|
|
1543
1838
|
}[];
|
|
@@ -2776,5 +3071,295 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2776
3071
|
stateMutability: string;
|
|
2777
3072
|
type: string;
|
|
2778
3073
|
anonymous?: undefined;
|
|
3074
|
+
})[] | ({
|
|
3075
|
+
inputs: {
|
|
3076
|
+
internalType: string;
|
|
3077
|
+
name: string;
|
|
3078
|
+
type: string;
|
|
3079
|
+
}[];
|
|
3080
|
+
stateMutability: string;
|
|
3081
|
+
type: string;
|
|
3082
|
+
name?: undefined;
|
|
3083
|
+
anonymous?: undefined;
|
|
3084
|
+
outputs?: undefined;
|
|
3085
|
+
} | {
|
|
3086
|
+
inputs: {
|
|
3087
|
+
internalType: string;
|
|
3088
|
+
name: string;
|
|
3089
|
+
type: string;
|
|
3090
|
+
}[];
|
|
3091
|
+
name: string;
|
|
3092
|
+
type: string;
|
|
3093
|
+
stateMutability?: undefined;
|
|
3094
|
+
anonymous?: undefined;
|
|
3095
|
+
outputs?: undefined;
|
|
3096
|
+
} | {
|
|
3097
|
+
anonymous: boolean;
|
|
3098
|
+
inputs: {
|
|
3099
|
+
indexed: boolean;
|
|
3100
|
+
internalType: string;
|
|
3101
|
+
name: string;
|
|
3102
|
+
type: string;
|
|
3103
|
+
}[];
|
|
3104
|
+
name: string;
|
|
3105
|
+
type: string;
|
|
3106
|
+
stateMutability?: undefined;
|
|
3107
|
+
outputs?: undefined;
|
|
3108
|
+
} | {
|
|
3109
|
+
inputs: {
|
|
3110
|
+
internalType: string;
|
|
3111
|
+
name: string;
|
|
3112
|
+
type: string;
|
|
3113
|
+
}[];
|
|
3114
|
+
name: string;
|
|
3115
|
+
outputs: {
|
|
3116
|
+
internalType: string;
|
|
3117
|
+
name: string;
|
|
3118
|
+
type: string;
|
|
3119
|
+
}[];
|
|
3120
|
+
stateMutability: string;
|
|
3121
|
+
type: string;
|
|
3122
|
+
anonymous?: undefined;
|
|
3123
|
+
})[] | ({
|
|
3124
|
+
inputs: {
|
|
3125
|
+
internalType: string;
|
|
3126
|
+
name: string;
|
|
3127
|
+
type: string;
|
|
3128
|
+
}[];
|
|
3129
|
+
stateMutability: string;
|
|
3130
|
+
type: string;
|
|
3131
|
+
name?: undefined;
|
|
3132
|
+
anonymous?: undefined;
|
|
3133
|
+
outputs?: undefined;
|
|
3134
|
+
} | {
|
|
3135
|
+
inputs: {
|
|
3136
|
+
internalType: string;
|
|
3137
|
+
name: string;
|
|
3138
|
+
type: string;
|
|
3139
|
+
}[];
|
|
3140
|
+
name: string;
|
|
3141
|
+
type: string;
|
|
3142
|
+
stateMutability?: undefined;
|
|
3143
|
+
anonymous?: undefined;
|
|
3144
|
+
outputs?: undefined;
|
|
3145
|
+
} | {
|
|
3146
|
+
anonymous: boolean;
|
|
3147
|
+
inputs: {
|
|
3148
|
+
indexed: boolean;
|
|
3149
|
+
internalType: string;
|
|
3150
|
+
name: string;
|
|
3151
|
+
type: string;
|
|
3152
|
+
}[];
|
|
3153
|
+
name: string;
|
|
3154
|
+
type: string;
|
|
3155
|
+
stateMutability?: undefined;
|
|
3156
|
+
outputs?: undefined;
|
|
3157
|
+
} | {
|
|
3158
|
+
inputs: {
|
|
3159
|
+
internalType: string;
|
|
3160
|
+
name: string;
|
|
3161
|
+
type: string;
|
|
3162
|
+
}[];
|
|
3163
|
+
name: string;
|
|
3164
|
+
outputs: {
|
|
3165
|
+
internalType: string;
|
|
3166
|
+
name: string;
|
|
3167
|
+
type: string;
|
|
3168
|
+
}[];
|
|
3169
|
+
stateMutability: string;
|
|
3170
|
+
type: string;
|
|
3171
|
+
anonymous?: undefined;
|
|
3172
|
+
})[] | ({
|
|
3173
|
+
inputs: any[];
|
|
3174
|
+
stateMutability: string;
|
|
3175
|
+
type: string;
|
|
3176
|
+
name?: undefined;
|
|
3177
|
+
anonymous?: undefined;
|
|
3178
|
+
outputs?: undefined;
|
|
3179
|
+
} | {
|
|
3180
|
+
inputs: {
|
|
3181
|
+
internalType: string;
|
|
3182
|
+
name: string;
|
|
3183
|
+
type: string;
|
|
3184
|
+
}[];
|
|
3185
|
+
name: string;
|
|
3186
|
+
type: string;
|
|
3187
|
+
stateMutability?: undefined;
|
|
3188
|
+
anonymous?: undefined;
|
|
3189
|
+
outputs?: undefined;
|
|
3190
|
+
} | {
|
|
3191
|
+
anonymous: boolean;
|
|
3192
|
+
inputs: {
|
|
3193
|
+
indexed: boolean;
|
|
3194
|
+
internalType: string;
|
|
3195
|
+
name: string;
|
|
3196
|
+
type: string;
|
|
3197
|
+
}[];
|
|
3198
|
+
name: string;
|
|
3199
|
+
type: string;
|
|
3200
|
+
stateMutability?: undefined;
|
|
3201
|
+
outputs?: undefined;
|
|
3202
|
+
} | {
|
|
3203
|
+
inputs: {
|
|
3204
|
+
internalType: string;
|
|
3205
|
+
name: string;
|
|
3206
|
+
type: string;
|
|
3207
|
+
}[];
|
|
3208
|
+
name: string;
|
|
3209
|
+
outputs: {
|
|
3210
|
+
internalType: string;
|
|
3211
|
+
name: string;
|
|
3212
|
+
type: string;
|
|
3213
|
+
}[];
|
|
3214
|
+
stateMutability: string;
|
|
3215
|
+
type: string;
|
|
3216
|
+
anonymous?: undefined;
|
|
3217
|
+
})[] | ({
|
|
3218
|
+
inputs: {
|
|
3219
|
+
internalType: string;
|
|
3220
|
+
name: string;
|
|
3221
|
+
type: string;
|
|
3222
|
+
}[];
|
|
3223
|
+
stateMutability: string;
|
|
3224
|
+
type: string;
|
|
3225
|
+
name?: undefined;
|
|
3226
|
+
anonymous?: undefined;
|
|
3227
|
+
outputs?: undefined;
|
|
3228
|
+
} | {
|
|
3229
|
+
inputs: {
|
|
3230
|
+
internalType: string;
|
|
3231
|
+
name: string;
|
|
3232
|
+
type: string;
|
|
3233
|
+
}[];
|
|
3234
|
+
name: string;
|
|
3235
|
+
type: string;
|
|
3236
|
+
stateMutability?: undefined;
|
|
3237
|
+
anonymous?: undefined;
|
|
3238
|
+
outputs?: undefined;
|
|
3239
|
+
} | {
|
|
3240
|
+
anonymous: boolean;
|
|
3241
|
+
inputs: {
|
|
3242
|
+
indexed: boolean;
|
|
3243
|
+
internalType: string;
|
|
3244
|
+
name: string;
|
|
3245
|
+
type: string;
|
|
3246
|
+
}[];
|
|
3247
|
+
name: string;
|
|
3248
|
+
type: string;
|
|
3249
|
+
stateMutability?: undefined;
|
|
3250
|
+
outputs?: undefined;
|
|
3251
|
+
} | {
|
|
3252
|
+
inputs: {
|
|
3253
|
+
internalType: string;
|
|
3254
|
+
name: string;
|
|
3255
|
+
type: string;
|
|
3256
|
+
}[];
|
|
3257
|
+
name: string;
|
|
3258
|
+
outputs: {
|
|
3259
|
+
internalType: string;
|
|
3260
|
+
name: string;
|
|
3261
|
+
type: string;
|
|
3262
|
+
}[];
|
|
3263
|
+
stateMutability: string;
|
|
3264
|
+
type: string;
|
|
3265
|
+
anonymous?: undefined;
|
|
3266
|
+
})[] | ({
|
|
3267
|
+
inputs: {
|
|
3268
|
+
internalType: string;
|
|
3269
|
+
name: string;
|
|
3270
|
+
type: string;
|
|
3271
|
+
}[];
|
|
3272
|
+
stateMutability: string;
|
|
3273
|
+
type: string;
|
|
3274
|
+
name?: undefined;
|
|
3275
|
+
anonymous?: undefined;
|
|
3276
|
+
outputs?: undefined;
|
|
3277
|
+
} | {
|
|
3278
|
+
inputs: {
|
|
3279
|
+
internalType: string;
|
|
3280
|
+
name: string;
|
|
3281
|
+
type: string;
|
|
3282
|
+
}[];
|
|
3283
|
+
name: string;
|
|
3284
|
+
type: string;
|
|
3285
|
+
stateMutability?: undefined;
|
|
3286
|
+
anonymous?: undefined;
|
|
3287
|
+
outputs?: undefined;
|
|
3288
|
+
} | {
|
|
3289
|
+
anonymous: boolean;
|
|
3290
|
+
inputs: {
|
|
3291
|
+
indexed: boolean;
|
|
3292
|
+
internalType: string;
|
|
3293
|
+
name: string;
|
|
3294
|
+
type: string;
|
|
3295
|
+
}[];
|
|
3296
|
+
name: string;
|
|
3297
|
+
type: string;
|
|
3298
|
+
stateMutability?: undefined;
|
|
3299
|
+
outputs?: undefined;
|
|
3300
|
+
} | {
|
|
3301
|
+
inputs: {
|
|
3302
|
+
internalType: string;
|
|
3303
|
+
name: string;
|
|
3304
|
+
type: string;
|
|
3305
|
+
}[];
|
|
3306
|
+
name: string;
|
|
3307
|
+
outputs: {
|
|
3308
|
+
internalType: string;
|
|
3309
|
+
name: string;
|
|
3310
|
+
type: string;
|
|
3311
|
+
}[];
|
|
3312
|
+
stateMutability: string;
|
|
3313
|
+
type: string;
|
|
3314
|
+
anonymous?: undefined;
|
|
3315
|
+
})[] | ({
|
|
3316
|
+
inputs: {
|
|
3317
|
+
internalType: string;
|
|
3318
|
+
name: string;
|
|
3319
|
+
type: string;
|
|
3320
|
+
}[];
|
|
3321
|
+
stateMutability: string;
|
|
3322
|
+
type: string;
|
|
3323
|
+
name?: undefined;
|
|
3324
|
+
anonymous?: undefined;
|
|
3325
|
+
outputs?: undefined;
|
|
3326
|
+
} | {
|
|
3327
|
+
inputs: {
|
|
3328
|
+
internalType: string;
|
|
3329
|
+
name: string;
|
|
3330
|
+
type: string;
|
|
3331
|
+
}[];
|
|
3332
|
+
name: string;
|
|
3333
|
+
type: string;
|
|
3334
|
+
stateMutability?: undefined;
|
|
3335
|
+
anonymous?: undefined;
|
|
3336
|
+
outputs?: undefined;
|
|
3337
|
+
} | {
|
|
3338
|
+
anonymous: boolean;
|
|
3339
|
+
inputs: {
|
|
3340
|
+
indexed: boolean;
|
|
3341
|
+
internalType: string;
|
|
3342
|
+
name: string;
|
|
3343
|
+
type: string;
|
|
3344
|
+
}[];
|
|
3345
|
+
name: string;
|
|
3346
|
+
type: string;
|
|
3347
|
+
stateMutability?: undefined;
|
|
3348
|
+
outputs?: undefined;
|
|
3349
|
+
} | {
|
|
3350
|
+
inputs: {
|
|
3351
|
+
internalType: string;
|
|
3352
|
+
name: string;
|
|
3353
|
+
type: string;
|
|
3354
|
+
}[];
|
|
3355
|
+
name: string;
|
|
3356
|
+
outputs: {
|
|
3357
|
+
internalType: string;
|
|
3358
|
+
name: string;
|
|
3359
|
+
type: string;
|
|
3360
|
+
}[];
|
|
3361
|
+
stateMutability: string;
|
|
3362
|
+
type: string;
|
|
3363
|
+
anonymous?: undefined;
|
|
2779
3364
|
})[];
|
|
2780
3365
|
export { getABI, ABIS };
|