@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
|
@@ -1,76 +1,104 @@
|
|
|
1
1
|
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
3
|
export declare namespace IveRAACToken {
|
|
4
|
-
type
|
|
4
|
+
type LockedBalanceStruct = {
|
|
5
5
|
amount: BigNumberish;
|
|
6
|
-
|
|
7
|
-
end: BigNumberish;
|
|
8
|
-
power: BigNumberish;
|
|
6
|
+
unlockTime: BigNumberish;
|
|
9
7
|
};
|
|
10
|
-
type
|
|
8
|
+
type LockedBalanceStructOutput = [
|
|
11
9
|
amount: bigint,
|
|
12
|
-
|
|
13
|
-
end: bigint,
|
|
14
|
-
power: bigint
|
|
10
|
+
unlockTime: bigint
|
|
15
11
|
] & {
|
|
16
12
|
amount: bigint;
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
13
|
+
unlockTime: bigint;
|
|
14
|
+
};
|
|
15
|
+
type RagequitRequestStruct = {
|
|
16
|
+
amount: BigNumberish;
|
|
17
|
+
grossAmount: BigNumberish;
|
|
18
|
+
fixedPenalityAmount: BigNumberish;
|
|
19
|
+
variablePenalityAmount: BigNumberish;
|
|
20
|
+
readyAt: BigNumberish;
|
|
21
|
+
};
|
|
22
|
+
type RagequitRequestStructOutput = [
|
|
23
|
+
amount: bigint,
|
|
24
|
+
grossAmount: bigint,
|
|
25
|
+
fixedPenalityAmount: bigint,
|
|
26
|
+
variablePenalityAmount: bigint,
|
|
27
|
+
readyAt: bigint
|
|
28
|
+
] & {
|
|
29
|
+
amount: bigint;
|
|
30
|
+
grossAmount: bigint;
|
|
31
|
+
fixedPenalityAmount: bigint;
|
|
32
|
+
variablePenalityAmount: bigint;
|
|
33
|
+
readyAt: bigint;
|
|
20
34
|
};
|
|
21
35
|
}
|
|
22
36
|
export interface IveRAACTokenInterface extends Interface {
|
|
23
|
-
getFunction(nameOrSignature: "allowance" | "approve" | "balanceOf" | "balanceOfAt" | "
|
|
24
|
-
getEvent(nameOrSignatureOrTopic: "Approval" | "
|
|
37
|
+
getFunction(nameOrSignature: "allowance" | "approve" | "balanceOf" | "balanceOfAt" | "claimReward" | "extend" | "finalizeRemoveRewardToken" | "getEffectiveLockEnd" | "getGlobalLockInfo" | "getLocks" | "getMaxLockEnd" | "getMaxUnclaimedDistributions" | "getMinLockEnd" | "getRewardTokens" | "increase" | "initiateRemoveRewardToken" | "lock" | "lockedBalanceOf" | "pause" | "ragequitRequests" | "rawBalanceOf" | "rawTotalSupply" | "setMinLockAmount" | "setMinRewardDistributionAmount" | "setRewardTokenRemovalCooldown" | "setTimePerBlock" | "totalSupply" | "totalSupplyAt" | "transfer" | "transferFrom" | "unpause" | "withdraw"): FunctionFragment;
|
|
38
|
+
getEvent(nameOrSignatureOrTopic: "Approval" | "LockExtended" | "LockIncreased" | "Locked" | "MinRewardDistributionAmountUpdated" | "MinimumLockAmountUpdated" | "RagequitEpochsUpdated" | "RagequitFinalized" | "RagequitInitiatedAll" | "RagequitLockInitiated" | "RewardAccumulated" | "RewardNotified" | "RewardPaid" | "RewardRedirectedToTreasury" | "RewardTokenAdded" | "RewardTokenRemovalCanceled" | "RewardTokenRemovalCooldownUpdated" | "RewardTokenRemovalInitiated" | "RewardTokenRemoved" | "TimePerBlockUpdated" | "Transfer" | "TreasuryUpdated" | "Withdrawn"): EventFragment;
|
|
25
39
|
encodeFunctionData(functionFragment: "allowance", values: [AddressLike, AddressLike]): string;
|
|
26
40
|
encodeFunctionData(functionFragment: "approve", values: [AddressLike, BigNumberish]): string;
|
|
27
41
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
28
42
|
encodeFunctionData(functionFragment: "balanceOfAt", values: [AddressLike, BigNumberish]): string;
|
|
29
|
-
encodeFunctionData(functionFragment: "
|
|
30
|
-
encodeFunctionData(functionFragment: "extend", values: [BigNumberish]): string;
|
|
31
|
-
encodeFunctionData(functionFragment: "
|
|
32
|
-
encodeFunctionData(functionFragment: "
|
|
33
|
-
encodeFunctionData(functionFragment: "
|
|
34
|
-
encodeFunctionData(functionFragment: "
|
|
35
|
-
encodeFunctionData(functionFragment: "
|
|
36
|
-
encodeFunctionData(functionFragment: "
|
|
37
|
-
encodeFunctionData(functionFragment: "
|
|
43
|
+
encodeFunctionData(functionFragment: "claimReward", values: [AddressLike, BigNumberish]): string;
|
|
44
|
+
encodeFunctionData(functionFragment: "extend", values: [BigNumberish, BigNumberish]): string;
|
|
45
|
+
encodeFunctionData(functionFragment: "finalizeRemoveRewardToken", values: [AddressLike]): string;
|
|
46
|
+
encodeFunctionData(functionFragment: "getEffectiveLockEnd", values: [AddressLike]): string;
|
|
47
|
+
encodeFunctionData(functionFragment: "getGlobalLockInfo", values?: undefined): string;
|
|
48
|
+
encodeFunctionData(functionFragment: "getLocks", values: [AddressLike]): string;
|
|
49
|
+
encodeFunctionData(functionFragment: "getMaxLockEnd", values: [AddressLike]): string;
|
|
50
|
+
encodeFunctionData(functionFragment: "getMaxUnclaimedDistributions", values: [AddressLike, AddressLike]): string;
|
|
51
|
+
encodeFunctionData(functionFragment: "getMinLockEnd", values: [AddressLike]): string;
|
|
52
|
+
encodeFunctionData(functionFragment: "getRewardTokens", values?: undefined): string;
|
|
53
|
+
encodeFunctionData(functionFragment: "increase", values: [BigNumberish, BigNumberish]): string;
|
|
54
|
+
encodeFunctionData(functionFragment: "initiateRemoveRewardToken", values: [AddressLike]): string;
|
|
38
55
|
encodeFunctionData(functionFragment: "lock", values: [BigNumberish, BigNumberish]): string;
|
|
56
|
+
encodeFunctionData(functionFragment: "lockedBalanceOf", values: [AddressLike]): string;
|
|
57
|
+
encodeFunctionData(functionFragment: "pause", values?: undefined): string;
|
|
58
|
+
encodeFunctionData(functionFragment: "ragequitRequests", values: [AddressLike]): string;
|
|
39
59
|
encodeFunctionData(functionFragment: "rawBalanceOf", values: [AddressLike]): string;
|
|
40
60
|
encodeFunctionData(functionFragment: "rawTotalSupply", values?: undefined): string;
|
|
41
|
-
encodeFunctionData(functionFragment: "
|
|
42
|
-
encodeFunctionData(functionFragment: "
|
|
43
|
-
encodeFunctionData(functionFragment: "
|
|
44
|
-
encodeFunctionData(functionFragment: "
|
|
61
|
+
encodeFunctionData(functionFragment: "setMinLockAmount", values: [BigNumberish]): string;
|
|
62
|
+
encodeFunctionData(functionFragment: "setMinRewardDistributionAmount", values: [BigNumberish]): string;
|
|
63
|
+
encodeFunctionData(functionFragment: "setRewardTokenRemovalCooldown", values: [BigNumberish]): string;
|
|
64
|
+
encodeFunctionData(functionFragment: "setTimePerBlock", values: [BigNumberish]): string;
|
|
45
65
|
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
46
66
|
encodeFunctionData(functionFragment: "totalSupplyAt", values: [BigNumberish]): string;
|
|
47
67
|
encodeFunctionData(functionFragment: "transfer", values: [AddressLike, BigNumberish]): string;
|
|
48
68
|
encodeFunctionData(functionFragment: "transferFrom", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
69
|
+
encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
|
|
49
70
|
encodeFunctionData(functionFragment: "withdraw", values?: undefined): string;
|
|
50
71
|
decodeFunctionResult(functionFragment: "allowance", data: BytesLike): Result;
|
|
51
72
|
decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
|
|
52
73
|
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
53
74
|
decodeFunctionResult(functionFragment: "balanceOfAt", data: BytesLike): Result;
|
|
54
|
-
decodeFunctionResult(functionFragment: "
|
|
75
|
+
decodeFunctionResult(functionFragment: "claimReward", data: BytesLike): Result;
|
|
55
76
|
decodeFunctionResult(functionFragment: "extend", data: BytesLike): Result;
|
|
56
|
-
decodeFunctionResult(functionFragment: "
|
|
57
|
-
decodeFunctionResult(functionFragment: "
|
|
58
|
-
decodeFunctionResult(functionFragment: "
|
|
59
|
-
decodeFunctionResult(functionFragment: "
|
|
60
|
-
decodeFunctionResult(functionFragment: "
|
|
61
|
-
decodeFunctionResult(functionFragment: "
|
|
77
|
+
decodeFunctionResult(functionFragment: "finalizeRemoveRewardToken", data: BytesLike): Result;
|
|
78
|
+
decodeFunctionResult(functionFragment: "getEffectiveLockEnd", data: BytesLike): Result;
|
|
79
|
+
decodeFunctionResult(functionFragment: "getGlobalLockInfo", data: BytesLike): Result;
|
|
80
|
+
decodeFunctionResult(functionFragment: "getLocks", data: BytesLike): Result;
|
|
81
|
+
decodeFunctionResult(functionFragment: "getMaxLockEnd", data: BytesLike): Result;
|
|
82
|
+
decodeFunctionResult(functionFragment: "getMaxUnclaimedDistributions", data: BytesLike): Result;
|
|
83
|
+
decodeFunctionResult(functionFragment: "getMinLockEnd", data: BytesLike): Result;
|
|
84
|
+
decodeFunctionResult(functionFragment: "getRewardTokens", data: BytesLike): Result;
|
|
62
85
|
decodeFunctionResult(functionFragment: "increase", data: BytesLike): Result;
|
|
86
|
+
decodeFunctionResult(functionFragment: "initiateRemoveRewardToken", data: BytesLike): Result;
|
|
63
87
|
decodeFunctionResult(functionFragment: "lock", data: BytesLike): Result;
|
|
88
|
+
decodeFunctionResult(functionFragment: "lockedBalanceOf", data: BytesLike): Result;
|
|
89
|
+
decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
|
|
90
|
+
decodeFunctionResult(functionFragment: "ragequitRequests", data: BytesLike): Result;
|
|
64
91
|
decodeFunctionResult(functionFragment: "rawBalanceOf", data: BytesLike): Result;
|
|
65
92
|
decodeFunctionResult(functionFragment: "rawTotalSupply", data: BytesLike): Result;
|
|
66
|
-
decodeFunctionResult(functionFragment: "
|
|
67
|
-
decodeFunctionResult(functionFragment: "
|
|
68
|
-
decodeFunctionResult(functionFragment: "
|
|
69
|
-
decodeFunctionResult(functionFragment: "
|
|
93
|
+
decodeFunctionResult(functionFragment: "setMinLockAmount", data: BytesLike): Result;
|
|
94
|
+
decodeFunctionResult(functionFragment: "setMinRewardDistributionAmount", data: BytesLike): Result;
|
|
95
|
+
decodeFunctionResult(functionFragment: "setRewardTokenRemovalCooldown", data: BytesLike): Result;
|
|
96
|
+
decodeFunctionResult(functionFragment: "setTimePerBlock", data: BytesLike): Result;
|
|
70
97
|
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
71
98
|
decodeFunctionResult(functionFragment: "totalSupplyAt", data: BytesLike): Result;
|
|
72
99
|
decodeFunctionResult(functionFragment: "transfer", data: BytesLike): Result;
|
|
73
100
|
decodeFunctionResult(functionFragment: "transferFrom", data: BytesLike): Result;
|
|
101
|
+
decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
|
|
74
102
|
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
|
|
75
103
|
}
|
|
76
104
|
export declare namespace ApprovalEvent {
|
|
@@ -90,228 +118,297 @@ export declare namespace ApprovalEvent {
|
|
|
90
118
|
type Log = TypedEventLog<Event>;
|
|
91
119
|
type LogDescription = TypedLogDescription<Event>;
|
|
92
120
|
}
|
|
93
|
-
export declare namespace
|
|
94
|
-
type InputTuple = [
|
|
95
|
-
|
|
121
|
+
export declare namespace LockExtendedEvent {
|
|
122
|
+
type InputTuple = [
|
|
123
|
+
user: AddressLike,
|
|
124
|
+
fromEpoch: BigNumberish,
|
|
125
|
+
newEpochEnd: BigNumberish,
|
|
126
|
+
amount: BigNumberish
|
|
127
|
+
];
|
|
128
|
+
type OutputTuple = [
|
|
129
|
+
user: string,
|
|
130
|
+
fromEpoch: bigint,
|
|
131
|
+
newEpochEnd: bigint,
|
|
132
|
+
amount: bigint
|
|
133
|
+
];
|
|
96
134
|
interface OutputObject {
|
|
97
|
-
|
|
135
|
+
user: string;
|
|
136
|
+
fromEpoch: bigint;
|
|
137
|
+
newEpochEnd: bigint;
|
|
138
|
+
amount: bigint;
|
|
98
139
|
}
|
|
99
140
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
100
141
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
101
142
|
type Log = TypedEventLog<Event>;
|
|
102
143
|
type LogDescription = TypedLogDescription<Event>;
|
|
103
144
|
}
|
|
104
|
-
export declare namespace
|
|
105
|
-
type InputTuple = [
|
|
106
|
-
type OutputTuple = [
|
|
145
|
+
export declare namespace LockIncreasedEvent {
|
|
146
|
+
type InputTuple = [user: AddressLike, additionalAmount: BigNumberish];
|
|
147
|
+
type OutputTuple = [user: string, additionalAmount: bigint];
|
|
107
148
|
interface OutputObject {
|
|
108
|
-
|
|
109
|
-
|
|
149
|
+
user: string;
|
|
150
|
+
additionalAmount: bigint;
|
|
110
151
|
}
|
|
111
152
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
112
153
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
113
154
|
type Log = TypedEventLog<Event>;
|
|
114
155
|
type LogDescription = TypedLogDescription<Event>;
|
|
115
156
|
}
|
|
116
|
-
export declare namespace
|
|
117
|
-
type InputTuple = [
|
|
118
|
-
|
|
157
|
+
export declare namespace LockedEvent {
|
|
158
|
+
type InputTuple = [
|
|
159
|
+
user: AddressLike,
|
|
160
|
+
amount: BigNumberish,
|
|
161
|
+
epochEnd: BigNumberish
|
|
162
|
+
];
|
|
163
|
+
type OutputTuple = [user: string, amount: bigint, epochEnd: bigint];
|
|
119
164
|
interface OutputObject {
|
|
165
|
+
user: string;
|
|
166
|
+
amount: bigint;
|
|
167
|
+
epochEnd: bigint;
|
|
120
168
|
}
|
|
121
169
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
122
170
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
123
171
|
type Log = TypedEventLog<Event>;
|
|
124
172
|
type LogDescription = TypedLogDescription<Event>;
|
|
125
173
|
}
|
|
126
|
-
export declare namespace
|
|
127
|
-
type InputTuple = [];
|
|
128
|
-
type OutputTuple = [];
|
|
174
|
+
export declare namespace MinRewardDistributionAmountUpdatedEvent {
|
|
175
|
+
type InputTuple = [oldValue: BigNumberish, newValue: BigNumberish];
|
|
176
|
+
type OutputTuple = [oldValue: bigint, newValue: bigint];
|
|
129
177
|
interface OutputObject {
|
|
178
|
+
oldValue: bigint;
|
|
179
|
+
newValue: bigint;
|
|
130
180
|
}
|
|
131
181
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
132
182
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
133
183
|
type Log = TypedEventLog<Event>;
|
|
134
184
|
type LogDescription = TypedLogDescription<Event>;
|
|
135
185
|
}
|
|
136
|
-
export declare namespace
|
|
137
|
-
type InputTuple = [
|
|
138
|
-
|
|
186
|
+
export declare namespace MinimumLockAmountUpdatedEvent {
|
|
187
|
+
type InputTuple = [
|
|
188
|
+
oldLockAmount: BigNumberish,
|
|
189
|
+
_minLockAmount: BigNumberish
|
|
190
|
+
];
|
|
191
|
+
type OutputTuple = [oldLockAmount: bigint, _minLockAmount: bigint];
|
|
139
192
|
interface OutputObject {
|
|
140
|
-
|
|
193
|
+
oldLockAmount: bigint;
|
|
194
|
+
_minLockAmount: bigint;
|
|
141
195
|
}
|
|
142
196
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
143
197
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
144
198
|
type Log = TypedEventLog<Event>;
|
|
145
199
|
type LogDescription = TypedLogDescription<Event>;
|
|
146
200
|
}
|
|
147
|
-
export declare namespace
|
|
148
|
-
type InputTuple = [
|
|
149
|
-
|
|
201
|
+
export declare namespace RagequitEpochsUpdatedEvent {
|
|
202
|
+
type InputTuple = [
|
|
203
|
+
oldRagequitEpochs: BigNumberish,
|
|
204
|
+
_ragequitEpochs: BigNumberish
|
|
205
|
+
];
|
|
206
|
+
type OutputTuple = [
|
|
207
|
+
oldRagequitEpochs: bigint,
|
|
208
|
+
_ragequitEpochs: bigint
|
|
209
|
+
];
|
|
150
210
|
interface OutputObject {
|
|
151
|
-
|
|
152
|
-
|
|
211
|
+
oldRagequitEpochs: bigint;
|
|
212
|
+
_ragequitEpochs: bigint;
|
|
153
213
|
}
|
|
154
214
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
155
215
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
156
216
|
type Log = TypedEventLog<Event>;
|
|
157
217
|
type LogDescription = TypedLogDescription<Event>;
|
|
158
218
|
}
|
|
159
|
-
export declare namespace
|
|
219
|
+
export declare namespace RagequitFinalizedEvent {
|
|
160
220
|
type InputTuple = [
|
|
161
221
|
user: AddressLike,
|
|
162
|
-
|
|
163
|
-
|
|
222
|
+
to: AddressLike,
|
|
223
|
+
netAmount: BigNumberish
|
|
164
224
|
];
|
|
165
|
-
type OutputTuple = [user: string,
|
|
225
|
+
type OutputTuple = [user: string, to: string, netAmount: bigint];
|
|
166
226
|
interface OutputObject {
|
|
167
227
|
user: string;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
}
|
|
171
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
172
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
173
|
-
type Log = TypedEventLog<Event>;
|
|
174
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
175
|
-
}
|
|
176
|
-
export declare namespace LockExtendedEvent {
|
|
177
|
-
type InputTuple = [user: AddressLike, newUnlockTime: BigNumberish];
|
|
178
|
-
type OutputTuple = [user: string, newUnlockTime: bigint];
|
|
179
|
-
interface OutputObject {
|
|
180
|
-
user: string;
|
|
181
|
-
newUnlockTime: bigint;
|
|
228
|
+
to: string;
|
|
229
|
+
netAmount: bigint;
|
|
182
230
|
}
|
|
183
231
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
184
232
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
185
233
|
type Log = TypedEventLog<Event>;
|
|
186
234
|
type LogDescription = TypedLogDescription<Event>;
|
|
187
235
|
}
|
|
188
|
-
export declare namespace
|
|
189
|
-
type InputTuple = [
|
|
190
|
-
|
|
236
|
+
export declare namespace RagequitInitiatedAllEvent {
|
|
237
|
+
type InputTuple = [
|
|
238
|
+
user: AddressLike,
|
|
239
|
+
grossAmount: BigNumberish,
|
|
240
|
+
penaltyFixed: BigNumberish,
|
|
241
|
+
penaltyVariable: BigNumberish,
|
|
242
|
+
readyAt: BigNumberish
|
|
243
|
+
];
|
|
244
|
+
type OutputTuple = [
|
|
245
|
+
user: string,
|
|
246
|
+
grossAmount: bigint,
|
|
247
|
+
penaltyFixed: bigint,
|
|
248
|
+
penaltyVariable: bigint,
|
|
249
|
+
readyAt: bigint
|
|
250
|
+
];
|
|
191
251
|
interface OutputObject {
|
|
192
252
|
user: string;
|
|
193
|
-
|
|
253
|
+
grossAmount: bigint;
|
|
254
|
+
penaltyFixed: bigint;
|
|
255
|
+
penaltyVariable: bigint;
|
|
256
|
+
readyAt: bigint;
|
|
194
257
|
}
|
|
195
258
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
196
259
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
197
260
|
type Log = TypedEventLog<Event>;
|
|
198
261
|
type LogDescription = TypedLogDescription<Event>;
|
|
199
262
|
}
|
|
200
|
-
export declare namespace
|
|
263
|
+
export declare namespace RagequitLockInitiatedEvent {
|
|
201
264
|
type InputTuple = [
|
|
202
265
|
user: AddressLike,
|
|
266
|
+
epochEnd: BigNumberish,
|
|
203
267
|
amount: BigNumberish,
|
|
204
|
-
|
|
268
|
+
fixedFee: BigNumberish,
|
|
269
|
+
variableFee: BigNumberish,
|
|
270
|
+
readyAt: BigNumberish
|
|
205
271
|
];
|
|
206
272
|
type OutputTuple = [
|
|
207
273
|
user: string,
|
|
274
|
+
epochEnd: bigint,
|
|
208
275
|
amount: bigint,
|
|
209
|
-
|
|
276
|
+
fixedFee: bigint,
|
|
277
|
+
variableFee: bigint,
|
|
278
|
+
readyAt: bigint
|
|
210
279
|
];
|
|
211
280
|
interface OutputObject {
|
|
212
281
|
user: string;
|
|
282
|
+
epochEnd: bigint;
|
|
213
283
|
amount: bigint;
|
|
214
|
-
|
|
284
|
+
fixedFee: bigint;
|
|
285
|
+
variableFee: bigint;
|
|
286
|
+
readyAt: bigint;
|
|
215
287
|
}
|
|
216
288
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
217
289
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
218
290
|
type Log = TypedEventLog<Event>;
|
|
219
291
|
type LogDescription = TypedLogDescription<Event>;
|
|
220
292
|
}
|
|
221
|
-
export declare namespace
|
|
222
|
-
type InputTuple = [
|
|
223
|
-
type OutputTuple = [
|
|
293
|
+
export declare namespace RewardAccumulatedEvent {
|
|
294
|
+
type InputTuple = [token: AddressLike, pendingAmount: BigNumberish];
|
|
295
|
+
type OutputTuple = [token: string, pendingAmount: bigint];
|
|
224
296
|
interface OutputObject {
|
|
225
|
-
|
|
226
|
-
|
|
297
|
+
token: string;
|
|
298
|
+
pendingAmount: bigint;
|
|
227
299
|
}
|
|
228
300
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
229
301
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
230
302
|
type Log = TypedEventLog<Event>;
|
|
231
303
|
type LogDescription = TypedLogDescription<Event>;
|
|
232
304
|
}
|
|
233
|
-
export declare namespace
|
|
234
|
-
type InputTuple = [
|
|
235
|
-
|
|
305
|
+
export declare namespace RewardNotifiedEvent {
|
|
306
|
+
type InputTuple = [
|
|
307
|
+
token: AddressLike,
|
|
308
|
+
reward: BigNumberish,
|
|
309
|
+
distributionLength: BigNumberish
|
|
310
|
+
];
|
|
311
|
+
type OutputTuple = [
|
|
312
|
+
token: string,
|
|
313
|
+
reward: bigint,
|
|
314
|
+
distributionLength: bigint
|
|
315
|
+
];
|
|
236
316
|
interface OutputObject {
|
|
237
|
-
|
|
238
|
-
|
|
317
|
+
token: string;
|
|
318
|
+
reward: bigint;
|
|
319
|
+
distributionLength: bigint;
|
|
239
320
|
}
|
|
240
321
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
241
322
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
242
323
|
type Log = TypedEventLog<Event>;
|
|
243
324
|
type LogDescription = TypedLogDescription<Event>;
|
|
244
325
|
}
|
|
245
|
-
export declare namespace
|
|
246
|
-
type InputTuple = [
|
|
247
|
-
|
|
326
|
+
export declare namespace RewardPaidEvent {
|
|
327
|
+
type InputTuple = [
|
|
328
|
+
token: AddressLike,
|
|
329
|
+
user: AddressLike,
|
|
330
|
+
reward: BigNumberish,
|
|
331
|
+
index: BigNumberish
|
|
332
|
+
];
|
|
333
|
+
type OutputTuple = [
|
|
334
|
+
token: string,
|
|
335
|
+
user: string,
|
|
336
|
+
reward: bigint,
|
|
337
|
+
index: bigint
|
|
338
|
+
];
|
|
248
339
|
interface OutputObject {
|
|
249
|
-
|
|
250
|
-
|
|
340
|
+
token: string;
|
|
341
|
+
user: string;
|
|
342
|
+
reward: bigint;
|
|
343
|
+
index: bigint;
|
|
251
344
|
}
|
|
252
345
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
253
346
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
254
347
|
type Log = TypedEventLog<Event>;
|
|
255
348
|
type LogDescription = TypedLogDescription<Event>;
|
|
256
349
|
}
|
|
257
|
-
export declare namespace
|
|
258
|
-
type InputTuple = [
|
|
259
|
-
type OutputTuple = [
|
|
350
|
+
export declare namespace RewardRedirectedToTreasuryEvent {
|
|
351
|
+
type InputTuple = [token: AddressLike, amount: BigNumberish];
|
|
352
|
+
type OutputTuple = [token: string, amount: bigint];
|
|
260
353
|
interface OutputObject {
|
|
261
|
-
|
|
262
|
-
|
|
354
|
+
token: string;
|
|
355
|
+
amount: bigint;
|
|
263
356
|
}
|
|
264
357
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
265
358
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
266
359
|
type Log = TypedEventLog<Event>;
|
|
267
360
|
type LogDescription = TypedLogDescription<Event>;
|
|
268
361
|
}
|
|
269
|
-
export declare namespace
|
|
270
|
-
type InputTuple = [
|
|
271
|
-
type OutputTuple = [
|
|
362
|
+
export declare namespace RewardTokenAddedEvent {
|
|
363
|
+
type InputTuple = [token: AddressLike, addedBy: AddressLike];
|
|
364
|
+
type OutputTuple = [token: string, addedBy: string];
|
|
272
365
|
interface OutputObject {
|
|
273
|
-
|
|
366
|
+
token: string;
|
|
367
|
+
addedBy: string;
|
|
274
368
|
}
|
|
275
369
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
276
370
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
277
371
|
type Log = TypedEventLog<Event>;
|
|
278
372
|
type LogDescription = TypedLogDescription<Event>;
|
|
279
373
|
}
|
|
280
|
-
export declare namespace
|
|
281
|
-
type InputTuple = [
|
|
282
|
-
|
|
283
|
-
reward: BigNumberish,
|
|
284
|
-
rewardRate: BigNumberish
|
|
285
|
-
];
|
|
286
|
-
type OutputTuple = [token: string, reward: bigint, rewardRate: bigint];
|
|
374
|
+
export declare namespace RewardTokenRemovalCanceledEvent {
|
|
375
|
+
type InputTuple = [token: AddressLike];
|
|
376
|
+
type OutputTuple = [token: string];
|
|
287
377
|
interface OutputObject {
|
|
288
378
|
token: string;
|
|
289
|
-
reward: bigint;
|
|
290
|
-
rewardRate: bigint;
|
|
291
379
|
}
|
|
292
380
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
293
381
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
294
382
|
type Log = TypedEventLog<Event>;
|
|
295
383
|
type LogDescription = TypedLogDescription<Event>;
|
|
296
384
|
}
|
|
297
|
-
export declare namespace
|
|
385
|
+
export declare namespace RewardTokenRemovalCooldownUpdatedEvent {
|
|
386
|
+
type InputTuple = [cooldown: BigNumberish];
|
|
387
|
+
type OutputTuple = [cooldown: bigint];
|
|
388
|
+
interface OutputObject {
|
|
389
|
+
cooldown: bigint;
|
|
390
|
+
}
|
|
391
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
392
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
393
|
+
type Log = TypedEventLog<Event>;
|
|
394
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
395
|
+
}
|
|
396
|
+
export declare namespace RewardTokenRemovalInitiatedEvent {
|
|
298
397
|
type InputTuple = [
|
|
299
398
|
token: AddressLike,
|
|
300
|
-
|
|
301
|
-
reward: BigNumberish
|
|
399
|
+
removalAvailableAt: BigNumberish
|
|
302
400
|
];
|
|
303
|
-
type OutputTuple = [token: string,
|
|
401
|
+
type OutputTuple = [token: string, removalAvailableAt: bigint];
|
|
304
402
|
interface OutputObject {
|
|
305
403
|
token: string;
|
|
306
|
-
|
|
307
|
-
reward: bigint;
|
|
404
|
+
removalAvailableAt: bigint;
|
|
308
405
|
}
|
|
309
406
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
310
407
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
311
408
|
type Log = TypedEventLog<Event>;
|
|
312
409
|
type LogDescription = TypedLogDescription<Event>;
|
|
313
410
|
}
|
|
314
|
-
export declare namespace
|
|
411
|
+
export declare namespace RewardTokenRemovedEvent {
|
|
315
412
|
type InputTuple = [token: AddressLike];
|
|
316
413
|
type OutputTuple = [token: string];
|
|
317
414
|
interface OutputObject {
|
|
@@ -322,11 +419,12 @@ export declare namespace RewardTokenAddedEvent {
|
|
|
322
419
|
type Log = TypedEventLog<Event>;
|
|
323
420
|
type LogDescription = TypedLogDescription<Event>;
|
|
324
421
|
}
|
|
325
|
-
export declare namespace
|
|
326
|
-
type InputTuple = [
|
|
327
|
-
type OutputTuple = [
|
|
422
|
+
export declare namespace TimePerBlockUpdatedEvent {
|
|
423
|
+
type InputTuple = [oldValue: BigNumberish, newValue: BigNumberish];
|
|
424
|
+
type OutputTuple = [oldValue: bigint, newValue: bigint];
|
|
328
425
|
interface OutputObject {
|
|
329
|
-
|
|
426
|
+
oldValue: bigint;
|
|
427
|
+
newValue: bigint;
|
|
330
428
|
}
|
|
331
429
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
332
430
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -350,17 +448,11 @@ export declare namespace TransferEvent {
|
|
|
350
448
|
type Log = TypedEventLog<Event>;
|
|
351
449
|
type LogDescription = TypedLogDescription<Event>;
|
|
352
450
|
}
|
|
353
|
-
export declare namespace
|
|
354
|
-
type InputTuple = [
|
|
355
|
-
|
|
356
|
-
proposalId: BigNumberish,
|
|
357
|
-
power: BigNumberish
|
|
358
|
-
];
|
|
359
|
-
type OutputTuple = [voter: string, proposalId: bigint, power: bigint];
|
|
451
|
+
export declare namespace TreasuryUpdatedEvent {
|
|
452
|
+
type InputTuple = [newTreasury: AddressLike];
|
|
453
|
+
type OutputTuple = [newTreasury: string];
|
|
360
454
|
interface OutputObject {
|
|
361
|
-
|
|
362
|
-
proposalId: bigint;
|
|
363
|
-
power: bigint;
|
|
455
|
+
newTreasury: string;
|
|
364
456
|
}
|
|
365
457
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
366
458
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -411,53 +503,101 @@ export interface IveRAACToken extends BaseContract {
|
|
|
411
503
|
], [
|
|
412
504
|
bigint
|
|
413
505
|
], "view">;
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
506
|
+
claimReward: TypedContractMethod<[
|
|
507
|
+
_token: AddressLike,
|
|
508
|
+
maxDistributions: BigNumberish
|
|
417
509
|
], [
|
|
418
|
-
|
|
419
|
-
], "
|
|
510
|
+
void
|
|
511
|
+
], "nonpayable">;
|
|
420
512
|
extend: TypedContractMethod<[
|
|
421
|
-
|
|
513
|
+
fromEpochEnd: BigNumberish,
|
|
514
|
+
addEpochs: BigNumberish
|
|
515
|
+
], [
|
|
516
|
+
void
|
|
517
|
+
], "nonpayable">;
|
|
518
|
+
finalizeRemoveRewardToken: TypedContractMethod<[
|
|
519
|
+
token: AddressLike
|
|
422
520
|
], [
|
|
423
521
|
void
|
|
424
522
|
], "nonpayable">;
|
|
425
|
-
|
|
426
|
-
|
|
523
|
+
getEffectiveLockEnd: TypedContractMethod<[
|
|
524
|
+
user: AddressLike
|
|
525
|
+
], [
|
|
526
|
+
bigint
|
|
527
|
+
], "view">;
|
|
528
|
+
getGlobalLockInfo: TypedContractMethod<[
|
|
529
|
+
], [
|
|
530
|
+
[
|
|
531
|
+
bigint,
|
|
532
|
+
bigint,
|
|
533
|
+
bigint
|
|
534
|
+
] & {
|
|
535
|
+
totalLocked: bigint;
|
|
536
|
+
maxLockEpochs: bigint;
|
|
537
|
+
epochDuration: bigint;
|
|
538
|
+
}
|
|
539
|
+
], "view">;
|
|
540
|
+
getLocks: TypedContractMethod<[
|
|
427
541
|
account: AddressLike
|
|
428
542
|
], [
|
|
429
|
-
IveRAACToken.
|
|
543
|
+
IveRAACToken.LockedBalanceStructOutput[]
|
|
544
|
+
], "view">;
|
|
545
|
+
getMaxLockEnd: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
546
|
+
getMaxUnclaimedDistributions: TypedContractMethod<[
|
|
547
|
+
_user: AddressLike,
|
|
548
|
+
_token: AddressLike
|
|
549
|
+
], [
|
|
550
|
+
bigint
|
|
430
551
|
], "view">;
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
552
|
+
getMinLockEnd: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
553
|
+
getRewardTokens: TypedContractMethod<[], [string[]], "view">;
|
|
554
|
+
increase: TypedContractMethod<[
|
|
555
|
+
amount: BigNumberish,
|
|
556
|
+
epoch: BigNumberish
|
|
557
|
+
], [
|
|
558
|
+
void
|
|
559
|
+
], "nonpayable">;
|
|
560
|
+
initiateRemoveRewardToken: TypedContractMethod<[
|
|
561
|
+
token: AddressLike
|
|
562
|
+
], [
|
|
563
|
+
void
|
|
564
|
+
], "nonpayable">;
|
|
436
565
|
lock: TypedContractMethod<[
|
|
437
566
|
amount: BigNumberish,
|
|
438
|
-
|
|
567
|
+
epochs: BigNumberish
|
|
439
568
|
], [
|
|
440
569
|
void
|
|
441
570
|
], "nonpayable">;
|
|
571
|
+
lockedBalanceOf: TypedContractMethod<[
|
|
572
|
+
account: AddressLike
|
|
573
|
+
], [
|
|
574
|
+
bigint
|
|
575
|
+
], "view">;
|
|
576
|
+
pause: TypedContractMethod<[], [void], "nonpayable">;
|
|
577
|
+
ragequitRequests: TypedContractMethod<[
|
|
578
|
+
user: AddressLike
|
|
579
|
+
], [
|
|
580
|
+
IveRAACToken.RagequitRequestStructOutput
|
|
581
|
+
], "view">;
|
|
442
582
|
rawBalanceOf: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
443
583
|
rawTotalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
444
|
-
|
|
445
|
-
|
|
584
|
+
setMinLockAmount: TypedContractMethod<[
|
|
585
|
+
_minLockAmount: BigNumberish
|
|
446
586
|
], [
|
|
447
587
|
void
|
|
448
588
|
], "nonpayable">;
|
|
449
|
-
|
|
450
|
-
|
|
589
|
+
setMinRewardDistributionAmount: TypedContractMethod<[
|
|
590
|
+
minAmount: BigNumberish
|
|
451
591
|
], [
|
|
452
592
|
void
|
|
453
593
|
], "nonpayable">;
|
|
454
|
-
|
|
455
|
-
|
|
594
|
+
setRewardTokenRemovalCooldown: TypedContractMethod<[
|
|
595
|
+
cooldown: BigNumberish
|
|
456
596
|
], [
|
|
457
597
|
void
|
|
458
598
|
], "nonpayable">;
|
|
459
|
-
|
|
460
|
-
|
|
599
|
+
setTimePerBlock: TypedContractMethod<[
|
|
600
|
+
timePerBlock: BigNumberish
|
|
461
601
|
], [
|
|
462
602
|
void
|
|
463
603
|
], "nonpayable">;
|
|
@@ -480,7 +620,8 @@ export interface IveRAACToken extends BaseContract {
|
|
|
480
620
|
], [
|
|
481
621
|
boolean
|
|
482
622
|
], "nonpayable">;
|
|
483
|
-
|
|
623
|
+
unpause: TypedContractMethod<[], [void], "nonpayable">;
|
|
624
|
+
withdraw: TypedContractMethod<[], [bigint], "nonpayable">;
|
|
484
625
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
485
626
|
getFunction(nameOrSignature: "allowance"): TypedContractMethod<[
|
|
486
627
|
owner: AddressLike,
|
|
@@ -501,36 +642,72 @@ export interface IveRAACToken extends BaseContract {
|
|
|
501
642
|
], [
|
|
502
643
|
bigint
|
|
503
644
|
], "view">;
|
|
504
|
-
getFunction(nameOrSignature: "
|
|
505
|
-
|
|
506
|
-
|
|
645
|
+
getFunction(nameOrSignature: "claimReward"): TypedContractMethod<[
|
|
646
|
+
_token: AddressLike,
|
|
647
|
+
maxDistributions: BigNumberish
|
|
507
648
|
], [
|
|
508
|
-
|
|
649
|
+
void
|
|
650
|
+
], "nonpayable">;
|
|
651
|
+
getFunction(nameOrSignature: "extend"): TypedContractMethod<[
|
|
652
|
+
fromEpochEnd: BigNumberish,
|
|
653
|
+
addEpochs: BigNumberish
|
|
654
|
+
], [
|
|
655
|
+
void
|
|
656
|
+
], "nonpayable">;
|
|
657
|
+
getFunction(nameOrSignature: "finalizeRemoveRewardToken"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
|
|
658
|
+
getFunction(nameOrSignature: "getEffectiveLockEnd"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
659
|
+
getFunction(nameOrSignature: "getGlobalLockInfo"): TypedContractMethod<[
|
|
660
|
+
], [
|
|
661
|
+
[
|
|
662
|
+
bigint,
|
|
663
|
+
bigint,
|
|
664
|
+
bigint
|
|
665
|
+
] & {
|
|
666
|
+
totalLocked: bigint;
|
|
667
|
+
maxLockEpochs: bigint;
|
|
668
|
+
epochDuration: bigint;
|
|
669
|
+
}
|
|
509
670
|
], "view">;
|
|
510
|
-
getFunction(nameOrSignature: "
|
|
511
|
-
getFunction(nameOrSignature: "getLockEndTime"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
512
|
-
getFunction(nameOrSignature: "getLockPosition"): TypedContractMethod<[
|
|
671
|
+
getFunction(nameOrSignature: "getLocks"): TypedContractMethod<[
|
|
513
672
|
account: AddressLike
|
|
514
673
|
], [
|
|
515
|
-
IveRAACToken.
|
|
674
|
+
IveRAACToken.LockedBalanceStructOutput[]
|
|
675
|
+
], "view">;
|
|
676
|
+
getFunction(nameOrSignature: "getMaxLockEnd"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
677
|
+
getFunction(nameOrSignature: "getMaxUnclaimedDistributions"): TypedContractMethod<[
|
|
678
|
+
_user: AddressLike,
|
|
679
|
+
_token: AddressLike
|
|
680
|
+
], [
|
|
681
|
+
bigint
|
|
516
682
|
], "view">;
|
|
517
|
-
getFunction(nameOrSignature: "
|
|
518
|
-
getFunction(nameOrSignature: "
|
|
519
|
-
getFunction(nameOrSignature: "
|
|
520
|
-
|
|
521
|
-
|
|
683
|
+
getFunction(nameOrSignature: "getMinLockEnd"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
684
|
+
getFunction(nameOrSignature: "getRewardTokens"): TypedContractMethod<[], [string[]], "view">;
|
|
685
|
+
getFunction(nameOrSignature: "increase"): TypedContractMethod<[
|
|
686
|
+
amount: BigNumberish,
|
|
687
|
+
epoch: BigNumberish
|
|
688
|
+
], [
|
|
689
|
+
void
|
|
690
|
+
], "nonpayable">;
|
|
691
|
+
getFunction(nameOrSignature: "initiateRemoveRewardToken"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
|
|
522
692
|
getFunction(nameOrSignature: "lock"): TypedContractMethod<[
|
|
523
693
|
amount: BigNumberish,
|
|
524
|
-
|
|
694
|
+
epochs: BigNumberish
|
|
525
695
|
], [
|
|
526
696
|
void
|
|
527
697
|
], "nonpayable">;
|
|
698
|
+
getFunction(nameOrSignature: "lockedBalanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
699
|
+
getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
700
|
+
getFunction(nameOrSignature: "ragequitRequests"): TypedContractMethod<[
|
|
701
|
+
user: AddressLike
|
|
702
|
+
], [
|
|
703
|
+
IveRAACToken.RagequitRequestStructOutput
|
|
704
|
+
], "view">;
|
|
528
705
|
getFunction(nameOrSignature: "rawBalanceOf"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
529
706
|
getFunction(nameOrSignature: "rawTotalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
530
|
-
getFunction(nameOrSignature: "
|
|
531
|
-
getFunction(nameOrSignature: "
|
|
532
|
-
getFunction(nameOrSignature: "
|
|
533
|
-
getFunction(nameOrSignature: "
|
|
707
|
+
getFunction(nameOrSignature: "setMinLockAmount"): TypedContractMethod<[_minLockAmount: BigNumberish], [void], "nonpayable">;
|
|
708
|
+
getFunction(nameOrSignature: "setMinRewardDistributionAmount"): TypedContractMethod<[minAmount: BigNumberish], [void], "nonpayable">;
|
|
709
|
+
getFunction(nameOrSignature: "setRewardTokenRemovalCooldown"): TypedContractMethod<[cooldown: BigNumberish], [void], "nonpayable">;
|
|
710
|
+
getFunction(nameOrSignature: "setTimePerBlock"): TypedContractMethod<[timePerBlock: BigNumberish], [void], "nonpayable">;
|
|
534
711
|
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
535
712
|
getFunction(nameOrSignature: "totalSupplyAt"): TypedContractMethod<[blockNumber: BigNumberish], [bigint], "view">;
|
|
536
713
|
getFunction(nameOrSignature: "transfer"): TypedContractMethod<[
|
|
@@ -546,75 +723,76 @@ export interface IveRAACToken extends BaseContract {
|
|
|
546
723
|
], [
|
|
547
724
|
boolean
|
|
548
725
|
], "nonpayable">;
|
|
549
|
-
getFunction(nameOrSignature: "
|
|
726
|
+
getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
727
|
+
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[], [bigint], "nonpayable">;
|
|
550
728
|
getEvent(key: "Approval"): TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
551
|
-
getEvent(key: "EmergencyActionCancelled"): TypedContractEvent<EmergencyActionCancelledEvent.InputTuple, EmergencyActionCancelledEvent.OutputTuple, EmergencyActionCancelledEvent.OutputObject>;
|
|
552
|
-
getEvent(key: "EmergencyActionScheduled"): TypedContractEvent<EmergencyActionScheduledEvent.InputTuple, EmergencyActionScheduledEvent.OutputTuple, EmergencyActionScheduledEvent.OutputObject>;
|
|
553
|
-
getEvent(key: "EmergencyUnlockEnabled"): TypedContractEvent<EmergencyUnlockEnabledEvent.InputTuple, EmergencyUnlockEnabledEvent.OutputTuple, EmergencyUnlockEnabledEvent.OutputObject>;
|
|
554
|
-
getEvent(key: "EmergencyUnlockScheduled"): TypedContractEvent<EmergencyUnlockScheduledEvent.InputTuple, EmergencyUnlockScheduledEvent.OutputTuple, EmergencyUnlockScheduledEvent.OutputObject>;
|
|
555
|
-
getEvent(key: "EmergencyWithdrawEnabled"): TypedContractEvent<EmergencyWithdrawEnabledEvent.InputTuple, EmergencyWithdrawEnabledEvent.OutputTuple, EmergencyWithdrawEnabledEvent.OutputObject>;
|
|
556
|
-
getEvent(key: "EmergencyWithdrawn"): TypedContractEvent<EmergencyWithdrawnEvent.InputTuple, EmergencyWithdrawnEvent.OutputTuple, EmergencyWithdrawnEvent.OutputObject>;
|
|
557
|
-
getEvent(key: "LockCreated"): TypedContractEvent<LockCreatedEvent.InputTuple, LockCreatedEvent.OutputTuple, LockCreatedEvent.OutputObject>;
|
|
558
729
|
getEvent(key: "LockExtended"): TypedContractEvent<LockExtendedEvent.InputTuple, LockExtendedEvent.OutputTuple, LockExtendedEvent.OutputObject>;
|
|
559
730
|
getEvent(key: "LockIncreased"): TypedContractEvent<LockIncreasedEvent.InputTuple, LockIncreasedEvent.OutputTuple, LockIncreasedEvent.OutputObject>;
|
|
560
731
|
getEvent(key: "Locked"): TypedContractEvent<LockedEvent.InputTuple, LockedEvent.OutputTuple, LockedEvent.OutputObject>;
|
|
561
|
-
getEvent(key: "
|
|
562
|
-
getEvent(key: "
|
|
563
|
-
getEvent(key: "
|
|
564
|
-
getEvent(key: "
|
|
565
|
-
getEvent(key: "
|
|
732
|
+
getEvent(key: "MinRewardDistributionAmountUpdated"): TypedContractEvent<MinRewardDistributionAmountUpdatedEvent.InputTuple, MinRewardDistributionAmountUpdatedEvent.OutputTuple, MinRewardDistributionAmountUpdatedEvent.OutputObject>;
|
|
733
|
+
getEvent(key: "MinimumLockAmountUpdated"): TypedContractEvent<MinimumLockAmountUpdatedEvent.InputTuple, MinimumLockAmountUpdatedEvent.OutputTuple, MinimumLockAmountUpdatedEvent.OutputObject>;
|
|
734
|
+
getEvent(key: "RagequitEpochsUpdated"): TypedContractEvent<RagequitEpochsUpdatedEvent.InputTuple, RagequitEpochsUpdatedEvent.OutputTuple, RagequitEpochsUpdatedEvent.OutputObject>;
|
|
735
|
+
getEvent(key: "RagequitFinalized"): TypedContractEvent<RagequitFinalizedEvent.InputTuple, RagequitFinalizedEvent.OutputTuple, RagequitFinalizedEvent.OutputObject>;
|
|
736
|
+
getEvent(key: "RagequitInitiatedAll"): TypedContractEvent<RagequitInitiatedAllEvent.InputTuple, RagequitInitiatedAllEvent.OutputTuple, RagequitInitiatedAllEvent.OutputObject>;
|
|
737
|
+
getEvent(key: "RagequitLockInitiated"): TypedContractEvent<RagequitLockInitiatedEvent.InputTuple, RagequitLockInitiatedEvent.OutputTuple, RagequitLockInitiatedEvent.OutputObject>;
|
|
738
|
+
getEvent(key: "RewardAccumulated"): TypedContractEvent<RewardAccumulatedEvent.InputTuple, RewardAccumulatedEvent.OutputTuple, RewardAccumulatedEvent.OutputObject>;
|
|
566
739
|
getEvent(key: "RewardNotified"): TypedContractEvent<RewardNotifiedEvent.InputTuple, RewardNotifiedEvent.OutputTuple, RewardNotifiedEvent.OutputObject>;
|
|
567
740
|
getEvent(key: "RewardPaid"): TypedContractEvent<RewardPaidEvent.InputTuple, RewardPaidEvent.OutputTuple, RewardPaidEvent.OutputObject>;
|
|
741
|
+
getEvent(key: "RewardRedirectedToTreasury"): TypedContractEvent<RewardRedirectedToTreasuryEvent.InputTuple, RewardRedirectedToTreasuryEvent.OutputTuple, RewardRedirectedToTreasuryEvent.OutputObject>;
|
|
568
742
|
getEvent(key: "RewardTokenAdded"): TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
743
|
+
getEvent(key: "RewardTokenRemovalCanceled"): TypedContractEvent<RewardTokenRemovalCanceledEvent.InputTuple, RewardTokenRemovalCanceledEvent.OutputTuple, RewardTokenRemovalCanceledEvent.OutputObject>;
|
|
744
|
+
getEvent(key: "RewardTokenRemovalCooldownUpdated"): TypedContractEvent<RewardTokenRemovalCooldownUpdatedEvent.InputTuple, RewardTokenRemovalCooldownUpdatedEvent.OutputTuple, RewardTokenRemovalCooldownUpdatedEvent.OutputObject>;
|
|
745
|
+
getEvent(key: "RewardTokenRemovalInitiated"): TypedContractEvent<RewardTokenRemovalInitiatedEvent.InputTuple, RewardTokenRemovalInitiatedEvent.OutputTuple, RewardTokenRemovalInitiatedEvent.OutputObject>;
|
|
569
746
|
getEvent(key: "RewardTokenRemoved"): TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
747
|
+
getEvent(key: "TimePerBlockUpdated"): TypedContractEvent<TimePerBlockUpdatedEvent.InputTuple, TimePerBlockUpdatedEvent.OutputTuple, TimePerBlockUpdatedEvent.OutputObject>;
|
|
570
748
|
getEvent(key: "Transfer"): TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
571
|
-
getEvent(key: "
|
|
749
|
+
getEvent(key: "TreasuryUpdated"): TypedContractEvent<TreasuryUpdatedEvent.InputTuple, TreasuryUpdatedEvent.OutputTuple, TreasuryUpdatedEvent.OutputObject>;
|
|
572
750
|
getEvent(key: "Withdrawn"): TypedContractEvent<WithdrawnEvent.InputTuple, WithdrawnEvent.OutputTuple, WithdrawnEvent.OutputObject>;
|
|
573
751
|
filters: {
|
|
574
752
|
"Approval(address,address,uint256)": TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
575
753
|
Approval: TypedContractEvent<ApprovalEvent.InputTuple, ApprovalEvent.OutputTuple, ApprovalEvent.OutputObject>;
|
|
576
|
-
"
|
|
577
|
-
EmergencyActionCancelled: TypedContractEvent<EmergencyActionCancelledEvent.InputTuple, EmergencyActionCancelledEvent.OutputTuple, EmergencyActionCancelledEvent.OutputObject>;
|
|
578
|
-
"EmergencyActionScheduled(bytes32,uint256)": TypedContractEvent<EmergencyActionScheduledEvent.InputTuple, EmergencyActionScheduledEvent.OutputTuple, EmergencyActionScheduledEvent.OutputObject>;
|
|
579
|
-
EmergencyActionScheduled: TypedContractEvent<EmergencyActionScheduledEvent.InputTuple, EmergencyActionScheduledEvent.OutputTuple, EmergencyActionScheduledEvent.OutputObject>;
|
|
580
|
-
"EmergencyUnlockEnabled()": TypedContractEvent<EmergencyUnlockEnabledEvent.InputTuple, EmergencyUnlockEnabledEvent.OutputTuple, EmergencyUnlockEnabledEvent.OutputObject>;
|
|
581
|
-
EmergencyUnlockEnabled: TypedContractEvent<EmergencyUnlockEnabledEvent.InputTuple, EmergencyUnlockEnabledEvent.OutputTuple, EmergencyUnlockEnabledEvent.OutputObject>;
|
|
582
|
-
"EmergencyUnlockScheduled()": TypedContractEvent<EmergencyUnlockScheduledEvent.InputTuple, EmergencyUnlockScheduledEvent.OutputTuple, EmergencyUnlockScheduledEvent.OutputObject>;
|
|
583
|
-
EmergencyUnlockScheduled: TypedContractEvent<EmergencyUnlockScheduledEvent.InputTuple, EmergencyUnlockScheduledEvent.OutputTuple, EmergencyUnlockScheduledEvent.OutputObject>;
|
|
584
|
-
"EmergencyWithdrawEnabled(uint256)": TypedContractEvent<EmergencyWithdrawEnabledEvent.InputTuple, EmergencyWithdrawEnabledEvent.OutputTuple, EmergencyWithdrawEnabledEvent.OutputObject>;
|
|
585
|
-
EmergencyWithdrawEnabled: TypedContractEvent<EmergencyWithdrawEnabledEvent.InputTuple, EmergencyWithdrawEnabledEvent.OutputTuple, EmergencyWithdrawEnabledEvent.OutputObject>;
|
|
586
|
-
"EmergencyWithdrawn(address,uint256)": TypedContractEvent<EmergencyWithdrawnEvent.InputTuple, EmergencyWithdrawnEvent.OutputTuple, EmergencyWithdrawnEvent.OutputObject>;
|
|
587
|
-
EmergencyWithdrawn: TypedContractEvent<EmergencyWithdrawnEvent.InputTuple, EmergencyWithdrawnEvent.OutputTuple, EmergencyWithdrawnEvent.OutputObject>;
|
|
588
|
-
"LockCreated(address,uint256,uint256)": TypedContractEvent<LockCreatedEvent.InputTuple, LockCreatedEvent.OutputTuple, LockCreatedEvent.OutputObject>;
|
|
589
|
-
LockCreated: TypedContractEvent<LockCreatedEvent.InputTuple, LockCreatedEvent.OutputTuple, LockCreatedEvent.OutputObject>;
|
|
590
|
-
"LockExtended(address,uint256)": TypedContractEvent<LockExtendedEvent.InputTuple, LockExtendedEvent.OutputTuple, LockExtendedEvent.OutputObject>;
|
|
754
|
+
"LockExtended(address,uint256,uint256,uint256)": TypedContractEvent<LockExtendedEvent.InputTuple, LockExtendedEvent.OutputTuple, LockExtendedEvent.OutputObject>;
|
|
591
755
|
LockExtended: TypedContractEvent<LockExtendedEvent.InputTuple, LockExtendedEvent.OutputTuple, LockExtendedEvent.OutputObject>;
|
|
592
756
|
"LockIncreased(address,uint256)": TypedContractEvent<LockIncreasedEvent.InputTuple, LockIncreasedEvent.OutputTuple, LockIncreasedEvent.OutputObject>;
|
|
593
757
|
LockIncreased: TypedContractEvent<LockIncreasedEvent.InputTuple, LockIncreasedEvent.OutputTuple, LockIncreasedEvent.OutputObject>;
|
|
594
|
-
"Locked(address,uint256,
|
|
758
|
+
"Locked(address,uint256,uint40)": TypedContractEvent<LockedEvent.InputTuple, LockedEvent.OutputTuple, LockedEvent.OutputObject>;
|
|
595
759
|
Locked: TypedContractEvent<LockedEvent.InputTuple, LockedEvent.OutputTuple, LockedEvent.OutputObject>;
|
|
596
|
-
"
|
|
597
|
-
|
|
598
|
-
"
|
|
599
|
-
|
|
600
|
-
"
|
|
601
|
-
|
|
602
|
-
"
|
|
603
|
-
|
|
604
|
-
"
|
|
605
|
-
|
|
760
|
+
"MinRewardDistributionAmountUpdated(uint256,uint256)": TypedContractEvent<MinRewardDistributionAmountUpdatedEvent.InputTuple, MinRewardDistributionAmountUpdatedEvent.OutputTuple, MinRewardDistributionAmountUpdatedEvent.OutputObject>;
|
|
761
|
+
MinRewardDistributionAmountUpdated: TypedContractEvent<MinRewardDistributionAmountUpdatedEvent.InputTuple, MinRewardDistributionAmountUpdatedEvent.OutputTuple, MinRewardDistributionAmountUpdatedEvent.OutputObject>;
|
|
762
|
+
"MinimumLockAmountUpdated(uint256,uint256)": TypedContractEvent<MinimumLockAmountUpdatedEvent.InputTuple, MinimumLockAmountUpdatedEvent.OutputTuple, MinimumLockAmountUpdatedEvent.OutputObject>;
|
|
763
|
+
MinimumLockAmountUpdated: TypedContractEvent<MinimumLockAmountUpdatedEvent.InputTuple, MinimumLockAmountUpdatedEvent.OutputTuple, MinimumLockAmountUpdatedEvent.OutputObject>;
|
|
764
|
+
"RagequitEpochsUpdated(uint40,uint40)": TypedContractEvent<RagequitEpochsUpdatedEvent.InputTuple, RagequitEpochsUpdatedEvent.OutputTuple, RagequitEpochsUpdatedEvent.OutputObject>;
|
|
765
|
+
RagequitEpochsUpdated: TypedContractEvent<RagequitEpochsUpdatedEvent.InputTuple, RagequitEpochsUpdatedEvent.OutputTuple, RagequitEpochsUpdatedEvent.OutputObject>;
|
|
766
|
+
"RagequitFinalized(address,address,uint256)": TypedContractEvent<RagequitFinalizedEvent.InputTuple, RagequitFinalizedEvent.OutputTuple, RagequitFinalizedEvent.OutputObject>;
|
|
767
|
+
RagequitFinalized: TypedContractEvent<RagequitFinalizedEvent.InputTuple, RagequitFinalizedEvent.OutputTuple, RagequitFinalizedEvent.OutputObject>;
|
|
768
|
+
"RagequitInitiatedAll(address,uint256,uint256,uint256,uint256)": TypedContractEvent<RagequitInitiatedAllEvent.InputTuple, RagequitInitiatedAllEvent.OutputTuple, RagequitInitiatedAllEvent.OutputObject>;
|
|
769
|
+
RagequitInitiatedAll: TypedContractEvent<RagequitInitiatedAllEvent.InputTuple, RagequitInitiatedAllEvent.OutputTuple, RagequitInitiatedAllEvent.OutputObject>;
|
|
770
|
+
"RagequitLockInitiated(address,uint40,uint256,uint256,uint256,uint256)": TypedContractEvent<RagequitLockInitiatedEvent.InputTuple, RagequitLockInitiatedEvent.OutputTuple, RagequitLockInitiatedEvent.OutputObject>;
|
|
771
|
+
RagequitLockInitiated: TypedContractEvent<RagequitLockInitiatedEvent.InputTuple, RagequitLockInitiatedEvent.OutputTuple, RagequitLockInitiatedEvent.OutputObject>;
|
|
772
|
+
"RewardAccumulated(address,uint256)": TypedContractEvent<RewardAccumulatedEvent.InputTuple, RewardAccumulatedEvent.OutputTuple, RewardAccumulatedEvent.OutputObject>;
|
|
773
|
+
RewardAccumulated: TypedContractEvent<RewardAccumulatedEvent.InputTuple, RewardAccumulatedEvent.OutputTuple, RewardAccumulatedEvent.OutputObject>;
|
|
606
774
|
"RewardNotified(address,uint256,uint256)": TypedContractEvent<RewardNotifiedEvent.InputTuple, RewardNotifiedEvent.OutputTuple, RewardNotifiedEvent.OutputObject>;
|
|
607
775
|
RewardNotified: TypedContractEvent<RewardNotifiedEvent.InputTuple, RewardNotifiedEvent.OutputTuple, RewardNotifiedEvent.OutputObject>;
|
|
608
|
-
"RewardPaid(address,address,uint256)": TypedContractEvent<RewardPaidEvent.InputTuple, RewardPaidEvent.OutputTuple, RewardPaidEvent.OutputObject>;
|
|
776
|
+
"RewardPaid(address,address,uint256,uint256)": TypedContractEvent<RewardPaidEvent.InputTuple, RewardPaidEvent.OutputTuple, RewardPaidEvent.OutputObject>;
|
|
609
777
|
RewardPaid: TypedContractEvent<RewardPaidEvent.InputTuple, RewardPaidEvent.OutputTuple, RewardPaidEvent.OutputObject>;
|
|
610
|
-
"
|
|
778
|
+
"RewardRedirectedToTreasury(address,uint256)": TypedContractEvent<RewardRedirectedToTreasuryEvent.InputTuple, RewardRedirectedToTreasuryEvent.OutputTuple, RewardRedirectedToTreasuryEvent.OutputObject>;
|
|
779
|
+
RewardRedirectedToTreasury: TypedContractEvent<RewardRedirectedToTreasuryEvent.InputTuple, RewardRedirectedToTreasuryEvent.OutputTuple, RewardRedirectedToTreasuryEvent.OutputObject>;
|
|
780
|
+
"RewardTokenAdded(address,address)": TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
611
781
|
RewardTokenAdded: TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
782
|
+
"RewardTokenRemovalCanceled(address)": TypedContractEvent<RewardTokenRemovalCanceledEvent.InputTuple, RewardTokenRemovalCanceledEvent.OutputTuple, RewardTokenRemovalCanceledEvent.OutputObject>;
|
|
783
|
+
RewardTokenRemovalCanceled: TypedContractEvent<RewardTokenRemovalCanceledEvent.InputTuple, RewardTokenRemovalCanceledEvent.OutputTuple, RewardTokenRemovalCanceledEvent.OutputObject>;
|
|
784
|
+
"RewardTokenRemovalCooldownUpdated(uint256)": TypedContractEvent<RewardTokenRemovalCooldownUpdatedEvent.InputTuple, RewardTokenRemovalCooldownUpdatedEvent.OutputTuple, RewardTokenRemovalCooldownUpdatedEvent.OutputObject>;
|
|
785
|
+
RewardTokenRemovalCooldownUpdated: TypedContractEvent<RewardTokenRemovalCooldownUpdatedEvent.InputTuple, RewardTokenRemovalCooldownUpdatedEvent.OutputTuple, RewardTokenRemovalCooldownUpdatedEvent.OutputObject>;
|
|
786
|
+
"RewardTokenRemovalInitiated(address,uint256)": TypedContractEvent<RewardTokenRemovalInitiatedEvent.InputTuple, RewardTokenRemovalInitiatedEvent.OutputTuple, RewardTokenRemovalInitiatedEvent.OutputObject>;
|
|
787
|
+
RewardTokenRemovalInitiated: TypedContractEvent<RewardTokenRemovalInitiatedEvent.InputTuple, RewardTokenRemovalInitiatedEvent.OutputTuple, RewardTokenRemovalInitiatedEvent.OutputObject>;
|
|
612
788
|
"RewardTokenRemoved(address)": TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
613
789
|
RewardTokenRemoved: TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
790
|
+
"TimePerBlockUpdated(uint256,uint256)": TypedContractEvent<TimePerBlockUpdatedEvent.InputTuple, TimePerBlockUpdatedEvent.OutputTuple, TimePerBlockUpdatedEvent.OutputObject>;
|
|
791
|
+
TimePerBlockUpdated: TypedContractEvent<TimePerBlockUpdatedEvent.InputTuple, TimePerBlockUpdatedEvent.OutputTuple, TimePerBlockUpdatedEvent.OutputObject>;
|
|
614
792
|
"Transfer(address,address,uint256)": TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
615
793
|
Transfer: TypedContractEvent<TransferEvent.InputTuple, TransferEvent.OutputTuple, TransferEvent.OutputObject>;
|
|
616
|
-
"
|
|
617
|
-
|
|
794
|
+
"TreasuryUpdated(address)": TypedContractEvent<TreasuryUpdatedEvent.InputTuple, TreasuryUpdatedEvent.OutputTuple, TreasuryUpdatedEvent.OutputObject>;
|
|
795
|
+
TreasuryUpdated: TypedContractEvent<TreasuryUpdatedEvent.InputTuple, TreasuryUpdatedEvent.OutputTuple, TreasuryUpdatedEvent.OutputObject>;
|
|
618
796
|
"Withdrawn(address,uint256)": TypedContractEvent<WithdrawnEvent.InputTuple, WithdrawnEvent.OutputTuple, WithdrawnEvent.OutputObject>;
|
|
619
797
|
Withdrawn: TypedContractEvent<WithdrawnEvent.InputTuple, WithdrawnEvent.OutputTuple, WithdrawnEvent.OutputObject>;
|
|
620
798
|
};
|