@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
|
@@ -29,14 +29,6 @@ export declare class BaseGauge__factory {
|
|
|
29
29
|
readonly inputs: readonly [];
|
|
30
30
|
readonly name: "DistributorNotAdded";
|
|
31
31
|
readonly type: "error";
|
|
32
|
-
}, {
|
|
33
|
-
readonly inputs: readonly [];
|
|
34
|
-
readonly name: "DistributorNotApproved";
|
|
35
|
-
readonly type: "error";
|
|
36
|
-
}, {
|
|
37
|
-
readonly inputs: readonly [];
|
|
38
|
-
readonly name: "EmissionCapExceeded";
|
|
39
|
-
readonly type: "error";
|
|
40
32
|
}, {
|
|
41
33
|
readonly inputs: readonly [];
|
|
42
34
|
readonly name: "EnforcedPause";
|
|
@@ -55,11 +47,7 @@ export declare class BaseGauge__factory {
|
|
|
55
47
|
readonly type: "error";
|
|
56
48
|
}, {
|
|
57
49
|
readonly inputs: readonly [];
|
|
58
|
-
readonly name: "
|
|
59
|
-
readonly type: "error";
|
|
60
|
-
}, {
|
|
61
|
-
readonly inputs: readonly [];
|
|
62
|
-
readonly name: "InsufficientRewardTokenBalance";
|
|
50
|
+
readonly name: "GaugeNotStarted";
|
|
63
51
|
readonly type: "error";
|
|
64
52
|
}, {
|
|
65
53
|
readonly inputs: readonly [];
|
|
@@ -73,37 +61,13 @@ export declare class BaseGauge__factory {
|
|
|
73
61
|
readonly inputs: readonly [];
|
|
74
62
|
readonly name: "InvalidAmount";
|
|
75
63
|
readonly type: "error";
|
|
76
|
-
}, {
|
|
77
|
-
readonly inputs: readonly [];
|
|
78
|
-
readonly name: "InvalidBoostRatio";
|
|
79
|
-
readonly type: "error";
|
|
80
|
-
}, {
|
|
81
|
-
readonly inputs: readonly [];
|
|
82
|
-
readonly name: "InvalidCheckpointIndex";
|
|
83
|
-
readonly type: "error";
|
|
84
64
|
}, {
|
|
85
65
|
readonly inputs: readonly [];
|
|
86
66
|
readonly name: "InvalidDistributor";
|
|
87
67
|
readonly type: "error";
|
|
88
68
|
}, {
|
|
89
69
|
readonly inputs: readonly [];
|
|
90
|
-
readonly name: "
|
|
91
|
-
readonly type: "error";
|
|
92
|
-
}, {
|
|
93
|
-
readonly inputs: readonly [];
|
|
94
|
-
readonly name: "InvalidToken";
|
|
95
|
-
readonly type: "error";
|
|
96
|
-
}, {
|
|
97
|
-
readonly inputs: readonly [];
|
|
98
|
-
readonly name: "InvalidWeight";
|
|
99
|
-
readonly type: "error";
|
|
100
|
-
}, {
|
|
101
|
-
readonly inputs: readonly [];
|
|
102
|
-
readonly name: "NoDistributorSet";
|
|
103
|
-
readonly type: "error";
|
|
104
|
-
}, {
|
|
105
|
-
readonly inputs: readonly [];
|
|
106
|
-
readonly name: "NoVotingPower";
|
|
70
|
+
readonly name: "MaxExtraRewardsReached";
|
|
107
71
|
readonly type: "error";
|
|
108
72
|
}, {
|
|
109
73
|
readonly inputs: readonly [];
|
|
@@ -111,20 +75,12 @@ export declare class BaseGauge__factory {
|
|
|
111
75
|
readonly type: "error";
|
|
112
76
|
}, {
|
|
113
77
|
readonly inputs: readonly [];
|
|
114
|
-
readonly name: "
|
|
115
|
-
readonly type: "error";
|
|
116
|
-
}, {
|
|
117
|
-
readonly inputs: readonly [];
|
|
118
|
-
readonly name: "PeriodNotElapsed";
|
|
78
|
+
readonly name: "NotSupportedToken";
|
|
119
79
|
readonly type: "error";
|
|
120
80
|
}, {
|
|
121
81
|
readonly inputs: readonly [];
|
|
122
82
|
readonly name: "ReentrancyGuardReentrantCall";
|
|
123
83
|
readonly type: "error";
|
|
124
|
-
}, {
|
|
125
|
-
readonly inputs: readonly [];
|
|
126
|
-
readonly name: "RewardCapExceeded";
|
|
127
|
-
readonly type: "error";
|
|
128
84
|
}, {
|
|
129
85
|
readonly inputs: readonly [{
|
|
130
86
|
readonly internalType: "address";
|
|
@@ -133,92 +89,19 @@ export declare class BaseGauge__factory {
|
|
|
133
89
|
}];
|
|
134
90
|
readonly name: "SafeERC20FailedOperation";
|
|
135
91
|
readonly type: "error";
|
|
136
|
-
}, {
|
|
137
|
-
readonly inputs: readonly [];
|
|
138
|
-
readonly name: "TokenAlreadyAdded";
|
|
139
|
-
readonly type: "error";
|
|
140
92
|
}, {
|
|
141
93
|
readonly inputs: readonly [];
|
|
142
94
|
readonly name: "TokenAlreadyInitialized";
|
|
143
95
|
readonly type: "error";
|
|
144
|
-
}, {
|
|
145
|
-
readonly inputs: readonly [];
|
|
146
|
-
readonly name: "TokenNotAdded";
|
|
147
|
-
readonly type: "error";
|
|
148
|
-
}, {
|
|
149
|
-
readonly inputs: readonly [];
|
|
150
|
-
readonly name: "UnauthorizedCaller";
|
|
151
|
-
readonly type: "error";
|
|
152
|
-
}, {
|
|
153
|
-
readonly inputs: readonly [];
|
|
154
|
-
readonly name: "ValueOverflow";
|
|
155
|
-
readonly type: "error";
|
|
156
|
-
}, {
|
|
157
|
-
readonly inputs: readonly [];
|
|
158
|
-
readonly name: "WeightUpdateTooEarly";
|
|
159
|
-
readonly type: "error";
|
|
160
|
-
}, {
|
|
161
|
-
readonly inputs: readonly [];
|
|
162
|
-
readonly name: "ZeroDuration";
|
|
163
|
-
readonly type: "error";
|
|
164
|
-
}, {
|
|
165
|
-
readonly inputs: readonly [];
|
|
166
|
-
readonly name: "ZeroWeight";
|
|
167
|
-
readonly type: "error";
|
|
168
96
|
}, {
|
|
169
97
|
readonly anonymous: false;
|
|
170
98
|
readonly inputs: readonly [{
|
|
171
99
|
readonly indexed: false;
|
|
172
100
|
readonly internalType: "bool";
|
|
173
|
-
readonly name: "
|
|
101
|
+
readonly name: "depositRAACOnClaim";
|
|
174
102
|
readonly type: "bool";
|
|
175
103
|
}];
|
|
176
|
-
readonly name: "
|
|
177
|
-
readonly type: "event";
|
|
178
|
-
}, {
|
|
179
|
-
readonly anonymous: false;
|
|
180
|
-
readonly inputs: readonly [{
|
|
181
|
-
readonly indexed: true;
|
|
182
|
-
readonly internalType: "address";
|
|
183
|
-
readonly name: "user";
|
|
184
|
-
readonly type: "address";
|
|
185
|
-
}, {
|
|
186
|
-
readonly indexed: false;
|
|
187
|
-
readonly internalType: "uint256";
|
|
188
|
-
readonly name: "timestamp";
|
|
189
|
-
readonly type: "uint256";
|
|
190
|
-
}];
|
|
191
|
-
readonly name: "Checkpoint";
|
|
192
|
-
readonly type: "event";
|
|
193
|
-
}, {
|
|
194
|
-
readonly anonymous: false;
|
|
195
|
-
readonly inputs: readonly [{
|
|
196
|
-
readonly indexed: true;
|
|
197
|
-
readonly internalType: "address";
|
|
198
|
-
readonly name: "user";
|
|
199
|
-
readonly type: "address";
|
|
200
|
-
}, {
|
|
201
|
-
readonly indexed: false;
|
|
202
|
-
readonly internalType: "uint256";
|
|
203
|
-
readonly name: "direction";
|
|
204
|
-
readonly type: "uint256";
|
|
205
|
-
}, {
|
|
206
|
-
readonly indexed: false;
|
|
207
|
-
readonly internalType: "uint256";
|
|
208
|
-
readonly name: "votingPower";
|
|
209
|
-
readonly type: "uint256";
|
|
210
|
-
}];
|
|
211
|
-
readonly name: "DirectionVoted";
|
|
212
|
-
readonly type: "event";
|
|
213
|
-
}, {
|
|
214
|
-
readonly anonymous: false;
|
|
215
|
-
readonly inputs: readonly [{
|
|
216
|
-
readonly indexed: false;
|
|
217
|
-
readonly internalType: "uint256";
|
|
218
|
-
readonly name: "newCap";
|
|
219
|
-
readonly type: "uint256";
|
|
220
|
-
}];
|
|
221
|
-
readonly name: "DistributionCapUpdated";
|
|
104
|
+
readonly name: "DepositRAACOnClaimUpdated";
|
|
222
105
|
readonly type: "event";
|
|
223
106
|
}, {
|
|
224
107
|
readonly anonymous: false;
|
|
@@ -263,77 +146,102 @@ export declare class BaseGauge__factory {
|
|
|
263
146
|
}, {
|
|
264
147
|
readonly anonymous: false;
|
|
265
148
|
readonly inputs: readonly [{
|
|
149
|
+
readonly indexed: true;
|
|
150
|
+
readonly internalType: "address";
|
|
151
|
+
readonly name: "token";
|
|
152
|
+
readonly type: "address";
|
|
153
|
+
}, {
|
|
154
|
+
readonly indexed: true;
|
|
155
|
+
readonly internalType: "address";
|
|
156
|
+
readonly name: "user";
|
|
157
|
+
readonly type: "address";
|
|
158
|
+
}, {
|
|
266
159
|
readonly indexed: false;
|
|
267
160
|
readonly internalType: "uint256";
|
|
268
|
-
readonly name: "
|
|
161
|
+
readonly name: "amount";
|
|
269
162
|
readonly type: "uint256";
|
|
270
163
|
}];
|
|
271
|
-
readonly name: "
|
|
164
|
+
readonly name: "ExtraRewardClaimed";
|
|
272
165
|
readonly type: "event";
|
|
273
166
|
}, {
|
|
274
167
|
readonly anonymous: false;
|
|
275
168
|
readonly inputs: readonly [{
|
|
169
|
+
readonly indexed: true;
|
|
170
|
+
readonly internalType: "address";
|
|
171
|
+
readonly name: "token";
|
|
172
|
+
readonly type: "address";
|
|
173
|
+
}, {
|
|
276
174
|
readonly indexed: false;
|
|
277
175
|
readonly internalType: "uint256";
|
|
278
|
-
readonly name: "
|
|
176
|
+
readonly name: "amount";
|
|
279
177
|
readonly type: "uint256";
|
|
280
178
|
}];
|
|
281
|
-
readonly name: "
|
|
179
|
+
readonly name: "ExtraRewardDeposited";
|
|
282
180
|
readonly type: "event";
|
|
283
181
|
}, {
|
|
284
182
|
readonly anonymous: false;
|
|
285
183
|
readonly inputs: readonly [{
|
|
184
|
+
readonly indexed: true;
|
|
185
|
+
readonly internalType: "address";
|
|
186
|
+
readonly name: "token";
|
|
187
|
+
readonly type: "address";
|
|
188
|
+
}, {
|
|
286
189
|
readonly indexed: false;
|
|
287
190
|
readonly internalType: "address";
|
|
288
|
-
readonly name: "
|
|
191
|
+
readonly name: "distributor";
|
|
289
192
|
readonly type: "address";
|
|
290
193
|
}];
|
|
291
|
-
readonly name: "
|
|
194
|
+
readonly name: "ExtraRewardTokenAdded";
|
|
292
195
|
readonly type: "event";
|
|
293
196
|
}, {
|
|
294
197
|
readonly anonymous: false;
|
|
295
198
|
readonly inputs: readonly [{
|
|
296
|
-
readonly indexed:
|
|
297
|
-
readonly internalType: "
|
|
298
|
-
readonly name: "
|
|
299
|
-
readonly type: "
|
|
199
|
+
readonly indexed: true;
|
|
200
|
+
readonly internalType: "address";
|
|
201
|
+
readonly name: "token";
|
|
202
|
+
readonly type: "address";
|
|
300
203
|
}, {
|
|
301
204
|
readonly indexed: false;
|
|
302
205
|
readonly internalType: "uint256";
|
|
303
|
-
readonly name: "
|
|
206
|
+
readonly name: "leftoverAmount";
|
|
304
207
|
readonly type: "uint256";
|
|
305
208
|
}, {
|
|
306
209
|
readonly indexed: false;
|
|
307
210
|
readonly internalType: "uint256";
|
|
308
|
-
readonly name: "
|
|
211
|
+
readonly name: "newRewards";
|
|
309
212
|
readonly type: "uint256";
|
|
310
213
|
}];
|
|
311
|
-
readonly name: "
|
|
214
|
+
readonly name: "LeftoverRewardsIncluded";
|
|
312
215
|
readonly type: "event";
|
|
313
216
|
}, {
|
|
314
217
|
readonly anonymous: false;
|
|
315
218
|
readonly inputs: readonly [{
|
|
316
219
|
readonly indexed: false;
|
|
317
|
-
readonly internalType: "
|
|
318
|
-
readonly name: "
|
|
319
|
-
readonly type: "
|
|
220
|
+
readonly internalType: "address";
|
|
221
|
+
readonly name: "account";
|
|
222
|
+
readonly type: "address";
|
|
320
223
|
}];
|
|
321
|
-
readonly name: "
|
|
224
|
+
readonly name: "Paused";
|
|
322
225
|
readonly type: "event";
|
|
323
226
|
}, {
|
|
324
227
|
readonly anonymous: false;
|
|
325
228
|
readonly inputs: readonly [{
|
|
229
|
+
readonly indexed: true;
|
|
230
|
+
readonly internalType: "address";
|
|
231
|
+
readonly name: "token";
|
|
232
|
+
readonly type: "address";
|
|
233
|
+
}, {
|
|
326
234
|
readonly indexed: false;
|
|
327
235
|
readonly internalType: "uint256";
|
|
328
|
-
readonly name: "
|
|
236
|
+
readonly name: "newRate";
|
|
329
237
|
readonly type: "uint256";
|
|
330
238
|
}, {
|
|
331
239
|
readonly indexed: false;
|
|
332
240
|
readonly internalType: "uint256";
|
|
333
|
-
readonly name: "
|
|
241
|
+
readonly name: "remainingTime";
|
|
334
242
|
readonly type: "uint256";
|
|
335
243
|
}];
|
|
336
|
-
readonly name: "
|
|
244
|
+
readonly name: "RateRecalculated";
|
|
337
245
|
readonly type: "event";
|
|
338
246
|
}, {
|
|
339
247
|
readonly anonymous: false;
|
|
@@ -342,48 +250,48 @@ export declare class BaseGauge__factory {
|
|
|
342
250
|
readonly internalType: "address";
|
|
343
251
|
readonly name: "token";
|
|
344
252
|
readonly type: "address";
|
|
345
|
-
}, {
|
|
346
|
-
readonly indexed: false;
|
|
347
|
-
readonly internalType: "uint256";
|
|
348
|
-
readonly name: "amount";
|
|
349
|
-
readonly type: "uint256";
|
|
350
|
-
}, {
|
|
351
|
-
readonly indexed: false;
|
|
352
|
-
readonly internalType: "uint256";
|
|
353
|
-
readonly name: "rewardRate";
|
|
354
|
-
readonly type: "uint256";
|
|
355
253
|
}];
|
|
356
|
-
readonly name: "
|
|
254
|
+
readonly name: "RewardTokenActivated";
|
|
357
255
|
readonly type: "event";
|
|
358
256
|
}, {
|
|
359
257
|
readonly anonymous: false;
|
|
360
258
|
readonly inputs: readonly [{
|
|
361
259
|
readonly indexed: true;
|
|
362
260
|
readonly internalType: "address";
|
|
363
|
-
readonly name: "
|
|
261
|
+
readonly name: "token";
|
|
364
262
|
readonly type: "address";
|
|
365
|
-
}
|
|
263
|
+
}];
|
|
264
|
+
readonly name: "RewardTokenAdded";
|
|
265
|
+
readonly type: "event";
|
|
266
|
+
}, {
|
|
267
|
+
readonly anonymous: false;
|
|
268
|
+
readonly inputs: readonly [{
|
|
366
269
|
readonly indexed: true;
|
|
367
270
|
readonly internalType: "address";
|
|
368
271
|
readonly name: "token";
|
|
369
272
|
readonly type: "address";
|
|
370
|
-
}, {
|
|
371
|
-
readonly indexed: false;
|
|
372
|
-
readonly internalType: "uint256";
|
|
373
|
-
readonly name: "amount";
|
|
374
|
-
readonly type: "uint256";
|
|
375
273
|
}];
|
|
376
|
-
readonly name: "
|
|
274
|
+
readonly name: "RewardTokenRegistered";
|
|
377
275
|
readonly type: "event";
|
|
378
276
|
}, {
|
|
379
277
|
readonly anonymous: false;
|
|
380
278
|
readonly inputs: readonly [{
|
|
279
|
+
readonly indexed: true;
|
|
280
|
+
readonly internalType: "address";
|
|
281
|
+
readonly name: "user";
|
|
282
|
+
readonly type: "address";
|
|
283
|
+
}, {
|
|
381
284
|
readonly indexed: true;
|
|
382
285
|
readonly internalType: "address";
|
|
383
286
|
readonly name: "token";
|
|
384
287
|
readonly type: "address";
|
|
288
|
+
}, {
|
|
289
|
+
readonly indexed: false;
|
|
290
|
+
readonly internalType: "uint256";
|
|
291
|
+
readonly name: "amount";
|
|
292
|
+
readonly type: "uint256";
|
|
385
293
|
}];
|
|
386
|
-
readonly name: "
|
|
294
|
+
readonly name: "RewardTransferred";
|
|
387
295
|
readonly type: "event";
|
|
388
296
|
}, {
|
|
389
297
|
readonly anonymous: false;
|
|
@@ -460,36 +368,6 @@ export declare class BaseGauge__factory {
|
|
|
460
368
|
}];
|
|
461
369
|
readonly name: "Staked";
|
|
462
370
|
readonly type: "event";
|
|
463
|
-
}, {
|
|
464
|
-
readonly anonymous: false;
|
|
465
|
-
readonly inputs: readonly [{
|
|
466
|
-
readonly indexed: true;
|
|
467
|
-
readonly internalType: "address";
|
|
468
|
-
readonly name: "token";
|
|
469
|
-
readonly type: "address";
|
|
470
|
-
}, {
|
|
471
|
-
readonly indexed: false;
|
|
472
|
-
readonly internalType: "uint256";
|
|
473
|
-
readonly name: "ratio";
|
|
474
|
-
readonly type: "uint256";
|
|
475
|
-
}];
|
|
476
|
-
readonly name: "TokenBoostRatioUpdated";
|
|
477
|
-
readonly type: "event";
|
|
478
|
-
}, {
|
|
479
|
-
readonly anonymous: false;
|
|
480
|
-
readonly inputs: readonly [{
|
|
481
|
-
readonly indexed: true;
|
|
482
|
-
readonly internalType: "address";
|
|
483
|
-
readonly name: "token";
|
|
484
|
-
readonly type: "address";
|
|
485
|
-
}, {
|
|
486
|
-
readonly indexed: false;
|
|
487
|
-
readonly internalType: "uint256";
|
|
488
|
-
readonly name: "newEmissionCap";
|
|
489
|
-
readonly type: "uint256";
|
|
490
|
-
}];
|
|
491
|
-
readonly name: "TokenEmissionCapUpdated";
|
|
492
|
-
readonly type: "event";
|
|
493
371
|
}, {
|
|
494
372
|
readonly anonymous: false;
|
|
495
373
|
readonly inputs: readonly [{
|
|
@@ -500,31 +378,6 @@ export declare class BaseGauge__factory {
|
|
|
500
378
|
}];
|
|
501
379
|
readonly name: "Unpaused";
|
|
502
380
|
readonly type: "event";
|
|
503
|
-
}, {
|
|
504
|
-
readonly anonymous: false;
|
|
505
|
-
readonly inputs: readonly [{
|
|
506
|
-
readonly indexed: true;
|
|
507
|
-
readonly internalType: "address";
|
|
508
|
-
readonly name: "user";
|
|
509
|
-
readonly type: "address";
|
|
510
|
-
}, {
|
|
511
|
-
readonly indexed: true;
|
|
512
|
-
readonly internalType: "address";
|
|
513
|
-
readonly name: "token";
|
|
514
|
-
readonly type: "address";
|
|
515
|
-
}, {
|
|
516
|
-
readonly indexed: false;
|
|
517
|
-
readonly internalType: "uint256";
|
|
518
|
-
readonly name: "newIntegral";
|
|
519
|
-
readonly type: "uint256";
|
|
520
|
-
}, {
|
|
521
|
-
readonly indexed: false;
|
|
522
|
-
readonly internalType: "uint256";
|
|
523
|
-
readonly name: "timestamp";
|
|
524
|
-
readonly type: "uint256";
|
|
525
|
-
}];
|
|
526
|
-
readonly name: "UserRewardDataUpdated";
|
|
527
|
-
readonly type: "event";
|
|
528
381
|
}, {
|
|
529
382
|
readonly anonymous: false;
|
|
530
383
|
readonly inputs: readonly [{
|
|
@@ -572,17 +425,7 @@ export declare class BaseGauge__factory {
|
|
|
572
425
|
readonly type: "event";
|
|
573
426
|
}, {
|
|
574
427
|
readonly inputs: readonly [];
|
|
575
|
-
readonly name: "
|
|
576
|
-
readonly outputs: readonly [{
|
|
577
|
-
readonly internalType: "bytes32";
|
|
578
|
-
readonly name: "";
|
|
579
|
-
readonly type: "bytes32";
|
|
580
|
-
}];
|
|
581
|
-
readonly stateMutability: "view";
|
|
582
|
-
readonly type: "function";
|
|
583
|
-
}, {
|
|
584
|
-
readonly inputs: readonly [];
|
|
585
|
-
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
428
|
+
readonly name: "CLAIM_FOR_ROLE";
|
|
586
429
|
readonly outputs: readonly [{
|
|
587
430
|
readonly internalType: "bytes32";
|
|
588
431
|
readonly name: "";
|
|
@@ -592,7 +435,7 @@ export declare class BaseGauge__factory {
|
|
|
592
435
|
readonly type: "function";
|
|
593
436
|
}, {
|
|
594
437
|
readonly inputs: readonly [];
|
|
595
|
-
readonly name: "
|
|
438
|
+
readonly name: "CONTROLLER_ROLE";
|
|
596
439
|
readonly outputs: readonly [{
|
|
597
440
|
readonly internalType: "bytes32";
|
|
598
441
|
readonly name: "";
|
|
@@ -602,7 +445,7 @@ export declare class BaseGauge__factory {
|
|
|
602
445
|
readonly type: "function";
|
|
603
446
|
}, {
|
|
604
447
|
readonly inputs: readonly [];
|
|
605
|
-
readonly name: "
|
|
448
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
606
449
|
readonly outputs: readonly [{
|
|
607
450
|
readonly internalType: "bytes32";
|
|
608
451
|
readonly name: "";
|
|
@@ -612,7 +455,7 @@ export declare class BaseGauge__factory {
|
|
|
612
455
|
readonly type: "function";
|
|
613
456
|
}, {
|
|
614
457
|
readonly inputs: readonly [];
|
|
615
|
-
readonly name: "
|
|
458
|
+
readonly name: "EMERGENCY_ADMIN";
|
|
616
459
|
readonly outputs: readonly [{
|
|
617
460
|
readonly internalType: "bytes32";
|
|
618
461
|
readonly name: "";
|
|
@@ -622,17 +465,7 @@ export declare class BaseGauge__factory {
|
|
|
622
465
|
readonly type: "function";
|
|
623
466
|
}, {
|
|
624
467
|
readonly inputs: readonly [];
|
|
625
|
-
readonly name: "
|
|
626
|
-
readonly outputs: readonly [{
|
|
627
|
-
readonly internalType: "uint256";
|
|
628
|
-
readonly name: "";
|
|
629
|
-
readonly type: "uint256";
|
|
630
|
-
}];
|
|
631
|
-
readonly stateMutability: "view";
|
|
632
|
-
readonly type: "function";
|
|
633
|
-
}, {
|
|
634
|
-
readonly inputs: readonly [];
|
|
635
|
-
readonly name: "MAX_VOTE_WEIGHT";
|
|
468
|
+
readonly name: "MAX_EXTRA_REWARDS";
|
|
636
469
|
readonly outputs: readonly [{
|
|
637
470
|
readonly internalType: "uint256";
|
|
638
471
|
readonly name: "";
|
|
@@ -650,37 +483,85 @@ export declare class BaseGauge__factory {
|
|
|
650
483
|
}];
|
|
651
484
|
readonly stateMutability: "view";
|
|
652
485
|
readonly type: "function";
|
|
653
|
-
}, {
|
|
654
|
-
readonly inputs: readonly [];
|
|
655
|
-
readonly name: "WEIGHT_PRECISION";
|
|
656
|
-
readonly outputs: readonly [{
|
|
657
|
-
readonly internalType: "uint256";
|
|
658
|
-
readonly name: "";
|
|
659
|
-
readonly type: "uint256";
|
|
660
|
-
}];
|
|
661
|
-
readonly stateMutability: "view";
|
|
662
|
-
readonly type: "function";
|
|
663
486
|
}, {
|
|
664
487
|
readonly inputs: readonly [{
|
|
665
488
|
readonly internalType: "address";
|
|
666
|
-
readonly name: "
|
|
489
|
+
readonly name: "token";
|
|
667
490
|
readonly type: "address";
|
|
668
|
-
}
|
|
669
|
-
|
|
491
|
+
}, {
|
|
492
|
+
readonly internalType: "address";
|
|
493
|
+
readonly name: "distributor";
|
|
494
|
+
readonly type: "address";
|
|
495
|
+
}];
|
|
496
|
+
readonly name: "addRewardToken";
|
|
497
|
+
readonly outputs: readonly [];
|
|
498
|
+
readonly stateMutability: "nonpayable";
|
|
499
|
+
readonly type: "function";
|
|
500
|
+
}, {
|
|
501
|
+
readonly inputs: readonly [{
|
|
502
|
+
readonly internalType: "address";
|
|
503
|
+
readonly name: "account";
|
|
504
|
+
readonly type: "address";
|
|
505
|
+
}];
|
|
506
|
+
readonly name: "allEarnedRewards";
|
|
670
507
|
readonly outputs: readonly [{
|
|
671
|
-
readonly internalType: "
|
|
508
|
+
readonly internalType: "address[]";
|
|
672
509
|
readonly name: "";
|
|
673
|
-
readonly type: "
|
|
510
|
+
readonly type: "address[]";
|
|
511
|
+
}, {
|
|
512
|
+
readonly internalType: "uint256[]";
|
|
513
|
+
readonly name: "";
|
|
514
|
+
readonly type: "uint256[]";
|
|
674
515
|
}];
|
|
675
516
|
readonly stateMutability: "view";
|
|
676
517
|
readonly type: "function";
|
|
677
518
|
}, {
|
|
678
|
-
readonly inputs: readonly [
|
|
679
|
-
|
|
519
|
+
readonly inputs: readonly [{
|
|
520
|
+
readonly internalType: "address";
|
|
521
|
+
readonly name: "user";
|
|
522
|
+
readonly type: "address";
|
|
523
|
+
}];
|
|
524
|
+
readonly name: "allPendingExtraRewards";
|
|
680
525
|
readonly outputs: readonly [{
|
|
681
|
-
readonly internalType: "
|
|
526
|
+
readonly internalType: "address[]";
|
|
527
|
+
readonly name: "tokens";
|
|
528
|
+
readonly type: "address[]";
|
|
529
|
+
}, {
|
|
530
|
+
readonly internalType: "uint256[]";
|
|
531
|
+
readonly name: "amounts";
|
|
532
|
+
readonly type: "uint256[]";
|
|
533
|
+
}];
|
|
534
|
+
readonly stateMutability: "view";
|
|
535
|
+
readonly type: "function";
|
|
536
|
+
}, {
|
|
537
|
+
readonly inputs: readonly [{
|
|
538
|
+
readonly internalType: "address";
|
|
539
|
+
readonly name: "account";
|
|
540
|
+
readonly type: "address";
|
|
541
|
+
}];
|
|
542
|
+
readonly name: "allPendingRewards";
|
|
543
|
+
readonly outputs: readonly [{
|
|
544
|
+
readonly internalType: "address[]";
|
|
682
545
|
readonly name: "";
|
|
683
|
-
readonly type: "
|
|
546
|
+
readonly type: "address[]";
|
|
547
|
+
}, {
|
|
548
|
+
readonly internalType: "uint256[]";
|
|
549
|
+
readonly name: "";
|
|
550
|
+
readonly type: "uint256[]";
|
|
551
|
+
}];
|
|
552
|
+
readonly stateMutability: "view";
|
|
553
|
+
readonly type: "function";
|
|
554
|
+
}, {
|
|
555
|
+
readonly inputs: readonly [{
|
|
556
|
+
readonly internalType: "address";
|
|
557
|
+
readonly name: "account";
|
|
558
|
+
readonly type: "address";
|
|
559
|
+
}];
|
|
560
|
+
readonly name: "balanceOf";
|
|
561
|
+
readonly outputs: readonly [{
|
|
562
|
+
readonly internalType: "uint256";
|
|
563
|
+
readonly name: "";
|
|
564
|
+
readonly type: "uint256";
|
|
684
565
|
}];
|
|
685
566
|
readonly stateMutability: "view";
|
|
686
567
|
readonly type: "function";
|
|
@@ -690,17 +571,17 @@ export declare class BaseGauge__factory {
|
|
|
690
571
|
readonly name: "token";
|
|
691
572
|
readonly type: "address";
|
|
692
573
|
}];
|
|
693
|
-
readonly name: "
|
|
574
|
+
readonly name: "claimExtraReward";
|
|
694
575
|
readonly outputs: readonly [{
|
|
695
576
|
readonly internalType: "uint256";
|
|
696
|
-
readonly name: "
|
|
577
|
+
readonly name: "";
|
|
697
578
|
readonly type: "uint256";
|
|
698
579
|
}];
|
|
699
580
|
readonly stateMutability: "nonpayable";
|
|
700
581
|
readonly type: "function";
|
|
701
582
|
}, {
|
|
702
583
|
readonly inputs: readonly [];
|
|
703
|
-
readonly name: "
|
|
584
|
+
readonly name: "claimExtraRewards";
|
|
704
585
|
readonly outputs: readonly [];
|
|
705
586
|
readonly stateMutability: "nonpayable";
|
|
706
587
|
readonly type: "function";
|
|
@@ -709,68 +590,60 @@ export declare class BaseGauge__factory {
|
|
|
709
590
|
readonly internalType: "address";
|
|
710
591
|
readonly name: "token";
|
|
711
592
|
readonly type: "address";
|
|
593
|
+
}, {
|
|
594
|
+
readonly internalType: "uint256";
|
|
595
|
+
readonly name: "amount";
|
|
596
|
+
readonly type: "uint256";
|
|
712
597
|
}, {
|
|
713
598
|
readonly internalType: "address";
|
|
714
599
|
readonly name: "user";
|
|
715
600
|
readonly type: "address";
|
|
716
601
|
}];
|
|
717
|
-
readonly name: "
|
|
602
|
+
readonly name: "claimOnBehalfOf";
|
|
718
603
|
readonly outputs: readonly [{
|
|
719
604
|
readonly internalType: "uint256";
|
|
720
605
|
readonly name: "";
|
|
721
606
|
readonly type: "uint256";
|
|
722
607
|
}];
|
|
723
|
-
readonly stateMutability: "
|
|
608
|
+
readonly stateMutability: "nonpayable";
|
|
724
609
|
readonly type: "function";
|
|
725
610
|
}, {
|
|
726
|
-
readonly inputs: readonly [
|
|
727
|
-
readonly name: "controller";
|
|
728
|
-
readonly outputs: readonly [{
|
|
611
|
+
readonly inputs: readonly [{
|
|
729
612
|
readonly internalType: "address";
|
|
730
|
-
readonly name: "";
|
|
613
|
+
readonly name: "token";
|
|
731
614
|
readonly type: "address";
|
|
732
615
|
}];
|
|
733
|
-
readonly
|
|
734
|
-
readonly type: "function";
|
|
735
|
-
}, {
|
|
736
|
-
readonly inputs: readonly [];
|
|
737
|
-
readonly name: "distributionCap";
|
|
616
|
+
readonly name: "claimRewardToken";
|
|
738
617
|
readonly outputs: readonly [{
|
|
739
618
|
readonly internalType: "uint256";
|
|
740
619
|
readonly name: "";
|
|
741
620
|
readonly type: "uint256";
|
|
742
621
|
}];
|
|
743
|
-
readonly stateMutability: "
|
|
622
|
+
readonly stateMutability: "nonpayable";
|
|
623
|
+
readonly type: "function";
|
|
624
|
+
}, {
|
|
625
|
+
readonly inputs: readonly [];
|
|
626
|
+
readonly name: "claimRewards";
|
|
627
|
+
readonly outputs: readonly [];
|
|
628
|
+
readonly stateMutability: "nonpayable";
|
|
744
629
|
readonly type: "function";
|
|
745
630
|
}, {
|
|
746
631
|
readonly inputs: readonly [{
|
|
747
632
|
readonly internalType: "address";
|
|
748
|
-
readonly name: "";
|
|
749
|
-
readonly type: "address";
|
|
750
|
-
}];
|
|
751
|
-
readonly name: "distributors";
|
|
752
|
-
readonly outputs: readonly [{
|
|
753
|
-
readonly internalType: "address";
|
|
754
|
-
readonly name: "distributor";
|
|
633
|
+
readonly name: "user";
|
|
755
634
|
readonly type: "address";
|
|
756
|
-
}, {
|
|
757
|
-
readonly internalType: "bool";
|
|
758
|
-
readonly name: "isApproved";
|
|
759
|
-
readonly type: "bool";
|
|
760
635
|
}];
|
|
761
|
-
readonly
|
|
636
|
+
readonly name: "claimRewardsFor";
|
|
637
|
+
readonly outputs: readonly [];
|
|
638
|
+
readonly stateMutability: "nonpayable";
|
|
762
639
|
readonly type: "function";
|
|
763
640
|
}, {
|
|
764
|
-
readonly inputs: readonly [
|
|
765
|
-
|
|
766
|
-
readonly name: "";
|
|
767
|
-
readonly type: "uint256";
|
|
768
|
-
}];
|
|
769
|
-
readonly name: "distributorsList";
|
|
641
|
+
readonly inputs: readonly [];
|
|
642
|
+
readonly name: "depositRAACOnClaim";
|
|
770
643
|
readonly outputs: readonly [{
|
|
771
|
-
readonly internalType: "
|
|
644
|
+
readonly internalType: "bool";
|
|
772
645
|
readonly name: "";
|
|
773
|
-
readonly type: "
|
|
646
|
+
readonly type: "bool";
|
|
774
647
|
}];
|
|
775
648
|
readonly stateMutability: "view";
|
|
776
649
|
readonly type: "function";
|
|
@@ -780,17 +653,13 @@ export declare class BaseGauge__factory {
|
|
|
780
653
|
readonly name: "token";
|
|
781
654
|
readonly type: "address";
|
|
782
655
|
}, {
|
|
783
|
-
readonly internalType: "address";
|
|
784
|
-
readonly name: "user";
|
|
785
|
-
readonly type: "address";
|
|
786
|
-
}];
|
|
787
|
-
readonly name: "earned";
|
|
788
|
-
readonly outputs: readonly [{
|
|
789
656
|
readonly internalType: "uint256";
|
|
790
|
-
readonly name: "";
|
|
657
|
+
readonly name: "amount";
|
|
791
658
|
readonly type: "uint256";
|
|
792
659
|
}];
|
|
793
|
-
readonly
|
|
660
|
+
readonly name: "depositRewardToken";
|
|
661
|
+
readonly outputs: readonly [];
|
|
662
|
+
readonly stateMutability: "nonpayable";
|
|
794
663
|
readonly type: "function";
|
|
795
664
|
}, {
|
|
796
665
|
readonly inputs: readonly [{
|
|
@@ -802,7 +671,7 @@ export declare class BaseGauge__factory {
|
|
|
802
671
|
readonly name: "user";
|
|
803
672
|
readonly type: "address";
|
|
804
673
|
}];
|
|
805
|
-
readonly name: "
|
|
674
|
+
readonly name: "earnedReward";
|
|
806
675
|
readonly outputs: readonly [{
|
|
807
676
|
readonly internalType: "uint256";
|
|
808
677
|
readonly name: "";
|
|
@@ -824,6 +693,48 @@ export declare class BaseGauge__factory {
|
|
|
824
693
|
readonly outputs: readonly [];
|
|
825
694
|
readonly stateMutability: "nonpayable";
|
|
826
695
|
readonly type: "function";
|
|
696
|
+
}, {
|
|
697
|
+
readonly inputs: readonly [{
|
|
698
|
+
readonly internalType: "address";
|
|
699
|
+
readonly name: "";
|
|
700
|
+
readonly type: "address";
|
|
701
|
+
}];
|
|
702
|
+
readonly name: "extraRewardTokenData";
|
|
703
|
+
readonly outputs: readonly [{
|
|
704
|
+
readonly internalType: "bool";
|
|
705
|
+
readonly name: "isActive";
|
|
706
|
+
readonly type: "bool";
|
|
707
|
+
}, {
|
|
708
|
+
readonly internalType: "uint8";
|
|
709
|
+
readonly name: "decimals";
|
|
710
|
+
readonly type: "uint8";
|
|
711
|
+
}, {
|
|
712
|
+
readonly internalType: "uint256";
|
|
713
|
+
readonly name: "rate";
|
|
714
|
+
readonly type: "uint256";
|
|
715
|
+
}, {
|
|
716
|
+
readonly internalType: "address";
|
|
717
|
+
readonly name: "distributor";
|
|
718
|
+
readonly type: "address";
|
|
719
|
+
}, {
|
|
720
|
+
readonly internalType: "uint256";
|
|
721
|
+
readonly name: "periodFinish";
|
|
722
|
+
readonly type: "uint256";
|
|
723
|
+
}, {
|
|
724
|
+
readonly internalType: "uint256";
|
|
725
|
+
readonly name: "lastUpdate";
|
|
726
|
+
readonly type: "uint256";
|
|
727
|
+
}, {
|
|
728
|
+
readonly internalType: "uint256";
|
|
729
|
+
readonly name: "integral";
|
|
730
|
+
readonly type: "uint256";
|
|
731
|
+
}, {
|
|
732
|
+
readonly internalType: "uint256";
|
|
733
|
+
readonly name: "distributed";
|
|
734
|
+
readonly type: "uint256";
|
|
735
|
+
}];
|
|
736
|
+
readonly stateMutability: "view";
|
|
737
|
+
readonly type: "function";
|
|
827
738
|
}, {
|
|
828
739
|
readonly inputs: readonly [];
|
|
829
740
|
readonly name: "gaugeController";
|
|
@@ -835,30 +746,60 @@ export declare class BaseGauge__factory {
|
|
|
835
746
|
readonly stateMutability: "view";
|
|
836
747
|
readonly type: "function";
|
|
837
748
|
}, {
|
|
838
|
-
readonly inputs: readonly [
|
|
749
|
+
readonly inputs: readonly [];
|
|
750
|
+
readonly name: "gaugeData";
|
|
751
|
+
readonly outputs: readonly [{
|
|
752
|
+
readonly internalType: "uint256";
|
|
753
|
+
readonly name: "gaugeInitialStartTime";
|
|
754
|
+
readonly type: "uint256";
|
|
755
|
+
}, {
|
|
756
|
+
readonly internalType: "uint256";
|
|
757
|
+
readonly name: "periodDuration";
|
|
758
|
+
readonly type: "uint256";
|
|
759
|
+
}, {
|
|
760
|
+
readonly internalType: "uint256";
|
|
761
|
+
readonly name: "periodIndex";
|
|
762
|
+
readonly type: "uint256";
|
|
763
|
+
}, {
|
|
839
764
|
readonly internalType: "address";
|
|
840
|
-
readonly name: "
|
|
765
|
+
readonly name: "stakingToken";
|
|
841
766
|
readonly type: "address";
|
|
842
|
-
}
|
|
843
|
-
readonly name: "getDecimalAdjustment";
|
|
844
|
-
readonly outputs: readonly [{
|
|
767
|
+
}, {
|
|
845
768
|
readonly internalType: "uint256";
|
|
846
|
-
readonly name: "";
|
|
769
|
+
readonly name: "totalSupply";
|
|
770
|
+
readonly type: "uint256";
|
|
771
|
+
}, {
|
|
772
|
+
readonly internalType: "uint256";
|
|
773
|
+
readonly name: "workingSupply";
|
|
774
|
+
readonly type: "uint256";
|
|
775
|
+
}, {
|
|
776
|
+
readonly internalType: "uint256";
|
|
777
|
+
readonly name: "lastUpdateTime";
|
|
847
778
|
readonly type: "uint256";
|
|
848
779
|
}];
|
|
849
780
|
readonly stateMutability: "view";
|
|
850
781
|
readonly type: "function";
|
|
782
|
+
}, {
|
|
783
|
+
readonly inputs: readonly [];
|
|
784
|
+
readonly name: "getControllerAddress";
|
|
785
|
+
readonly outputs: readonly [{
|
|
786
|
+
readonly internalType: "address";
|
|
787
|
+
readonly name: "controllerAddress";
|
|
788
|
+
readonly type: "address";
|
|
789
|
+
}];
|
|
790
|
+
readonly stateMutability: "view";
|
|
791
|
+
readonly type: "function";
|
|
851
792
|
}, {
|
|
852
793
|
readonly inputs: readonly [{
|
|
853
794
|
readonly internalType: "address";
|
|
854
|
-
readonly name: "
|
|
795
|
+
readonly name: "token";
|
|
855
796
|
readonly type: "address";
|
|
856
797
|
}];
|
|
857
|
-
readonly name: "
|
|
798
|
+
readonly name: "getDecimalAdjustment";
|
|
858
799
|
readonly outputs: readonly [{
|
|
859
|
-
readonly internalType: "
|
|
800
|
+
readonly internalType: "uint256";
|
|
860
801
|
readonly name: "";
|
|
861
|
-
readonly type: "
|
|
802
|
+
readonly type: "uint256";
|
|
862
803
|
}];
|
|
863
804
|
readonly stateMutability: "view";
|
|
864
805
|
readonly type: "function";
|
|
@@ -873,55 +814,32 @@ export declare class BaseGauge__factory {
|
|
|
873
814
|
readonly stateMutability: "view";
|
|
874
815
|
readonly type: "function";
|
|
875
816
|
}, {
|
|
876
|
-
readonly inputs: readonly [
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
readonly
|
|
880
|
-
readonly name: "";
|
|
881
|
-
readonly type: "uint256";
|
|
817
|
+
readonly inputs: readonly [{
|
|
818
|
+
readonly internalType: "address";
|
|
819
|
+
readonly name: "token";
|
|
820
|
+
readonly type: "address";
|
|
882
821
|
}];
|
|
883
|
-
readonly
|
|
884
|
-
readonly type: "function";
|
|
885
|
-
}, {
|
|
886
|
-
readonly inputs: readonly [];
|
|
887
|
-
readonly name: "getPeriodState";
|
|
822
|
+
readonly name: "getGaugeRewardTokenData";
|
|
888
823
|
readonly outputs: readonly [{
|
|
889
824
|
readonly components: readonly [{
|
|
890
|
-
readonly
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
readonly type: "uint256";
|
|
898
|
-
}, {
|
|
899
|
-
readonly internalType: "uint256";
|
|
900
|
-
readonly name: "lastUpdateTime";
|
|
901
|
-
readonly type: "uint256";
|
|
902
|
-
}, {
|
|
903
|
-
readonly internalType: "uint256";
|
|
904
|
-
readonly name: "value";
|
|
905
|
-
readonly type: "uint256";
|
|
906
|
-
}, {
|
|
907
|
-
readonly internalType: "uint256";
|
|
908
|
-
readonly name: "weightedSum";
|
|
909
|
-
readonly type: "uint256";
|
|
910
|
-
}, {
|
|
911
|
-
readonly internalType: "uint256";
|
|
912
|
-
readonly name: "totalDuration";
|
|
913
|
-
readonly type: "uint256";
|
|
914
|
-
}, {
|
|
915
|
-
readonly internalType: "uint256";
|
|
916
|
-
readonly name: "weight";
|
|
917
|
-
readonly type: "uint256";
|
|
918
|
-
}];
|
|
919
|
-
readonly internalType: "struct TimeWeightedAverage.Period";
|
|
920
|
-
readonly name: "votingPeriod";
|
|
921
|
-
readonly type: "tuple";
|
|
825
|
+
readonly internalType: "bool";
|
|
826
|
+
readonly name: "isActive";
|
|
827
|
+
readonly type: "bool";
|
|
828
|
+
}, {
|
|
829
|
+
readonly internalType: "uint8";
|
|
830
|
+
readonly name: "decimals";
|
|
831
|
+
readonly type: "uint8";
|
|
922
832
|
}, {
|
|
923
833
|
readonly internalType: "uint256";
|
|
924
|
-
readonly name: "
|
|
834
|
+
readonly name: "rate";
|
|
835
|
+
readonly type: "uint256";
|
|
836
|
+
}, {
|
|
837
|
+
readonly internalType: "uint256";
|
|
838
|
+
readonly name: "integral";
|
|
839
|
+
readonly type: "uint256";
|
|
840
|
+
}, {
|
|
841
|
+
readonly internalType: "uint256";
|
|
842
|
+
readonly name: "lastUpdateTime";
|
|
925
843
|
readonly type: "uint256";
|
|
926
844
|
}, {
|
|
927
845
|
readonly internalType: "uint256";
|
|
@@ -929,15 +847,29 @@ export declare class BaseGauge__factory {
|
|
|
929
847
|
readonly type: "uint256";
|
|
930
848
|
}, {
|
|
931
849
|
readonly internalType: "uint256";
|
|
932
|
-
readonly name: "
|
|
850
|
+
readonly name: "leftoverRewards";
|
|
933
851
|
readonly type: "uint256";
|
|
934
852
|
}];
|
|
935
|
-
readonly internalType: "struct IBaseGauge.
|
|
936
|
-
readonly name: "";
|
|
853
|
+
readonly internalType: "struct IBaseGauge.RewardTokenData";
|
|
854
|
+
readonly name: "rewardTokenDatum";
|
|
937
855
|
readonly type: "tuple";
|
|
938
856
|
}];
|
|
939
857
|
readonly stateMutability: "view";
|
|
940
858
|
readonly type: "function";
|
|
859
|
+
}, {
|
|
860
|
+
readonly inputs: readonly [];
|
|
861
|
+
readonly name: "getPeriodBoundaries";
|
|
862
|
+
readonly outputs: readonly [{
|
|
863
|
+
readonly internalType: "uint256";
|
|
864
|
+
readonly name: "periodStartTime";
|
|
865
|
+
readonly type: "uint256";
|
|
866
|
+
}, {
|
|
867
|
+
readonly internalType: "uint256";
|
|
868
|
+
readonly name: "periodEndTime";
|
|
869
|
+
readonly type: "uint256";
|
|
870
|
+
}];
|
|
871
|
+
readonly stateMutability: "view";
|
|
872
|
+
readonly type: "function";
|
|
941
873
|
}, {
|
|
942
874
|
readonly inputs: readonly [];
|
|
943
875
|
readonly name: "getRewardTokens";
|
|
@@ -967,40 +899,47 @@ export declare class BaseGauge__factory {
|
|
|
967
899
|
readonly internalType: "address";
|
|
968
900
|
readonly name: "token";
|
|
969
901
|
readonly type: "address";
|
|
970
|
-
}];
|
|
971
|
-
readonly name: "getTokenEmissionState";
|
|
972
|
-
readonly outputs: readonly [{
|
|
973
|
-
readonly internalType: "uint256";
|
|
974
|
-
readonly name: "emissionCap_";
|
|
975
|
-
readonly type: "uint256";
|
|
976
902
|
}, {
|
|
977
|
-
readonly internalType: "uint256";
|
|
978
|
-
readonly name: "distributed_";
|
|
979
|
-
readonly type: "uint256";
|
|
980
|
-
}];
|
|
981
|
-
readonly stateMutability: "view";
|
|
982
|
-
readonly type: "function";
|
|
983
|
-
}, {
|
|
984
|
-
readonly inputs: readonly [{
|
|
985
903
|
readonly internalType: "address";
|
|
986
|
-
readonly name: "
|
|
904
|
+
readonly name: "user";
|
|
987
905
|
readonly type: "address";
|
|
988
906
|
}];
|
|
989
|
-
readonly name: "
|
|
907
|
+
readonly name: "getUserRewardTokenData";
|
|
990
908
|
readonly outputs: readonly [{
|
|
991
|
-
readonly
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
909
|
+
readonly components: readonly [{
|
|
910
|
+
readonly internalType: "uint256";
|
|
911
|
+
readonly name: "integral";
|
|
912
|
+
readonly type: "uint256";
|
|
913
|
+
}, {
|
|
914
|
+
readonly internalType: "uint256";
|
|
915
|
+
readonly name: "lastGaugeIntegral";
|
|
916
|
+
readonly type: "uint256";
|
|
917
|
+
}, {
|
|
918
|
+
readonly internalType: "uint256";
|
|
919
|
+
readonly name: "claimable";
|
|
920
|
+
readonly type: "uint256";
|
|
921
|
+
}, {
|
|
922
|
+
readonly internalType: "uint256";
|
|
923
|
+
readonly name: "claimed";
|
|
924
|
+
readonly type: "uint256";
|
|
925
|
+
}, {
|
|
926
|
+
readonly internalType: "uint256";
|
|
927
|
+
readonly name: "lastUpdate";
|
|
928
|
+
readonly type: "uint256";
|
|
929
|
+
}];
|
|
930
|
+
readonly internalType: "struct IBaseGauge.UserGaugeTokenRewardData";
|
|
931
|
+
readonly name: "userGaugeTokenRewardDatum";
|
|
932
|
+
readonly type: "tuple";
|
|
933
|
+
}];
|
|
934
|
+
readonly stateMutability: "view";
|
|
935
|
+
readonly type: "function";
|
|
997
936
|
}, {
|
|
998
937
|
readonly inputs: readonly [{
|
|
999
938
|
readonly internalType: "address";
|
|
1000
939
|
readonly name: "account";
|
|
1001
940
|
readonly type: "address";
|
|
1002
941
|
}];
|
|
1003
|
-
readonly name: "
|
|
942
|
+
readonly name: "getUserWeight";
|
|
1004
943
|
readonly outputs: readonly [{
|
|
1005
944
|
readonly internalType: "uint256";
|
|
1006
945
|
readonly name: "";
|
|
@@ -1040,46 +979,6 @@ export declare class BaseGauge__factory {
|
|
|
1040
979
|
}];
|
|
1041
980
|
readonly stateMutability: "view";
|
|
1042
981
|
readonly type: "function";
|
|
1043
|
-
}, {
|
|
1044
|
-
readonly inputs: readonly [];
|
|
1045
|
-
readonly name: "historicalCheckpointCount";
|
|
1046
|
-
readonly outputs: readonly [{
|
|
1047
|
-
readonly internalType: "uint256";
|
|
1048
|
-
readonly name: "";
|
|
1049
|
-
readonly type: "uint256";
|
|
1050
|
-
}];
|
|
1051
|
-
readonly stateMutability: "view";
|
|
1052
|
-
readonly type: "function";
|
|
1053
|
-
}, {
|
|
1054
|
-
readonly inputs: readonly [{
|
|
1055
|
-
readonly internalType: "uint256";
|
|
1056
|
-
readonly name: "";
|
|
1057
|
-
readonly type: "uint256";
|
|
1058
|
-
}];
|
|
1059
|
-
readonly name: "historicalCheckpoints";
|
|
1060
|
-
readonly outputs: readonly [{
|
|
1061
|
-
readonly internalType: "uint256";
|
|
1062
|
-
readonly name: "timestamp";
|
|
1063
|
-
readonly type: "uint256";
|
|
1064
|
-
}, {
|
|
1065
|
-
readonly internalType: "uint256";
|
|
1066
|
-
readonly name: "totalSupply";
|
|
1067
|
-
readonly type: "uint256";
|
|
1068
|
-
}, {
|
|
1069
|
-
readonly internalType: "uint256";
|
|
1070
|
-
readonly name: "workingSupply";
|
|
1071
|
-
readonly type: "uint256";
|
|
1072
|
-
}, {
|
|
1073
|
-
readonly internalType: "uint256";
|
|
1074
|
-
readonly name: "rewardPerToken";
|
|
1075
|
-
readonly type: "uint256";
|
|
1076
|
-
}, {
|
|
1077
|
-
readonly internalType: "uint256";
|
|
1078
|
-
readonly name: "rewardRate";
|
|
1079
|
-
readonly type: "uint256";
|
|
1080
|
-
}];
|
|
1081
|
-
readonly stateMutability: "view";
|
|
1082
|
-
readonly type: "function";
|
|
1083
982
|
}, {
|
|
1084
983
|
readonly inputs: readonly [{
|
|
1085
984
|
readonly internalType: "address";
|
|
@@ -1094,16 +993,6 @@ export declare class BaseGauge__factory {
|
|
|
1094
993
|
readonly outputs: readonly [];
|
|
1095
994
|
readonly stateMutability: "nonpayable";
|
|
1096
995
|
readonly type: "function";
|
|
1097
|
-
}, {
|
|
1098
|
-
readonly inputs: readonly [];
|
|
1099
|
-
readonly name: "lastUpdateTime";
|
|
1100
|
-
readonly outputs: readonly [{
|
|
1101
|
-
readonly internalType: "uint256";
|
|
1102
|
-
readonly name: "";
|
|
1103
|
-
readonly type: "uint256";
|
|
1104
|
-
}];
|
|
1105
|
-
readonly stateMutability: "view";
|
|
1106
|
-
readonly type: "function";
|
|
1107
996
|
}, {
|
|
1108
997
|
readonly inputs: readonly [{
|
|
1109
998
|
readonly internalType: "address";
|
|
@@ -1118,20 +1007,6 @@ export declare class BaseGauge__factory {
|
|
|
1118
1007
|
readonly outputs: readonly [];
|
|
1119
1008
|
readonly stateMutability: "nonpayable";
|
|
1120
1009
|
readonly type: "function";
|
|
1121
|
-
}, {
|
|
1122
|
-
readonly inputs: readonly [{
|
|
1123
|
-
readonly internalType: "address";
|
|
1124
|
-
readonly name: "token";
|
|
1125
|
-
readonly type: "address";
|
|
1126
|
-
}, {
|
|
1127
|
-
readonly internalType: "uint256";
|
|
1128
|
-
readonly name: "amount";
|
|
1129
|
-
readonly type: "uint256";
|
|
1130
|
-
}];
|
|
1131
|
-
readonly name: "notifyRewardAmount";
|
|
1132
|
-
readonly outputs: readonly [];
|
|
1133
|
-
readonly stateMutability: "nonpayable";
|
|
1134
|
-
readonly type: "function";
|
|
1135
1010
|
}, {
|
|
1136
1011
|
readonly inputs: readonly [];
|
|
1137
1012
|
readonly name: "paused";
|
|
@@ -1152,27 +1027,7 @@ export declare class BaseGauge__factory {
|
|
|
1152
1027
|
readonly name: "user";
|
|
1153
1028
|
readonly type: "address";
|
|
1154
1029
|
}];
|
|
1155
|
-
readonly name: "
|
|
1156
|
-
readonly outputs: readonly [{
|
|
1157
|
-
readonly internalType: "uint256";
|
|
1158
|
-
readonly name: "";
|
|
1159
|
-
readonly type: "uint256";
|
|
1160
|
-
}];
|
|
1161
|
-
readonly stateMutability: "view";
|
|
1162
|
-
readonly type: "function";
|
|
1163
|
-
}, {
|
|
1164
|
-
readonly inputs: readonly [];
|
|
1165
|
-
readonly name: "periodDuration";
|
|
1166
|
-
readonly outputs: readonly [{
|
|
1167
|
-
readonly internalType: "uint256";
|
|
1168
|
-
readonly name: "";
|
|
1169
|
-
readonly type: "uint256";
|
|
1170
|
-
}];
|
|
1171
|
-
readonly stateMutability: "view";
|
|
1172
|
-
readonly type: "function";
|
|
1173
|
-
}, {
|
|
1174
|
-
readonly inputs: readonly [];
|
|
1175
|
-
readonly name: "periodFinish";
|
|
1030
|
+
readonly name: "pendingExtraRewards";
|
|
1176
1031
|
readonly outputs: readonly [{
|
|
1177
1032
|
readonly internalType: "uint256";
|
|
1178
1033
|
readonly name: "";
|
|
@@ -1180,130 +1035,27 @@ export declare class BaseGauge__factory {
|
|
|
1180
1035
|
}];
|
|
1181
1036
|
readonly stateMutability: "view";
|
|
1182
1037
|
readonly type: "function";
|
|
1183
|
-
}, {
|
|
1184
|
-
readonly inputs: readonly [];
|
|
1185
|
-
readonly name: "periodState";
|
|
1186
|
-
readonly outputs: readonly [{
|
|
1187
|
-
readonly components: readonly [{
|
|
1188
|
-
readonly internalType: "uint256";
|
|
1189
|
-
readonly name: "startTime";
|
|
1190
|
-
readonly type: "uint256";
|
|
1191
|
-
}, {
|
|
1192
|
-
readonly internalType: "uint256";
|
|
1193
|
-
readonly name: "endTime";
|
|
1194
|
-
readonly type: "uint256";
|
|
1195
|
-
}, {
|
|
1196
|
-
readonly internalType: "uint256";
|
|
1197
|
-
readonly name: "lastUpdateTime";
|
|
1198
|
-
readonly type: "uint256";
|
|
1199
|
-
}, {
|
|
1200
|
-
readonly internalType: "uint256";
|
|
1201
|
-
readonly name: "value";
|
|
1202
|
-
readonly type: "uint256";
|
|
1203
|
-
}, {
|
|
1204
|
-
readonly internalType: "uint256";
|
|
1205
|
-
readonly name: "weightedSum";
|
|
1206
|
-
readonly type: "uint256";
|
|
1207
|
-
}, {
|
|
1208
|
-
readonly internalType: "uint256";
|
|
1209
|
-
readonly name: "totalDuration";
|
|
1210
|
-
readonly type: "uint256";
|
|
1211
|
-
}, {
|
|
1212
|
-
readonly internalType: "uint256";
|
|
1213
|
-
readonly name: "weight";
|
|
1214
|
-
readonly type: "uint256";
|
|
1215
|
-
}];
|
|
1216
|
-
readonly internalType: "struct TimeWeightedAverage.Period";
|
|
1217
|
-
readonly name: "votingPeriod";
|
|
1218
|
-
readonly type: "tuple";
|
|
1219
|
-
}, {
|
|
1220
|
-
readonly internalType: "uint256";
|
|
1221
|
-
readonly name: "emission";
|
|
1222
|
-
readonly type: "uint256";
|
|
1223
|
-
}, {
|
|
1224
|
-
readonly internalType: "uint256";
|
|
1225
|
-
readonly name: "distributed";
|
|
1226
|
-
readonly type: "uint256";
|
|
1227
|
-
}, {
|
|
1228
|
-
readonly internalType: "uint256";
|
|
1229
|
-
readonly name: "periodStartTime";
|
|
1230
|
-
readonly type: "uint256";
|
|
1231
|
-
}];
|
|
1232
|
-
readonly stateMutability: "view";
|
|
1233
|
-
readonly type: "function";
|
|
1234
1038
|
}, {
|
|
1235
1039
|
readonly inputs: readonly [{
|
|
1236
|
-
readonly internalType: "bytes32";
|
|
1237
|
-
readonly name: "role";
|
|
1238
|
-
readonly type: "bytes32";
|
|
1239
|
-
}, {
|
|
1240
1040
|
readonly internalType: "address";
|
|
1241
|
-
readonly name: "
|
|
1041
|
+
readonly name: "token";
|
|
1242
1042
|
readonly type: "address";
|
|
1243
|
-
}];
|
|
1244
|
-
readonly name: "renounceRole";
|
|
1245
|
-
readonly outputs: readonly [];
|
|
1246
|
-
readonly stateMutability: "nonpayable";
|
|
1247
|
-
readonly type: "function";
|
|
1248
|
-
}, {
|
|
1249
|
-
readonly inputs: readonly [{
|
|
1250
|
-
readonly internalType: "bytes32";
|
|
1251
|
-
readonly name: "role";
|
|
1252
|
-
readonly type: "bytes32";
|
|
1253
1043
|
}, {
|
|
1254
1044
|
readonly internalType: "address";
|
|
1255
1045
|
readonly name: "account";
|
|
1256
1046
|
readonly type: "address";
|
|
1257
1047
|
}];
|
|
1258
|
-
readonly name: "
|
|
1259
|
-
readonly outputs: readonly [];
|
|
1260
|
-
readonly stateMutability: "nonpayable";
|
|
1261
|
-
readonly type: "function";
|
|
1262
|
-
}, {
|
|
1263
|
-
readonly inputs: readonly [{
|
|
1264
|
-
readonly internalType: "address";
|
|
1265
|
-
readonly name: "";
|
|
1266
|
-
readonly type: "address";
|
|
1267
|
-
}];
|
|
1268
|
-
readonly name: "rewardData";
|
|
1048
|
+
readonly name: "pendingRewards";
|
|
1269
1049
|
readonly outputs: readonly [{
|
|
1270
1050
|
readonly internalType: "uint256";
|
|
1271
|
-
readonly name: "
|
|
1272
|
-
readonly type: "uint256";
|
|
1273
|
-
}, {
|
|
1274
|
-
readonly internalType: "uint256";
|
|
1275
|
-
readonly name: "periodFinish";
|
|
1276
|
-
readonly type: "uint256";
|
|
1277
|
-
}, {
|
|
1278
|
-
readonly internalType: "uint256";
|
|
1279
|
-
readonly name: "lastUpdateTime";
|
|
1280
|
-
readonly type: "uint256";
|
|
1281
|
-
}, {
|
|
1282
|
-
readonly internalType: "uint256";
|
|
1283
|
-
readonly name: "rewardPerTokenStored";
|
|
1284
|
-
readonly type: "uint256";
|
|
1285
|
-
}, {
|
|
1286
|
-
readonly internalType: "address";
|
|
1287
|
-
readonly name: "distributor";
|
|
1288
|
-
readonly type: "address";
|
|
1289
|
-
}, {
|
|
1290
|
-
readonly internalType: "uint256";
|
|
1291
|
-
readonly name: "integral";
|
|
1292
|
-
readonly type: "uint256";
|
|
1293
|
-
}, {
|
|
1294
|
-
readonly internalType: "uint256";
|
|
1295
|
-
readonly name: "emissionCap";
|
|
1296
|
-
readonly type: "uint256";
|
|
1297
|
-
}, {
|
|
1298
|
-
readonly internalType: "uint256";
|
|
1299
|
-
readonly name: "distributed";
|
|
1051
|
+
readonly name: "";
|
|
1300
1052
|
readonly type: "uint256";
|
|
1301
1053
|
}];
|
|
1302
1054
|
readonly stateMutability: "view";
|
|
1303
1055
|
readonly type: "function";
|
|
1304
1056
|
}, {
|
|
1305
1057
|
readonly inputs: readonly [];
|
|
1306
|
-
readonly name: "
|
|
1058
|
+
readonly name: "periodDuration";
|
|
1307
1059
|
readonly outputs: readonly [{
|
|
1308
1060
|
readonly internalType: "uint256";
|
|
1309
1061
|
readonly name: "";
|
|
@@ -1313,19 +1065,19 @@ export declare class BaseGauge__factory {
|
|
|
1313
1065
|
readonly type: "function";
|
|
1314
1066
|
}, {
|
|
1315
1067
|
readonly inputs: readonly [];
|
|
1316
|
-
readonly name: "
|
|
1068
|
+
readonly name: "raacLiquidLocker";
|
|
1317
1069
|
readonly outputs: readonly [{
|
|
1318
|
-
readonly internalType: "
|
|
1070
|
+
readonly internalType: "contract IRaacLiquidLocker";
|
|
1319
1071
|
readonly name: "";
|
|
1320
|
-
readonly type: "
|
|
1072
|
+
readonly type: "address";
|
|
1321
1073
|
}];
|
|
1322
1074
|
readonly stateMutability: "view";
|
|
1323
1075
|
readonly type: "function";
|
|
1324
1076
|
}, {
|
|
1325
1077
|
readonly inputs: readonly [];
|
|
1326
|
-
readonly name: "
|
|
1078
|
+
readonly name: "raacToken";
|
|
1327
1079
|
readonly outputs: readonly [{
|
|
1328
|
-
readonly internalType: "
|
|
1080
|
+
readonly internalType: "address";
|
|
1329
1081
|
readonly name: "";
|
|
1330
1082
|
readonly type: "address";
|
|
1331
1083
|
}];
|
|
@@ -1334,66 +1086,62 @@ export declare class BaseGauge__factory {
|
|
|
1334
1086
|
}, {
|
|
1335
1087
|
readonly inputs: readonly [{
|
|
1336
1088
|
readonly internalType: "address";
|
|
1337
|
-
readonly name: "";
|
|
1089
|
+
readonly name: "account";
|
|
1338
1090
|
readonly type: "address";
|
|
1339
1091
|
}];
|
|
1340
|
-
readonly name: "
|
|
1092
|
+
readonly name: "rawBalanceOf";
|
|
1341
1093
|
readonly outputs: readonly [{
|
|
1342
|
-
readonly internalType: "
|
|
1094
|
+
readonly internalType: "uint256";
|
|
1343
1095
|
readonly name: "";
|
|
1344
|
-
readonly type: "
|
|
1096
|
+
readonly type: "uint256";
|
|
1345
1097
|
}];
|
|
1346
1098
|
readonly stateMutability: "view";
|
|
1347
1099
|
readonly type: "function";
|
|
1348
1100
|
}, {
|
|
1349
|
-
readonly inputs: readonly [
|
|
1101
|
+
readonly inputs: readonly [];
|
|
1102
|
+
readonly name: "rawTotalSupply";
|
|
1103
|
+
readonly outputs: readonly [{
|
|
1350
1104
|
readonly internalType: "uint256";
|
|
1351
1105
|
readonly name: "";
|
|
1352
1106
|
readonly type: "uint256";
|
|
1353
1107
|
}];
|
|
1354
|
-
readonly name: "rewardTokens";
|
|
1355
|
-
readonly outputs: readonly [{
|
|
1356
|
-
readonly internalType: "address";
|
|
1357
|
-
readonly name: "";
|
|
1358
|
-
readonly type: "address";
|
|
1359
|
-
}];
|
|
1360
1108
|
readonly stateMutability: "view";
|
|
1361
1109
|
readonly type: "function";
|
|
1362
1110
|
}, {
|
|
1363
1111
|
readonly inputs: readonly [{
|
|
1364
|
-
readonly internalType: "
|
|
1365
|
-
readonly name: "";
|
|
1366
|
-
readonly type: "
|
|
1112
|
+
readonly internalType: "bytes32";
|
|
1113
|
+
readonly name: "role";
|
|
1114
|
+
readonly type: "bytes32";
|
|
1367
1115
|
}, {
|
|
1368
1116
|
readonly internalType: "address";
|
|
1369
|
-
readonly name: "";
|
|
1117
|
+
readonly name: "callerConfirmation";
|
|
1370
1118
|
readonly type: "address";
|
|
1371
1119
|
}];
|
|
1372
|
-
readonly name: "
|
|
1373
|
-
readonly outputs: readonly [
|
|
1374
|
-
|
|
1375
|
-
readonly name: "";
|
|
1376
|
-
readonly type: "uint256";
|
|
1377
|
-
}];
|
|
1378
|
-
readonly stateMutability: "view";
|
|
1120
|
+
readonly name: "renounceRole";
|
|
1121
|
+
readonly outputs: readonly [];
|
|
1122
|
+
readonly stateMutability: "nonpayable";
|
|
1379
1123
|
readonly type: "function";
|
|
1380
1124
|
}, {
|
|
1381
1125
|
readonly inputs: readonly [{
|
|
1382
|
-
readonly internalType: "
|
|
1383
|
-
readonly name: "
|
|
1384
|
-
readonly type: "
|
|
1126
|
+
readonly internalType: "bytes32";
|
|
1127
|
+
readonly name: "role";
|
|
1128
|
+
readonly type: "bytes32";
|
|
1129
|
+
}, {
|
|
1130
|
+
readonly internalType: "address";
|
|
1131
|
+
readonly name: "account";
|
|
1132
|
+
readonly type: "address";
|
|
1385
1133
|
}];
|
|
1386
|
-
readonly name: "
|
|
1134
|
+
readonly name: "revokeRole";
|
|
1387
1135
|
readonly outputs: readonly [];
|
|
1388
1136
|
readonly stateMutability: "nonpayable";
|
|
1389
1137
|
readonly type: "function";
|
|
1390
1138
|
}, {
|
|
1391
1139
|
readonly inputs: readonly [{
|
|
1392
|
-
readonly internalType: "
|
|
1393
|
-
readonly name: "
|
|
1394
|
-
readonly type: "
|
|
1140
|
+
readonly internalType: "bool";
|
|
1141
|
+
readonly name: "newDepositRAACOnClaim";
|
|
1142
|
+
readonly type: "bool";
|
|
1395
1143
|
}];
|
|
1396
|
-
readonly name: "
|
|
1144
|
+
readonly name: "setDepositRAACOnClaim";
|
|
1397
1145
|
readonly outputs: readonly [];
|
|
1398
1146
|
readonly stateMutability: "nonpayable";
|
|
1399
1147
|
readonly type: "function";
|
|
@@ -1421,64 +1169,6 @@ export declare class BaseGauge__factory {
|
|
|
1421
1169
|
readonly outputs: readonly [];
|
|
1422
1170
|
readonly stateMutability: "nonpayable";
|
|
1423
1171
|
readonly type: "function";
|
|
1424
|
-
}, {
|
|
1425
|
-
readonly inputs: readonly [{
|
|
1426
|
-
readonly internalType: "uint256";
|
|
1427
|
-
readonly name: "weight";
|
|
1428
|
-
readonly type: "uint256";
|
|
1429
|
-
}];
|
|
1430
|
-
readonly name: "setInitialWeight";
|
|
1431
|
-
readonly outputs: readonly [];
|
|
1432
|
-
readonly stateMutability: "nonpayable";
|
|
1433
|
-
readonly type: "function";
|
|
1434
|
-
}, {
|
|
1435
|
-
readonly inputs: readonly [{
|
|
1436
|
-
readonly internalType: "uint256";
|
|
1437
|
-
readonly name: "emission";
|
|
1438
|
-
readonly type: "uint256";
|
|
1439
|
-
}];
|
|
1440
|
-
readonly name: "setMaxEmission";
|
|
1441
|
-
readonly outputs: readonly [];
|
|
1442
|
-
readonly stateMutability: "nonpayable";
|
|
1443
|
-
readonly type: "function";
|
|
1444
|
-
}, {
|
|
1445
|
-
readonly inputs: readonly [{
|
|
1446
|
-
readonly internalType: "uint256";
|
|
1447
|
-
readonly name: "newPeriodDuration";
|
|
1448
|
-
readonly type: "uint256";
|
|
1449
|
-
}];
|
|
1450
|
-
readonly name: "setPeriodDuration";
|
|
1451
|
-
readonly outputs: readonly [];
|
|
1452
|
-
readonly stateMutability: "nonpayable";
|
|
1453
|
-
readonly type: "function";
|
|
1454
|
-
}, {
|
|
1455
|
-
readonly inputs: readonly [{
|
|
1456
|
-
readonly internalType: "address";
|
|
1457
|
-
readonly name: "token";
|
|
1458
|
-
readonly type: "address";
|
|
1459
|
-
}, {
|
|
1460
|
-
readonly internalType: "uint256";
|
|
1461
|
-
readonly name: "ratio";
|
|
1462
|
-
readonly type: "uint256";
|
|
1463
|
-
}];
|
|
1464
|
-
readonly name: "setTokenBoostRatio";
|
|
1465
|
-
readonly outputs: readonly [];
|
|
1466
|
-
readonly stateMutability: "nonpayable";
|
|
1467
|
-
readonly type: "function";
|
|
1468
|
-
}, {
|
|
1469
|
-
readonly inputs: readonly [{
|
|
1470
|
-
readonly internalType: "address";
|
|
1471
|
-
readonly name: "token";
|
|
1472
|
-
readonly type: "address";
|
|
1473
|
-
}, {
|
|
1474
|
-
readonly internalType: "uint256";
|
|
1475
|
-
readonly name: "emissionCap";
|
|
1476
|
-
readonly type: "uint256";
|
|
1477
|
-
}];
|
|
1478
|
-
readonly name: "setTokenEmissionCap";
|
|
1479
|
-
readonly outputs: readonly [];
|
|
1480
|
-
readonly stateMutability: "nonpayable";
|
|
1481
|
-
readonly type: "function";
|
|
1482
1172
|
}, {
|
|
1483
1173
|
readonly inputs: readonly [{
|
|
1484
1174
|
readonly internalType: "uint256";
|
|
@@ -1489,16 +1179,6 @@ export declare class BaseGauge__factory {
|
|
|
1489
1179
|
readonly outputs: readonly [];
|
|
1490
1180
|
readonly stateMutability: "nonpayable";
|
|
1491
1181
|
readonly type: "function";
|
|
1492
|
-
}, {
|
|
1493
|
-
readonly inputs: readonly [];
|
|
1494
|
-
readonly name: "stakingToken";
|
|
1495
|
-
readonly outputs: readonly [{
|
|
1496
|
-
readonly internalType: "contract IERC20";
|
|
1497
|
-
readonly name: "";
|
|
1498
|
-
readonly type: "address";
|
|
1499
|
-
}];
|
|
1500
|
-
readonly stateMutability: "view";
|
|
1501
|
-
readonly type: "function";
|
|
1502
1182
|
}, {
|
|
1503
1183
|
readonly inputs: readonly [{
|
|
1504
1184
|
readonly internalType: "bytes4";
|
|
@@ -1513,36 +1193,12 @@ export declare class BaseGauge__factory {
|
|
|
1513
1193
|
}];
|
|
1514
1194
|
readonly stateMutability: "view";
|
|
1515
1195
|
readonly type: "function";
|
|
1516
|
-
}, {
|
|
1517
|
-
readonly inputs: readonly [{
|
|
1518
|
-
readonly internalType: "address";
|
|
1519
|
-
readonly name: "token";
|
|
1520
|
-
readonly type: "address";
|
|
1521
|
-
}];
|
|
1522
|
-
readonly name: "syncRewardData";
|
|
1523
|
-
readonly outputs: readonly [];
|
|
1524
|
-
readonly stateMutability: "nonpayable";
|
|
1525
|
-
readonly type: "function";
|
|
1526
1196
|
}, {
|
|
1527
1197
|
readonly inputs: readonly [];
|
|
1528
1198
|
readonly name: "syncRewardTokens";
|
|
1529
1199
|
readonly outputs: readonly [];
|
|
1530
1200
|
readonly stateMutability: "nonpayable";
|
|
1531
1201
|
readonly type: "function";
|
|
1532
|
-
}, {
|
|
1533
|
-
readonly inputs: readonly [{
|
|
1534
|
-
readonly internalType: "address";
|
|
1535
|
-
readonly name: "";
|
|
1536
|
-
readonly type: "address";
|
|
1537
|
-
}];
|
|
1538
|
-
readonly name: "tokenBoostRatios";
|
|
1539
|
-
readonly outputs: readonly [{
|
|
1540
|
-
readonly internalType: "uint256";
|
|
1541
|
-
readonly name: "";
|
|
1542
|
-
readonly type: "uint256";
|
|
1543
|
-
}];
|
|
1544
|
-
readonly stateMutability: "view";
|
|
1545
|
-
readonly type: "function";
|
|
1546
1202
|
}, {
|
|
1547
1203
|
readonly inputs: readonly [];
|
|
1548
1204
|
readonly name: "totalSupply";
|
|
@@ -1553,22 +1209,6 @@ export declare class BaseGauge__factory {
|
|
|
1553
1209
|
}];
|
|
1554
1210
|
readonly stateMutability: "view";
|
|
1555
1211
|
readonly type: "function";
|
|
1556
|
-
}, {
|
|
1557
|
-
readonly inputs: readonly [];
|
|
1558
|
-
readonly name: "totalVotes";
|
|
1559
|
-
readonly outputs: readonly [{
|
|
1560
|
-
readonly internalType: "uint256";
|
|
1561
|
-
readonly name: "";
|
|
1562
|
-
readonly type: "uint256";
|
|
1563
|
-
}];
|
|
1564
|
-
readonly stateMutability: "view";
|
|
1565
|
-
readonly type: "function";
|
|
1566
|
-
}, {
|
|
1567
|
-
readonly inputs: readonly [];
|
|
1568
|
-
readonly name: "updatePeriod";
|
|
1569
|
-
readonly outputs: readonly [];
|
|
1570
|
-
readonly stateMutability: "nonpayable";
|
|
1571
|
-
readonly type: "function";
|
|
1572
1212
|
}, {
|
|
1573
1213
|
readonly inputs: readonly [];
|
|
1574
1214
|
readonly name: "updateUserRewards";
|
|
@@ -1581,30 +1221,8 @@ export declare class BaseGauge__factory {
|
|
|
1581
1221
|
readonly name: "";
|
|
1582
1222
|
readonly type: "address";
|
|
1583
1223
|
}];
|
|
1584
|
-
readonly name: "
|
|
1585
|
-
readonly outputs: readonly [{
|
|
1586
|
-
readonly internalType: "uint256";
|
|
1587
|
-
readonly name: "";
|
|
1588
|
-
readonly type: "uint256";
|
|
1589
|
-
}];
|
|
1590
|
-
readonly stateMutability: "view";
|
|
1591
|
-
readonly type: "function";
|
|
1592
|
-
}, {
|
|
1593
|
-
readonly inputs: readonly [{
|
|
1594
|
-
readonly internalType: "address";
|
|
1595
|
-
readonly name: "";
|
|
1596
|
-
readonly type: "address";
|
|
1597
|
-
}, {
|
|
1598
|
-
readonly internalType: "uint256";
|
|
1599
|
-
readonly name: "";
|
|
1600
|
-
readonly type: "uint256";
|
|
1601
|
-
}];
|
|
1602
|
-
readonly name: "userCheckpoints";
|
|
1224
|
+
readonly name: "userGaugeData";
|
|
1603
1225
|
readonly outputs: readonly [{
|
|
1604
|
-
readonly internalType: "uint256";
|
|
1605
|
-
readonly name: "timestamp";
|
|
1606
|
-
readonly type: "uint256";
|
|
1607
|
-
}, {
|
|
1608
1226
|
readonly internalType: "uint256";
|
|
1609
1227
|
readonly name: "balance";
|
|
1610
1228
|
readonly type: "uint256";
|
|
@@ -1612,146 +1230,10 @@ export declare class BaseGauge__factory {
|
|
|
1612
1230
|
readonly internalType: "uint256";
|
|
1613
1231
|
readonly name: "workingBalance";
|
|
1614
1232
|
readonly type: "uint256";
|
|
1615
|
-
}, {
|
|
1616
|
-
readonly internalType: "uint256";
|
|
1617
|
-
readonly name: "rewardPerToken";
|
|
1618
|
-
readonly type: "uint256";
|
|
1619
|
-
}, {
|
|
1620
|
-
readonly internalType: "uint256";
|
|
1621
|
-
readonly name: "slope";
|
|
1622
|
-
readonly type: "uint256";
|
|
1623
|
-
}, {
|
|
1624
|
-
readonly internalType: "uint256";
|
|
1625
|
-
readonly name: "bias";
|
|
1626
|
-
readonly type: "uint256";
|
|
1627
|
-
}];
|
|
1628
|
-
readonly stateMutability: "view";
|
|
1629
|
-
readonly type: "function";
|
|
1630
|
-
}, {
|
|
1631
|
-
readonly inputs: readonly [{
|
|
1632
|
-
readonly internalType: "address";
|
|
1633
|
-
readonly name: "";
|
|
1634
|
-
readonly type: "address";
|
|
1635
|
-
}, {
|
|
1636
|
-
readonly internalType: "address";
|
|
1637
|
-
readonly name: "";
|
|
1638
|
-
readonly type: "address";
|
|
1639
|
-
}];
|
|
1640
|
-
readonly name: "userClaimedRewards";
|
|
1641
|
-
readonly outputs: readonly [{
|
|
1642
|
-
readonly internalType: "uint256";
|
|
1643
|
-
readonly name: "";
|
|
1644
|
-
readonly type: "uint256";
|
|
1645
|
-
}];
|
|
1646
|
-
readonly stateMutability: "view";
|
|
1647
|
-
readonly type: "function";
|
|
1648
|
-
}, {
|
|
1649
|
-
readonly inputs: readonly [{
|
|
1650
|
-
readonly internalType: "address";
|
|
1651
|
-
readonly name: "";
|
|
1652
|
-
readonly type: "address";
|
|
1653
|
-
}, {
|
|
1654
|
-
readonly internalType: "address";
|
|
1655
|
-
readonly name: "";
|
|
1656
|
-
readonly type: "address";
|
|
1657
|
-
}];
|
|
1658
|
-
readonly name: "userRewardData";
|
|
1659
|
-
readonly outputs: readonly [{
|
|
1660
|
-
readonly internalType: "uint256";
|
|
1661
|
-
readonly name: "integral";
|
|
1662
|
-
readonly type: "uint256";
|
|
1663
1233
|
}, {
|
|
1664
1234
|
readonly internalType: "uint256";
|
|
1665
1235
|
readonly name: "lastUpdate";
|
|
1666
1236
|
readonly type: "uint256";
|
|
1667
|
-
}, {
|
|
1668
|
-
readonly internalType: "uint256";
|
|
1669
|
-
readonly name: "claimable";
|
|
1670
|
-
readonly type: "uint256";
|
|
1671
|
-
}];
|
|
1672
|
-
readonly stateMutability: "view";
|
|
1673
|
-
readonly type: "function";
|
|
1674
|
-
}, {
|
|
1675
|
-
readonly inputs: readonly [{
|
|
1676
|
-
readonly internalType: "address";
|
|
1677
|
-
readonly name: "";
|
|
1678
|
-
readonly type: "address";
|
|
1679
|
-
}, {
|
|
1680
|
-
readonly internalType: "address";
|
|
1681
|
-
readonly name: "";
|
|
1682
|
-
readonly type: "address";
|
|
1683
|
-
}];
|
|
1684
|
-
readonly name: "userRewardPerTokenPaid";
|
|
1685
|
-
readonly outputs: readonly [{
|
|
1686
|
-
readonly internalType: "uint256";
|
|
1687
|
-
readonly name: "";
|
|
1688
|
-
readonly type: "uint256";
|
|
1689
|
-
}];
|
|
1690
|
-
readonly stateMutability: "view";
|
|
1691
|
-
readonly type: "function";
|
|
1692
|
-
}, {
|
|
1693
|
-
readonly inputs: readonly [{
|
|
1694
|
-
readonly internalType: "address";
|
|
1695
|
-
readonly name: "";
|
|
1696
|
-
readonly type: "address";
|
|
1697
|
-
}];
|
|
1698
|
-
readonly name: "userVotes";
|
|
1699
|
-
readonly outputs: readonly [{
|
|
1700
|
-
readonly internalType: "uint256";
|
|
1701
|
-
readonly name: "direction";
|
|
1702
|
-
readonly type: "uint256";
|
|
1703
|
-
}, {
|
|
1704
|
-
readonly internalType: "uint256";
|
|
1705
|
-
readonly name: "weight";
|
|
1706
|
-
readonly type: "uint256";
|
|
1707
|
-
}, {
|
|
1708
|
-
readonly internalType: "uint256";
|
|
1709
|
-
readonly name: "timestamp";
|
|
1710
|
-
readonly type: "uint256";
|
|
1711
|
-
}];
|
|
1712
|
-
readonly stateMutability: "view";
|
|
1713
|
-
readonly type: "function";
|
|
1714
|
-
}, {
|
|
1715
|
-
readonly inputs: readonly [{
|
|
1716
|
-
readonly internalType: "uint256";
|
|
1717
|
-
readonly name: "direction";
|
|
1718
|
-
readonly type: "uint256";
|
|
1719
|
-
}];
|
|
1720
|
-
readonly name: "voteDirection";
|
|
1721
|
-
readonly outputs: readonly [];
|
|
1722
|
-
readonly stateMutability: "nonpayable";
|
|
1723
|
-
readonly type: "function";
|
|
1724
|
-
}, {
|
|
1725
|
-
readonly inputs: readonly [];
|
|
1726
|
-
readonly name: "weightPeriod";
|
|
1727
|
-
readonly outputs: readonly [{
|
|
1728
|
-
readonly internalType: "uint256";
|
|
1729
|
-
readonly name: "startTime";
|
|
1730
|
-
readonly type: "uint256";
|
|
1731
|
-
}, {
|
|
1732
|
-
readonly internalType: "uint256";
|
|
1733
|
-
readonly name: "endTime";
|
|
1734
|
-
readonly type: "uint256";
|
|
1735
|
-
}, {
|
|
1736
|
-
readonly internalType: "uint256";
|
|
1737
|
-
readonly name: "lastUpdateTime";
|
|
1738
|
-
readonly type: "uint256";
|
|
1739
|
-
}, {
|
|
1740
|
-
readonly internalType: "uint256";
|
|
1741
|
-
readonly name: "value";
|
|
1742
|
-
readonly type: "uint256";
|
|
1743
|
-
}, {
|
|
1744
|
-
readonly internalType: "uint256";
|
|
1745
|
-
readonly name: "weightedSum";
|
|
1746
|
-
readonly type: "uint256";
|
|
1747
|
-
}, {
|
|
1748
|
-
readonly internalType: "uint256";
|
|
1749
|
-
readonly name: "totalDuration";
|
|
1750
|
-
readonly type: "uint256";
|
|
1751
|
-
}, {
|
|
1752
|
-
readonly internalType: "uint256";
|
|
1753
|
-
readonly name: "weight";
|
|
1754
|
-
readonly type: "uint256";
|
|
1755
1237
|
}];
|
|
1756
1238
|
readonly stateMutability: "view";
|
|
1757
1239
|
readonly type: "function";
|
|
@@ -1765,30 +1247,6 @@ export declare class BaseGauge__factory {
|
|
|
1765
1247
|
readonly outputs: readonly [];
|
|
1766
1248
|
readonly stateMutability: "nonpayable";
|
|
1767
1249
|
readonly type: "function";
|
|
1768
|
-
}, {
|
|
1769
|
-
readonly inputs: readonly [{
|
|
1770
|
-
readonly internalType: "address";
|
|
1771
|
-
readonly name: "";
|
|
1772
|
-
readonly type: "address";
|
|
1773
|
-
}];
|
|
1774
|
-
readonly name: "workingBalances";
|
|
1775
|
-
readonly outputs: readonly [{
|
|
1776
|
-
readonly internalType: "uint256";
|
|
1777
|
-
readonly name: "";
|
|
1778
|
-
readonly type: "uint256";
|
|
1779
|
-
}];
|
|
1780
|
-
readonly stateMutability: "view";
|
|
1781
|
-
readonly type: "function";
|
|
1782
|
-
}, {
|
|
1783
|
-
readonly inputs: readonly [];
|
|
1784
|
-
readonly name: "workingSupply";
|
|
1785
|
-
readonly outputs: readonly [{
|
|
1786
|
-
readonly internalType: "uint256";
|
|
1787
|
-
readonly name: "";
|
|
1788
|
-
readonly type: "uint256";
|
|
1789
|
-
}];
|
|
1790
|
-
readonly stateMutability: "view";
|
|
1791
|
-
readonly type: "function";
|
|
1792
1250
|
}];
|
|
1793
1251
|
static createInterface(): BaseGaugeInterface;
|
|
1794
1252
|
static connect(address: string, runner?: ContractRunner | null): BaseGauge;
|