@raac/rpc 1.1.0-beta.4 → 1.1.0-beta.6
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 +52 -21
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +83 -29
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +82 -31
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +114 -5
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +66 -4
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +465 -0
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +497 -0
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1065 -337
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +180 -99
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +39 -2
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +2 -29
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +158 -38
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -81
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +557 -223
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +354 -0
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +356 -0
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +1036 -0
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +622 -207
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
- package/dist/artifacts/zeno/Auction.sol/Auction.json +104 -15
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +7 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +108 -38
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +17 -2
- package/dist/configs/chains/17000.json +36 -0
- package/dist/configs/chains/8453.json +36 -0
- package/dist/pools/lendingPool/_helpers.js +29 -0
- package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.js +20 -0
- package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.js +32 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +20 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +32 -0
- package/dist/pools/lendingPool/borrowFromLendingPool.js +2 -2
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +4 -3
- package/dist/pools/lendingPool/calculateInsuranceFee.js +3 -2
- package/dist/pools/lendingPool/closeLiquidation.js +3 -2
- package/dist/pools/lendingPool/depositAssetToLendingPool.js +60 -0
- package/dist/pools/lendingPool/{getPendingReward.js → getAdapters.js} +10 -6
- package/dist/pools/lendingPool/getHealthFactor.js +2 -2
- package/dist/pools/lendingPool/getLendingPoolInfo.js +4 -13
- package/dist/pools/lendingPool/getParameters.js +33 -0
- package/dist/pools/lendingPool/getPositionDebt.js +3 -2
- package/dist/pools/lendingPool/getPositionScaledDebt.js +3 -2
- package/dist/pools/lendingPool/getPositionView.js +5 -2
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +1 -0
- package/dist/pools/lendingPool/getUserCollateralValue.js +1 -0
- package/dist/pools/lendingPool/initializeLiquidation.js +2 -2
- package/dist/pools/lendingPool/repayToLendingPool.js +2 -2
- package/dist/pools/lendingPool/{withdrawNFTFromLendingPool.js → withdrawAssetFromLendingPool.js} +5 -5
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/depositToRWAVault.js +27 -0
- package/dist/pools/rwaVault/getNextRandomNFT.js +25 -0
- package/dist/pools/rwaVault/getRWAVaultInfo.js +52 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +27 -0
- package/dist/pools/rwaVault/requestRandomSeed.js +27 -0
- package/dist/scripts/index.js +219 -152
- package/dist/types/RPCLibrary.d.ts +40 -19
- package/dist/types/pools/lendingPool/_helpers.d.ts +8 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.d.ts +4 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.d.ts +11 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +4 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +11 -0
- 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/calculateInsuranceFee.d.ts +2 -2
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/getAdapters.d.ts +8 -0
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +2 -2
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -3
- package/dist/types/pools/lendingPool/getParameters.d.ts +17 -0
- 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/getPositionView.d.ts +17 -14
- 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/withdrawAssetFromLendingPool.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.d.ts +4 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.d.ts +4 -0
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +4 -0
- package/dist/types/pools/rwaVault/getNextRandomNFT.d.ts +8 -0
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +20 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +4 -0
- package/dist/types/pools/rwaVault/requestRandomSeed.d.ts +4 -0
- package/dist/types/scripts/index.d.ts +0 -1
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +103 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +143 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +529 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +109 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +6 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +192 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +45 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +155 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +25 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +731 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +77 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +231 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +49 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +30 -1
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +53 -0
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +115 -0
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +616 -142
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +396 -108
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +623 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +609 -155
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +610 -156
- package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +45 -67
- package/dist/types/typechain-types/contracts/core/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +721 -0
- package/dist/types/typechain-types/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +69 -12
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +22 -4
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +40 -2
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +41 -8
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +39 -7
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +232 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +254 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +728 -205
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +440 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +538 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +485 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +7 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +158 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +124 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +135 -79
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +140 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +3 -1
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +203 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +23 -1
- package/dist/types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +8 -8
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +94 -11
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +1 -17
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +433 -172
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +1 -1
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +174 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +178 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +511 -0
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +63 -0
- package/dist/types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +190 -23
- package/dist/types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +75 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +9 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +527 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +222 -40
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +351 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
- package/dist/types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +45 -67
- package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +332 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +302 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +30 -1
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +5 -1
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +31 -24
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +143 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +51 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +369 -150
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +102 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +51 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +19 -64
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +6 -6
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +70 -7
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +197 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +295 -36
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +208 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +89 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +357 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/index.d.ts +2 -4
- package/dist/types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +18 -3
- package/dist/types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +31 -1
- package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +9 -2
- package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +34 -1
- package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +1 -25
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +225 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +56 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +35 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +2 -6
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +394 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +2 -2
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +349 -148
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +41 -8
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +39 -7
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +367 -140
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +1 -5
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +1 -5
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +68 -139
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +19 -9
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +37 -18
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/contracts/mocks/tests/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +37 -8
- package/dist/types/typechain-types/contracts/zeno/ZENO.d.ts +62 -6
- 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/shared/interfaces/AggregatorV3Interface__factory.d.ts +93 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +191 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +663 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +139 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +194 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +27 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +155 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +32 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +944 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +95 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +289 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts +43 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -13
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +50 -0
- 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 +9 -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 +26 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +1 -0
- 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 +0 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +65 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +49 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +177 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +698 -144
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +461 -137
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +848 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +686 -162
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +689 -155
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +42 -80
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1028 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +66 -25
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +37 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +90 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +64 -9
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +369 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +393 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +578 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +881 -306
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +716 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +636 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +281 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +227 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +255 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +151 -85
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +3 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +276 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +29 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +8 -8
- 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 +124 -31
- 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 +1 -61
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +465 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +446 -186
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +285 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +287 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +808 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +67 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +213 -6
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +77 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +32 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +643 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +239 -65
- package/dist/types/typechain-types/factories/{@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper__factory.d.ts → contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts} +209 -201
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +41 -79
- package/dist/types/typechain-types/factories/contracts/interfaces/core/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +35 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +24 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +189 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +183 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +428 -143
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +56 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +26 -75
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +6 -6
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +79 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +223 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +355 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +256 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +119 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +503 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +2 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +44 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +42 -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 +10 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +47 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -29
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +353 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- 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 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- 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/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +591 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +2 -2
- 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/MockVRFCoordinatorV2__factory.d.ts +490 -166
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +67 -12
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +427 -132
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -21
- 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/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 +1 -21
- 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/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +8 -4
- 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 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -15
- 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 +0 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -21
- 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 +53 -122
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +21 -12
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +39 -14
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
- 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/ReserveLibraryMock__factory.d.ts +1 -1
- 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/mocks/tests/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +83 -14
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +87 -31
- package/dist/types/typechain-types/index.d.ts +112 -42
- package/dist/types/utils/artifacts.d.ts +767 -226
- package/dist/utils/artifacts.js +13 -0
- package/package.json +1 -1
- package/dist/contracts/indexToken/getNextRandomNFT.js +0 -30
- package/dist/contracts/indexToken/redeemNFT.js +0 -39
- package/dist/pools/lendingPool/claimReward.js +0 -22
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +0 -50
- package/dist/pools/lendingPool/getAllUserData.js +0 -28
- package/dist/pools/stabilityPool/calculateRAACRewards.js +0 -21
- package/dist/pools/stabilityPool/depositNFTToStabilityPool.js +0 -40
- package/dist/types/contracts/indexToken/getNextRandomNFT.d.ts +0 -7
- package/dist/types/contracts/indexToken/redeemNFT.d.ts +0 -4
- package/dist/types/pools/lendingPool/claimReward.d.ts +0 -4
- package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +0 -4
- package/dist/types/pools/lendingPool/getAllUserData.d.ts +0 -17
- package/dist/types/pools/lendingPool/getPendingReward.d.ts +0 -4
- package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +0 -4
- package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +0 -4
- package/dist/types/pools/stabilityPool/depositNFTToStabilityPool.d.ts +0 -4
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper.d.ts +0 -261
|
@@ -98,6 +98,22 @@ declare const ABIS: {
|
|
|
98
98
|
stateMutability: string;
|
|
99
99
|
type: string;
|
|
100
100
|
anonymous?: undefined;
|
|
101
|
+
} | {
|
|
102
|
+
inputs: any[];
|
|
103
|
+
name: string;
|
|
104
|
+
outputs: {
|
|
105
|
+
components: {
|
|
106
|
+
internalType: string;
|
|
107
|
+
name: string;
|
|
108
|
+
type: string;
|
|
109
|
+
}[];
|
|
110
|
+
internalType: string;
|
|
111
|
+
name: string;
|
|
112
|
+
type: string;
|
|
113
|
+
}[];
|
|
114
|
+
stateMutability: string;
|
|
115
|
+
type: string;
|
|
116
|
+
anonymous?: undefined;
|
|
101
117
|
})[];
|
|
102
118
|
raactoken: ({
|
|
103
119
|
inputs: {
|
|
@@ -426,21 +442,11 @@ declare const ABIS: {
|
|
|
426
442
|
}[];
|
|
427
443
|
name: string;
|
|
428
444
|
outputs: {
|
|
429
|
-
components:
|
|
430
|
-
internalType: string;
|
|
431
|
-
name: string;
|
|
432
|
-
type: string;
|
|
433
|
-
components?: undefined;
|
|
434
|
-
} | {
|
|
435
|
-
components: {
|
|
436
|
-
internalType: string;
|
|
437
|
-
name: string;
|
|
438
|
-
type: string;
|
|
439
|
-
}[];
|
|
445
|
+
components: {
|
|
440
446
|
internalType: string;
|
|
441
447
|
name: string;
|
|
442
448
|
type: string;
|
|
443
|
-
}
|
|
449
|
+
}[];
|
|
444
450
|
internalType: string;
|
|
445
451
|
name: string;
|
|
446
452
|
type: string;
|
|
@@ -1088,6 +1094,26 @@ declare const ABIS: {
|
|
|
1088
1094
|
stateMutability: string;
|
|
1089
1095
|
type: string;
|
|
1090
1096
|
anonymous?: undefined;
|
|
1097
|
+
} | {
|
|
1098
|
+
inputs: {
|
|
1099
|
+
components: {
|
|
1100
|
+
internalType: string;
|
|
1101
|
+
name: string;
|
|
1102
|
+
type: string;
|
|
1103
|
+
}[];
|
|
1104
|
+
internalType: string;
|
|
1105
|
+
name: string;
|
|
1106
|
+
type: string;
|
|
1107
|
+
}[];
|
|
1108
|
+
name: string;
|
|
1109
|
+
outputs: {
|
|
1110
|
+
internalType: string;
|
|
1111
|
+
name: string;
|
|
1112
|
+
type: string;
|
|
1113
|
+
}[];
|
|
1114
|
+
stateMutability: string;
|
|
1115
|
+
type: string;
|
|
1116
|
+
anonymous?: undefined;
|
|
1091
1117
|
})[];
|
|
1092
1118
|
vrfconsumer: ({
|
|
1093
1119
|
inputs: {
|
|
@@ -1127,11 +1153,6 @@ declare const ABIS: {
|
|
|
1127
1153
|
inputs: any[];
|
|
1128
1154
|
name: string;
|
|
1129
1155
|
outputs: {
|
|
1130
|
-
components: {
|
|
1131
|
-
internalType: string;
|
|
1132
|
-
name: string;
|
|
1133
|
-
type: string;
|
|
1134
|
-
}[];
|
|
1135
1156
|
internalType: string;
|
|
1136
1157
|
name: string;
|
|
1137
1158
|
type: string;
|
|
@@ -1143,6 +1164,11 @@ declare const ABIS: {
|
|
|
1143
1164
|
inputs: any[];
|
|
1144
1165
|
name: string;
|
|
1145
1166
|
outputs: {
|
|
1167
|
+
components: {
|
|
1168
|
+
internalType: string;
|
|
1169
|
+
name: string;
|
|
1170
|
+
type: string;
|
|
1171
|
+
}[];
|
|
1146
1172
|
internalType: string;
|
|
1147
1173
|
name: string;
|
|
1148
1174
|
type: string;
|
|
@@ -1174,7 +1200,11 @@ declare const ABIS: {
|
|
|
1174
1200
|
anonymous?: undefined;
|
|
1175
1201
|
outputs?: undefined;
|
|
1176
1202
|
} | {
|
|
1177
|
-
inputs:
|
|
1203
|
+
inputs: {
|
|
1204
|
+
internalType: string;
|
|
1205
|
+
name: string;
|
|
1206
|
+
type: string;
|
|
1207
|
+
}[];
|
|
1178
1208
|
name: string;
|
|
1179
1209
|
type: string;
|
|
1180
1210
|
stateMutability?: undefined;
|
|
@@ -1193,7 +1223,11 @@ declare const ABIS: {
|
|
|
1193
1223
|
stateMutability?: undefined;
|
|
1194
1224
|
outputs?: undefined;
|
|
1195
1225
|
} | {
|
|
1196
|
-
inputs:
|
|
1226
|
+
inputs: {
|
|
1227
|
+
internalType: string;
|
|
1228
|
+
name: string;
|
|
1229
|
+
type: string;
|
|
1230
|
+
}[];
|
|
1197
1231
|
name: string;
|
|
1198
1232
|
outputs: {
|
|
1199
1233
|
internalType: string;
|
|
@@ -1203,138 +1237,377 @@ declare const ABIS: {
|
|
|
1203
1237
|
stateMutability: string;
|
|
1204
1238
|
type: string;
|
|
1205
1239
|
anonymous?: undefined;
|
|
1206
|
-
}
|
|
1240
|
+
})[];
|
|
1241
|
+
rwavault: ({
|
|
1207
1242
|
inputs: {
|
|
1208
1243
|
internalType: string;
|
|
1209
1244
|
name: string;
|
|
1210
1245
|
type: string;
|
|
1211
1246
|
}[];
|
|
1212
|
-
name: string;
|
|
1213
|
-
outputs: any[];
|
|
1214
1247
|
stateMutability: string;
|
|
1215
1248
|
type: string;
|
|
1249
|
+
name?: undefined;
|
|
1216
1250
|
anonymous?: undefined;
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
internalType: string;
|
|
1225
|
-
name: string;
|
|
1226
|
-
type: string;
|
|
1227
|
-
}[];
|
|
1228
|
-
stateMutability: string;
|
|
1229
|
-
type: string;
|
|
1230
|
-
name?: undefined;
|
|
1231
|
-
anonymous?: undefined;
|
|
1232
|
-
outputs?: undefined;
|
|
1233
|
-
} | {
|
|
1234
|
-
inputs: {
|
|
1235
|
-
internalType: string;
|
|
1236
|
-
name: string;
|
|
1237
|
-
type: string;
|
|
1238
|
-
}[];
|
|
1239
|
-
name: string;
|
|
1240
|
-
type: string;
|
|
1241
|
-
stateMutability?: undefined;
|
|
1242
|
-
anonymous?: undefined;
|
|
1243
|
-
outputs?: undefined;
|
|
1244
|
-
} | {
|
|
1245
|
-
anonymous: boolean;
|
|
1246
|
-
inputs: {
|
|
1247
|
-
indexed: boolean;
|
|
1248
|
-
internalType: string;
|
|
1249
|
-
name: string;
|
|
1250
|
-
type: string;
|
|
1251
|
-
}[];
|
|
1252
|
-
name: string;
|
|
1253
|
-
type: string;
|
|
1254
|
-
stateMutability?: undefined;
|
|
1255
|
-
outputs?: undefined;
|
|
1256
|
-
} | {
|
|
1257
|
-
inputs: {
|
|
1258
|
-
internalType: string;
|
|
1251
|
+
outputs?: undefined;
|
|
1252
|
+
} | {
|
|
1253
|
+
inputs: {
|
|
1254
|
+
internalType: string;
|
|
1255
|
+
name: string;
|
|
1256
|
+
type: string;
|
|
1257
|
+
}[];
|
|
1259
1258
|
name: string;
|
|
1260
1259
|
type: string;
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1260
|
+
stateMutability?: undefined;
|
|
1261
|
+
anonymous?: undefined;
|
|
1262
|
+
outputs?: undefined;
|
|
1263
|
+
} | {
|
|
1264
|
+
anonymous: boolean;
|
|
1265
|
+
inputs: {
|
|
1266
|
+
indexed: boolean;
|
|
1267
|
+
internalType: string;
|
|
1268
|
+
name: string;
|
|
1269
|
+
type: string;
|
|
1270
|
+
}[];
|
|
1265
1271
|
name: string;
|
|
1266
1272
|
type: string;
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1273
|
+
stateMutability?: undefined;
|
|
1274
|
+
outputs?: undefined;
|
|
1275
|
+
} | {
|
|
1276
|
+
inputs: {
|
|
1277
|
+
internalType: string;
|
|
1278
|
+
name: string;
|
|
1279
|
+
type: string;
|
|
1280
|
+
}[];
|
|
1274
1281
|
name: string;
|
|
1282
|
+
outputs: {
|
|
1283
|
+
internalType: string;
|
|
1284
|
+
name: string;
|
|
1285
|
+
type: string;
|
|
1286
|
+
}[];
|
|
1287
|
+
stateMutability: string;
|
|
1275
1288
|
type: string;
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
name: string;
|
|
1289
|
+
anonymous?: undefined;
|
|
1290
|
+
})[];
|
|
1291
|
+
erc20assetadapter: ({
|
|
1292
|
+
inputs: {
|
|
1293
|
+
internalType: string;
|
|
1294
|
+
name: string;
|
|
1295
|
+
type: string;
|
|
1296
|
+
}[];
|
|
1297
|
+
stateMutability: string;
|
|
1286
1298
|
type: string;
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
indexed: boolean;
|
|
1297
|
-
internalType: string;
|
|
1299
|
+
name?: undefined;
|
|
1300
|
+
anonymous?: undefined;
|
|
1301
|
+
outputs?: undefined;
|
|
1302
|
+
} | {
|
|
1303
|
+
inputs: {
|
|
1304
|
+
internalType: string;
|
|
1305
|
+
name: string;
|
|
1306
|
+
type: string;
|
|
1307
|
+
}[];
|
|
1298
1308
|
name: string;
|
|
1299
1309
|
type: string;
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1310
|
+
stateMutability?: undefined;
|
|
1311
|
+
anonymous?: undefined;
|
|
1312
|
+
outputs?: undefined;
|
|
1313
|
+
} | {
|
|
1314
|
+
anonymous: boolean;
|
|
1315
|
+
inputs: {
|
|
1316
|
+
indexed: boolean;
|
|
1317
|
+
internalType: string;
|
|
1318
|
+
name: string;
|
|
1319
|
+
type: string;
|
|
1320
|
+
}[];
|
|
1308
1321
|
name: string;
|
|
1309
1322
|
type: string;
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1323
|
+
stateMutability?: undefined;
|
|
1324
|
+
outputs?: undefined;
|
|
1325
|
+
} | {
|
|
1326
|
+
inputs: {
|
|
1327
|
+
internalType: string;
|
|
1328
|
+
name: string;
|
|
1329
|
+
type: string;
|
|
1330
|
+
}[];
|
|
1314
1331
|
name: string;
|
|
1332
|
+
outputs: {
|
|
1333
|
+
internalType: string;
|
|
1334
|
+
name: string;
|
|
1335
|
+
type: string;
|
|
1336
|
+
}[];
|
|
1337
|
+
stateMutability: string;
|
|
1315
1338
|
type: string;
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1339
|
+
anonymous?: undefined;
|
|
1340
|
+
})[];
|
|
1341
|
+
erc721assetadapter: ({
|
|
1342
|
+
inputs: {
|
|
1343
|
+
internalType: string;
|
|
1344
|
+
name: string;
|
|
1345
|
+
type: string;
|
|
1346
|
+
}[];
|
|
1347
|
+
stateMutability: string;
|
|
1324
1348
|
type: string;
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1349
|
+
name?: undefined;
|
|
1350
|
+
anonymous?: undefined;
|
|
1351
|
+
outputs?: undefined;
|
|
1352
|
+
} | {
|
|
1353
|
+
inputs: {
|
|
1329
1354
|
internalType: string;
|
|
1330
1355
|
name: string;
|
|
1331
1356
|
type: string;
|
|
1332
1357
|
}[];
|
|
1333
|
-
internalType: string;
|
|
1334
1358
|
name: string;
|
|
1335
1359
|
type: string;
|
|
1336
|
-
|
|
1337
|
-
|
|
1360
|
+
stateMutability?: undefined;
|
|
1361
|
+
anonymous?: undefined;
|
|
1362
|
+
outputs?: undefined;
|
|
1363
|
+
} | {
|
|
1364
|
+
anonymous: boolean;
|
|
1365
|
+
inputs: {
|
|
1366
|
+
indexed: boolean;
|
|
1367
|
+
internalType: string;
|
|
1368
|
+
name: string;
|
|
1369
|
+
type: string;
|
|
1370
|
+
}[];
|
|
1371
|
+
name: string;
|
|
1372
|
+
type: string;
|
|
1373
|
+
stateMutability?: undefined;
|
|
1374
|
+
outputs?: undefined;
|
|
1375
|
+
} | {
|
|
1376
|
+
inputs: {
|
|
1377
|
+
internalType: string;
|
|
1378
|
+
name: string;
|
|
1379
|
+
type: string;
|
|
1380
|
+
}[];
|
|
1381
|
+
name: string;
|
|
1382
|
+
outputs: {
|
|
1383
|
+
internalType: string;
|
|
1384
|
+
name: string;
|
|
1385
|
+
type: string;
|
|
1386
|
+
}[];
|
|
1387
|
+
stateMutability: string;
|
|
1388
|
+
type: string;
|
|
1389
|
+
anonymous?: undefined;
|
|
1390
|
+
})[];
|
|
1391
|
+
erc20vaultadapter: ({
|
|
1392
|
+
inputs: {
|
|
1393
|
+
internalType: string;
|
|
1394
|
+
name: string;
|
|
1395
|
+
type: string;
|
|
1396
|
+
}[];
|
|
1397
|
+
stateMutability: string;
|
|
1398
|
+
type: string;
|
|
1399
|
+
name?: undefined;
|
|
1400
|
+
anonymous?: undefined;
|
|
1401
|
+
outputs?: undefined;
|
|
1402
|
+
} | {
|
|
1403
|
+
inputs: {
|
|
1404
|
+
internalType: string;
|
|
1405
|
+
name: string;
|
|
1406
|
+
type: string;
|
|
1407
|
+
}[];
|
|
1408
|
+
name: string;
|
|
1409
|
+
type: string;
|
|
1410
|
+
stateMutability?: undefined;
|
|
1411
|
+
anonymous?: undefined;
|
|
1412
|
+
outputs?: undefined;
|
|
1413
|
+
} | {
|
|
1414
|
+
anonymous: boolean;
|
|
1415
|
+
inputs: {
|
|
1416
|
+
indexed: boolean;
|
|
1417
|
+
internalType: string;
|
|
1418
|
+
name: string;
|
|
1419
|
+
type: string;
|
|
1420
|
+
}[];
|
|
1421
|
+
name: string;
|
|
1422
|
+
type: string;
|
|
1423
|
+
stateMutability?: undefined;
|
|
1424
|
+
outputs?: undefined;
|
|
1425
|
+
} | {
|
|
1426
|
+
inputs: {
|
|
1427
|
+
internalType: string;
|
|
1428
|
+
name: string;
|
|
1429
|
+
type: string;
|
|
1430
|
+
}[];
|
|
1431
|
+
name: string;
|
|
1432
|
+
outputs: {
|
|
1433
|
+
internalType: string;
|
|
1434
|
+
name: string;
|
|
1435
|
+
type: string;
|
|
1436
|
+
}[];
|
|
1437
|
+
stateMutability: string;
|
|
1438
|
+
type: string;
|
|
1439
|
+
anonymous?: undefined;
|
|
1440
|
+
})[];
|
|
1441
|
+
erc721vaultadapter: ({
|
|
1442
|
+
inputs: {
|
|
1443
|
+
internalType: string;
|
|
1444
|
+
name: string;
|
|
1445
|
+
type: string;
|
|
1446
|
+
}[];
|
|
1447
|
+
stateMutability: string;
|
|
1448
|
+
type: string;
|
|
1449
|
+
name?: undefined;
|
|
1450
|
+
anonymous?: undefined;
|
|
1451
|
+
outputs?: undefined;
|
|
1452
|
+
} | {
|
|
1453
|
+
inputs: {
|
|
1454
|
+
internalType: string;
|
|
1455
|
+
name: string;
|
|
1456
|
+
type: string;
|
|
1457
|
+
}[];
|
|
1458
|
+
name: string;
|
|
1459
|
+
type: string;
|
|
1460
|
+
stateMutability?: undefined;
|
|
1461
|
+
anonymous?: undefined;
|
|
1462
|
+
outputs?: undefined;
|
|
1463
|
+
} | {
|
|
1464
|
+
anonymous: boolean;
|
|
1465
|
+
inputs: {
|
|
1466
|
+
indexed: boolean;
|
|
1467
|
+
internalType: string;
|
|
1468
|
+
name: string;
|
|
1469
|
+
type: string;
|
|
1470
|
+
}[];
|
|
1471
|
+
name: string;
|
|
1472
|
+
type: string;
|
|
1473
|
+
stateMutability?: undefined;
|
|
1474
|
+
outputs?: undefined;
|
|
1475
|
+
} | {
|
|
1476
|
+
inputs: {
|
|
1477
|
+
internalType: string;
|
|
1478
|
+
name: string;
|
|
1479
|
+
type: string;
|
|
1480
|
+
}[];
|
|
1481
|
+
name: string;
|
|
1482
|
+
outputs: {
|
|
1483
|
+
internalType: string;
|
|
1484
|
+
name: string;
|
|
1485
|
+
type: string;
|
|
1486
|
+
}[];
|
|
1487
|
+
stateMutability: string;
|
|
1488
|
+
type: string;
|
|
1489
|
+
anonymous?: undefined;
|
|
1490
|
+
})[];
|
|
1491
|
+
eth: any[];
|
|
1492
|
+
};
|
|
1493
|
+
export type AssetType = keyof typeof ABIS | string;
|
|
1494
|
+
export type ContractType = keyof typeof ABIS;
|
|
1495
|
+
declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
1496
|
+
inputs: {
|
|
1497
|
+
internalType: string;
|
|
1498
|
+
name: string;
|
|
1499
|
+
type: string;
|
|
1500
|
+
}[];
|
|
1501
|
+
stateMutability: string;
|
|
1502
|
+
type: string;
|
|
1503
|
+
name?: undefined;
|
|
1504
|
+
anonymous?: undefined;
|
|
1505
|
+
outputs?: undefined;
|
|
1506
|
+
} | {
|
|
1507
|
+
inputs: {
|
|
1508
|
+
internalType: string;
|
|
1509
|
+
name: string;
|
|
1510
|
+
type: string;
|
|
1511
|
+
}[];
|
|
1512
|
+
name: string;
|
|
1513
|
+
type: string;
|
|
1514
|
+
stateMutability?: undefined;
|
|
1515
|
+
anonymous?: undefined;
|
|
1516
|
+
outputs?: undefined;
|
|
1517
|
+
} | {
|
|
1518
|
+
anonymous: boolean;
|
|
1519
|
+
inputs: {
|
|
1520
|
+
indexed: boolean;
|
|
1521
|
+
internalType: string;
|
|
1522
|
+
name: string;
|
|
1523
|
+
type: string;
|
|
1524
|
+
}[];
|
|
1525
|
+
name: string;
|
|
1526
|
+
type: string;
|
|
1527
|
+
stateMutability?: undefined;
|
|
1528
|
+
outputs?: undefined;
|
|
1529
|
+
} | {
|
|
1530
|
+
inputs: {
|
|
1531
|
+
internalType: string;
|
|
1532
|
+
name: string;
|
|
1533
|
+
type: string;
|
|
1534
|
+
}[];
|
|
1535
|
+
name: string;
|
|
1536
|
+
outputs: {
|
|
1537
|
+
internalType: string;
|
|
1538
|
+
name: string;
|
|
1539
|
+
type: string;
|
|
1540
|
+
}[];
|
|
1541
|
+
stateMutability: string;
|
|
1542
|
+
type: string;
|
|
1543
|
+
anonymous?: undefined;
|
|
1544
|
+
})[] | ({
|
|
1545
|
+
inputs: {
|
|
1546
|
+
internalType: string;
|
|
1547
|
+
name: string;
|
|
1548
|
+
type: string;
|
|
1549
|
+
}[];
|
|
1550
|
+
stateMutability: string;
|
|
1551
|
+
type: string;
|
|
1552
|
+
name?: undefined;
|
|
1553
|
+
anonymous?: undefined;
|
|
1554
|
+
outputs?: undefined;
|
|
1555
|
+
} | {
|
|
1556
|
+
inputs: {
|
|
1557
|
+
internalType: string;
|
|
1558
|
+
name: string;
|
|
1559
|
+
type: string;
|
|
1560
|
+
}[];
|
|
1561
|
+
name: string;
|
|
1562
|
+
type: string;
|
|
1563
|
+
stateMutability?: undefined;
|
|
1564
|
+
anonymous?: undefined;
|
|
1565
|
+
outputs?: undefined;
|
|
1566
|
+
} | {
|
|
1567
|
+
anonymous: boolean;
|
|
1568
|
+
inputs: {
|
|
1569
|
+
indexed: boolean;
|
|
1570
|
+
internalType: string;
|
|
1571
|
+
name: string;
|
|
1572
|
+
type: string;
|
|
1573
|
+
}[];
|
|
1574
|
+
name: string;
|
|
1575
|
+
type: string;
|
|
1576
|
+
stateMutability?: undefined;
|
|
1577
|
+
outputs?: undefined;
|
|
1578
|
+
} | {
|
|
1579
|
+
inputs: {
|
|
1580
|
+
internalType: string;
|
|
1581
|
+
name: string;
|
|
1582
|
+
type: string;
|
|
1583
|
+
}[];
|
|
1584
|
+
name: string;
|
|
1585
|
+
outputs: {
|
|
1586
|
+
internalType: string;
|
|
1587
|
+
name: string;
|
|
1588
|
+
type: string;
|
|
1589
|
+
}[];
|
|
1590
|
+
stateMutability: string;
|
|
1591
|
+
type: string;
|
|
1592
|
+
anonymous?: undefined;
|
|
1593
|
+
} | {
|
|
1594
|
+
inputs: {
|
|
1595
|
+
internalType: string;
|
|
1596
|
+
name: string;
|
|
1597
|
+
type: string;
|
|
1598
|
+
}[];
|
|
1599
|
+
name: string;
|
|
1600
|
+
outputs: {
|
|
1601
|
+
components: {
|
|
1602
|
+
internalType: string;
|
|
1603
|
+
name: string;
|
|
1604
|
+
type: string;
|
|
1605
|
+
}[];
|
|
1606
|
+
internalType: string;
|
|
1607
|
+
name: string;
|
|
1608
|
+
type: string;
|
|
1609
|
+
}[];
|
|
1610
|
+
stateMutability: string;
|
|
1338
1611
|
type: string;
|
|
1339
1612
|
anonymous?: undefined;
|
|
1340
1613
|
})[] | ({
|
|
@@ -1443,21 +1716,223 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1443
1716
|
}[];
|
|
1444
1717
|
name: string;
|
|
1445
1718
|
outputs: {
|
|
1446
|
-
components:
|
|
1719
|
+
components: {
|
|
1447
1720
|
internalType: string;
|
|
1448
1721
|
name: string;
|
|
1449
1722
|
type: string;
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1723
|
+
}[];
|
|
1724
|
+
internalType: string;
|
|
1725
|
+
name: string;
|
|
1726
|
+
type: string;
|
|
1727
|
+
}[];
|
|
1728
|
+
stateMutability: string;
|
|
1729
|
+
type: string;
|
|
1730
|
+
anonymous?: undefined;
|
|
1731
|
+
})[] | ({
|
|
1732
|
+
inputs: {
|
|
1733
|
+
internalType: string;
|
|
1734
|
+
name: string;
|
|
1735
|
+
type: string;
|
|
1736
|
+
}[];
|
|
1737
|
+
stateMutability: string;
|
|
1738
|
+
type: string;
|
|
1739
|
+
name?: undefined;
|
|
1740
|
+
anonymous?: undefined;
|
|
1741
|
+
outputs?: undefined;
|
|
1742
|
+
} | {
|
|
1743
|
+
inputs: {
|
|
1744
|
+
internalType: string;
|
|
1745
|
+
name: string;
|
|
1746
|
+
type: string;
|
|
1747
|
+
}[];
|
|
1748
|
+
name: string;
|
|
1749
|
+
type: string;
|
|
1750
|
+
stateMutability?: undefined;
|
|
1751
|
+
anonymous?: undefined;
|
|
1752
|
+
outputs?: undefined;
|
|
1753
|
+
} | {
|
|
1754
|
+
anonymous: boolean;
|
|
1755
|
+
inputs: {
|
|
1756
|
+
indexed: boolean;
|
|
1757
|
+
internalType: string;
|
|
1758
|
+
name: string;
|
|
1759
|
+
type: string;
|
|
1760
|
+
}[];
|
|
1761
|
+
name: string;
|
|
1762
|
+
type: string;
|
|
1763
|
+
stateMutability?: undefined;
|
|
1764
|
+
outputs?: undefined;
|
|
1765
|
+
} | {
|
|
1766
|
+
inputs: {
|
|
1767
|
+
internalType: string;
|
|
1768
|
+
name: string;
|
|
1769
|
+
type: string;
|
|
1770
|
+
}[];
|
|
1771
|
+
name: string;
|
|
1772
|
+
outputs: {
|
|
1773
|
+
internalType: string;
|
|
1774
|
+
name: string;
|
|
1775
|
+
type: string;
|
|
1776
|
+
}[];
|
|
1777
|
+
stateMutability: string;
|
|
1778
|
+
type: string;
|
|
1779
|
+
anonymous?: undefined;
|
|
1780
|
+
})[] | ({
|
|
1781
|
+
inputs: {
|
|
1782
|
+
internalType: string;
|
|
1783
|
+
name: string;
|
|
1784
|
+
type: string;
|
|
1785
|
+
}[];
|
|
1786
|
+
stateMutability: string;
|
|
1787
|
+
type: string;
|
|
1788
|
+
name?: undefined;
|
|
1789
|
+
anonymous?: undefined;
|
|
1790
|
+
outputs?: undefined;
|
|
1791
|
+
} | {
|
|
1792
|
+
inputs: {
|
|
1793
|
+
internalType: string;
|
|
1794
|
+
name: string;
|
|
1795
|
+
type: string;
|
|
1796
|
+
}[];
|
|
1797
|
+
name: string;
|
|
1798
|
+
type: string;
|
|
1799
|
+
stateMutability?: undefined;
|
|
1800
|
+
anonymous?: undefined;
|
|
1801
|
+
outputs?: undefined;
|
|
1802
|
+
} | {
|
|
1803
|
+
anonymous: boolean;
|
|
1804
|
+
inputs: {
|
|
1805
|
+
indexed: boolean;
|
|
1806
|
+
internalType: string;
|
|
1807
|
+
name: string;
|
|
1808
|
+
type: string;
|
|
1809
|
+
}[];
|
|
1810
|
+
name: string;
|
|
1811
|
+
type: string;
|
|
1812
|
+
stateMutability?: undefined;
|
|
1813
|
+
outputs?: undefined;
|
|
1814
|
+
} | {
|
|
1815
|
+
inputs: {
|
|
1816
|
+
internalType: string;
|
|
1817
|
+
name: string;
|
|
1818
|
+
type: string;
|
|
1819
|
+
}[];
|
|
1820
|
+
name: string;
|
|
1821
|
+
outputs: {
|
|
1822
|
+
internalType: string;
|
|
1823
|
+
name: string;
|
|
1824
|
+
type: string;
|
|
1825
|
+
}[];
|
|
1826
|
+
stateMutability: string;
|
|
1827
|
+
type: string;
|
|
1828
|
+
anonymous?: undefined;
|
|
1829
|
+
} | {
|
|
1830
|
+
inputs: any[];
|
|
1831
|
+
name: string;
|
|
1832
|
+
outputs: {
|
|
1833
|
+
components: {
|
|
1457
1834
|
internalType: string;
|
|
1458
1835
|
name: string;
|
|
1459
1836
|
type: string;
|
|
1460
|
-
}
|
|
1837
|
+
}[];
|
|
1838
|
+
internalType: string;
|
|
1839
|
+
name: string;
|
|
1840
|
+
type: string;
|
|
1841
|
+
}[];
|
|
1842
|
+
stateMutability: string;
|
|
1843
|
+
type: string;
|
|
1844
|
+
anonymous?: undefined;
|
|
1845
|
+
})[] | ({
|
|
1846
|
+
inputs: {
|
|
1847
|
+
internalType: string;
|
|
1848
|
+
name: string;
|
|
1849
|
+
type: string;
|
|
1850
|
+
}[];
|
|
1851
|
+
stateMutability: string;
|
|
1852
|
+
type: string;
|
|
1853
|
+
name?: undefined;
|
|
1854
|
+
anonymous?: undefined;
|
|
1855
|
+
outputs?: undefined;
|
|
1856
|
+
} | {
|
|
1857
|
+
inputs: {
|
|
1858
|
+
internalType: string;
|
|
1859
|
+
name: string;
|
|
1860
|
+
type: string;
|
|
1861
|
+
}[];
|
|
1862
|
+
name: string;
|
|
1863
|
+
type: string;
|
|
1864
|
+
stateMutability?: undefined;
|
|
1865
|
+
anonymous?: undefined;
|
|
1866
|
+
outputs?: undefined;
|
|
1867
|
+
} | {
|
|
1868
|
+
anonymous: boolean;
|
|
1869
|
+
inputs: {
|
|
1870
|
+
indexed: boolean;
|
|
1871
|
+
internalType: string;
|
|
1872
|
+
name: string;
|
|
1873
|
+
type: string;
|
|
1874
|
+
}[];
|
|
1875
|
+
name: string;
|
|
1876
|
+
type: string;
|
|
1877
|
+
stateMutability?: undefined;
|
|
1878
|
+
outputs?: undefined;
|
|
1879
|
+
} | {
|
|
1880
|
+
inputs: {
|
|
1881
|
+
internalType: string;
|
|
1882
|
+
name: string;
|
|
1883
|
+
type: string;
|
|
1884
|
+
}[];
|
|
1885
|
+
name: string;
|
|
1886
|
+
outputs: {
|
|
1887
|
+
internalType: string;
|
|
1888
|
+
name: string;
|
|
1889
|
+
type: string;
|
|
1890
|
+
}[];
|
|
1891
|
+
stateMutability: string;
|
|
1892
|
+
type: string;
|
|
1893
|
+
anonymous?: undefined;
|
|
1894
|
+
})[] | ({
|
|
1895
|
+
inputs: {
|
|
1896
|
+
internalType: string;
|
|
1897
|
+
name: string;
|
|
1898
|
+
type: string;
|
|
1899
|
+
}[];
|
|
1900
|
+
stateMutability: string;
|
|
1901
|
+
type: string;
|
|
1902
|
+
name?: undefined;
|
|
1903
|
+
anonymous?: undefined;
|
|
1904
|
+
outputs?: undefined;
|
|
1905
|
+
} | {
|
|
1906
|
+
inputs: {
|
|
1907
|
+
internalType: string;
|
|
1908
|
+
name: string;
|
|
1909
|
+
type: string;
|
|
1910
|
+
}[];
|
|
1911
|
+
name: string;
|
|
1912
|
+
type: string;
|
|
1913
|
+
stateMutability?: undefined;
|
|
1914
|
+
anonymous?: undefined;
|
|
1915
|
+
outputs?: undefined;
|
|
1916
|
+
} | {
|
|
1917
|
+
anonymous: boolean;
|
|
1918
|
+
inputs: {
|
|
1919
|
+
indexed: boolean;
|
|
1920
|
+
internalType: string;
|
|
1921
|
+
name: string;
|
|
1922
|
+
type: string;
|
|
1923
|
+
}[];
|
|
1924
|
+
name: string;
|
|
1925
|
+
type: string;
|
|
1926
|
+
stateMutability?: undefined;
|
|
1927
|
+
outputs?: undefined;
|
|
1928
|
+
} | {
|
|
1929
|
+
inputs: {
|
|
1930
|
+
internalType: string;
|
|
1931
|
+
name: string;
|
|
1932
|
+
type: string;
|
|
1933
|
+
}[];
|
|
1934
|
+
name: string;
|
|
1935
|
+
outputs: {
|
|
1461
1936
|
internalType: string;
|
|
1462
1937
|
name: string;
|
|
1463
1938
|
type: string;
|
|
@@ -1612,6 +2087,26 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1612
2087
|
stateMutability: string;
|
|
1613
2088
|
type: string;
|
|
1614
2089
|
anonymous?: undefined;
|
|
2090
|
+
} | {
|
|
2091
|
+
inputs: {
|
|
2092
|
+
internalType: string;
|
|
2093
|
+
name: string;
|
|
2094
|
+
type: string;
|
|
2095
|
+
}[];
|
|
2096
|
+
name: string;
|
|
2097
|
+
outputs: {
|
|
2098
|
+
components: {
|
|
2099
|
+
internalType: string;
|
|
2100
|
+
name: string;
|
|
2101
|
+
type: string;
|
|
2102
|
+
}[];
|
|
2103
|
+
internalType: string;
|
|
2104
|
+
name: string;
|
|
2105
|
+
type: string;
|
|
2106
|
+
}[];
|
|
2107
|
+
stateMutability: string;
|
|
2108
|
+
type: string;
|
|
2109
|
+
anonymous?: undefined;
|
|
1615
2110
|
})[] | ({
|
|
1616
2111
|
inputs: {
|
|
1617
2112
|
internalType: string;
|
|
@@ -1661,6 +2156,22 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1661
2156
|
stateMutability: string;
|
|
1662
2157
|
type: string;
|
|
1663
2158
|
anonymous?: undefined;
|
|
2159
|
+
} | {
|
|
2160
|
+
inputs: any[];
|
|
2161
|
+
name: string;
|
|
2162
|
+
outputs: {
|
|
2163
|
+
components: {
|
|
2164
|
+
internalType: string;
|
|
2165
|
+
name: string;
|
|
2166
|
+
type: string;
|
|
2167
|
+
}[];
|
|
2168
|
+
internalType: string;
|
|
2169
|
+
name: string;
|
|
2170
|
+
type: string;
|
|
2171
|
+
}[];
|
|
2172
|
+
stateMutability: string;
|
|
2173
|
+
type: string;
|
|
2174
|
+
anonymous?: undefined;
|
|
1664
2175
|
})[] | ({
|
|
1665
2176
|
inputs: {
|
|
1666
2177
|
internalType: string;
|
|
@@ -1710,6 +2221,26 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1710
2221
|
stateMutability: string;
|
|
1711
2222
|
type: string;
|
|
1712
2223
|
anonymous?: undefined;
|
|
2224
|
+
} | {
|
|
2225
|
+
inputs: {
|
|
2226
|
+
internalType: string;
|
|
2227
|
+
name: string;
|
|
2228
|
+
type: string;
|
|
2229
|
+
}[];
|
|
2230
|
+
name: string;
|
|
2231
|
+
outputs: {
|
|
2232
|
+
components: {
|
|
2233
|
+
internalType: string;
|
|
2234
|
+
name: string;
|
|
2235
|
+
type: string;
|
|
2236
|
+
}[];
|
|
2237
|
+
internalType: string;
|
|
2238
|
+
name: string;
|
|
2239
|
+
type: string;
|
|
2240
|
+
}[];
|
|
2241
|
+
stateMutability: string;
|
|
2242
|
+
type: string;
|
|
2243
|
+
anonymous?: undefined;
|
|
1713
2244
|
})[] | ({
|
|
1714
2245
|
inputs: {
|
|
1715
2246
|
internalType: string;
|
|
@@ -1759,6 +2290,22 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1759
2290
|
stateMutability: string;
|
|
1760
2291
|
type: string;
|
|
1761
2292
|
anonymous?: undefined;
|
|
2293
|
+
} | {
|
|
2294
|
+
inputs: any[];
|
|
2295
|
+
name: string;
|
|
2296
|
+
outputs: {
|
|
2297
|
+
components: {
|
|
2298
|
+
internalType: string;
|
|
2299
|
+
name: string;
|
|
2300
|
+
type: string;
|
|
2301
|
+
}[];
|
|
2302
|
+
internalType: string;
|
|
2303
|
+
name: string;
|
|
2304
|
+
type: string;
|
|
2305
|
+
}[];
|
|
2306
|
+
stateMutability: string;
|
|
2307
|
+
type: string;
|
|
2308
|
+
anonymous?: undefined;
|
|
1762
2309
|
})[] | ({
|
|
1763
2310
|
inputs: {
|
|
1764
2311
|
internalType: string;
|
|
@@ -1783,12 +2330,23 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1783
2330
|
outputs?: undefined;
|
|
1784
2331
|
} | {
|
|
1785
2332
|
anonymous: boolean;
|
|
1786
|
-
inputs: {
|
|
2333
|
+
inputs: ({
|
|
1787
2334
|
indexed: boolean;
|
|
1788
2335
|
internalType: string;
|
|
1789
2336
|
name: string;
|
|
1790
2337
|
type: string;
|
|
1791
|
-
|
|
2338
|
+
components?: undefined;
|
|
2339
|
+
} | {
|
|
2340
|
+
components: {
|
|
2341
|
+
internalType: string;
|
|
2342
|
+
name: string;
|
|
2343
|
+
type: string;
|
|
2344
|
+
}[];
|
|
2345
|
+
indexed: boolean;
|
|
2346
|
+
internalType: string;
|
|
2347
|
+
name: string;
|
|
2348
|
+
type: string;
|
|
2349
|
+
})[];
|
|
1792
2350
|
name: string;
|
|
1793
2351
|
type: string;
|
|
1794
2352
|
stateMutability?: undefined;
|
|
@@ -1828,6 +2386,27 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1828
2386
|
stateMutability: string;
|
|
1829
2387
|
type: string;
|
|
1830
2388
|
anonymous?: undefined;
|
|
2389
|
+
} | {
|
|
2390
|
+
inputs: ({
|
|
2391
|
+
internalType: string;
|
|
2392
|
+
name: string;
|
|
2393
|
+
type: string;
|
|
2394
|
+
components?: undefined;
|
|
2395
|
+
} | {
|
|
2396
|
+
components: {
|
|
2397
|
+
internalType: string;
|
|
2398
|
+
name: string;
|
|
2399
|
+
type: string;
|
|
2400
|
+
}[];
|
|
2401
|
+
internalType: string;
|
|
2402
|
+
name: string;
|
|
2403
|
+
type: string;
|
|
2404
|
+
})[];
|
|
2405
|
+
name: string;
|
|
2406
|
+
outputs: any[];
|
|
2407
|
+
stateMutability: string;
|
|
2408
|
+
type: string;
|
|
2409
|
+
anonymous?: undefined;
|
|
1831
2410
|
})[] | ({
|
|
1832
2411
|
inputs: {
|
|
1833
2412
|
internalType: string;
|
|
@@ -1944,17 +2523,17 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1944
2523
|
anonymous?: undefined;
|
|
1945
2524
|
} | {
|
|
1946
2525
|
inputs: {
|
|
2526
|
+
components: {
|
|
2527
|
+
internalType: string;
|
|
2528
|
+
name: string;
|
|
2529
|
+
type: string;
|
|
2530
|
+
}[];
|
|
1947
2531
|
internalType: string;
|
|
1948
2532
|
name: string;
|
|
1949
2533
|
type: string;
|
|
1950
2534
|
}[];
|
|
1951
2535
|
name: string;
|
|
1952
2536
|
outputs: {
|
|
1953
|
-
components: {
|
|
1954
|
-
internalType: string;
|
|
1955
|
-
name: string;
|
|
1956
|
-
type: string;
|
|
1957
|
-
}[];
|
|
1958
2537
|
internalType: string;
|
|
1959
2538
|
name: string;
|
|
1960
2539
|
type: string;
|
|
@@ -1997,11 +2576,7 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1997
2576
|
stateMutability?: undefined;
|
|
1998
2577
|
outputs?: undefined;
|
|
1999
2578
|
} | {
|
|
2000
|
-
inputs:
|
|
2001
|
-
internalType: string;
|
|
2002
|
-
name: string;
|
|
2003
|
-
type: string;
|
|
2004
|
-
}[];
|
|
2579
|
+
inputs: any[];
|
|
2005
2580
|
name: string;
|
|
2006
2581
|
outputs: {
|
|
2007
2582
|
internalType: string;
|
|
@@ -2027,6 +2602,17 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2027
2602
|
stateMutability: string;
|
|
2028
2603
|
type: string;
|
|
2029
2604
|
anonymous?: undefined;
|
|
2605
|
+
} | {
|
|
2606
|
+
inputs: {
|
|
2607
|
+
internalType: string;
|
|
2608
|
+
name: string;
|
|
2609
|
+
type: string;
|
|
2610
|
+
}[];
|
|
2611
|
+
name: string;
|
|
2612
|
+
outputs: any[];
|
|
2613
|
+
stateMutability: string;
|
|
2614
|
+
type: string;
|
|
2615
|
+
anonymous?: undefined;
|
|
2030
2616
|
})[] | ({
|
|
2031
2617
|
inputs: {
|
|
2032
2618
|
internalType: string;
|
|
@@ -2051,23 +2637,12 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2051
2637
|
outputs?: undefined;
|
|
2052
2638
|
} | {
|
|
2053
2639
|
anonymous: boolean;
|
|
2054
|
-
inputs:
|
|
2055
|
-
indexed: boolean;
|
|
2056
|
-
internalType: string;
|
|
2057
|
-
name: string;
|
|
2058
|
-
type: string;
|
|
2059
|
-
components?: undefined;
|
|
2060
|
-
} | {
|
|
2061
|
-
components: {
|
|
2062
|
-
internalType: string;
|
|
2063
|
-
name: string;
|
|
2064
|
-
type: string;
|
|
2065
|
-
}[];
|
|
2640
|
+
inputs: {
|
|
2066
2641
|
indexed: boolean;
|
|
2067
2642
|
internalType: string;
|
|
2068
2643
|
name: string;
|
|
2069
2644
|
type: string;
|
|
2070
|
-
}
|
|
2645
|
+
}[];
|
|
2071
2646
|
name: string;
|
|
2072
2647
|
type: string;
|
|
2073
2648
|
stateMutability?: undefined;
|
|
@@ -2087,44 +2662,52 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2087
2662
|
stateMutability: string;
|
|
2088
2663
|
type: string;
|
|
2089
2664
|
anonymous?: undefined;
|
|
2090
|
-
} | {
|
|
2665
|
+
})[] | ({
|
|
2091
2666
|
inputs: {
|
|
2092
2667
|
internalType: string;
|
|
2093
2668
|
name: string;
|
|
2094
2669
|
type: string;
|
|
2095
2670
|
}[];
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2671
|
+
stateMutability: string;
|
|
2672
|
+
type: string;
|
|
2673
|
+
name?: undefined;
|
|
2674
|
+
anonymous?: undefined;
|
|
2675
|
+
outputs?: undefined;
|
|
2676
|
+
} | {
|
|
2677
|
+
inputs: {
|
|
2103
2678
|
internalType: string;
|
|
2104
2679
|
name: string;
|
|
2105
2680
|
type: string;
|
|
2106
2681
|
}[];
|
|
2107
|
-
|
|
2682
|
+
name: string;
|
|
2108
2683
|
type: string;
|
|
2684
|
+
stateMutability?: undefined;
|
|
2109
2685
|
anonymous?: undefined;
|
|
2686
|
+
outputs?: undefined;
|
|
2110
2687
|
} | {
|
|
2111
|
-
|
|
2688
|
+
anonymous: boolean;
|
|
2689
|
+
inputs: {
|
|
2690
|
+
indexed: boolean;
|
|
2112
2691
|
internalType: string;
|
|
2113
2692
|
name: string;
|
|
2114
2693
|
type: string;
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2694
|
+
}[];
|
|
2695
|
+
name: string;
|
|
2696
|
+
type: string;
|
|
2697
|
+
stateMutability?: undefined;
|
|
2698
|
+
outputs?: undefined;
|
|
2699
|
+
} | {
|
|
2700
|
+
inputs: {
|
|
2122
2701
|
internalType: string;
|
|
2123
2702
|
name: string;
|
|
2124
2703
|
type: string;
|
|
2125
|
-
}
|
|
2704
|
+
}[];
|
|
2126
2705
|
name: string;
|
|
2127
|
-
outputs:
|
|
2706
|
+
outputs: {
|
|
2707
|
+
internalType: string;
|
|
2708
|
+
name: string;
|
|
2709
|
+
type: string;
|
|
2710
|
+
}[];
|
|
2128
2711
|
stateMutability: string;
|
|
2129
2712
|
type: string;
|
|
2130
2713
|
anonymous?: undefined;
|
|
@@ -2177,22 +2760,6 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2177
2760
|
stateMutability: string;
|
|
2178
2761
|
type: string;
|
|
2179
2762
|
anonymous?: undefined;
|
|
2180
|
-
} | {
|
|
2181
|
-
inputs: any[];
|
|
2182
|
-
name: string;
|
|
2183
|
-
outputs: {
|
|
2184
|
-
components: {
|
|
2185
|
-
internalType: string;
|
|
2186
|
-
name: string;
|
|
2187
|
-
type: string;
|
|
2188
|
-
}[];
|
|
2189
|
-
internalType: string;
|
|
2190
|
-
name: string;
|
|
2191
|
-
type: string;
|
|
2192
|
-
}[];
|
|
2193
|
-
stateMutability: string;
|
|
2194
|
-
type: string;
|
|
2195
|
-
anonymous?: undefined;
|
|
2196
2763
|
})[] | ({
|
|
2197
2764
|
inputs: {
|
|
2198
2765
|
internalType: string;
|
|
@@ -2277,23 +2844,11 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2277
2844
|
stateMutability?: undefined;
|
|
2278
2845
|
outputs?: undefined;
|
|
2279
2846
|
} | {
|
|
2280
|
-
inputs:
|
|
2281
|
-
name: string;
|
|
2282
|
-
outputs: {
|
|
2283
|
-
components: {
|
|
2284
|
-
internalType: string;
|
|
2285
|
-
name: string;
|
|
2286
|
-
type: string;
|
|
2287
|
-
}[];
|
|
2847
|
+
inputs: {
|
|
2288
2848
|
internalType: string;
|
|
2289
2849
|
name: string;
|
|
2290
2850
|
type: string;
|
|
2291
2851
|
}[];
|
|
2292
|
-
stateMutability: string;
|
|
2293
|
-
type: string;
|
|
2294
|
-
anonymous?: undefined;
|
|
2295
|
-
} | {
|
|
2296
|
-
inputs: any[];
|
|
2297
2852
|
name: string;
|
|
2298
2853
|
outputs: {
|
|
2299
2854
|
internalType: string;
|
|
@@ -2303,30 +2858,23 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2303
2858
|
stateMutability: string;
|
|
2304
2859
|
type: string;
|
|
2305
2860
|
anonymous?: undefined;
|
|
2306
|
-
} | {
|
|
2861
|
+
})[] | ({
|
|
2307
2862
|
inputs: {
|
|
2308
2863
|
internalType: string;
|
|
2309
2864
|
name: string;
|
|
2310
2865
|
type: string;
|
|
2311
2866
|
}[];
|
|
2312
|
-
name: string;
|
|
2313
|
-
outputs: any[];
|
|
2314
2867
|
stateMutability: string;
|
|
2315
2868
|
type: string;
|
|
2869
|
+
name?: undefined;
|
|
2316
2870
|
anonymous?: undefined;
|
|
2317
|
-
|
|
2871
|
+
outputs?: undefined;
|
|
2872
|
+
} | {
|
|
2318
2873
|
inputs: {
|
|
2319
2874
|
internalType: string;
|
|
2320
2875
|
name: string;
|
|
2321
2876
|
type: string;
|
|
2322
2877
|
}[];
|
|
2323
|
-
stateMutability: string;
|
|
2324
|
-
type: string;
|
|
2325
|
-
name?: undefined;
|
|
2326
|
-
anonymous?: undefined;
|
|
2327
|
-
outputs?: undefined;
|
|
2328
|
-
} | {
|
|
2329
|
-
inputs: any[];
|
|
2330
2878
|
name: string;
|
|
2331
2879
|
type: string;
|
|
2332
2880
|
stateMutability?: undefined;
|
|
@@ -2345,24 +2893,17 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2345
2893
|
stateMutability?: undefined;
|
|
2346
2894
|
outputs?: undefined;
|
|
2347
2895
|
} | {
|
|
2348
|
-
inputs:
|
|
2349
|
-
name: string;
|
|
2350
|
-
outputs: {
|
|
2896
|
+
inputs: {
|
|
2351
2897
|
internalType: string;
|
|
2352
2898
|
name: string;
|
|
2353
2899
|
type: string;
|
|
2354
2900
|
}[];
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
anonymous?: undefined;
|
|
2358
|
-
} | {
|
|
2359
|
-
inputs: {
|
|
2901
|
+
name: string;
|
|
2902
|
+
outputs: {
|
|
2360
2903
|
internalType: string;
|
|
2361
2904
|
name: string;
|
|
2362
2905
|
type: string;
|
|
2363
2906
|
}[];
|
|
2364
|
-
name: string;
|
|
2365
|
-
outputs: any[];
|
|
2366
2907
|
stateMutability: string;
|
|
2367
2908
|
type: string;
|
|
2368
2909
|
anonymous?: undefined;
|