@raac/rpc 1.1.0-beta.92 → 1.2.0-beta.2
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 +267 -0
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +2 -2
- package/dist/artifacts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.json +2 -2
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +2 -2
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +2 -2
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +2 -2
- package/dist/artifacts/core/governance/gauges/BaseGauge.sol/BaseGauge.json +1622 -0
- package/dist/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +1661 -0
- package/dist/artifacts/core/governance/gauges/GaugeRewardsDistributor.sol/GaugeRewardsDistributor.json +976 -0
- package/dist/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +1648 -0
- package/dist/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +1661 -0
- package/dist/artifacts/core/governance/proposals/Governance.sol/Governance.json +1221 -0
- package/dist/artifacts/core/governance/proposals/TimelockController.sol/TimelockController.json +1019 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +2 -2
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +2 -2
- package/dist/artifacts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.json +2 -2
- package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +2 -2
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +2 -2
- package/dist/artifacts/core/pmBlender/pmBlender.json +1 -0
- package/dist/artifacts/core/pmMarket/pmMarket.json +1 -0
- package/dist/artifacts/core/pmTreasury/pmTreasury.json +1 -0
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +20 -10
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +2 -2
- package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +2 -2
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +2 -2
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +63 -7
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +2 -2
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +58 -2
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +2 -2
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +1020 -517
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +2 -2
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +2 -2
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +2 -20
- 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/mocks/core/tokens/pmUSD.sol/pmUSD.json +1 -0
- package/dist/artifacts/mocks/core/tokens/xPM.sol/xPM.json +1 -0
- package/dist/artifacts/zeno/Auction.sol/Auction.json +2 -2
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +2 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +2 -2
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/1.json +95 -36
- package/dist/configs/chains/11155111.json +86 -27
- package/dist/configs/chains/17000.json +65 -1
- package/dist/configs/chains/18453.json +65 -1
- package/dist/configs/chains/8453.json +66 -7
- package/dist/configs/chains/index.js +2 -2
- package/dist/contracts/getContractAddress.js +1 -0
- package/dist/contracts/governance/distributor/deposit.js +36 -0
- package/dist/contracts/governance/distributor/getAvailableBalance.js +29 -0
- package/dist/contracts/governance/distributor/getGaugeRewardTokens.js +28 -0
- package/dist/contracts/governance/distributor/getRewardTokenInfo.js +39 -0
- package/dist/contracts/governance/distributor/getRewardTokens.js +27 -0
- package/dist/contracts/governance/distributor/getTransferableBalance.js +30 -0
- package/dist/contracts/governance/distributor/index.js +19 -0
- package/dist/contracts/governance/distributor/isRewardTokenApproved.js +29 -0
- package/dist/contracts/governance/distributor/isTokenApproved.js +29 -0
- package/dist/contracts/governance/gauge/claimReward.js +44 -0
- package/dist/contracts/governance/gauge/claimRewardToken.js +44 -0
- package/dist/contracts/governance/gauge/getAllEarnedRewards.js +51 -0
- package/dist/contracts/governance/gauge/getAllPendingRewards.js +41 -0
- package/dist/contracts/governance/gauge/getBalanceOf.js +43 -0
- package/dist/contracts/governance/gauge/getEarnedReward.js +44 -0
- package/dist/contracts/governance/gauge/getPendingRewards.js +44 -0
- package/dist/contracts/governance/gauge/getPeriodBoundaries.js +45 -0
- package/dist/contracts/governance/gauge/getPeriodDuration.js +42 -0
- package/dist/contracts/governance/gauge/getRawBalanceOf.js +43 -0
- package/dist/contracts/governance/gauge/getRawTotalSupply.js +42 -0
- package/dist/contracts/governance/gauge/getRewardTokens.js +41 -0
- package/dist/contracts/governance/gauge/getTotalSupply.js +42 -0
- package/dist/contracts/governance/gauge/getUserGaugeVoteWeight.js +42 -0
- package/dist/contracts/governance/gauge/getWorkingBalance.js +43 -0
- package/dist/contracts/governance/gauge/index.js +37 -0
- package/dist/contracts/governance/gauge/stake.js +51 -0
- package/dist/contracts/governance/gauge/syncRewardTokens.js +51 -0
- package/dist/contracts/governance/gauge/updateUserRewards.js +50 -0
- package/dist/contracts/governance/gauge/withdraw.js +51 -0
- package/dist/contracts/governance/gaugeController/calculateBoost.js +36 -0
- package/dist/contracts/governance/gaugeController/checkpoint.js +33 -0
- package/dist/contracts/governance/gaugeController/checkpointGauge.js +34 -0
- package/dist/contracts/governance/gaugeController/getActiveGauges.js +36 -0
- package/dist/contracts/governance/gaugeController/getGaugeWeight.js +29 -0
- package/dist/contracts/governance/gaugeController/getTotalWeight.js +28 -0
- package/dist/contracts/governance/gaugeController/getUserGaugeVoteWeight.js +30 -0
- package/dist/contracts/governance/gaugeController/getUserVotePowerRemaining.js +29 -0
- package/dist/contracts/governance/gaugeController/index.js +25 -0
- package/dist/contracts/governance/gaugeController/isGauge.js +28 -0
- package/dist/contracts/governance/gaugeController/isGaugeActive.js +28 -0
- package/dist/contracts/governance/gaugeController/vote.js +34 -0
- package/dist/contracts/governance/proposals/cancel.js +37 -0
- package/dist/contracts/governance/proposals/castVote.js +44 -0
- package/dist/contracts/governance/proposals/execute.js +37 -0
- package/dist/contracts/governance/proposals/getProposal.js +53 -0
- package/dist/contracts/governance/proposals/getProposalCount.js +29 -0
- package/dist/contracts/governance/proposals/getProposalData.js +36 -0
- package/dist/contracts/governance/proposals/getProposalInfo.js +41 -0
- package/dist/contracts/governance/proposals/getProposalThreshold.js +29 -0
- package/dist/contracts/governance/proposals/getQuorum.js +30 -0
- package/dist/contracts/governance/proposals/getQuorumNumerator.js +39 -0
- package/dist/contracts/governance/proposals/getState.js +43 -0
- package/dist/contracts/governance/proposals/getVotes.js +33 -0
- package/dist/contracts/governance/proposals/getVotingDelay.js +29 -0
- package/dist/contracts/governance/proposals/getVotingPeriod.js +29 -0
- package/dist/contracts/governance/proposals/index.js +35 -0
- package/dist/contracts/governance/proposals/propose.js +52 -0
- package/dist/contracts/governance/timelock/getConstants.js +39 -0
- package/dist/contracts/governance/timelock/getMinDelay.js +29 -0
- package/dist/contracts/governance/timelock/getTimestamp.js +31 -0
- package/dist/contracts/governance/timelock/hashOperationBatch.js +35 -0
- package/dist/contracts/governance/timelock/index.js +18 -0
- package/dist/contracts/governance/timelock/isOperationDone.js +29 -0
- package/dist/contracts/governance/timelock/isOperationPending.js +29 -0
- package/dist/contracts/governance/timelock/isOperationReady.js +31 -0
- package/dist/contracts/pmBlender/getReserveBalance.js +21 -0
- package/dist/contracts/pmBlender/getSupportedTokens.js +21 -0
- package/dist/contracts/pmBlender/previewDeposit.js +21 -0
- package/dist/contracts/pmBlender/previewSwap.js +21 -0
- package/dist/contracts/pmBlender/previewWithdraw.js +21 -0
- package/dist/contracts/pmMarket/getMarketConfig.js +31 -0
- package/dist/contracts/pmTreasury/getCollateralRatio.js +26 -0
- package/dist/contracts/pmTreasury/getCurrentNav.js +34 -0
- package/dist/contracts/pmTreasury/getLeverageRatio.js +26 -0
- package/dist/contracts/pmTreasury/getMaxMintablePMUSD.js +32 -0
- package/dist/contracts/pmTreasury/getMaxMintablePMUSDWithoutBaseToken.js +30 -0
- package/dist/contracts/pmTreasury/getMaxMintableXPM.js +32 -0
- package/dist/contracts/pmTreasury/getMaxRedeemablePMUSD.js +32 -0
- package/dist/contracts/pmTreasury/getMaxRedeemableXPM.js +32 -0
- package/dist/contracts/pmTreasury/getTotalBaseToken.js +26 -0
- package/dist/contracts/tokens/RAAC/getBalance.js +19 -0
- package/dist/contracts/{crvUSDToken → tokens/RAAC}/getTotalSupply.js +6 -13
- package/dist/contracts/tokens/crvUSD/getBalance.js +19 -0
- package/dist/contracts/tokens/crvUSD/getTotalSupply.js +24 -0
- package/dist/contracts/{rcrvUSDToken → tokens/pmUSD}/getBalance.js +7 -2
- package/dist/contracts/tokens/pmUSD/getTotalSupply.js +24 -0
- package/dist/contracts/tokens/rcrvUSD/getBalance.js +19 -0
- package/dist/contracts/tokens/rcrvUSD/getTotalSupply.js +23 -0
- package/dist/contracts/tokens/veRAAC/claimReward.js +34 -0
- package/dist/contracts/tokens/veRAAC/distributeRewards.js +36 -0
- package/dist/contracts/tokens/veRAAC/extend.js +35 -0
- package/dist/contracts/tokens/veRAAC/finalizeRagequit.js +34 -0
- package/dist/contracts/tokens/veRAAC/getBalance.js +22 -0
- package/dist/contracts/tokens/veRAAC/getBalanceAt.js +31 -0
- package/dist/contracts/tokens/veRAAC/getBalanceAtTime.js +31 -0
- package/dist/contracts/tokens/veRAAC/getCheckpoint.js +34 -0
- package/dist/contracts/tokens/veRAAC/getClaimable.js +32 -0
- package/dist/contracts/tokens/veRAAC/getClaimed.js +31 -0
- package/dist/contracts/tokens/veRAAC/getEarned.js +32 -0
- package/dist/contracts/tokens/veRAAC/getEffectiveLockEnd.js +30 -0
- package/dist/contracts/tokens/veRAAC/getGlobalLockInfo.js +33 -0
- package/dist/contracts/tokens/veRAAC/getLockedBalance.js +30 -0
- package/dist/contracts/tokens/veRAAC/getLocks.js +38 -0
- package/dist/contracts/tokens/veRAAC/getMaxLockEnd.js +30 -0
- package/dist/contracts/tokens/veRAAC/getMaxUnclaimedDistributions.js +32 -0
- package/dist/contracts/tokens/veRAAC/getMinLockEnd.js +30 -0
- package/dist/contracts/tokens/veRAAC/getRagequitEpochs.js +30 -0
- package/dist/contracts/tokens/veRAAC/getRagequitRequest.js +36 -0
- package/dist/contracts/tokens/veRAAC/getRawBalanceOf.js +30 -0
- package/dist/contracts/tokens/veRAAC/getRawTotalSupply.js +29 -0
- package/dist/contracts/{rcrvUSDToken → tokens/veRAAC}/getTotalSupply.js +4 -3
- package/dist/contracts/tokens/veRAAC/getTotalSupplyAt.js +30 -0
- package/dist/contracts/tokens/veRAAC/getTotalSupplyAtTime.js +30 -0
- package/dist/contracts/tokens/veRAAC/getUserPointHistory.js +38 -0
- package/dist/contracts/tokens/veRAAC/increase.js +35 -0
- package/dist/contracts/tokens/veRAAC/increaseWithApproval.js +37 -0
- package/dist/contracts/tokens/veRAAC/index.js +69 -0
- package/dist/contracts/tokens/veRAAC/lock.js +34 -0
- package/dist/contracts/tokens/veRAAC/lockWithApproval.js +40 -0
- package/dist/contracts/tokens/veRAAC/ragequitAll.js +33 -0
- package/dist/contracts/tokens/veRAAC/ragequitLock.js +34 -0
- package/dist/contracts/tokens/veRAAC/withdraw.js +33 -0
- package/dist/contracts/{crvUSDToken → tokens/xPM}/getBalance.js +5 -3
- package/dist/contracts/tokens/xPM/getTotalSupply.js +24 -0
- package/dist/pools/rwaVault/getRWAVaultInfo.js +5 -1
- package/dist/prices/getPrices.js +12 -0
- package/dist/types/RPCLibrary.d.ts +251 -1
- package/dist/types/configs/chains/index.d.ts +508 -2
- package/dist/types/configs/index.d.ts +254 -1
- package/dist/types/contracts/governance/distributor/deposit.d.ts +14 -0
- package/dist/types/contracts/governance/distributor/getAvailableBalance.d.ts +11 -0
- package/dist/types/contracts/governance/distributor/getGaugeRewardTokens.d.ts +11 -0
- package/dist/types/contracts/governance/distributor/getRewardTokenInfo.d.ts +17 -0
- package/dist/types/contracts/governance/distributor/getRewardTokens.d.ts +10 -0
- package/dist/types/contracts/governance/distributor/getTransferableBalance.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/index.d.ts +8 -0
- package/dist/types/contracts/governance/distributor/isRewardTokenApproved.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/isTokenApproved.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/claimReward.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/claimRewardToken.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/getAllEarnedRewards.d.ts +17 -0
- package/dist/types/contracts/governance/gauge/getAllPendingRewards.d.ts +19 -0
- package/dist/types/contracts/governance/gauge/getBalanceOf.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/getEarnedReward.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/getPendingRewards.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/getPeriodBoundaries.d.ts +15 -0
- package/dist/types/contracts/governance/gauge/getPeriodDuration.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getRawBalanceOf.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/getRawTotalSupply.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getRewardTokens.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getTotalSupply.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getUserGaugeVoteWeight.d.ts +14 -0
- package/dist/types/contracts/governance/gauge/getWorkingBalance.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/index.d.ts +17 -0
- package/dist/types/contracts/governance/gauge/stake.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/syncRewardTokens.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/updateUserRewards.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/withdraw.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/calculateBoost.d.ts +16 -0
- package/dist/types/contracts/governance/gaugeController/checkpoint.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/checkpointGauge.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getActiveGauges.d.ts +15 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeWeight.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/getTotalWeight.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeController/getUserGaugeVoteWeight.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getUserVotePowerRemaining.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/index.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/isGauge.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/isGaugeActive.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/vote.d.ts +12 -0
- package/dist/types/contracts/governance/proposals/cancel.d.ts +15 -0
- package/dist/types/contracts/governance/proposals/castVote.d.ts +19 -0
- package/dist/types/contracts/governance/proposals/execute.d.ts +15 -0
- package/dist/types/contracts/governance/proposals/getProposal.d.ts +34 -0
- package/dist/types/contracts/governance/proposals/getProposalCount.d.ts +10 -0
- package/dist/types/contracts/governance/proposals/getProposalData.d.ts +18 -0
- package/dist/types/contracts/governance/proposals/getProposalInfo.d.ts +24 -0
- package/dist/types/contracts/governance/proposals/getProposalThreshold.d.ts +10 -0
- package/dist/types/contracts/governance/proposals/getQuorum.d.ts +11 -0
- package/dist/types/contracts/governance/proposals/getQuorumNumerator.d.ts +16 -0
- package/dist/types/contracts/governance/proposals/getState.d.ts +23 -0
- package/dist/types/contracts/governance/proposals/getVotes.d.ts +15 -0
- package/dist/types/contracts/governance/proposals/getVotingDelay.d.ts +10 -0
- package/dist/types/contracts/governance/proposals/getVotingPeriod.d.ts +10 -0
- package/dist/types/contracts/governance/proposals/index.d.ts +14 -0
- package/dist/types/contracts/governance/proposals/propose.d.ts +29 -0
- package/dist/types/contracts/governance/timelock/getConstants.d.ts +16 -0
- package/dist/types/contracts/governance/timelock/getMinDelay.d.ts +10 -0
- package/dist/types/contracts/governance/timelock/getTimestamp.d.ts +12 -0
- package/dist/types/contracts/governance/timelock/hashOperationBatch.d.ts +17 -0
- package/dist/types/contracts/governance/timelock/index.d.ts +7 -0
- package/dist/types/contracts/governance/timelock/isOperationDone.d.ts +11 -0
- package/dist/types/contracts/governance/timelock/isOperationPending.d.ts +11 -0
- package/dist/types/contracts/governance/timelock/isOperationReady.d.ts +13 -0
- package/dist/types/contracts/pmBlender/getReserveBalance.d.ts +3 -0
- package/dist/types/contracts/pmBlender/getSupportedTokens.d.ts +3 -0
- package/dist/types/contracts/pmBlender/previewDeposit.d.ts +3 -0
- package/dist/types/contracts/pmBlender/previewSwap.d.ts +3 -0
- package/dist/types/contracts/pmBlender/previewWithdraw.d.ts +3 -0
- package/dist/types/contracts/pmMarket/getMarketConfig.d.ts +13 -0
- package/dist/types/contracts/pmTreasury/getCollateralRatio.d.ts +3 -0
- package/dist/types/contracts/pmTreasury/getCurrentNav.d.ts +11 -0
- package/dist/types/contracts/pmTreasury/getLeverageRatio.d.ts +3 -0
- package/dist/types/contracts/pmTreasury/getMaxMintablePMUSD.d.ts +11 -0
- package/dist/types/contracts/pmTreasury/getMaxMintablePMUSDWithoutBaseToken.d.ts +7 -0
- package/dist/types/contracts/pmTreasury/getMaxMintableXPM.d.ts +9 -0
- package/dist/types/contracts/pmTreasury/getMaxRedeemablePMUSD.d.ts +9 -0
- package/dist/types/contracts/pmTreasury/getMaxRedeemableXPM.d.ts +9 -0
- package/dist/types/contracts/pmTreasury/getTotalBaseToken.d.ts +3 -0
- package/dist/types/contracts/tokens/RAAC/getBalance.d.ts +2 -0
- package/dist/types/contracts/tokens/RAAC/getTotalSupply.d.ts +7 -0
- package/dist/types/contracts/tokens/crvUSD/getBalance.d.ts +2 -0
- package/dist/types/contracts/tokens/crvUSD/getTotalSupply.d.ts +7 -0
- package/dist/types/contracts/tokens/pmUSD/getBalance.d.ts +2 -0
- package/dist/types/contracts/tokens/pmUSD/getTotalSupply.d.ts +7 -0
- package/dist/types/contracts/tokens/rcrvUSD/getBalance.d.ts +2 -0
- package/dist/types/contracts/tokens/rcrvUSD/getTotalSupply.d.ts +6 -0
- package/dist/types/contracts/tokens/veRAAC/claimReward.d.ts +12 -0
- package/dist/types/contracts/tokens/veRAAC/distributeRewards.d.ts +14 -0
- package/dist/types/contracts/tokens/veRAAC/extend.d.ts +13 -0
- package/dist/types/contracts/tokens/veRAAC/finalizeRagequit.d.ts +12 -0
- package/dist/types/contracts/tokens/veRAAC/getBalance.d.ts +3 -0
- package/dist/types/contracts/tokens/veRAAC/getBalanceAt.d.ts +12 -0
- package/dist/types/contracts/tokens/veRAAC/getBalanceAtTime.d.ts +12 -0
- package/dist/types/contracts/tokens/veRAAC/getCheckpoint.d.ts +16 -0
- package/dist/types/contracts/tokens/veRAAC/getClaimable.d.ts +13 -0
- package/dist/types/contracts/tokens/veRAAC/getClaimed.d.ts +12 -0
- package/dist/types/contracts/tokens/veRAAC/getEarned.d.ts +13 -0
- package/dist/types/contracts/tokens/veRAAC/getEffectiveLockEnd.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/getGlobalLockInfo.d.ts +15 -0
- package/dist/types/contracts/tokens/veRAAC/getLockedBalance.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/getLocks.d.ts +14 -0
- package/dist/types/contracts/tokens/veRAAC/getMaxLockEnd.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/getMaxUnclaimedDistributions.d.ts +13 -0
- package/dist/types/contracts/tokens/veRAAC/getMinLockEnd.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/getRagequitEpochs.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/getRagequitRequest.d.ts +18 -0
- package/dist/types/contracts/tokens/veRAAC/getRawBalanceOf.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/getRawTotalSupply.d.ts +10 -0
- package/dist/types/contracts/{rcrvUSDToken → tokens/veRAAC}/getTotalSupply.d.ts +1 -1
- package/dist/types/contracts/tokens/veRAAC/getTotalSupplyAt.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/getTotalSupplyAtTime.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/getUserPointHistory.d.ts +20 -0
- package/dist/types/contracts/tokens/veRAAC/increase.d.ts +13 -0
- package/dist/types/contracts/tokens/veRAAC/increaseWithApproval.d.ts +13 -0
- package/dist/types/contracts/tokens/veRAAC/index.d.ts +33 -0
- package/dist/types/contracts/tokens/veRAAC/lock.d.ts +12 -0
- package/dist/types/contracts/tokens/veRAAC/lockWithApproval.d.ts +14 -0
- package/dist/types/contracts/tokens/veRAAC/ragequitAll.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/ragequitLock.d.ts +12 -0
- package/dist/types/contracts/tokens/veRAAC/withdraw.d.ts +11 -0
- package/dist/types/contracts/tokens/xPM/getBalance.d.ts +2 -0
- package/dist/types/contracts/tokens/xPM/getTotalSupply.d.ts +7 -0
- package/dist/types/prices/getPrices.d.ts +5 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +0 -2
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.d.ts +159 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.d.ts +173 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.d.ts +45 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/introspection/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/{contracts/proxy/transparent/ProxyAdmin.d.ts → contracts-upgradeable-v3/access/OwnableUpgradeable.d.ts} +6 -26
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/index.d.ts +4 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/token/ERC20/IERC20Upgradeable.d.ts +129 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/token/ERC20/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable-v3/token/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/access/Ownable.d.ts +54 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/index.d.ts +4 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/ERC20/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +419 -774
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +398 -578
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +195 -273
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +419 -778
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +420 -779
- package/dist/types/typechain-types/contracts/core/governance/gauges/VeBoost.d.ts +518 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/VeBoostProxy.d.ts +97 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/lockers/RAACBotLocker.d.ts +497 -0
- package/dist/types/typechain-types/contracts/core/lockers/RAACLiquidLocker.d.ts +1383 -0
- package/dist/types/typechain-types/contracts/core/lockers/RAACMaturityVault.d.ts +574 -0
- package/dist/types/typechain-types/contracts/core/lockers/{LLamaTemple.d.ts → RAACNFTLocker.d.ts} +4 -4
- package/dist/types/typechain-types/contracts/core/lockers/index.d.ts +4 -1
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +13 -1
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +49 -12
- package/dist/types/typechain-types/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC.d.ts +284 -0
- package/dist/types/typechain-types/contracts/core/tokens/LeRAAC.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +39 -2
- package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +730 -499
- package/dist/types/typechain-types/contracts/core/tokens/VeRAACTokenStorage.d.ts +905 -0
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +3 -0
- package/dist/types/typechain-types/{@openzeppelin/contracts/proxy/beacon/IBeacon.d.ts → contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/IPriceOracle.d.ts} +14 -10
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/RAACNFTVaultAdapterOracle.d.ts +41 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts +28 -2
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +1 -5
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/IBalancerPool.d.ts +95 -0
- package/dist/types/typechain-types/contracts/interfaces/IBalancerV1Pool.d.ts +214 -0
- package/dist/types/typechain-types/contracts/interfaces/IBalancerVault.d.ts +255 -0
- package/dist/types/typechain-types/contracts/interfaces/IConvexCRVDepositor.d.ts +55 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/ICurveA2Pool.d.ts +236 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/ICurveA3Pool.d.ts +236 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/ICurveA4Pool.d.ts +236 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/ICurveAPool.d.ts +236 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveAPool.sol/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/ICurveBase2Pool.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/ICurveBase3Pool.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/ICurveBase4Pool.d.ts +57 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/ICurveBasePool.d.ts +133 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveBasePool.sol/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveCryptoPool.sol/ICurveCryptoPool.d.ts +236 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveCryptoPool.sol/ICurveTriCryptoPool.d.ts +139 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveCryptoPool.sol/IZapCurveMetaCryptoPool.d.ts +143 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveCryptoPool.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveETHPool.d.ts +121 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap.d.ts +55 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap3Pool.d.ts +95 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap4Pool.d.ts +115 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveFactoryMetaPool.d.ts +151 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryMetaPool.sol/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain2Pool.d.ts +137 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain3Pool.d.ts +137 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain4Pool.d.ts +145 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlainPool.d.ts +109 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveFactoryPlainPool.sol/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveMetaPool.sol/ICurveMetaPoolDeposit.d.ts +107 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveMetaPool.sol/ICurveMetaPoolSwap.d.ts +163 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveMetaPool.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurvePoolRegistry.d.ts +33 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY2PoolDeposit.d.ts +139 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY2PoolSwap.d.ts +167 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY3PoolDeposit.d.ts +139 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY3PoolSwap.d.ts +167 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY4PoolDeposit.d.ts +139 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveY4PoolSwap.d.ts +167 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveYPoolDeposit.d.ts +139 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/ICurveYPoolSwap.d.ts +167 -0
- package/dist/types/typechain-types/contracts/interfaces/ICurveYPool.sol/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/interfaces/ILidoStETH.d.ts +33 -0
- package/dist/types/typechain-types/contracts/interfaces/ILidoWstETH.d.ts +61 -0
- package/dist/types/typechain-types/contracts/interfaces/IUniswapV2Pair.d.ts +95 -0
- package/dist/types/typechain-types/contracts/interfaces/IUniswapV3Pool.d.ts +105 -0
- package/dist/types/typechain-types/contracts/interfaces/IUniswapV3Router.d.ts +64 -0
- package/dist/types/typechain-types/{@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.d.ts → contracts/interfaces/IWETH.d.ts} +15 -6
- package/dist/types/typechain-types/contracts/interfaces/IZap.d.ts +83 -0
- package/dist/types/typechain-types/contracts/interfaces/concentrator/IAladdinCRV.d.ts +355 -0
- package/dist/types/typechain-types/contracts/interfaces/concentrator/IAladdinCompounder.d.ts +244 -0
- package/dist/types/typechain-types/contracts/interfaces/concentrator/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +353 -286
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +111 -323
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +133 -183
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IVeBoost.d.ts +311 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IVeBoostProxy.d.ts +50 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +5 -1
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRAACBotLocker.d.ts +233 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRAACMaturityVault.d.ts +196 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRaacLiquidLocker.d.ts +437 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +16 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/ILiquidEscrowedRAAC.d.ts +161 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +16 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +405 -227
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACTokenV2.sol/IveRAACToken.d.ts +518 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACTokenV2.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/interfaces/index.d.ts +29 -0
- package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +22 -77
- package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +3 -76
- package/dist/types/typechain-types/{@openzeppelin/contracts/proxy/Proxy.d.ts → contracts/libraries/governance/RagequitLib.d.ts} +4 -4
- package/dist/types/typechain-types/{@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.d.ts → contracts/libraries/governance/RewardLib.d.ts} +27 -14
- package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/ERC20BurnableMock.d.ts +173 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/libraries/LockManagerMock.d.ts +295 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/MockLamaLocker.d.ts +51 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +37 -1
- package/dist/types/typechain-types/contracts/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/MockTimeUtils.d.ts +51 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +176 -69
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/RagequitHarness.d.ts +90 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/MockRewardIntegralCalculator.d.ts +188 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +3 -1
- package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/zap/AladdinCRVZap.d.ts +83 -0
- package/dist/types/typechain-types/contracts/zap/AladdinConvexVaultZap.d.ts +172 -0
- package/dist/types/typechain-types/contracts/zap/AladdinZap.d.ts +240 -0
- package/dist/types/typechain-types/contracts/zap/TokenZapLogic.d.ts +53 -0
- package/dist/types/typechain-types/contracts/zap/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +0 -1
- 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/ERC20Burnable__factory.d.ts +265 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable__factory.d.ts +199 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable__factory.d.ts +39 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/introspection/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/access/OwnableUpgradeable__factory.d.ts +48 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/token/ERC20/IERC20Upgradeable__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/token/ERC20/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable-v3/token/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/access/Ownable__factory.d.ts +48 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/ERC20/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +361 -903
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +397 -559
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +146 -260
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +359 -907
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +359 -907
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoostProxy__factory.d.ts +152 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoost__factory.d.ts +716 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACBotLocker__factory.d.ts +726 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACLiquidLocker__factory.d.ts +1762 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACMaturityVault__factory.d.ts +743 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/{LLamaTemple__factory.d.ts → RAACNFTLocker__factory.d.ts} +9 -9
- package/dist/types/typechain-types/factories/contracts/core/lockers/index.d.ts +4 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +17 -3
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +21 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +49 -6
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC__factory.d.ts +485 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/LeRAAC.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +1 -1
- 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 +44 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACTokenStorage__factory.d.ts +1130 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +759 -490
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/IPriceOracle__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/RAACNFTVaultAdapterOracle__factory.d.ts +78 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +38 -4
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +3 -17
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IBalancerPool__factory.d.ts +91 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IBalancerV1Pool__factory.d.ts +273 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IBalancerVault__factory.d.ts +261 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IConvexCRVDepositor__factory.d.ts +49 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/ICurveA2Pool__factory.d.ts +305 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/ICurveA3Pool__factory.d.ts +305 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/ICurveA4Pool__factory.d.ts +305 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/ICurveAPool__factory.d.ts +305 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveAPool.sol/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/ICurveBase2Pool__factory.d.ts +39 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/ICurveBase3Pool__factory.d.ts +39 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/ICurveBase4Pool__factory.d.ts +39 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/ICurveBasePool__factory.d.ts +175 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveBasePool.sol/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveCryptoPool.sol/ICurveCryptoPool__factory.d.ts +301 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveCryptoPool.sol/ICurveTriCryptoPool__factory.d.ts +165 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveCryptoPool.sol/IZapCurveMetaCryptoPool__factory.d.ts +181 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveCryptoPool.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveETHPool__factory.d.ts +155 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap3Pool__factory.d.ts +99 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap4Pool__factory.d.ts +99 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveDepositZap__factory.d.ts +55 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/ICurveFactoryMetaPool__factory.d.ts +193 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryMetaPool.sol/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain2Pool__factory.d.ts +183 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain3Pool__factory.d.ts +183 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlain4Pool__factory.d.ts +183 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/ICurveFactoryPlainPool__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveFactoryPlainPool.sol/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveMetaPool.sol/ICurveMetaPoolDeposit__factory.d.ts +141 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveMetaPool.sol/ICurveMetaPoolSwap__factory.d.ts +227 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveMetaPool.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurvePoolRegistry__factory.d.ts +35 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY2PoolDeposit__factory.d.ts +165 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY2PoolSwap__factory.d.ts +193 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY3PoolDeposit__factory.d.ts +165 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY3PoolSwap__factory.d.ts +193 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY4PoolDeposit__factory.d.ts +165 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveY4PoolSwap__factory.d.ts +193 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveYPoolDeposit__factory.d.ts +165 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/ICurveYPoolSwap__factory.d.ts +193 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ICurveYPool.sol/index.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ILidoStETH__factory.d.ts +35 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/ILidoWstETH__factory.d.ts +83 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IUniswapV2Pair__factory.d.ts +95 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IUniswapV3Pool__factory.d.ts +115 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IUniswapV3Router__factory.d.ts +54 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IWETH__factory.d.ts +23 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IZap__factory.d.ts +89 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/concentrator/IAladdinCRV__factory.d.ts +401 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/concentrator/IAladdinCompounder__factory.d.ts +350 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/concentrator/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +347 -291
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +93 -319
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +96 -152
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IVeBoostProxy__factory.d.ts +46 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IVeBoost__factory.d.ts +449 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRAACBotLocker__factory.d.ts +319 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRAACMaturityVault__factory.d.ts +192 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRaacLiquidLocker__factory.d.ts +457 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +15 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/ILiquidEscrowedRAAC__factory.d.ts +185 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +15 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACTokenV2.sol/IveRAACToken__factory.d.ts +628 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACTokenV2.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +352 -175
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +21 -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 +38 -68
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +6 -79
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RagequitLib__factory.d.ts +58 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RewardLib__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/LendingPoolFeeLibrary__factory.d.ts +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/ERC20BurnableMock__factory.d.ts +310 -0
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +1 -1
- 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/governance/gauges/MockGaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/libraries/LockManagerMock__factory.d.ts +354 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -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/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/MockLamaLocker__factory.d.ts +104 -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/MockChainlinkAggregator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
- 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 +1 -1
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +49 -1
- 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 -1
- 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/MockChainAnalysis.sol/MockChainAnalysis__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 -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/tokens/CrvUSDTokenLimited__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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockTimeUtils__factory.d.ts +68 -0
- 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/PowerCheckpointMock__factory.d.ts +146 -53
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RagequitHarness__factory.d.ts +100 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/MockRewardIntegralCalculator__factory.d.ts +230 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +2 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +1 -0
- 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 +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 +2 -2
- package/dist/types/typechain-types/factories/contracts/zap/AladdinCRVZap__factory.d.ts +107 -0
- package/dist/types/typechain-types/factories/contracts/zap/AladdinConvexVaultZap__factory.d.ts +208 -0
- package/dist/types/typechain-types/factories/contracts/zap/AladdinZap__factory.d.ts +302 -0
- package/dist/types/typechain-types/factories/contracts/zap/TokenZapLogic__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/contracts/zap/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
- package/dist/types/typechain-types/index.d.ts +156 -26
- package/dist/types/utils/artifacts.d.ts +985 -149
- package/dist/types/utils/contracts.d.ts +508 -2
- package/dist/utils/artifacts.js +37 -0
- package/package.json +5 -4
- package/dist/types/contracts/crvUSDToken/getBalance.d.ts +0 -2
- package/dist/types/contracts/crvUSDToken/getTotalSupply.d.ts +0 -10
- package/dist/types/contracts/rcrvUSDToken/getBalance.d.ts +0 -2
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.d.ts +0 -65
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +0 -2
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/index.d.ts +0 -7
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts +0 -80
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts +0 -51
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/index.d.ts +0 -3
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +0 -173
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.d.ts +0 -42
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +0 -71
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.d.ts +0 -50
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.d.ts +0 -10
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/index.d.ts +0 -4
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +0 -115
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts +0 -56
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +0 -102
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +0 -206
|
@@ -49,6 +49,8 @@ declare const ABIS: {
|
|
|
49
49
|
type: string;
|
|
50
50
|
anonymous?: undefined;
|
|
51
51
|
})[];
|
|
52
|
+
pmusd: any[];
|
|
53
|
+
xpm: any[];
|
|
52
54
|
raacnft: ({
|
|
53
55
|
inputs: {
|
|
54
56
|
internalType: string;
|
|
@@ -1832,10 +1834,668 @@ declare const ABIS: {
|
|
|
1832
1834
|
anonymous?: undefined;
|
|
1833
1835
|
outputs?: undefined;
|
|
1834
1836
|
})[];
|
|
1837
|
+
gaugecontroller: ({
|
|
1838
|
+
inputs: {
|
|
1839
|
+
internalType: string;
|
|
1840
|
+
name: string;
|
|
1841
|
+
type: string;
|
|
1842
|
+
}[];
|
|
1843
|
+
stateMutability: string;
|
|
1844
|
+
type: string;
|
|
1845
|
+
name?: undefined;
|
|
1846
|
+
anonymous?: undefined;
|
|
1847
|
+
outputs?: undefined;
|
|
1848
|
+
} | {
|
|
1849
|
+
inputs: {
|
|
1850
|
+
internalType: string;
|
|
1851
|
+
name: string;
|
|
1852
|
+
type: string;
|
|
1853
|
+
}[];
|
|
1854
|
+
name: string;
|
|
1855
|
+
type: string;
|
|
1856
|
+
stateMutability?: undefined;
|
|
1857
|
+
anonymous?: undefined;
|
|
1858
|
+
outputs?: undefined;
|
|
1859
|
+
} | {
|
|
1860
|
+
anonymous: boolean;
|
|
1861
|
+
inputs: {
|
|
1862
|
+
indexed: boolean;
|
|
1863
|
+
internalType: string;
|
|
1864
|
+
name: string;
|
|
1865
|
+
type: string;
|
|
1866
|
+
}[];
|
|
1867
|
+
name: string;
|
|
1868
|
+
type: string;
|
|
1869
|
+
stateMutability?: undefined;
|
|
1870
|
+
outputs?: undefined;
|
|
1871
|
+
} | {
|
|
1872
|
+
inputs: {
|
|
1873
|
+
internalType: string;
|
|
1874
|
+
name: string;
|
|
1875
|
+
type: string;
|
|
1876
|
+
}[];
|
|
1877
|
+
name: string;
|
|
1878
|
+
outputs: {
|
|
1879
|
+
internalType: string;
|
|
1880
|
+
name: string;
|
|
1881
|
+
type: string;
|
|
1882
|
+
}[];
|
|
1883
|
+
stateMutability: string;
|
|
1884
|
+
type: string;
|
|
1885
|
+
anonymous?: undefined;
|
|
1886
|
+
})[];
|
|
1887
|
+
basegauge: ({
|
|
1888
|
+
inputs: {
|
|
1889
|
+
internalType: string;
|
|
1890
|
+
name: string;
|
|
1891
|
+
type: string;
|
|
1892
|
+
}[];
|
|
1893
|
+
name: string;
|
|
1894
|
+
type: string;
|
|
1895
|
+
anonymous?: undefined;
|
|
1896
|
+
outputs?: undefined;
|
|
1897
|
+
stateMutability?: undefined;
|
|
1898
|
+
} | {
|
|
1899
|
+
anonymous: boolean;
|
|
1900
|
+
inputs: {
|
|
1901
|
+
indexed: boolean;
|
|
1902
|
+
internalType: string;
|
|
1903
|
+
name: string;
|
|
1904
|
+
type: string;
|
|
1905
|
+
}[];
|
|
1906
|
+
name: string;
|
|
1907
|
+
type: string;
|
|
1908
|
+
outputs?: undefined;
|
|
1909
|
+
stateMutability?: undefined;
|
|
1910
|
+
} | {
|
|
1911
|
+
inputs: {
|
|
1912
|
+
internalType: string;
|
|
1913
|
+
name: string;
|
|
1914
|
+
type: string;
|
|
1915
|
+
}[];
|
|
1916
|
+
name: string;
|
|
1917
|
+
outputs: {
|
|
1918
|
+
internalType: string;
|
|
1919
|
+
name: string;
|
|
1920
|
+
type: string;
|
|
1921
|
+
}[];
|
|
1922
|
+
stateMutability: string;
|
|
1923
|
+
type: string;
|
|
1924
|
+
anonymous?: undefined;
|
|
1925
|
+
} | {
|
|
1926
|
+
inputs: {
|
|
1927
|
+
internalType: string;
|
|
1928
|
+
name: string;
|
|
1929
|
+
type: string;
|
|
1930
|
+
}[];
|
|
1931
|
+
name: string;
|
|
1932
|
+
outputs: {
|
|
1933
|
+
components: {
|
|
1934
|
+
internalType: string;
|
|
1935
|
+
name: string;
|
|
1936
|
+
type: string;
|
|
1937
|
+
}[];
|
|
1938
|
+
internalType: string;
|
|
1939
|
+
name: string;
|
|
1940
|
+
type: string;
|
|
1941
|
+
}[];
|
|
1942
|
+
stateMutability: string;
|
|
1943
|
+
type: string;
|
|
1944
|
+
anonymous?: undefined;
|
|
1945
|
+
})[];
|
|
1946
|
+
raacgauge: ({
|
|
1947
|
+
inputs: {
|
|
1948
|
+
internalType: string;
|
|
1949
|
+
name: string;
|
|
1950
|
+
type: string;
|
|
1951
|
+
}[];
|
|
1952
|
+
stateMutability: string;
|
|
1953
|
+
type: string;
|
|
1954
|
+
name?: undefined;
|
|
1955
|
+
anonymous?: undefined;
|
|
1956
|
+
outputs?: undefined;
|
|
1957
|
+
} | {
|
|
1958
|
+
inputs: {
|
|
1959
|
+
internalType: string;
|
|
1960
|
+
name: string;
|
|
1961
|
+
type: string;
|
|
1962
|
+
}[];
|
|
1963
|
+
name: string;
|
|
1964
|
+
type: string;
|
|
1965
|
+
stateMutability?: undefined;
|
|
1966
|
+
anonymous?: undefined;
|
|
1967
|
+
outputs?: undefined;
|
|
1968
|
+
} | {
|
|
1969
|
+
anonymous: boolean;
|
|
1970
|
+
inputs: {
|
|
1971
|
+
indexed: boolean;
|
|
1972
|
+
internalType: string;
|
|
1973
|
+
name: string;
|
|
1974
|
+
type: string;
|
|
1975
|
+
}[];
|
|
1976
|
+
name: string;
|
|
1977
|
+
type: string;
|
|
1978
|
+
stateMutability?: undefined;
|
|
1979
|
+
outputs?: undefined;
|
|
1980
|
+
} | {
|
|
1981
|
+
inputs: {
|
|
1982
|
+
internalType: string;
|
|
1983
|
+
name: string;
|
|
1984
|
+
type: string;
|
|
1985
|
+
}[];
|
|
1986
|
+
name: string;
|
|
1987
|
+
outputs: {
|
|
1988
|
+
internalType: string;
|
|
1989
|
+
name: string;
|
|
1990
|
+
type: string;
|
|
1991
|
+
}[];
|
|
1992
|
+
stateMutability: string;
|
|
1993
|
+
type: string;
|
|
1994
|
+
anonymous?: undefined;
|
|
1995
|
+
} | {
|
|
1996
|
+
inputs: {
|
|
1997
|
+
internalType: string;
|
|
1998
|
+
name: string;
|
|
1999
|
+
type: string;
|
|
2000
|
+
}[];
|
|
2001
|
+
name: string;
|
|
2002
|
+
outputs: {
|
|
2003
|
+
components: {
|
|
2004
|
+
internalType: string;
|
|
2005
|
+
name: string;
|
|
2006
|
+
type: string;
|
|
2007
|
+
}[];
|
|
2008
|
+
internalType: string;
|
|
2009
|
+
name: string;
|
|
2010
|
+
type: string;
|
|
2011
|
+
}[];
|
|
2012
|
+
stateMutability: string;
|
|
2013
|
+
type: string;
|
|
2014
|
+
anonymous?: undefined;
|
|
2015
|
+
})[];
|
|
2016
|
+
rwagauge: ({
|
|
2017
|
+
inputs: {
|
|
2018
|
+
internalType: string;
|
|
2019
|
+
name: string;
|
|
2020
|
+
type: string;
|
|
2021
|
+
}[];
|
|
2022
|
+
stateMutability: string;
|
|
2023
|
+
type: string;
|
|
2024
|
+
name?: undefined;
|
|
2025
|
+
anonymous?: undefined;
|
|
2026
|
+
outputs?: undefined;
|
|
2027
|
+
} | {
|
|
2028
|
+
inputs: {
|
|
2029
|
+
internalType: string;
|
|
2030
|
+
name: string;
|
|
2031
|
+
type: string;
|
|
2032
|
+
}[];
|
|
2033
|
+
name: string;
|
|
2034
|
+
type: string;
|
|
2035
|
+
stateMutability?: undefined;
|
|
2036
|
+
anonymous?: undefined;
|
|
2037
|
+
outputs?: undefined;
|
|
2038
|
+
} | {
|
|
2039
|
+
anonymous: boolean;
|
|
2040
|
+
inputs: {
|
|
2041
|
+
indexed: boolean;
|
|
2042
|
+
internalType: string;
|
|
2043
|
+
name: string;
|
|
2044
|
+
type: string;
|
|
2045
|
+
}[];
|
|
2046
|
+
name: string;
|
|
2047
|
+
type: string;
|
|
2048
|
+
stateMutability?: undefined;
|
|
2049
|
+
outputs?: undefined;
|
|
2050
|
+
} | {
|
|
2051
|
+
inputs: {
|
|
2052
|
+
internalType: string;
|
|
2053
|
+
name: string;
|
|
2054
|
+
type: string;
|
|
2055
|
+
}[];
|
|
2056
|
+
name: string;
|
|
2057
|
+
outputs: {
|
|
2058
|
+
internalType: string;
|
|
2059
|
+
name: string;
|
|
2060
|
+
type: string;
|
|
2061
|
+
}[];
|
|
2062
|
+
stateMutability: string;
|
|
2063
|
+
type: string;
|
|
2064
|
+
anonymous?: undefined;
|
|
2065
|
+
} | {
|
|
2066
|
+
inputs: {
|
|
2067
|
+
internalType: string;
|
|
2068
|
+
name: string;
|
|
2069
|
+
type: string;
|
|
2070
|
+
}[];
|
|
2071
|
+
name: string;
|
|
2072
|
+
outputs: {
|
|
2073
|
+
components: {
|
|
2074
|
+
internalType: string;
|
|
2075
|
+
name: string;
|
|
2076
|
+
type: string;
|
|
2077
|
+
}[];
|
|
2078
|
+
internalType: string;
|
|
2079
|
+
name: string;
|
|
2080
|
+
type: string;
|
|
2081
|
+
}[];
|
|
2082
|
+
stateMutability: string;
|
|
2083
|
+
type: string;
|
|
2084
|
+
anonymous?: undefined;
|
|
2085
|
+
})[];
|
|
2086
|
+
gaugerewardsdistributor: ({
|
|
2087
|
+
inputs: {
|
|
2088
|
+
internalType: string;
|
|
2089
|
+
name: string;
|
|
2090
|
+
type: string;
|
|
2091
|
+
}[];
|
|
2092
|
+
stateMutability: string;
|
|
2093
|
+
type: string;
|
|
2094
|
+
name?: undefined;
|
|
2095
|
+
anonymous?: undefined;
|
|
2096
|
+
outputs?: undefined;
|
|
2097
|
+
} | {
|
|
2098
|
+
inputs: {
|
|
2099
|
+
internalType: string;
|
|
2100
|
+
name: string;
|
|
2101
|
+
type: string;
|
|
2102
|
+
}[];
|
|
2103
|
+
name: string;
|
|
2104
|
+
type: string;
|
|
2105
|
+
stateMutability?: undefined;
|
|
2106
|
+
anonymous?: undefined;
|
|
2107
|
+
outputs?: undefined;
|
|
2108
|
+
} | {
|
|
2109
|
+
anonymous: boolean;
|
|
2110
|
+
inputs: {
|
|
2111
|
+
indexed: boolean;
|
|
2112
|
+
internalType: string;
|
|
2113
|
+
name: string;
|
|
2114
|
+
type: string;
|
|
2115
|
+
}[];
|
|
2116
|
+
name: string;
|
|
2117
|
+
type: string;
|
|
2118
|
+
stateMutability?: undefined;
|
|
2119
|
+
outputs?: undefined;
|
|
2120
|
+
} | {
|
|
2121
|
+
inputs: {
|
|
2122
|
+
internalType: string;
|
|
2123
|
+
name: string;
|
|
2124
|
+
type: string;
|
|
2125
|
+
}[];
|
|
2126
|
+
name: string;
|
|
2127
|
+
outputs: {
|
|
2128
|
+
internalType: string;
|
|
2129
|
+
name: string;
|
|
2130
|
+
type: string;
|
|
2131
|
+
}[];
|
|
2132
|
+
stateMutability: string;
|
|
2133
|
+
type: string;
|
|
2134
|
+
anonymous?: undefined;
|
|
2135
|
+
})[];
|
|
2136
|
+
governance: ({
|
|
2137
|
+
inputs: {
|
|
2138
|
+
internalType: string;
|
|
2139
|
+
name: string;
|
|
2140
|
+
type: string;
|
|
2141
|
+
}[];
|
|
2142
|
+
stateMutability: string;
|
|
2143
|
+
type: string;
|
|
2144
|
+
name?: undefined;
|
|
2145
|
+
anonymous?: undefined;
|
|
2146
|
+
outputs?: undefined;
|
|
2147
|
+
} | {
|
|
2148
|
+
inputs: {
|
|
2149
|
+
internalType: string;
|
|
2150
|
+
name: string;
|
|
2151
|
+
type: string;
|
|
2152
|
+
}[];
|
|
2153
|
+
name: string;
|
|
2154
|
+
type: string;
|
|
2155
|
+
stateMutability?: undefined;
|
|
2156
|
+
anonymous?: undefined;
|
|
2157
|
+
outputs?: undefined;
|
|
2158
|
+
} | {
|
|
2159
|
+
anonymous: boolean;
|
|
2160
|
+
inputs: {
|
|
2161
|
+
indexed: boolean;
|
|
2162
|
+
internalType: string;
|
|
2163
|
+
name: string;
|
|
2164
|
+
type: string;
|
|
2165
|
+
}[];
|
|
2166
|
+
name: string;
|
|
2167
|
+
type: string;
|
|
2168
|
+
stateMutability?: undefined;
|
|
2169
|
+
outputs?: undefined;
|
|
2170
|
+
} | {
|
|
2171
|
+
inputs: {
|
|
2172
|
+
internalType: string;
|
|
2173
|
+
name: string;
|
|
2174
|
+
type: string;
|
|
2175
|
+
}[];
|
|
2176
|
+
name: string;
|
|
2177
|
+
outputs: {
|
|
2178
|
+
internalType: string;
|
|
2179
|
+
name: string;
|
|
2180
|
+
type: string;
|
|
2181
|
+
}[];
|
|
2182
|
+
stateMutability: string;
|
|
2183
|
+
type: string;
|
|
2184
|
+
anonymous?: undefined;
|
|
2185
|
+
} | {
|
|
2186
|
+
inputs: {
|
|
2187
|
+
internalType: string;
|
|
2188
|
+
name: string;
|
|
2189
|
+
type: string;
|
|
2190
|
+
}[];
|
|
2191
|
+
name: string;
|
|
2192
|
+
outputs: {
|
|
2193
|
+
components: {
|
|
2194
|
+
internalType: string;
|
|
2195
|
+
name: string;
|
|
2196
|
+
type: string;
|
|
2197
|
+
}[];
|
|
2198
|
+
internalType: string;
|
|
2199
|
+
name: string;
|
|
2200
|
+
type: string;
|
|
2201
|
+
}[];
|
|
2202
|
+
stateMutability: string;
|
|
2203
|
+
type: string;
|
|
2204
|
+
anonymous?: undefined;
|
|
2205
|
+
})[];
|
|
2206
|
+
timelockcontroller: ({
|
|
2207
|
+
inputs: {
|
|
2208
|
+
internalType: string;
|
|
2209
|
+
name: string;
|
|
2210
|
+
type: string;
|
|
2211
|
+
}[];
|
|
2212
|
+
stateMutability: string;
|
|
2213
|
+
type: string;
|
|
2214
|
+
name?: undefined;
|
|
2215
|
+
anonymous?: undefined;
|
|
2216
|
+
outputs?: undefined;
|
|
2217
|
+
} | {
|
|
2218
|
+
inputs: {
|
|
2219
|
+
internalType: string;
|
|
2220
|
+
name: string;
|
|
2221
|
+
type: string;
|
|
2222
|
+
}[];
|
|
2223
|
+
name: string;
|
|
2224
|
+
type: string;
|
|
2225
|
+
stateMutability?: undefined;
|
|
2226
|
+
anonymous?: undefined;
|
|
2227
|
+
outputs?: undefined;
|
|
2228
|
+
} | {
|
|
2229
|
+
anonymous: boolean;
|
|
2230
|
+
inputs: {
|
|
2231
|
+
indexed: boolean;
|
|
2232
|
+
internalType: string;
|
|
2233
|
+
name: string;
|
|
2234
|
+
type: string;
|
|
2235
|
+
}[];
|
|
2236
|
+
name: string;
|
|
2237
|
+
type: string;
|
|
2238
|
+
stateMutability?: undefined;
|
|
2239
|
+
outputs?: undefined;
|
|
2240
|
+
} | {
|
|
2241
|
+
inputs: {
|
|
2242
|
+
internalType: string;
|
|
2243
|
+
name: string;
|
|
2244
|
+
type: string;
|
|
2245
|
+
}[];
|
|
2246
|
+
name: string;
|
|
2247
|
+
outputs: {
|
|
2248
|
+
internalType: string;
|
|
2249
|
+
name: string;
|
|
2250
|
+
type: string;
|
|
2251
|
+
}[];
|
|
2252
|
+
stateMutability: string;
|
|
2253
|
+
type: string;
|
|
2254
|
+
anonymous?: undefined;
|
|
2255
|
+
})[];
|
|
2256
|
+
pmmarket: any[];
|
|
2257
|
+
pmtreasury: any[];
|
|
2258
|
+
pmblender: any[];
|
|
1835
2259
|
};
|
|
1836
2260
|
export type AssetType = keyof typeof ABIS | string;
|
|
1837
2261
|
export type ContractType = keyof typeof ABIS;
|
|
1838
|
-
declare const getABI: (name: keyof typeof ABIS) => ({
|
|
2262
|
+
declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
2263
|
+
inputs: {
|
|
2264
|
+
internalType: string;
|
|
2265
|
+
name: string;
|
|
2266
|
+
type: string;
|
|
2267
|
+
}[];
|
|
2268
|
+
stateMutability: string;
|
|
2269
|
+
type: string;
|
|
2270
|
+
name?: undefined;
|
|
2271
|
+
anonymous?: undefined;
|
|
2272
|
+
outputs?: undefined;
|
|
2273
|
+
} | {
|
|
2274
|
+
inputs: {
|
|
2275
|
+
internalType: string;
|
|
2276
|
+
name: string;
|
|
2277
|
+
type: string;
|
|
2278
|
+
}[];
|
|
2279
|
+
name: string;
|
|
2280
|
+
type: string;
|
|
2281
|
+
stateMutability?: undefined;
|
|
2282
|
+
anonymous?: undefined;
|
|
2283
|
+
outputs?: undefined;
|
|
2284
|
+
} | {
|
|
2285
|
+
anonymous: boolean;
|
|
2286
|
+
inputs: {
|
|
2287
|
+
indexed: boolean;
|
|
2288
|
+
internalType: string;
|
|
2289
|
+
name: string;
|
|
2290
|
+
type: string;
|
|
2291
|
+
}[];
|
|
2292
|
+
name: string;
|
|
2293
|
+
type: string;
|
|
2294
|
+
stateMutability?: undefined;
|
|
2295
|
+
outputs?: undefined;
|
|
2296
|
+
} | {
|
|
2297
|
+
inputs: {
|
|
2298
|
+
internalType: string;
|
|
2299
|
+
name: string;
|
|
2300
|
+
type: string;
|
|
2301
|
+
}[];
|
|
2302
|
+
name: string;
|
|
2303
|
+
outputs: {
|
|
2304
|
+
internalType: string;
|
|
2305
|
+
name: string;
|
|
2306
|
+
type: string;
|
|
2307
|
+
}[];
|
|
2308
|
+
stateMutability: string;
|
|
2309
|
+
type: string;
|
|
2310
|
+
anonymous?: undefined;
|
|
2311
|
+
})[] | ({
|
|
2312
|
+
inputs: {
|
|
2313
|
+
internalType: string;
|
|
2314
|
+
name: string;
|
|
2315
|
+
type: string;
|
|
2316
|
+
}[];
|
|
2317
|
+
stateMutability: string;
|
|
2318
|
+
type: string;
|
|
2319
|
+
name?: undefined;
|
|
2320
|
+
anonymous?: undefined;
|
|
2321
|
+
outputs?: undefined;
|
|
2322
|
+
} | {
|
|
2323
|
+
inputs: {
|
|
2324
|
+
internalType: string;
|
|
2325
|
+
name: string;
|
|
2326
|
+
type: string;
|
|
2327
|
+
}[];
|
|
2328
|
+
name: string;
|
|
2329
|
+
type: string;
|
|
2330
|
+
stateMutability?: undefined;
|
|
2331
|
+
anonymous?: undefined;
|
|
2332
|
+
outputs?: undefined;
|
|
2333
|
+
} | {
|
|
2334
|
+
anonymous: boolean;
|
|
2335
|
+
inputs: {
|
|
2336
|
+
indexed: boolean;
|
|
2337
|
+
internalType: string;
|
|
2338
|
+
name: string;
|
|
2339
|
+
type: string;
|
|
2340
|
+
}[];
|
|
2341
|
+
name: string;
|
|
2342
|
+
type: string;
|
|
2343
|
+
stateMutability?: undefined;
|
|
2344
|
+
outputs?: undefined;
|
|
2345
|
+
} | {
|
|
2346
|
+
inputs: {
|
|
2347
|
+
internalType: string;
|
|
2348
|
+
name: string;
|
|
2349
|
+
type: string;
|
|
2350
|
+
}[];
|
|
2351
|
+
name: string;
|
|
2352
|
+
outputs: {
|
|
2353
|
+
internalType: string;
|
|
2354
|
+
name: string;
|
|
2355
|
+
type: string;
|
|
2356
|
+
}[];
|
|
2357
|
+
stateMutability: string;
|
|
2358
|
+
type: string;
|
|
2359
|
+
anonymous?: undefined;
|
|
2360
|
+
} | {
|
|
2361
|
+
inputs: {
|
|
2362
|
+
internalType: string;
|
|
2363
|
+
name: string;
|
|
2364
|
+
type: string;
|
|
2365
|
+
}[];
|
|
2366
|
+
name: string;
|
|
2367
|
+
outputs: {
|
|
2368
|
+
components: {
|
|
2369
|
+
internalType: string;
|
|
2370
|
+
name: string;
|
|
2371
|
+
type: string;
|
|
2372
|
+
}[];
|
|
2373
|
+
internalType: string;
|
|
2374
|
+
name: string;
|
|
2375
|
+
type: string;
|
|
2376
|
+
}[];
|
|
2377
|
+
stateMutability: string;
|
|
2378
|
+
type: string;
|
|
2379
|
+
anonymous?: undefined;
|
|
2380
|
+
})[] | ({
|
|
2381
|
+
inputs: {
|
|
2382
|
+
internalType: string;
|
|
2383
|
+
name: string;
|
|
2384
|
+
type: string;
|
|
2385
|
+
}[];
|
|
2386
|
+
stateMutability: string;
|
|
2387
|
+
type: string;
|
|
2388
|
+
name?: undefined;
|
|
2389
|
+
anonymous?: undefined;
|
|
2390
|
+
outputs?: undefined;
|
|
2391
|
+
} | {
|
|
2392
|
+
inputs: {
|
|
2393
|
+
internalType: string;
|
|
2394
|
+
name: string;
|
|
2395
|
+
type: string;
|
|
2396
|
+
}[];
|
|
2397
|
+
name: string;
|
|
2398
|
+
type: string;
|
|
2399
|
+
stateMutability?: undefined;
|
|
2400
|
+
anonymous?: undefined;
|
|
2401
|
+
outputs?: undefined;
|
|
2402
|
+
} | {
|
|
2403
|
+
anonymous: boolean;
|
|
2404
|
+
inputs: {
|
|
2405
|
+
indexed: boolean;
|
|
2406
|
+
internalType: string;
|
|
2407
|
+
name: string;
|
|
2408
|
+
type: string;
|
|
2409
|
+
}[];
|
|
2410
|
+
name: string;
|
|
2411
|
+
type: string;
|
|
2412
|
+
stateMutability?: undefined;
|
|
2413
|
+
outputs?: undefined;
|
|
2414
|
+
} | {
|
|
2415
|
+
inputs: {
|
|
2416
|
+
internalType: string;
|
|
2417
|
+
name: string;
|
|
2418
|
+
type: string;
|
|
2419
|
+
}[];
|
|
2420
|
+
name: string;
|
|
2421
|
+
outputs: {
|
|
2422
|
+
internalType: string;
|
|
2423
|
+
name: string;
|
|
2424
|
+
type: string;
|
|
2425
|
+
}[];
|
|
2426
|
+
stateMutability: string;
|
|
2427
|
+
type: string;
|
|
2428
|
+
anonymous?: undefined;
|
|
2429
|
+
})[] | ({
|
|
2430
|
+
inputs: {
|
|
2431
|
+
internalType: string;
|
|
2432
|
+
name: string;
|
|
2433
|
+
type: string;
|
|
2434
|
+
}[];
|
|
2435
|
+
stateMutability: string;
|
|
2436
|
+
type: string;
|
|
2437
|
+
name?: undefined;
|
|
2438
|
+
anonymous?: undefined;
|
|
2439
|
+
outputs?: undefined;
|
|
2440
|
+
} | {
|
|
2441
|
+
inputs: {
|
|
2442
|
+
internalType: string;
|
|
2443
|
+
name: string;
|
|
2444
|
+
type: string;
|
|
2445
|
+
}[];
|
|
2446
|
+
name: string;
|
|
2447
|
+
type: string;
|
|
2448
|
+
stateMutability?: undefined;
|
|
2449
|
+
anonymous?: undefined;
|
|
2450
|
+
outputs?: undefined;
|
|
2451
|
+
} | {
|
|
2452
|
+
anonymous: boolean;
|
|
2453
|
+
inputs: {
|
|
2454
|
+
indexed: boolean;
|
|
2455
|
+
internalType: string;
|
|
2456
|
+
name: string;
|
|
2457
|
+
type: string;
|
|
2458
|
+
}[];
|
|
2459
|
+
name: string;
|
|
2460
|
+
type: string;
|
|
2461
|
+
stateMutability?: undefined;
|
|
2462
|
+
outputs?: undefined;
|
|
2463
|
+
} | {
|
|
2464
|
+
inputs: {
|
|
2465
|
+
internalType: string;
|
|
2466
|
+
name: string;
|
|
2467
|
+
type: string;
|
|
2468
|
+
}[];
|
|
2469
|
+
name: string;
|
|
2470
|
+
outputs: {
|
|
2471
|
+
internalType: string;
|
|
2472
|
+
name: string;
|
|
2473
|
+
type: string;
|
|
2474
|
+
}[];
|
|
2475
|
+
stateMutability: string;
|
|
2476
|
+
type: string;
|
|
2477
|
+
anonymous?: undefined;
|
|
2478
|
+
} | {
|
|
2479
|
+
inputs: {
|
|
2480
|
+
internalType: string;
|
|
2481
|
+
name: string;
|
|
2482
|
+
type: string;
|
|
2483
|
+
}[];
|
|
2484
|
+
name: string;
|
|
2485
|
+
outputs: {
|
|
2486
|
+
components: {
|
|
2487
|
+
internalType: string;
|
|
2488
|
+
name: string;
|
|
2489
|
+
type: string;
|
|
2490
|
+
}[];
|
|
2491
|
+
internalType: string;
|
|
2492
|
+
name: string;
|
|
2493
|
+
type: string;
|
|
2494
|
+
}[];
|
|
2495
|
+
stateMutability: string;
|
|
2496
|
+
type: string;
|
|
2497
|
+
anonymous?: undefined;
|
|
2498
|
+
})[] | ({
|
|
1839
2499
|
inputs: {
|
|
1840
2500
|
internalType: string;
|
|
1841
2501
|
name: string;
|
|
@@ -1934,11 +2594,7 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
1934
2594
|
type: string;
|
|
1935
2595
|
anonymous?: undefined;
|
|
1936
2596
|
} | {
|
|
1937
|
-
inputs:
|
|
1938
|
-
internalType: string;
|
|
1939
|
-
name: string;
|
|
1940
|
-
type: string;
|
|
1941
|
-
}[];
|
|
2597
|
+
inputs: any[];
|
|
1942
2598
|
name: string;
|
|
1943
2599
|
outputs: {
|
|
1944
2600
|
components: {
|
|
@@ -2051,6 +2707,40 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2051
2707
|
stateMutability: string;
|
|
2052
2708
|
type: string;
|
|
2053
2709
|
anonymous?: undefined;
|
|
2710
|
+
})[] | ({
|
|
2711
|
+
inputs: {
|
|
2712
|
+
internalType: string;
|
|
2713
|
+
name: string;
|
|
2714
|
+
type: string;
|
|
2715
|
+
}[];
|
|
2716
|
+
stateMutability: string;
|
|
2717
|
+
type: string;
|
|
2718
|
+
name?: undefined;
|
|
2719
|
+
anonymous?: undefined;
|
|
2720
|
+
outputs?: undefined;
|
|
2721
|
+
} | {
|
|
2722
|
+
inputs: {
|
|
2723
|
+
internalType: string;
|
|
2724
|
+
name: string;
|
|
2725
|
+
type: string;
|
|
2726
|
+
}[];
|
|
2727
|
+
name: string;
|
|
2728
|
+
type: string;
|
|
2729
|
+
stateMutability?: undefined;
|
|
2730
|
+
anonymous?: undefined;
|
|
2731
|
+
outputs?: undefined;
|
|
2732
|
+
} | {
|
|
2733
|
+
anonymous: boolean;
|
|
2734
|
+
inputs: {
|
|
2735
|
+
indexed: boolean;
|
|
2736
|
+
internalType: string;
|
|
2737
|
+
name: string;
|
|
2738
|
+
type: string;
|
|
2739
|
+
}[];
|
|
2740
|
+
name: string;
|
|
2741
|
+
type: string;
|
|
2742
|
+
stateMutability?: undefined;
|
|
2743
|
+
outputs?: undefined;
|
|
2054
2744
|
} | {
|
|
2055
2745
|
inputs: {
|
|
2056
2746
|
internalType: string;
|
|
@@ -2059,11 +2749,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2059
2749
|
}[];
|
|
2060
2750
|
name: string;
|
|
2061
2751
|
outputs: {
|
|
2062
|
-
components: {
|
|
2063
|
-
internalType: string;
|
|
2064
|
-
name: string;
|
|
2065
|
-
type: string;
|
|
2066
|
-
}[];
|
|
2067
2752
|
internalType: string;
|
|
2068
2753
|
name: string;
|
|
2069
2754
|
type: string;
|
|
@@ -2170,7 +2855,11 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2170
2855
|
type: string;
|
|
2171
2856
|
anonymous?: undefined;
|
|
2172
2857
|
} | {
|
|
2173
|
-
inputs:
|
|
2858
|
+
inputs: {
|
|
2859
|
+
internalType: string;
|
|
2860
|
+
name: string;
|
|
2861
|
+
type: string;
|
|
2862
|
+
}[];
|
|
2174
2863
|
name: string;
|
|
2175
2864
|
outputs: {
|
|
2176
2865
|
components: {
|
|
@@ -2234,6 +2923,22 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2234
2923
|
stateMutability: string;
|
|
2235
2924
|
type: string;
|
|
2236
2925
|
anonymous?: undefined;
|
|
2926
|
+
} | {
|
|
2927
|
+
inputs: any[];
|
|
2928
|
+
name: string;
|
|
2929
|
+
outputs: {
|
|
2930
|
+
components: {
|
|
2931
|
+
internalType: string;
|
|
2932
|
+
name: string;
|
|
2933
|
+
type: string;
|
|
2934
|
+
}[];
|
|
2935
|
+
internalType: string;
|
|
2936
|
+
name: string;
|
|
2937
|
+
type: string;
|
|
2938
|
+
}[];
|
|
2939
|
+
stateMutability: string;
|
|
2940
|
+
type: string;
|
|
2941
|
+
anonymous?: undefined;
|
|
2237
2942
|
})[] | ({
|
|
2238
2943
|
inputs: {
|
|
2239
2944
|
internalType: string;
|
|
@@ -2283,6 +2988,26 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2283
2988
|
stateMutability: string;
|
|
2284
2989
|
type: string;
|
|
2285
2990
|
anonymous?: undefined;
|
|
2991
|
+
} | {
|
|
2992
|
+
inputs: {
|
|
2993
|
+
internalType: string;
|
|
2994
|
+
name: string;
|
|
2995
|
+
type: string;
|
|
2996
|
+
}[];
|
|
2997
|
+
name: string;
|
|
2998
|
+
outputs: {
|
|
2999
|
+
components: {
|
|
3000
|
+
internalType: string;
|
|
3001
|
+
name: string;
|
|
3002
|
+
type: string;
|
|
3003
|
+
}[];
|
|
3004
|
+
internalType: string;
|
|
3005
|
+
name: string;
|
|
3006
|
+
type: string;
|
|
3007
|
+
}[];
|
|
3008
|
+
stateMutability: string;
|
|
3009
|
+
type: string;
|
|
3010
|
+
anonymous?: undefined;
|
|
2286
3011
|
})[] | ({
|
|
2287
3012
|
inputs: {
|
|
2288
3013
|
internalType: string;
|
|
@@ -2332,6 +3057,22 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2332
3057
|
stateMutability: string;
|
|
2333
3058
|
type: string;
|
|
2334
3059
|
anonymous?: undefined;
|
|
3060
|
+
} | {
|
|
3061
|
+
inputs: any[];
|
|
3062
|
+
name: string;
|
|
3063
|
+
outputs: {
|
|
3064
|
+
components: {
|
|
3065
|
+
internalType: string;
|
|
3066
|
+
name: string;
|
|
3067
|
+
type: string;
|
|
3068
|
+
}[];
|
|
3069
|
+
internalType: string;
|
|
3070
|
+
name: string;
|
|
3071
|
+
type: string;
|
|
3072
|
+
}[];
|
|
3073
|
+
stateMutability: string;
|
|
3074
|
+
type: string;
|
|
3075
|
+
anonymous?: undefined;
|
|
2335
3076
|
})[] | ({
|
|
2336
3077
|
inputs: {
|
|
2337
3078
|
internalType: string;
|
|
@@ -2356,12 +3097,23 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2356
3097
|
outputs?: undefined;
|
|
2357
3098
|
} | {
|
|
2358
3099
|
anonymous: boolean;
|
|
2359
|
-
inputs: {
|
|
3100
|
+
inputs: ({
|
|
2360
3101
|
indexed: boolean;
|
|
2361
3102
|
internalType: string;
|
|
2362
3103
|
name: string;
|
|
2363
3104
|
type: string;
|
|
2364
|
-
|
|
3105
|
+
components?: undefined;
|
|
3106
|
+
} | {
|
|
3107
|
+
components: {
|
|
3108
|
+
internalType: string;
|
|
3109
|
+
name: string;
|
|
3110
|
+
type: string;
|
|
3111
|
+
}[];
|
|
3112
|
+
indexed: boolean;
|
|
3113
|
+
internalType: string;
|
|
3114
|
+
name: string;
|
|
3115
|
+
type: string;
|
|
3116
|
+
})[];
|
|
2365
3117
|
name: string;
|
|
2366
3118
|
type: string;
|
|
2367
3119
|
stateMutability?: undefined;
|
|
@@ -2381,6 +3133,47 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2381
3133
|
stateMutability: string;
|
|
2382
3134
|
type: string;
|
|
2383
3135
|
anonymous?: undefined;
|
|
3136
|
+
} | {
|
|
3137
|
+
inputs: {
|
|
3138
|
+
internalType: string;
|
|
3139
|
+
name: string;
|
|
3140
|
+
type: string;
|
|
3141
|
+
}[];
|
|
3142
|
+
name: string;
|
|
3143
|
+
outputs: {
|
|
3144
|
+
components: {
|
|
3145
|
+
internalType: string;
|
|
3146
|
+
name: string;
|
|
3147
|
+
type: string;
|
|
3148
|
+
}[];
|
|
3149
|
+
internalType: string;
|
|
3150
|
+
name: string;
|
|
3151
|
+
type: string;
|
|
3152
|
+
}[];
|
|
3153
|
+
stateMutability: string;
|
|
3154
|
+
type: string;
|
|
3155
|
+
anonymous?: undefined;
|
|
3156
|
+
} | {
|
|
3157
|
+
inputs: ({
|
|
3158
|
+
internalType: string;
|
|
3159
|
+
name: string;
|
|
3160
|
+
type: string;
|
|
3161
|
+
components?: undefined;
|
|
3162
|
+
} | {
|
|
3163
|
+
components: {
|
|
3164
|
+
internalType: string;
|
|
3165
|
+
name: string;
|
|
3166
|
+
type: string;
|
|
3167
|
+
}[];
|
|
3168
|
+
internalType: string;
|
|
3169
|
+
name: string;
|
|
3170
|
+
type: string;
|
|
3171
|
+
})[];
|
|
3172
|
+
name: string;
|
|
3173
|
+
outputs: any[];
|
|
3174
|
+
stateMutability: string;
|
|
3175
|
+
type: string;
|
|
3176
|
+
anonymous?: undefined;
|
|
2384
3177
|
})[] | ({
|
|
2385
3178
|
inputs: {
|
|
2386
3179
|
internalType: string;
|
|
@@ -2432,17 +3225,17 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2432
3225
|
anonymous?: undefined;
|
|
2433
3226
|
} | {
|
|
2434
3227
|
inputs: {
|
|
3228
|
+
components: {
|
|
3229
|
+
internalType: string;
|
|
3230
|
+
name: string;
|
|
3231
|
+
type: string;
|
|
3232
|
+
}[];
|
|
2435
3233
|
internalType: string;
|
|
2436
3234
|
name: string;
|
|
2437
3235
|
type: string;
|
|
2438
3236
|
}[];
|
|
2439
3237
|
name: string;
|
|
2440
3238
|
outputs: {
|
|
2441
|
-
components: {
|
|
2442
|
-
internalType: string;
|
|
2443
|
-
name: string;
|
|
2444
|
-
type: string;
|
|
2445
|
-
}[];
|
|
2446
3239
|
internalType: string;
|
|
2447
3240
|
name: string;
|
|
2448
3241
|
type: string;
|
|
@@ -2485,11 +3278,7 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2485
3278
|
stateMutability?: undefined;
|
|
2486
3279
|
outputs?: undefined;
|
|
2487
3280
|
} | {
|
|
2488
|
-
inputs:
|
|
2489
|
-
internalType: string;
|
|
2490
|
-
name: string;
|
|
2491
|
-
type: string;
|
|
2492
|
-
}[];
|
|
3281
|
+
inputs: any[];
|
|
2493
3282
|
name: string;
|
|
2494
3283
|
outputs: {
|
|
2495
3284
|
internalType: string;
|
|
@@ -2515,6 +3304,17 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2515
3304
|
stateMutability: string;
|
|
2516
3305
|
type: string;
|
|
2517
3306
|
anonymous?: undefined;
|
|
3307
|
+
} | {
|
|
3308
|
+
inputs: {
|
|
3309
|
+
internalType: string;
|
|
3310
|
+
name: string;
|
|
3311
|
+
type: string;
|
|
3312
|
+
}[];
|
|
3313
|
+
name: string;
|
|
3314
|
+
outputs: any[];
|
|
3315
|
+
stateMutability: string;
|
|
3316
|
+
type: string;
|
|
3317
|
+
anonymous?: undefined;
|
|
2518
3318
|
})[] | ({
|
|
2519
3319
|
inputs: {
|
|
2520
3320
|
internalType: string;
|
|
@@ -2561,9 +3361,43 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2561
3361
|
name: string;
|
|
2562
3362
|
type: string;
|
|
2563
3363
|
}[];
|
|
2564
|
-
stateMutability: string;
|
|
3364
|
+
stateMutability: string;
|
|
3365
|
+
type: string;
|
|
3366
|
+
anonymous?: undefined;
|
|
3367
|
+
})[] | ({
|
|
3368
|
+
inputs: {
|
|
3369
|
+
internalType: string;
|
|
3370
|
+
name: string;
|
|
3371
|
+
type: string;
|
|
3372
|
+
}[];
|
|
3373
|
+
stateMutability: string;
|
|
3374
|
+
type: string;
|
|
3375
|
+
name?: undefined;
|
|
3376
|
+
anonymous?: undefined;
|
|
3377
|
+
outputs?: undefined;
|
|
3378
|
+
} | {
|
|
3379
|
+
inputs: {
|
|
3380
|
+
internalType: string;
|
|
3381
|
+
name: string;
|
|
3382
|
+
type: string;
|
|
3383
|
+
}[];
|
|
3384
|
+
name: string;
|
|
3385
|
+
type: string;
|
|
3386
|
+
stateMutability?: undefined;
|
|
3387
|
+
anonymous?: undefined;
|
|
3388
|
+
outputs?: undefined;
|
|
3389
|
+
} | {
|
|
3390
|
+
anonymous: boolean;
|
|
3391
|
+
inputs: {
|
|
3392
|
+
indexed: boolean;
|
|
3393
|
+
internalType: string;
|
|
3394
|
+
name: string;
|
|
3395
|
+
type: string;
|
|
3396
|
+
}[];
|
|
3397
|
+
name: string;
|
|
2565
3398
|
type: string;
|
|
2566
|
-
|
|
3399
|
+
stateMutability?: undefined;
|
|
3400
|
+
outputs?: undefined;
|
|
2567
3401
|
} | {
|
|
2568
3402
|
inputs: {
|
|
2569
3403
|
internalType: string;
|
|
@@ -2572,11 +3406,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2572
3406
|
}[];
|
|
2573
3407
|
name: string;
|
|
2574
3408
|
outputs: {
|
|
2575
|
-
components: {
|
|
2576
|
-
internalType: string;
|
|
2577
|
-
name: string;
|
|
2578
|
-
type: string;
|
|
2579
|
-
}[];
|
|
2580
3409
|
internalType: string;
|
|
2581
3410
|
name: string;
|
|
2582
3411
|
type: string;
|
|
@@ -2633,22 +3462,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2633
3462
|
stateMutability: string;
|
|
2634
3463
|
type: string;
|
|
2635
3464
|
anonymous?: undefined;
|
|
2636
|
-
} | {
|
|
2637
|
-
inputs: any[];
|
|
2638
|
-
name: string;
|
|
2639
|
-
outputs: {
|
|
2640
|
-
components: {
|
|
2641
|
-
internalType: string;
|
|
2642
|
-
name: string;
|
|
2643
|
-
type: string;
|
|
2644
|
-
}[];
|
|
2645
|
-
internalType: string;
|
|
2646
|
-
name: string;
|
|
2647
|
-
type: string;
|
|
2648
|
-
}[];
|
|
2649
|
-
stateMutability: string;
|
|
2650
|
-
type: string;
|
|
2651
|
-
anonymous?: undefined;
|
|
2652
3465
|
})[] | ({
|
|
2653
3466
|
inputs: {
|
|
2654
3467
|
internalType: string;
|
|
@@ -2673,23 +3486,12 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2673
3486
|
outputs?: undefined;
|
|
2674
3487
|
} | {
|
|
2675
3488
|
anonymous: boolean;
|
|
2676
|
-
inputs:
|
|
2677
|
-
indexed: boolean;
|
|
2678
|
-
internalType: string;
|
|
2679
|
-
name: string;
|
|
2680
|
-
type: string;
|
|
2681
|
-
components?: undefined;
|
|
2682
|
-
} | {
|
|
2683
|
-
components: {
|
|
2684
|
-
internalType: string;
|
|
2685
|
-
name: string;
|
|
2686
|
-
type: string;
|
|
2687
|
-
}[];
|
|
3489
|
+
inputs: {
|
|
2688
3490
|
indexed: boolean;
|
|
2689
3491
|
internalType: string;
|
|
2690
3492
|
name: string;
|
|
2691
3493
|
type: string;
|
|
2692
|
-
}
|
|
3494
|
+
}[];
|
|
2693
3495
|
name: string;
|
|
2694
3496
|
type: string;
|
|
2695
3497
|
stateMutability?: undefined;
|
|
@@ -2709,44 +3511,52 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2709
3511
|
stateMutability: string;
|
|
2710
3512
|
type: string;
|
|
2711
3513
|
anonymous?: undefined;
|
|
2712
|
-
} | {
|
|
3514
|
+
})[] | ({
|
|
2713
3515
|
inputs: {
|
|
2714
3516
|
internalType: string;
|
|
2715
3517
|
name: string;
|
|
2716
3518
|
type: string;
|
|
2717
3519
|
}[];
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
3520
|
+
stateMutability: string;
|
|
3521
|
+
type: string;
|
|
3522
|
+
name?: undefined;
|
|
3523
|
+
anonymous?: undefined;
|
|
3524
|
+
outputs?: undefined;
|
|
3525
|
+
} | {
|
|
3526
|
+
inputs: {
|
|
2725
3527
|
internalType: string;
|
|
2726
3528
|
name: string;
|
|
2727
3529
|
type: string;
|
|
2728
3530
|
}[];
|
|
2729
|
-
|
|
3531
|
+
name: string;
|
|
2730
3532
|
type: string;
|
|
3533
|
+
stateMutability?: undefined;
|
|
2731
3534
|
anonymous?: undefined;
|
|
3535
|
+
outputs?: undefined;
|
|
2732
3536
|
} | {
|
|
2733
|
-
|
|
3537
|
+
anonymous: boolean;
|
|
3538
|
+
inputs: {
|
|
3539
|
+
indexed: boolean;
|
|
2734
3540
|
internalType: string;
|
|
2735
3541
|
name: string;
|
|
2736
3542
|
type: string;
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
3543
|
+
}[];
|
|
3544
|
+
name: string;
|
|
3545
|
+
type: string;
|
|
3546
|
+
stateMutability?: undefined;
|
|
3547
|
+
outputs?: undefined;
|
|
3548
|
+
} | {
|
|
3549
|
+
inputs: {
|
|
2744
3550
|
internalType: string;
|
|
2745
3551
|
name: string;
|
|
2746
3552
|
type: string;
|
|
2747
|
-
}
|
|
3553
|
+
}[];
|
|
2748
3554
|
name: string;
|
|
2749
|
-
outputs:
|
|
3555
|
+
outputs: {
|
|
3556
|
+
internalType: string;
|
|
3557
|
+
name: string;
|
|
3558
|
+
type: string;
|
|
3559
|
+
}[];
|
|
2750
3560
|
stateMutability: string;
|
|
2751
3561
|
type: string;
|
|
2752
3562
|
anonymous?: undefined;
|
|
@@ -2799,26 +3609,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2799
3609
|
stateMutability: string;
|
|
2800
3610
|
type: string;
|
|
2801
3611
|
anonymous?: undefined;
|
|
2802
|
-
} | {
|
|
2803
|
-
inputs: {
|
|
2804
|
-
components: {
|
|
2805
|
-
internalType: string;
|
|
2806
|
-
name: string;
|
|
2807
|
-
type: string;
|
|
2808
|
-
}[];
|
|
2809
|
-
internalType: string;
|
|
2810
|
-
name: string;
|
|
2811
|
-
type: string;
|
|
2812
|
-
}[];
|
|
2813
|
-
name: string;
|
|
2814
|
-
outputs: {
|
|
2815
|
-
internalType: string;
|
|
2816
|
-
name: string;
|
|
2817
|
-
type: string;
|
|
2818
|
-
}[];
|
|
2819
|
-
stateMutability: string;
|
|
2820
|
-
type: string;
|
|
2821
|
-
anonymous?: undefined;
|
|
2822
3612
|
})[] | ({
|
|
2823
3613
|
inputs: {
|
|
2824
3614
|
internalType: string;
|
|
@@ -2854,40 +3644,17 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2854
3644
|
stateMutability?: undefined;
|
|
2855
3645
|
outputs?: undefined;
|
|
2856
3646
|
} | {
|
|
2857
|
-
inputs:
|
|
2858
|
-
name: string;
|
|
2859
|
-
outputs: {
|
|
3647
|
+
inputs: {
|
|
2860
3648
|
internalType: string;
|
|
2861
3649
|
name: string;
|
|
2862
3650
|
type: string;
|
|
2863
3651
|
}[];
|
|
2864
|
-
stateMutability: string;
|
|
2865
|
-
type: string;
|
|
2866
|
-
anonymous?: undefined;
|
|
2867
|
-
} | {
|
|
2868
|
-
inputs: any[];
|
|
2869
3652
|
name: string;
|
|
2870
3653
|
outputs: {
|
|
2871
|
-
components: {
|
|
2872
|
-
internalType: string;
|
|
2873
|
-
name: string;
|
|
2874
|
-
type: string;
|
|
2875
|
-
}[];
|
|
2876
|
-
internalType: string;
|
|
2877
|
-
name: string;
|
|
2878
|
-
type: string;
|
|
2879
|
-
}[];
|
|
2880
|
-
stateMutability: string;
|
|
2881
|
-
type: string;
|
|
2882
|
-
anonymous?: undefined;
|
|
2883
|
-
} | {
|
|
2884
|
-
inputs: {
|
|
2885
3654
|
internalType: string;
|
|
2886
3655
|
name: string;
|
|
2887
3656
|
type: string;
|
|
2888
3657
|
}[];
|
|
2889
|
-
name: string;
|
|
2890
|
-
outputs: any[];
|
|
2891
3658
|
stateMutability: string;
|
|
2892
3659
|
type: string;
|
|
2893
3660
|
anonymous?: undefined;
|
|
@@ -2941,11 +3708,7 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
2941
3708
|
type: string;
|
|
2942
3709
|
anonymous?: undefined;
|
|
2943
3710
|
})[] | ({
|
|
2944
|
-
inputs:
|
|
2945
|
-
internalType: string;
|
|
2946
|
-
name: string;
|
|
2947
|
-
type: string;
|
|
2948
|
-
}[];
|
|
3711
|
+
inputs: any[];
|
|
2949
3712
|
stateMutability: string;
|
|
2950
3713
|
type: string;
|
|
2951
3714
|
name?: undefined;
|
|
@@ -3171,17 +3934,24 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3171
3934
|
stateMutability?: undefined;
|
|
3172
3935
|
outputs?: undefined;
|
|
3173
3936
|
} | {
|
|
3174
|
-
inputs:
|
|
3937
|
+
inputs: any[];
|
|
3938
|
+
name: string;
|
|
3939
|
+
outputs: {
|
|
3175
3940
|
internalType: string;
|
|
3176
3941
|
name: string;
|
|
3177
3942
|
type: string;
|
|
3178
3943
|
}[];
|
|
3179
|
-
|
|
3180
|
-
|
|
3944
|
+
stateMutability: string;
|
|
3945
|
+
type: string;
|
|
3946
|
+
anonymous?: undefined;
|
|
3947
|
+
} | {
|
|
3948
|
+
inputs: {
|
|
3181
3949
|
internalType: string;
|
|
3182
3950
|
name: string;
|
|
3183
3951
|
type: string;
|
|
3184
3952
|
}[];
|
|
3953
|
+
name: string;
|
|
3954
|
+
outputs: any[];
|
|
3185
3955
|
stateMutability: string;
|
|
3186
3956
|
type: string;
|
|
3187
3957
|
anonymous?: undefined;
|
|
@@ -3234,6 +4004,13 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3234
4004
|
stateMutability: string;
|
|
3235
4005
|
type: string;
|
|
3236
4006
|
anonymous?: undefined;
|
|
4007
|
+
} | {
|
|
4008
|
+
stateMutability: string;
|
|
4009
|
+
type: string;
|
|
4010
|
+
inputs?: undefined;
|
|
4011
|
+
name?: undefined;
|
|
4012
|
+
anonymous?: undefined;
|
|
4013
|
+
outputs?: undefined;
|
|
3237
4014
|
})[] | ({
|
|
3238
4015
|
inputs: {
|
|
3239
4016
|
internalType: string;
|
|
@@ -3284,13 +4061,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3284
4061
|
type: string;
|
|
3285
4062
|
anonymous?: undefined;
|
|
3286
4063
|
})[] | ({
|
|
3287
|
-
inputs: any[];
|
|
3288
|
-
stateMutability: string;
|
|
3289
|
-
type: string;
|
|
3290
|
-
name?: undefined;
|
|
3291
|
-
anonymous?: undefined;
|
|
3292
|
-
outputs?: undefined;
|
|
3293
|
-
} | {
|
|
3294
4064
|
inputs: {
|
|
3295
4065
|
internalType: string;
|
|
3296
4066
|
name: string;
|
|
@@ -3298,9 +4068,9 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3298
4068
|
}[];
|
|
3299
4069
|
name: string;
|
|
3300
4070
|
type: string;
|
|
3301
|
-
stateMutability?: undefined;
|
|
3302
4071
|
anonymous?: undefined;
|
|
3303
4072
|
outputs?: undefined;
|
|
4073
|
+
stateMutability?: undefined;
|
|
3304
4074
|
} | {
|
|
3305
4075
|
anonymous: boolean;
|
|
3306
4076
|
inputs: {
|
|
@@ -3311,8 +4081,23 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3311
4081
|
}[];
|
|
3312
4082
|
name: string;
|
|
3313
4083
|
type: string;
|
|
3314
|
-
stateMutability?: undefined;
|
|
3315
4084
|
outputs?: undefined;
|
|
4085
|
+
stateMutability?: undefined;
|
|
4086
|
+
} | {
|
|
4087
|
+
inputs: {
|
|
4088
|
+
internalType: string;
|
|
4089
|
+
name: string;
|
|
4090
|
+
type: string;
|
|
4091
|
+
}[];
|
|
4092
|
+
name: string;
|
|
4093
|
+
outputs: {
|
|
4094
|
+
internalType: string;
|
|
4095
|
+
name: string;
|
|
4096
|
+
type: string;
|
|
4097
|
+
}[];
|
|
4098
|
+
stateMutability: string;
|
|
4099
|
+
type: string;
|
|
4100
|
+
anonymous?: undefined;
|
|
3316
4101
|
} | {
|
|
3317
4102
|
inputs: {
|
|
3318
4103
|
internalType: string;
|
|
@@ -3321,6 +4106,11 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3321
4106
|
}[];
|
|
3322
4107
|
name: string;
|
|
3323
4108
|
outputs: {
|
|
4109
|
+
components: {
|
|
4110
|
+
internalType: string;
|
|
4111
|
+
name: string;
|
|
4112
|
+
type: string;
|
|
4113
|
+
}[];
|
|
3324
4114
|
internalType: string;
|
|
3325
4115
|
name: string;
|
|
3326
4116
|
type: string;
|
|
@@ -3377,6 +4167,26 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3377
4167
|
stateMutability: string;
|
|
3378
4168
|
type: string;
|
|
3379
4169
|
anonymous?: undefined;
|
|
4170
|
+
} | {
|
|
4171
|
+
inputs: {
|
|
4172
|
+
internalType: string;
|
|
4173
|
+
name: string;
|
|
4174
|
+
type: string;
|
|
4175
|
+
}[];
|
|
4176
|
+
name: string;
|
|
4177
|
+
outputs: {
|
|
4178
|
+
components: {
|
|
4179
|
+
internalType: string;
|
|
4180
|
+
name: string;
|
|
4181
|
+
type: string;
|
|
4182
|
+
}[];
|
|
4183
|
+
internalType: string;
|
|
4184
|
+
name: string;
|
|
4185
|
+
type: string;
|
|
4186
|
+
}[];
|
|
4187
|
+
stateMutability: string;
|
|
4188
|
+
type: string;
|
|
4189
|
+
anonymous?: undefined;
|
|
3380
4190
|
})[] | ({
|
|
3381
4191
|
inputs: {
|
|
3382
4192
|
internalType: string;
|
|
@@ -3426,6 +4236,26 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3426
4236
|
stateMutability: string;
|
|
3427
4237
|
type: string;
|
|
3428
4238
|
anonymous?: undefined;
|
|
4239
|
+
} | {
|
|
4240
|
+
inputs: {
|
|
4241
|
+
internalType: string;
|
|
4242
|
+
name: string;
|
|
4243
|
+
type: string;
|
|
4244
|
+
}[];
|
|
4245
|
+
name: string;
|
|
4246
|
+
outputs: {
|
|
4247
|
+
components: {
|
|
4248
|
+
internalType: string;
|
|
4249
|
+
name: string;
|
|
4250
|
+
type: string;
|
|
4251
|
+
}[];
|
|
4252
|
+
internalType: string;
|
|
4253
|
+
name: string;
|
|
4254
|
+
type: string;
|
|
4255
|
+
}[];
|
|
4256
|
+
stateMutability: string;
|
|
4257
|
+
type: string;
|
|
4258
|
+
anonymous?: undefined;
|
|
3429
4259
|
})[] | ({
|
|
3430
4260
|
inputs: {
|
|
3431
4261
|
internalType: string;
|
|
@@ -3510,7 +4340,11 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3510
4340
|
stateMutability?: undefined;
|
|
3511
4341
|
outputs?: undefined;
|
|
3512
4342
|
} | {
|
|
3513
|
-
inputs:
|
|
4343
|
+
inputs: {
|
|
4344
|
+
internalType: string;
|
|
4345
|
+
name: string;
|
|
4346
|
+
type: string;
|
|
4347
|
+
}[];
|
|
3514
4348
|
name: string;
|
|
3515
4349
|
outputs: {
|
|
3516
4350
|
internalType: string;
|
|
@@ -3527,7 +4361,16 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3527
4361
|
type: string;
|
|
3528
4362
|
}[];
|
|
3529
4363
|
name: string;
|
|
3530
|
-
outputs:
|
|
4364
|
+
outputs: {
|
|
4365
|
+
components: {
|
|
4366
|
+
internalType: string;
|
|
4367
|
+
name: string;
|
|
4368
|
+
type: string;
|
|
4369
|
+
}[];
|
|
4370
|
+
internalType: string;
|
|
4371
|
+
name: string;
|
|
4372
|
+
type: string;
|
|
4373
|
+
}[];
|
|
3531
4374
|
stateMutability: string;
|
|
3532
4375
|
type: string;
|
|
3533
4376
|
anonymous?: undefined;
|
|
@@ -3580,12 +4423,5 @@ declare const getABI: (name: keyof typeof ABIS) => ({
|
|
|
3580
4423
|
stateMutability: string;
|
|
3581
4424
|
type: string;
|
|
3582
4425
|
anonymous?: undefined;
|
|
3583
|
-
} | {
|
|
3584
|
-
stateMutability: string;
|
|
3585
|
-
type: string;
|
|
3586
|
-
inputs?: undefined;
|
|
3587
|
-
name?: undefined;
|
|
3588
|
-
anonymous?: undefined;
|
|
3589
|
-
outputs?: undefined;
|
|
3590
4426
|
})[];
|
|
3591
4427
|
export { getABI, ABIS };
|