@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
|
@@ -0,0 +1,1622 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "BaseGauge",
|
|
4
|
+
"sourceName": "contracts/core/governance/gauges/BaseGauge.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "AccessControlBadConfirmation",
|
|
9
|
+
"type": "error"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"inputs": [
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "account",
|
|
16
|
+
"type": "address"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"internalType": "bytes32",
|
|
20
|
+
"name": "neededRole",
|
|
21
|
+
"type": "bytes32"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"name": "AccessControlUnauthorizedAccount",
|
|
25
|
+
"type": "error"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [],
|
|
29
|
+
"name": "AlreadyPaused",
|
|
30
|
+
"type": "error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [],
|
|
34
|
+
"name": "DistributorAlreadyAdded",
|
|
35
|
+
"type": "error"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"inputs": [],
|
|
39
|
+
"name": "DistributorNotAdded",
|
|
40
|
+
"type": "error"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"inputs": [],
|
|
44
|
+
"name": "EnforcedPause",
|
|
45
|
+
"type": "error"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"inputs": [],
|
|
49
|
+
"name": "ExpectedPause",
|
|
50
|
+
"type": "error"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"inputs": [],
|
|
54
|
+
"name": "FailedToGetTokenDecimals",
|
|
55
|
+
"type": "error"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"inputs": [],
|
|
59
|
+
"name": "GaugeNotActive",
|
|
60
|
+
"type": "error"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"inputs": [],
|
|
64
|
+
"name": "GaugeNotStarted",
|
|
65
|
+
"type": "error"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"inputs": [],
|
|
69
|
+
"name": "InsufficientStakedBalance",
|
|
70
|
+
"type": "error"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"inputs": [],
|
|
74
|
+
"name": "InvalidAddress",
|
|
75
|
+
"type": "error"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"inputs": [],
|
|
79
|
+
"name": "InvalidAmount",
|
|
80
|
+
"type": "error"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"inputs": [],
|
|
84
|
+
"name": "InvalidDistributor",
|
|
85
|
+
"type": "error"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"inputs": [],
|
|
89
|
+
"name": "MaxExtraRewardsReached",
|
|
90
|
+
"type": "error"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"inputs": [],
|
|
94
|
+
"name": "NotPaused",
|
|
95
|
+
"type": "error"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"inputs": [],
|
|
99
|
+
"name": "NotSupportedToken",
|
|
100
|
+
"type": "error"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"inputs": [],
|
|
104
|
+
"name": "ReentrancyGuardReentrantCall",
|
|
105
|
+
"type": "error"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"inputs": [
|
|
109
|
+
{
|
|
110
|
+
"internalType": "address",
|
|
111
|
+
"name": "token",
|
|
112
|
+
"type": "address"
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"name": "SafeERC20FailedOperation",
|
|
116
|
+
"type": "error"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"inputs": [],
|
|
120
|
+
"name": "TokenAlreadyInitialized",
|
|
121
|
+
"type": "error"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"anonymous": false,
|
|
125
|
+
"inputs": [
|
|
126
|
+
{
|
|
127
|
+
"indexed": false,
|
|
128
|
+
"internalType": "bool",
|
|
129
|
+
"name": "depositRAACOnClaim",
|
|
130
|
+
"type": "bool"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"name": "DepositRAACOnClaimUpdated",
|
|
134
|
+
"type": "event"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"anonymous": false,
|
|
138
|
+
"inputs": [
|
|
139
|
+
{
|
|
140
|
+
"indexed": true,
|
|
141
|
+
"internalType": "address",
|
|
142
|
+
"name": "distributor",
|
|
143
|
+
"type": "address"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"indexed": false,
|
|
147
|
+
"internalType": "bool",
|
|
148
|
+
"name": "isApproved",
|
|
149
|
+
"type": "bool"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"name": "DistributorApprovalUpdated",
|
|
153
|
+
"type": "event"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"anonymous": false,
|
|
157
|
+
"inputs": [
|
|
158
|
+
{
|
|
159
|
+
"indexed": true,
|
|
160
|
+
"internalType": "address",
|
|
161
|
+
"name": "distributor",
|
|
162
|
+
"type": "address"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"indexed": false,
|
|
166
|
+
"internalType": "bool",
|
|
167
|
+
"name": "distributorAdded",
|
|
168
|
+
"type": "bool"
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"name": "DistributorUpdated",
|
|
172
|
+
"type": "event"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"anonymous": false,
|
|
176
|
+
"inputs": [
|
|
177
|
+
{
|
|
178
|
+
"indexed": false,
|
|
179
|
+
"internalType": "bool",
|
|
180
|
+
"name": "paused",
|
|
181
|
+
"type": "bool"
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
"name": "EmergencyPauseUpdated",
|
|
185
|
+
"type": "event"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"anonymous": false,
|
|
189
|
+
"inputs": [
|
|
190
|
+
{
|
|
191
|
+
"indexed": true,
|
|
192
|
+
"internalType": "address",
|
|
193
|
+
"name": "token",
|
|
194
|
+
"type": "address"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"indexed": true,
|
|
198
|
+
"internalType": "address",
|
|
199
|
+
"name": "user",
|
|
200
|
+
"type": "address"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"indexed": false,
|
|
204
|
+
"internalType": "uint256",
|
|
205
|
+
"name": "amount",
|
|
206
|
+
"type": "uint256"
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
"name": "ExtraRewardClaimed",
|
|
210
|
+
"type": "event"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"anonymous": false,
|
|
214
|
+
"inputs": [
|
|
215
|
+
{
|
|
216
|
+
"indexed": true,
|
|
217
|
+
"internalType": "address",
|
|
218
|
+
"name": "token",
|
|
219
|
+
"type": "address"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"indexed": false,
|
|
223
|
+
"internalType": "uint256",
|
|
224
|
+
"name": "amount",
|
|
225
|
+
"type": "uint256"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"name": "ExtraRewardDeposited",
|
|
229
|
+
"type": "event"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"anonymous": false,
|
|
233
|
+
"inputs": [
|
|
234
|
+
{
|
|
235
|
+
"indexed": true,
|
|
236
|
+
"internalType": "address",
|
|
237
|
+
"name": "token",
|
|
238
|
+
"type": "address"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"indexed": false,
|
|
242
|
+
"internalType": "address",
|
|
243
|
+
"name": "distributor",
|
|
244
|
+
"type": "address"
|
|
245
|
+
}
|
|
246
|
+
],
|
|
247
|
+
"name": "ExtraRewardTokenAdded",
|
|
248
|
+
"type": "event"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"anonymous": false,
|
|
252
|
+
"inputs": [
|
|
253
|
+
{
|
|
254
|
+
"indexed": true,
|
|
255
|
+
"internalType": "address",
|
|
256
|
+
"name": "token",
|
|
257
|
+
"type": "address"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"indexed": false,
|
|
261
|
+
"internalType": "uint256",
|
|
262
|
+
"name": "leftoverAmount",
|
|
263
|
+
"type": "uint256"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"indexed": false,
|
|
267
|
+
"internalType": "uint256",
|
|
268
|
+
"name": "newRewards",
|
|
269
|
+
"type": "uint256"
|
|
270
|
+
}
|
|
271
|
+
],
|
|
272
|
+
"name": "LeftoverRewardsIncluded",
|
|
273
|
+
"type": "event"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"anonymous": false,
|
|
277
|
+
"inputs": [
|
|
278
|
+
{
|
|
279
|
+
"indexed": false,
|
|
280
|
+
"internalType": "address",
|
|
281
|
+
"name": "account",
|
|
282
|
+
"type": "address"
|
|
283
|
+
}
|
|
284
|
+
],
|
|
285
|
+
"name": "Paused",
|
|
286
|
+
"type": "event"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"anonymous": false,
|
|
290
|
+
"inputs": [
|
|
291
|
+
{
|
|
292
|
+
"indexed": true,
|
|
293
|
+
"internalType": "address",
|
|
294
|
+
"name": "token",
|
|
295
|
+
"type": "address"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"indexed": false,
|
|
299
|
+
"internalType": "uint256",
|
|
300
|
+
"name": "newRate",
|
|
301
|
+
"type": "uint256"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"indexed": false,
|
|
305
|
+
"internalType": "uint256",
|
|
306
|
+
"name": "remainingTime",
|
|
307
|
+
"type": "uint256"
|
|
308
|
+
}
|
|
309
|
+
],
|
|
310
|
+
"name": "RateRecalculated",
|
|
311
|
+
"type": "event"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"anonymous": false,
|
|
315
|
+
"inputs": [
|
|
316
|
+
{
|
|
317
|
+
"indexed": true,
|
|
318
|
+
"internalType": "address",
|
|
319
|
+
"name": "token",
|
|
320
|
+
"type": "address"
|
|
321
|
+
}
|
|
322
|
+
],
|
|
323
|
+
"name": "RewardTokenActivated",
|
|
324
|
+
"type": "event"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"anonymous": false,
|
|
328
|
+
"inputs": [
|
|
329
|
+
{
|
|
330
|
+
"indexed": true,
|
|
331
|
+
"internalType": "address",
|
|
332
|
+
"name": "token",
|
|
333
|
+
"type": "address"
|
|
334
|
+
}
|
|
335
|
+
],
|
|
336
|
+
"name": "RewardTokenAdded",
|
|
337
|
+
"type": "event"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"anonymous": false,
|
|
341
|
+
"inputs": [
|
|
342
|
+
{
|
|
343
|
+
"indexed": true,
|
|
344
|
+
"internalType": "address",
|
|
345
|
+
"name": "token",
|
|
346
|
+
"type": "address"
|
|
347
|
+
}
|
|
348
|
+
],
|
|
349
|
+
"name": "RewardTokenRegistered",
|
|
350
|
+
"type": "event"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"anonymous": false,
|
|
354
|
+
"inputs": [
|
|
355
|
+
{
|
|
356
|
+
"indexed": true,
|
|
357
|
+
"internalType": "address",
|
|
358
|
+
"name": "user",
|
|
359
|
+
"type": "address"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"indexed": true,
|
|
363
|
+
"internalType": "address",
|
|
364
|
+
"name": "token",
|
|
365
|
+
"type": "address"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"indexed": false,
|
|
369
|
+
"internalType": "uint256",
|
|
370
|
+
"name": "amount",
|
|
371
|
+
"type": "uint256"
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
"name": "RewardTransferred",
|
|
375
|
+
"type": "event"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"anonymous": false,
|
|
379
|
+
"inputs": [
|
|
380
|
+
{
|
|
381
|
+
"indexed": true,
|
|
382
|
+
"internalType": "bytes32",
|
|
383
|
+
"name": "role",
|
|
384
|
+
"type": "bytes32"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"indexed": true,
|
|
388
|
+
"internalType": "bytes32",
|
|
389
|
+
"name": "previousAdminRole",
|
|
390
|
+
"type": "bytes32"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"indexed": true,
|
|
394
|
+
"internalType": "bytes32",
|
|
395
|
+
"name": "newAdminRole",
|
|
396
|
+
"type": "bytes32"
|
|
397
|
+
}
|
|
398
|
+
],
|
|
399
|
+
"name": "RoleAdminChanged",
|
|
400
|
+
"type": "event"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"anonymous": false,
|
|
404
|
+
"inputs": [
|
|
405
|
+
{
|
|
406
|
+
"indexed": true,
|
|
407
|
+
"internalType": "bytes32",
|
|
408
|
+
"name": "role",
|
|
409
|
+
"type": "bytes32"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"indexed": true,
|
|
413
|
+
"internalType": "address",
|
|
414
|
+
"name": "account",
|
|
415
|
+
"type": "address"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"indexed": true,
|
|
419
|
+
"internalType": "address",
|
|
420
|
+
"name": "sender",
|
|
421
|
+
"type": "address"
|
|
422
|
+
}
|
|
423
|
+
],
|
|
424
|
+
"name": "RoleGranted",
|
|
425
|
+
"type": "event"
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"anonymous": false,
|
|
429
|
+
"inputs": [
|
|
430
|
+
{
|
|
431
|
+
"indexed": true,
|
|
432
|
+
"internalType": "bytes32",
|
|
433
|
+
"name": "role",
|
|
434
|
+
"type": "bytes32"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"indexed": true,
|
|
438
|
+
"internalType": "address",
|
|
439
|
+
"name": "account",
|
|
440
|
+
"type": "address"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"indexed": true,
|
|
444
|
+
"internalType": "address",
|
|
445
|
+
"name": "sender",
|
|
446
|
+
"type": "address"
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
"name": "RoleRevoked",
|
|
450
|
+
"type": "event"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"anonymous": false,
|
|
454
|
+
"inputs": [
|
|
455
|
+
{
|
|
456
|
+
"indexed": true,
|
|
457
|
+
"internalType": "address",
|
|
458
|
+
"name": "user",
|
|
459
|
+
"type": "address"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"indexed": false,
|
|
463
|
+
"internalType": "uint256",
|
|
464
|
+
"name": "amount",
|
|
465
|
+
"type": "uint256"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
"name": "Staked",
|
|
469
|
+
"type": "event"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"anonymous": false,
|
|
473
|
+
"inputs": [
|
|
474
|
+
{
|
|
475
|
+
"indexed": false,
|
|
476
|
+
"internalType": "address",
|
|
477
|
+
"name": "account",
|
|
478
|
+
"type": "address"
|
|
479
|
+
}
|
|
480
|
+
],
|
|
481
|
+
"name": "Unpaused",
|
|
482
|
+
"type": "event"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"anonymous": false,
|
|
486
|
+
"inputs": [
|
|
487
|
+
{
|
|
488
|
+
"indexed": true,
|
|
489
|
+
"internalType": "address",
|
|
490
|
+
"name": "user",
|
|
491
|
+
"type": "address"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"indexed": false,
|
|
495
|
+
"internalType": "uint256",
|
|
496
|
+
"name": "timestamp",
|
|
497
|
+
"type": "uint256"
|
|
498
|
+
}
|
|
499
|
+
],
|
|
500
|
+
"name": "UserRewardsUpdated",
|
|
501
|
+
"type": "event"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"anonymous": false,
|
|
505
|
+
"inputs": [
|
|
506
|
+
{
|
|
507
|
+
"indexed": true,
|
|
508
|
+
"internalType": "address",
|
|
509
|
+
"name": "user",
|
|
510
|
+
"type": "address"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"indexed": false,
|
|
514
|
+
"internalType": "uint256",
|
|
515
|
+
"name": "amount",
|
|
516
|
+
"type": "uint256"
|
|
517
|
+
}
|
|
518
|
+
],
|
|
519
|
+
"name": "Withdrawn",
|
|
520
|
+
"type": "event"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"anonymous": false,
|
|
524
|
+
"inputs": [
|
|
525
|
+
{
|
|
526
|
+
"indexed": true,
|
|
527
|
+
"internalType": "address",
|
|
528
|
+
"name": "user",
|
|
529
|
+
"type": "address"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"indexed": false,
|
|
533
|
+
"internalType": "uint256",
|
|
534
|
+
"name": "newWorkingBalance",
|
|
535
|
+
"type": "uint256"
|
|
536
|
+
}
|
|
537
|
+
],
|
|
538
|
+
"name": "WorkingBalanceUpdated",
|
|
539
|
+
"type": "event"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"inputs": [],
|
|
543
|
+
"name": "CLAIM_FOR_ROLE",
|
|
544
|
+
"outputs": [
|
|
545
|
+
{
|
|
546
|
+
"internalType": "bytes32",
|
|
547
|
+
"name": "",
|
|
548
|
+
"type": "bytes32"
|
|
549
|
+
}
|
|
550
|
+
],
|
|
551
|
+
"stateMutability": "view",
|
|
552
|
+
"type": "function"
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"inputs": [],
|
|
556
|
+
"name": "CONTROLLER_ROLE",
|
|
557
|
+
"outputs": [
|
|
558
|
+
{
|
|
559
|
+
"internalType": "bytes32",
|
|
560
|
+
"name": "",
|
|
561
|
+
"type": "bytes32"
|
|
562
|
+
}
|
|
563
|
+
],
|
|
564
|
+
"stateMutability": "view",
|
|
565
|
+
"type": "function"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"inputs": [],
|
|
569
|
+
"name": "DEFAULT_ADMIN_ROLE",
|
|
570
|
+
"outputs": [
|
|
571
|
+
{
|
|
572
|
+
"internalType": "bytes32",
|
|
573
|
+
"name": "",
|
|
574
|
+
"type": "bytes32"
|
|
575
|
+
}
|
|
576
|
+
],
|
|
577
|
+
"stateMutability": "view",
|
|
578
|
+
"type": "function"
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
"inputs": [],
|
|
582
|
+
"name": "EMERGENCY_ADMIN",
|
|
583
|
+
"outputs": [
|
|
584
|
+
{
|
|
585
|
+
"internalType": "bytes32",
|
|
586
|
+
"name": "",
|
|
587
|
+
"type": "bytes32"
|
|
588
|
+
}
|
|
589
|
+
],
|
|
590
|
+
"stateMutability": "view",
|
|
591
|
+
"type": "function"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"inputs": [],
|
|
595
|
+
"name": "MAX_EXTRA_REWARDS",
|
|
596
|
+
"outputs": [
|
|
597
|
+
{
|
|
598
|
+
"internalType": "uint256",
|
|
599
|
+
"name": "",
|
|
600
|
+
"type": "uint256"
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
"stateMutability": "view",
|
|
604
|
+
"type": "function"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"inputs": [],
|
|
608
|
+
"name": "WEEK",
|
|
609
|
+
"outputs": [
|
|
610
|
+
{
|
|
611
|
+
"internalType": "uint256",
|
|
612
|
+
"name": "",
|
|
613
|
+
"type": "uint256"
|
|
614
|
+
}
|
|
615
|
+
],
|
|
616
|
+
"stateMutability": "view",
|
|
617
|
+
"type": "function"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"inputs": [
|
|
621
|
+
{
|
|
622
|
+
"internalType": "address",
|
|
623
|
+
"name": "token",
|
|
624
|
+
"type": "address"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"internalType": "address",
|
|
628
|
+
"name": "distributor",
|
|
629
|
+
"type": "address"
|
|
630
|
+
}
|
|
631
|
+
],
|
|
632
|
+
"name": "addRewardToken",
|
|
633
|
+
"outputs": [],
|
|
634
|
+
"stateMutability": "nonpayable",
|
|
635
|
+
"type": "function"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"inputs": [
|
|
639
|
+
{
|
|
640
|
+
"internalType": "address",
|
|
641
|
+
"name": "account",
|
|
642
|
+
"type": "address"
|
|
643
|
+
}
|
|
644
|
+
],
|
|
645
|
+
"name": "allEarnedRewards",
|
|
646
|
+
"outputs": [
|
|
647
|
+
{
|
|
648
|
+
"internalType": "address[]",
|
|
649
|
+
"name": "",
|
|
650
|
+
"type": "address[]"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"internalType": "uint256[]",
|
|
654
|
+
"name": "",
|
|
655
|
+
"type": "uint256[]"
|
|
656
|
+
}
|
|
657
|
+
],
|
|
658
|
+
"stateMutability": "view",
|
|
659
|
+
"type": "function"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"inputs": [
|
|
663
|
+
{
|
|
664
|
+
"internalType": "address",
|
|
665
|
+
"name": "user",
|
|
666
|
+
"type": "address"
|
|
667
|
+
}
|
|
668
|
+
],
|
|
669
|
+
"name": "allPendingExtraRewards",
|
|
670
|
+
"outputs": [
|
|
671
|
+
{
|
|
672
|
+
"internalType": "address[]",
|
|
673
|
+
"name": "tokens",
|
|
674
|
+
"type": "address[]"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"internalType": "uint256[]",
|
|
678
|
+
"name": "amounts",
|
|
679
|
+
"type": "uint256[]"
|
|
680
|
+
}
|
|
681
|
+
],
|
|
682
|
+
"stateMutability": "view",
|
|
683
|
+
"type": "function"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"inputs": [
|
|
687
|
+
{
|
|
688
|
+
"internalType": "address",
|
|
689
|
+
"name": "account",
|
|
690
|
+
"type": "address"
|
|
691
|
+
}
|
|
692
|
+
],
|
|
693
|
+
"name": "allPendingRewards",
|
|
694
|
+
"outputs": [
|
|
695
|
+
{
|
|
696
|
+
"internalType": "address[]",
|
|
697
|
+
"name": "",
|
|
698
|
+
"type": "address[]"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"internalType": "uint256[]",
|
|
702
|
+
"name": "",
|
|
703
|
+
"type": "uint256[]"
|
|
704
|
+
}
|
|
705
|
+
],
|
|
706
|
+
"stateMutability": "view",
|
|
707
|
+
"type": "function"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"inputs": [
|
|
711
|
+
{
|
|
712
|
+
"internalType": "address",
|
|
713
|
+
"name": "account",
|
|
714
|
+
"type": "address"
|
|
715
|
+
}
|
|
716
|
+
],
|
|
717
|
+
"name": "balanceOf",
|
|
718
|
+
"outputs": [
|
|
719
|
+
{
|
|
720
|
+
"internalType": "uint256",
|
|
721
|
+
"name": "",
|
|
722
|
+
"type": "uint256"
|
|
723
|
+
}
|
|
724
|
+
],
|
|
725
|
+
"stateMutability": "view",
|
|
726
|
+
"type": "function"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"inputs": [
|
|
730
|
+
{
|
|
731
|
+
"internalType": "address",
|
|
732
|
+
"name": "token",
|
|
733
|
+
"type": "address"
|
|
734
|
+
}
|
|
735
|
+
],
|
|
736
|
+
"name": "claimExtraReward",
|
|
737
|
+
"outputs": [
|
|
738
|
+
{
|
|
739
|
+
"internalType": "uint256",
|
|
740
|
+
"name": "",
|
|
741
|
+
"type": "uint256"
|
|
742
|
+
}
|
|
743
|
+
],
|
|
744
|
+
"stateMutability": "nonpayable",
|
|
745
|
+
"type": "function"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"inputs": [],
|
|
749
|
+
"name": "claimExtraRewards",
|
|
750
|
+
"outputs": [],
|
|
751
|
+
"stateMutability": "nonpayable",
|
|
752
|
+
"type": "function"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"inputs": [
|
|
756
|
+
{
|
|
757
|
+
"internalType": "address",
|
|
758
|
+
"name": "token",
|
|
759
|
+
"type": "address"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"internalType": "uint256",
|
|
763
|
+
"name": "amount",
|
|
764
|
+
"type": "uint256"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"internalType": "address",
|
|
768
|
+
"name": "user",
|
|
769
|
+
"type": "address"
|
|
770
|
+
}
|
|
771
|
+
],
|
|
772
|
+
"name": "claimOnBehalfOf",
|
|
773
|
+
"outputs": [
|
|
774
|
+
{
|
|
775
|
+
"internalType": "uint256",
|
|
776
|
+
"name": "",
|
|
777
|
+
"type": "uint256"
|
|
778
|
+
}
|
|
779
|
+
],
|
|
780
|
+
"stateMutability": "nonpayable",
|
|
781
|
+
"type": "function"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"inputs": [
|
|
785
|
+
{
|
|
786
|
+
"internalType": "address",
|
|
787
|
+
"name": "token",
|
|
788
|
+
"type": "address"
|
|
789
|
+
}
|
|
790
|
+
],
|
|
791
|
+
"name": "claimRewardToken",
|
|
792
|
+
"outputs": [
|
|
793
|
+
{
|
|
794
|
+
"internalType": "uint256",
|
|
795
|
+
"name": "",
|
|
796
|
+
"type": "uint256"
|
|
797
|
+
}
|
|
798
|
+
],
|
|
799
|
+
"stateMutability": "nonpayable",
|
|
800
|
+
"type": "function"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"inputs": [],
|
|
804
|
+
"name": "claimRewards",
|
|
805
|
+
"outputs": [],
|
|
806
|
+
"stateMutability": "nonpayable",
|
|
807
|
+
"type": "function"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"inputs": [
|
|
811
|
+
{
|
|
812
|
+
"internalType": "address",
|
|
813
|
+
"name": "user",
|
|
814
|
+
"type": "address"
|
|
815
|
+
}
|
|
816
|
+
],
|
|
817
|
+
"name": "claimRewardsFor",
|
|
818
|
+
"outputs": [],
|
|
819
|
+
"stateMutability": "nonpayable",
|
|
820
|
+
"type": "function"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"inputs": [],
|
|
824
|
+
"name": "depositRAACOnClaim",
|
|
825
|
+
"outputs": [
|
|
826
|
+
{
|
|
827
|
+
"internalType": "bool",
|
|
828
|
+
"name": "",
|
|
829
|
+
"type": "bool"
|
|
830
|
+
}
|
|
831
|
+
],
|
|
832
|
+
"stateMutability": "view",
|
|
833
|
+
"type": "function"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"inputs": [
|
|
837
|
+
{
|
|
838
|
+
"internalType": "address",
|
|
839
|
+
"name": "token",
|
|
840
|
+
"type": "address"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"internalType": "uint256",
|
|
844
|
+
"name": "amount",
|
|
845
|
+
"type": "uint256"
|
|
846
|
+
}
|
|
847
|
+
],
|
|
848
|
+
"name": "depositRewardToken",
|
|
849
|
+
"outputs": [],
|
|
850
|
+
"stateMutability": "nonpayable",
|
|
851
|
+
"type": "function"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"inputs": [
|
|
855
|
+
{
|
|
856
|
+
"internalType": "address",
|
|
857
|
+
"name": "token",
|
|
858
|
+
"type": "address"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"internalType": "address",
|
|
862
|
+
"name": "user",
|
|
863
|
+
"type": "address"
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
"name": "earnedReward",
|
|
867
|
+
"outputs": [
|
|
868
|
+
{
|
|
869
|
+
"internalType": "uint256",
|
|
870
|
+
"name": "",
|
|
871
|
+
"type": "uint256"
|
|
872
|
+
}
|
|
873
|
+
],
|
|
874
|
+
"stateMutability": "view",
|
|
875
|
+
"type": "function"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"inputs": [
|
|
879
|
+
{
|
|
880
|
+
"internalType": "address",
|
|
881
|
+
"name": "token",
|
|
882
|
+
"type": "address"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"internalType": "uint256",
|
|
886
|
+
"name": "amount",
|
|
887
|
+
"type": "uint256"
|
|
888
|
+
}
|
|
889
|
+
],
|
|
890
|
+
"name": "emergencyWithdraw",
|
|
891
|
+
"outputs": [],
|
|
892
|
+
"stateMutability": "nonpayable",
|
|
893
|
+
"type": "function"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"inputs": [
|
|
897
|
+
{
|
|
898
|
+
"internalType": "address",
|
|
899
|
+
"name": "",
|
|
900
|
+
"type": "address"
|
|
901
|
+
}
|
|
902
|
+
],
|
|
903
|
+
"name": "extraRewardTokenData",
|
|
904
|
+
"outputs": [
|
|
905
|
+
{
|
|
906
|
+
"internalType": "bool",
|
|
907
|
+
"name": "isActive",
|
|
908
|
+
"type": "bool"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"internalType": "uint8",
|
|
912
|
+
"name": "decimals",
|
|
913
|
+
"type": "uint8"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"internalType": "uint256",
|
|
917
|
+
"name": "rate",
|
|
918
|
+
"type": "uint256"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"internalType": "address",
|
|
922
|
+
"name": "distributor",
|
|
923
|
+
"type": "address"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"internalType": "uint256",
|
|
927
|
+
"name": "periodFinish",
|
|
928
|
+
"type": "uint256"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"internalType": "uint256",
|
|
932
|
+
"name": "lastUpdate",
|
|
933
|
+
"type": "uint256"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"internalType": "uint256",
|
|
937
|
+
"name": "integral",
|
|
938
|
+
"type": "uint256"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"internalType": "uint256",
|
|
942
|
+
"name": "distributed",
|
|
943
|
+
"type": "uint256"
|
|
944
|
+
}
|
|
945
|
+
],
|
|
946
|
+
"stateMutability": "view",
|
|
947
|
+
"type": "function"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"inputs": [],
|
|
951
|
+
"name": "gaugeController",
|
|
952
|
+
"outputs": [
|
|
953
|
+
{
|
|
954
|
+
"internalType": "contract IGaugeController",
|
|
955
|
+
"name": "",
|
|
956
|
+
"type": "address"
|
|
957
|
+
}
|
|
958
|
+
],
|
|
959
|
+
"stateMutability": "view",
|
|
960
|
+
"type": "function"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"inputs": [],
|
|
964
|
+
"name": "gaugeData",
|
|
965
|
+
"outputs": [
|
|
966
|
+
{
|
|
967
|
+
"internalType": "uint256",
|
|
968
|
+
"name": "gaugeInitialStartTime",
|
|
969
|
+
"type": "uint256"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"internalType": "uint256",
|
|
973
|
+
"name": "periodDuration",
|
|
974
|
+
"type": "uint256"
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"internalType": "uint256",
|
|
978
|
+
"name": "periodIndex",
|
|
979
|
+
"type": "uint256"
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"internalType": "address",
|
|
983
|
+
"name": "stakingToken",
|
|
984
|
+
"type": "address"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"internalType": "uint256",
|
|
988
|
+
"name": "totalSupply",
|
|
989
|
+
"type": "uint256"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"internalType": "uint256",
|
|
993
|
+
"name": "workingSupply",
|
|
994
|
+
"type": "uint256"
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"internalType": "uint256",
|
|
998
|
+
"name": "lastUpdateTime",
|
|
999
|
+
"type": "uint256"
|
|
1000
|
+
}
|
|
1001
|
+
],
|
|
1002
|
+
"stateMutability": "view",
|
|
1003
|
+
"type": "function"
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"inputs": [],
|
|
1007
|
+
"name": "getControllerAddress",
|
|
1008
|
+
"outputs": [
|
|
1009
|
+
{
|
|
1010
|
+
"internalType": "address",
|
|
1011
|
+
"name": "controllerAddress",
|
|
1012
|
+
"type": "address"
|
|
1013
|
+
}
|
|
1014
|
+
],
|
|
1015
|
+
"stateMutability": "view",
|
|
1016
|
+
"type": "function"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"inputs": [
|
|
1020
|
+
{
|
|
1021
|
+
"internalType": "address",
|
|
1022
|
+
"name": "token",
|
|
1023
|
+
"type": "address"
|
|
1024
|
+
}
|
|
1025
|
+
],
|
|
1026
|
+
"name": "getDecimalAdjustment",
|
|
1027
|
+
"outputs": [
|
|
1028
|
+
{
|
|
1029
|
+
"internalType": "uint256",
|
|
1030
|
+
"name": "",
|
|
1031
|
+
"type": "uint256"
|
|
1032
|
+
}
|
|
1033
|
+
],
|
|
1034
|
+
"stateMutability": "view",
|
|
1035
|
+
"type": "function"
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"inputs": [],
|
|
1039
|
+
"name": "getDistributors",
|
|
1040
|
+
"outputs": [
|
|
1041
|
+
{
|
|
1042
|
+
"internalType": "address[]",
|
|
1043
|
+
"name": "",
|
|
1044
|
+
"type": "address[]"
|
|
1045
|
+
}
|
|
1046
|
+
],
|
|
1047
|
+
"stateMutability": "view",
|
|
1048
|
+
"type": "function"
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"inputs": [
|
|
1052
|
+
{
|
|
1053
|
+
"internalType": "address",
|
|
1054
|
+
"name": "token",
|
|
1055
|
+
"type": "address"
|
|
1056
|
+
}
|
|
1057
|
+
],
|
|
1058
|
+
"name": "getGaugeRewardTokenData",
|
|
1059
|
+
"outputs": [
|
|
1060
|
+
{
|
|
1061
|
+
"components": [
|
|
1062
|
+
{
|
|
1063
|
+
"internalType": "bool",
|
|
1064
|
+
"name": "isActive",
|
|
1065
|
+
"type": "bool"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"internalType": "uint8",
|
|
1069
|
+
"name": "decimals",
|
|
1070
|
+
"type": "uint8"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"internalType": "uint256",
|
|
1074
|
+
"name": "rate",
|
|
1075
|
+
"type": "uint256"
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"internalType": "uint256",
|
|
1079
|
+
"name": "integral",
|
|
1080
|
+
"type": "uint256"
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"internalType": "uint256",
|
|
1084
|
+
"name": "lastUpdateTime",
|
|
1085
|
+
"type": "uint256"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"internalType": "uint256",
|
|
1089
|
+
"name": "distributed",
|
|
1090
|
+
"type": "uint256"
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"internalType": "uint256",
|
|
1094
|
+
"name": "leftoverRewards",
|
|
1095
|
+
"type": "uint256"
|
|
1096
|
+
}
|
|
1097
|
+
],
|
|
1098
|
+
"internalType": "struct IBaseGauge.RewardTokenData",
|
|
1099
|
+
"name": "rewardTokenDatum",
|
|
1100
|
+
"type": "tuple"
|
|
1101
|
+
}
|
|
1102
|
+
],
|
|
1103
|
+
"stateMutability": "view",
|
|
1104
|
+
"type": "function"
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"inputs": [],
|
|
1108
|
+
"name": "getPeriodBoundaries",
|
|
1109
|
+
"outputs": [
|
|
1110
|
+
{
|
|
1111
|
+
"internalType": "uint256",
|
|
1112
|
+
"name": "periodStartTime",
|
|
1113
|
+
"type": "uint256"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"internalType": "uint256",
|
|
1117
|
+
"name": "periodEndTime",
|
|
1118
|
+
"type": "uint256"
|
|
1119
|
+
}
|
|
1120
|
+
],
|
|
1121
|
+
"stateMutability": "view",
|
|
1122
|
+
"type": "function"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"inputs": [],
|
|
1126
|
+
"name": "getRewardTokens",
|
|
1127
|
+
"outputs": [
|
|
1128
|
+
{
|
|
1129
|
+
"internalType": "address[]",
|
|
1130
|
+
"name": "",
|
|
1131
|
+
"type": "address[]"
|
|
1132
|
+
}
|
|
1133
|
+
],
|
|
1134
|
+
"stateMutability": "view",
|
|
1135
|
+
"type": "function"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"inputs": [
|
|
1139
|
+
{
|
|
1140
|
+
"internalType": "bytes32",
|
|
1141
|
+
"name": "role",
|
|
1142
|
+
"type": "bytes32"
|
|
1143
|
+
}
|
|
1144
|
+
],
|
|
1145
|
+
"name": "getRoleAdmin",
|
|
1146
|
+
"outputs": [
|
|
1147
|
+
{
|
|
1148
|
+
"internalType": "bytes32",
|
|
1149
|
+
"name": "",
|
|
1150
|
+
"type": "bytes32"
|
|
1151
|
+
}
|
|
1152
|
+
],
|
|
1153
|
+
"stateMutability": "view",
|
|
1154
|
+
"type": "function"
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"inputs": [
|
|
1158
|
+
{
|
|
1159
|
+
"internalType": "address",
|
|
1160
|
+
"name": "token",
|
|
1161
|
+
"type": "address"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"internalType": "address",
|
|
1165
|
+
"name": "user",
|
|
1166
|
+
"type": "address"
|
|
1167
|
+
}
|
|
1168
|
+
],
|
|
1169
|
+
"name": "getUserRewardTokenData",
|
|
1170
|
+
"outputs": [
|
|
1171
|
+
{
|
|
1172
|
+
"components": [
|
|
1173
|
+
{
|
|
1174
|
+
"internalType": "uint256",
|
|
1175
|
+
"name": "integral",
|
|
1176
|
+
"type": "uint256"
|
|
1177
|
+
},
|
|
1178
|
+
{
|
|
1179
|
+
"internalType": "uint256",
|
|
1180
|
+
"name": "lastGaugeIntegral",
|
|
1181
|
+
"type": "uint256"
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"internalType": "uint256",
|
|
1185
|
+
"name": "claimable",
|
|
1186
|
+
"type": "uint256"
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"internalType": "uint256",
|
|
1190
|
+
"name": "claimed",
|
|
1191
|
+
"type": "uint256"
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
"internalType": "uint256",
|
|
1195
|
+
"name": "lastUpdate",
|
|
1196
|
+
"type": "uint256"
|
|
1197
|
+
}
|
|
1198
|
+
],
|
|
1199
|
+
"internalType": "struct IBaseGauge.UserGaugeTokenRewardData",
|
|
1200
|
+
"name": "userGaugeTokenRewardDatum",
|
|
1201
|
+
"type": "tuple"
|
|
1202
|
+
}
|
|
1203
|
+
],
|
|
1204
|
+
"stateMutability": "view",
|
|
1205
|
+
"type": "function"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"inputs": [
|
|
1209
|
+
{
|
|
1210
|
+
"internalType": "address",
|
|
1211
|
+
"name": "account",
|
|
1212
|
+
"type": "address"
|
|
1213
|
+
}
|
|
1214
|
+
],
|
|
1215
|
+
"name": "getUserWeight",
|
|
1216
|
+
"outputs": [
|
|
1217
|
+
{
|
|
1218
|
+
"internalType": "uint256",
|
|
1219
|
+
"name": "",
|
|
1220
|
+
"type": "uint256"
|
|
1221
|
+
}
|
|
1222
|
+
],
|
|
1223
|
+
"stateMutability": "view",
|
|
1224
|
+
"type": "function"
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"inputs": [
|
|
1228
|
+
{
|
|
1229
|
+
"internalType": "bytes32",
|
|
1230
|
+
"name": "role",
|
|
1231
|
+
"type": "bytes32"
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"internalType": "address",
|
|
1235
|
+
"name": "account",
|
|
1236
|
+
"type": "address"
|
|
1237
|
+
}
|
|
1238
|
+
],
|
|
1239
|
+
"name": "grantRole",
|
|
1240
|
+
"outputs": [],
|
|
1241
|
+
"stateMutability": "nonpayable",
|
|
1242
|
+
"type": "function"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"inputs": [
|
|
1246
|
+
{
|
|
1247
|
+
"internalType": "bytes32",
|
|
1248
|
+
"name": "role",
|
|
1249
|
+
"type": "bytes32"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"internalType": "address",
|
|
1253
|
+
"name": "account",
|
|
1254
|
+
"type": "address"
|
|
1255
|
+
}
|
|
1256
|
+
],
|
|
1257
|
+
"name": "hasRole",
|
|
1258
|
+
"outputs": [
|
|
1259
|
+
{
|
|
1260
|
+
"internalType": "bool",
|
|
1261
|
+
"name": "",
|
|
1262
|
+
"type": "bool"
|
|
1263
|
+
}
|
|
1264
|
+
],
|
|
1265
|
+
"stateMutability": "view",
|
|
1266
|
+
"type": "function"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"inputs": [
|
|
1270
|
+
{
|
|
1271
|
+
"internalType": "address",
|
|
1272
|
+
"name": "token",
|
|
1273
|
+
"type": "address"
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"internalType": "address",
|
|
1277
|
+
"name": "distributor",
|
|
1278
|
+
"type": "address"
|
|
1279
|
+
}
|
|
1280
|
+
],
|
|
1281
|
+
"name": "initializeRewardToken",
|
|
1282
|
+
"outputs": [],
|
|
1283
|
+
"stateMutability": "nonpayable",
|
|
1284
|
+
"type": "function"
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"inputs": [
|
|
1288
|
+
{
|
|
1289
|
+
"internalType": "address",
|
|
1290
|
+
"name": "distributor",
|
|
1291
|
+
"type": "address"
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"internalType": "bool",
|
|
1295
|
+
"name": "shouldAddDistributor",
|
|
1296
|
+
"type": "bool"
|
|
1297
|
+
}
|
|
1298
|
+
],
|
|
1299
|
+
"name": "manageDistributor",
|
|
1300
|
+
"outputs": [],
|
|
1301
|
+
"stateMutability": "nonpayable",
|
|
1302
|
+
"type": "function"
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"inputs": [],
|
|
1306
|
+
"name": "paused",
|
|
1307
|
+
"outputs": [
|
|
1308
|
+
{
|
|
1309
|
+
"internalType": "bool",
|
|
1310
|
+
"name": "",
|
|
1311
|
+
"type": "bool"
|
|
1312
|
+
}
|
|
1313
|
+
],
|
|
1314
|
+
"stateMutability": "view",
|
|
1315
|
+
"type": "function"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"inputs": [
|
|
1319
|
+
{
|
|
1320
|
+
"internalType": "address",
|
|
1321
|
+
"name": "token",
|
|
1322
|
+
"type": "address"
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"internalType": "address",
|
|
1326
|
+
"name": "user",
|
|
1327
|
+
"type": "address"
|
|
1328
|
+
}
|
|
1329
|
+
],
|
|
1330
|
+
"name": "pendingExtraRewards",
|
|
1331
|
+
"outputs": [
|
|
1332
|
+
{
|
|
1333
|
+
"internalType": "uint256",
|
|
1334
|
+
"name": "",
|
|
1335
|
+
"type": "uint256"
|
|
1336
|
+
}
|
|
1337
|
+
],
|
|
1338
|
+
"stateMutability": "view",
|
|
1339
|
+
"type": "function"
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"inputs": [
|
|
1343
|
+
{
|
|
1344
|
+
"internalType": "address",
|
|
1345
|
+
"name": "token",
|
|
1346
|
+
"type": "address"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"internalType": "address",
|
|
1350
|
+
"name": "account",
|
|
1351
|
+
"type": "address"
|
|
1352
|
+
}
|
|
1353
|
+
],
|
|
1354
|
+
"name": "pendingRewards",
|
|
1355
|
+
"outputs": [
|
|
1356
|
+
{
|
|
1357
|
+
"internalType": "uint256",
|
|
1358
|
+
"name": "",
|
|
1359
|
+
"type": "uint256"
|
|
1360
|
+
}
|
|
1361
|
+
],
|
|
1362
|
+
"stateMutability": "view",
|
|
1363
|
+
"type": "function"
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"inputs": [],
|
|
1367
|
+
"name": "periodDuration",
|
|
1368
|
+
"outputs": [
|
|
1369
|
+
{
|
|
1370
|
+
"internalType": "uint256",
|
|
1371
|
+
"name": "",
|
|
1372
|
+
"type": "uint256"
|
|
1373
|
+
}
|
|
1374
|
+
],
|
|
1375
|
+
"stateMutability": "view",
|
|
1376
|
+
"type": "function"
|
|
1377
|
+
},
|
|
1378
|
+
{
|
|
1379
|
+
"inputs": [],
|
|
1380
|
+
"name": "raacLiquidLocker",
|
|
1381
|
+
"outputs": [
|
|
1382
|
+
{
|
|
1383
|
+
"internalType": "contract IRaacLiquidLocker",
|
|
1384
|
+
"name": "",
|
|
1385
|
+
"type": "address"
|
|
1386
|
+
}
|
|
1387
|
+
],
|
|
1388
|
+
"stateMutability": "view",
|
|
1389
|
+
"type": "function"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"inputs": [],
|
|
1393
|
+
"name": "raacToken",
|
|
1394
|
+
"outputs": [
|
|
1395
|
+
{
|
|
1396
|
+
"internalType": "address",
|
|
1397
|
+
"name": "",
|
|
1398
|
+
"type": "address"
|
|
1399
|
+
}
|
|
1400
|
+
],
|
|
1401
|
+
"stateMutability": "view",
|
|
1402
|
+
"type": "function"
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
"inputs": [
|
|
1406
|
+
{
|
|
1407
|
+
"internalType": "address",
|
|
1408
|
+
"name": "account",
|
|
1409
|
+
"type": "address"
|
|
1410
|
+
}
|
|
1411
|
+
],
|
|
1412
|
+
"name": "rawBalanceOf",
|
|
1413
|
+
"outputs": [
|
|
1414
|
+
{
|
|
1415
|
+
"internalType": "uint256",
|
|
1416
|
+
"name": "",
|
|
1417
|
+
"type": "uint256"
|
|
1418
|
+
}
|
|
1419
|
+
],
|
|
1420
|
+
"stateMutability": "view",
|
|
1421
|
+
"type": "function"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"inputs": [],
|
|
1425
|
+
"name": "rawTotalSupply",
|
|
1426
|
+
"outputs": [
|
|
1427
|
+
{
|
|
1428
|
+
"internalType": "uint256",
|
|
1429
|
+
"name": "",
|
|
1430
|
+
"type": "uint256"
|
|
1431
|
+
}
|
|
1432
|
+
],
|
|
1433
|
+
"stateMutability": "view",
|
|
1434
|
+
"type": "function"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"inputs": [
|
|
1438
|
+
{
|
|
1439
|
+
"internalType": "bytes32",
|
|
1440
|
+
"name": "role",
|
|
1441
|
+
"type": "bytes32"
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"internalType": "address",
|
|
1445
|
+
"name": "callerConfirmation",
|
|
1446
|
+
"type": "address"
|
|
1447
|
+
}
|
|
1448
|
+
],
|
|
1449
|
+
"name": "renounceRole",
|
|
1450
|
+
"outputs": [],
|
|
1451
|
+
"stateMutability": "nonpayable",
|
|
1452
|
+
"type": "function"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"inputs": [
|
|
1456
|
+
{
|
|
1457
|
+
"internalType": "bytes32",
|
|
1458
|
+
"name": "role",
|
|
1459
|
+
"type": "bytes32"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"internalType": "address",
|
|
1463
|
+
"name": "account",
|
|
1464
|
+
"type": "address"
|
|
1465
|
+
}
|
|
1466
|
+
],
|
|
1467
|
+
"name": "revokeRole",
|
|
1468
|
+
"outputs": [],
|
|
1469
|
+
"stateMutability": "nonpayable",
|
|
1470
|
+
"type": "function"
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"inputs": [
|
|
1474
|
+
{
|
|
1475
|
+
"internalType": "bool",
|
|
1476
|
+
"name": "newDepositRAACOnClaim",
|
|
1477
|
+
"type": "bool"
|
|
1478
|
+
}
|
|
1479
|
+
],
|
|
1480
|
+
"name": "setDepositRAACOnClaim",
|
|
1481
|
+
"outputs": [],
|
|
1482
|
+
"stateMutability": "nonpayable",
|
|
1483
|
+
"type": "function"
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
"inputs": [
|
|
1487
|
+
{
|
|
1488
|
+
"internalType": "address",
|
|
1489
|
+
"name": "distributor",
|
|
1490
|
+
"type": "address"
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"internalType": "bool",
|
|
1494
|
+
"name": "isApproved",
|
|
1495
|
+
"type": "bool"
|
|
1496
|
+
}
|
|
1497
|
+
],
|
|
1498
|
+
"name": "setDistributorApproval",
|
|
1499
|
+
"outputs": [],
|
|
1500
|
+
"stateMutability": "nonpayable",
|
|
1501
|
+
"type": "function"
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
"inputs": [
|
|
1505
|
+
{
|
|
1506
|
+
"internalType": "bool",
|
|
1507
|
+
"name": "newPaused",
|
|
1508
|
+
"type": "bool"
|
|
1509
|
+
}
|
|
1510
|
+
],
|
|
1511
|
+
"name": "setEmergencyPaused",
|
|
1512
|
+
"outputs": [],
|
|
1513
|
+
"stateMutability": "nonpayable",
|
|
1514
|
+
"type": "function"
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
"inputs": [
|
|
1518
|
+
{
|
|
1519
|
+
"internalType": "uint256",
|
|
1520
|
+
"name": "amount",
|
|
1521
|
+
"type": "uint256"
|
|
1522
|
+
}
|
|
1523
|
+
],
|
|
1524
|
+
"name": "stake",
|
|
1525
|
+
"outputs": [],
|
|
1526
|
+
"stateMutability": "nonpayable",
|
|
1527
|
+
"type": "function"
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
"inputs": [
|
|
1531
|
+
{
|
|
1532
|
+
"internalType": "bytes4",
|
|
1533
|
+
"name": "interfaceId",
|
|
1534
|
+
"type": "bytes4"
|
|
1535
|
+
}
|
|
1536
|
+
],
|
|
1537
|
+
"name": "supportsInterface",
|
|
1538
|
+
"outputs": [
|
|
1539
|
+
{
|
|
1540
|
+
"internalType": "bool",
|
|
1541
|
+
"name": "",
|
|
1542
|
+
"type": "bool"
|
|
1543
|
+
}
|
|
1544
|
+
],
|
|
1545
|
+
"stateMutability": "view",
|
|
1546
|
+
"type": "function"
|
|
1547
|
+
},
|
|
1548
|
+
{
|
|
1549
|
+
"inputs": [],
|
|
1550
|
+
"name": "syncRewardTokens",
|
|
1551
|
+
"outputs": [],
|
|
1552
|
+
"stateMutability": "nonpayable",
|
|
1553
|
+
"type": "function"
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
"inputs": [],
|
|
1557
|
+
"name": "totalSupply",
|
|
1558
|
+
"outputs": [
|
|
1559
|
+
{
|
|
1560
|
+
"internalType": "uint256",
|
|
1561
|
+
"name": "",
|
|
1562
|
+
"type": "uint256"
|
|
1563
|
+
}
|
|
1564
|
+
],
|
|
1565
|
+
"stateMutability": "view",
|
|
1566
|
+
"type": "function"
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"inputs": [],
|
|
1570
|
+
"name": "updateUserRewards",
|
|
1571
|
+
"outputs": [],
|
|
1572
|
+
"stateMutability": "nonpayable",
|
|
1573
|
+
"type": "function"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"inputs": [
|
|
1577
|
+
{
|
|
1578
|
+
"internalType": "address",
|
|
1579
|
+
"name": "",
|
|
1580
|
+
"type": "address"
|
|
1581
|
+
}
|
|
1582
|
+
],
|
|
1583
|
+
"name": "userGaugeData",
|
|
1584
|
+
"outputs": [
|
|
1585
|
+
{
|
|
1586
|
+
"internalType": "uint256",
|
|
1587
|
+
"name": "balance",
|
|
1588
|
+
"type": "uint256"
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
"internalType": "uint256",
|
|
1592
|
+
"name": "workingBalance",
|
|
1593
|
+
"type": "uint256"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
"internalType": "uint256",
|
|
1597
|
+
"name": "lastUpdate",
|
|
1598
|
+
"type": "uint256"
|
|
1599
|
+
}
|
|
1600
|
+
],
|
|
1601
|
+
"stateMutability": "view",
|
|
1602
|
+
"type": "function"
|
|
1603
|
+
},
|
|
1604
|
+
{
|
|
1605
|
+
"inputs": [
|
|
1606
|
+
{
|
|
1607
|
+
"internalType": "uint256",
|
|
1608
|
+
"name": "amount",
|
|
1609
|
+
"type": "uint256"
|
|
1610
|
+
}
|
|
1611
|
+
],
|
|
1612
|
+
"name": "withdraw",
|
|
1613
|
+
"outputs": [],
|
|
1614
|
+
"stateMutability": "nonpayable",
|
|
1615
|
+
"type": "function"
|
|
1616
|
+
}
|
|
1617
|
+
],
|
|
1618
|
+
"bytecode": "0x",
|
|
1619
|
+
"deployedBytecode": "0x",
|
|
1620
|
+
"linkReferences": {},
|
|
1621
|
+
"deployedLinkReferences": {}
|
|
1622
|
+
}
|