@raac/rpc 1.2.0-beta.1 → 1.2.0-beta.11
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 +272 -85
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +2 -2
- package/dist/artifacts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.json +15 -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 +208 -129
- package/dist/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +288 -296
- package/dist/artifacts/core/governance/gauges/GaugeRewardsDistributor.sol/GaugeRewardsDistributor.json +188 -281
- package/dist/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +220 -131
- package/dist/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +220 -131
- package/dist/artifacts/core/governance/proposals/Governance.sol/Governance.json +367 -98
- package/dist/artifacts/core/governance/proposals/TimelockController.sol/TimelockController.json +11 -16
- package/dist/artifacts/core/lockers/RAACBotLocker.sol/RAACBotLocker.json +915 -0
- package/dist/artifacts/core/lockers/RAACLiquidLocker.sol/RAACLiquidLocker.json +2158 -0
- package/dist/artifacts/core/lockers/RAACMaturityVault.sol/RAACMaturityVault.json +911 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +59 -741
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +106 -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/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +15 -2
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +15 -2
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +20 -49
- 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 +21 -2
- package/dist/artifacts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC.json +621 -0
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +101 -74
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +24 -322
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -2
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +66 -2
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +79 -32
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +15 -2
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +15 -2
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +46 -2
- 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/zap/AladdinZap.sol/AladdinZap.json +398 -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 +30 -48
- package/dist/configs/chains/11155111.json +134 -60
- package/dist/configs/chains/17000.json +23 -35
- package/dist/configs/chains/18453.json +23 -35
- package/dist/configs/chains/8453.json +104 -38
- package/dist/contracts/decodeCall.js +61 -0
- package/dist/contracts/findContract.js +68 -0
- package/dist/contracts/getContractAddress.js +2 -0
- package/dist/contracts/governance/_helpers.js +39 -0
- package/dist/contracts/governance/distributor/claimAll.js +32 -0
- package/dist/contracts/governance/distributor/claimForGauge.js +32 -0
- package/dist/contracts/governance/distributor/deposit.js +14 -18
- package/dist/contracts/governance/distributor/getClaimableForGauge.js +30 -0
- package/dist/contracts/governance/distributor/getClaimedAtEpoch.js +31 -0
- package/dist/contracts/governance/distributor/getDepositedAtEpoch.js +30 -0
- package/dist/contracts/governance/distributor/getDustLastProcessedEpoch.js +28 -0
- package/dist/contracts/governance/distributor/getGaugeController.js +28 -0
- package/dist/contracts/governance/distributor/getLastClaimedEpoch.js +30 -0
- package/dist/contracts/governance/distributor/getMaxClaimBound.js +29 -0
- package/dist/contracts/governance/distributor/getPeriodDuration.js +28 -0
- package/dist/contracts/governance/distributor/getRewardToken.js +28 -0
- package/dist/contracts/governance/distributor/getRewardTokenInfo.js +10 -20
- package/dist/contracts/governance/distributor/getRewardTokenStats.js +30 -0
- package/dist/contracts/governance/distributor/index.js +34 -17
- package/dist/contracts/governance/distributor/setController.js +31 -0
- package/dist/contracts/governance/distributor/setLastClaimedEpoch.js +32 -0
- package/dist/contracts/governance/distributor/setMaxClaimBound.js +31 -0
- package/dist/contracts/governance/distributor/withdrawDust.js +31 -0
- package/dist/contracts/governance/distributor/withdrawRemovedGaugeRewards.js +33 -0
- package/dist/contracts/governance/gauge/_apy.js +122 -0
- package/dist/contracts/governance/gauge/_tokens.js +36 -0
- package/dist/contracts/governance/gauge/addRewardToken.js +24 -0
- package/dist/contracts/governance/gauge/approveGaugeToken.js +31 -0
- package/dist/contracts/governance/gauge/claimExtraReward.js +24 -0
- package/dist/contracts/governance/gauge/claimExtraRewards.js +23 -0
- package/dist/contracts/governance/gauge/claimOnBehalfOf.js +26 -0
- package/dist/contracts/governance/gauge/claimRewardToken.js +6 -17
- package/dist/contracts/governance/gauge/claimRewardsFor.js +24 -0
- package/dist/contracts/governance/gauge/depositRewardToken.js +25 -0
- package/dist/contracts/governance/gauge/getAllPendingExtraRewards.js +29 -0
- package/dist/contracts/governance/gauge/getApy.js +44 -0
- package/dist/contracts/governance/gauge/getBalanceOf.js +2 -15
- package/dist/contracts/governance/gauge/getControllerAddress.js +27 -0
- package/dist/contracts/governance/gauge/getDecimalAdjustment.js +28 -0
- package/dist/contracts/governance/gauge/getDepositRAACOnClaim.js +27 -0
- package/dist/contracts/governance/gauge/getDistributorData.js +29 -0
- package/dist/contracts/governance/gauge/getDistributors.js +27 -0
- package/dist/contracts/governance/gauge/getEarnedExtraReward.js +30 -0
- package/dist/contracts/governance/gauge/getEarnedReward.js +10 -24
- package/dist/contracts/governance/gauge/getExtraRewardTokens.js +27 -0
- package/dist/contracts/governance/gauge/getGaugeData.js +39 -0
- package/dist/contracts/governance/gauge/getGaugeRewardTokenData.js +37 -0
- package/dist/contracts/governance/gauge/getPauseStatus.js +31 -0
- package/dist/contracts/governance/gauge/getPendingExtraRewards.js +29 -0
- package/dist/contracts/governance/gauge/getPendingRewards.js +10 -24
- package/dist/contracts/governance/gauge/getPeriodBoundaries.js +2 -15
- package/dist/contracts/governance/gauge/getPeriodDuration.js +2 -15
- package/dist/contracts/governance/gauge/getRaacAutolockMin.js +27 -0
- package/dist/contracts/governance/gauge/getRawBalanceOf.js +2 -15
- package/dist/contracts/governance/gauge/getRawTotalSupply.js +2 -15
- package/dist/contracts/governance/gauge/getRewardTokens.js +8 -21
- package/dist/contracts/governance/gauge/getTotalSupply.js +2 -15
- package/dist/contracts/governance/gauge/getUserApy.js +71 -0
- package/dist/contracts/governance/gauge/getUserClaimableRewards.js +83 -0
- package/dist/contracts/governance/gauge/getUserGaugeState.js +44 -0
- package/dist/contracts/governance/gauge/getUserRewardTokenData.js +30 -0
- package/dist/contracts/governance/gauge/getUserWeight.js +28 -0
- package/dist/contracts/governance/gauge/index.js +64 -35
- package/dist/contracts/governance/gauge/isPaused.js +27 -0
- package/dist/contracts/governance/gauge/manageDistributor.js +25 -0
- package/dist/contracts/governance/gauge/pullRewardsFromDistributor.js +30 -0
- package/dist/contracts/governance/gauge/setController.js +24 -0
- package/dist/contracts/governance/gauge/setDepositRAACOnClaim.js +24 -0
- package/dist/contracts/governance/gauge/setEmergencyPaused.js +24 -0
- package/dist/contracts/governance/gauge/setGaugeRewardDistributor.js +24 -0
- package/dist/contracts/governance/gauge/setRaacAutolockMin.js +24 -0
- package/dist/contracts/governance/gauge/stake.js +2 -18
- package/dist/contracts/governance/gauge/unwrapStakingToken.js +28 -0
- package/dist/contracts/governance/gauge/updateUserRewards.js +5 -20
- package/dist/contracts/governance/gauge/withdraw.js +2 -18
- package/dist/contracts/governance/gauge/wrapStakingToken.js +28 -0
- package/dist/contracts/governance/gaugeController/addGauge.js +32 -0
- package/dist/contracts/governance/gaugeController/batchVote.js +33 -0
- package/dist/contracts/governance/gaugeController/calculateBoost.js +20 -23
- package/dist/contracts/governance/gaugeController/forceCompleteCheckpoint.js +32 -0
- package/dist/contracts/governance/gaugeController/getActiveGaugeCount.js +28 -0
- package/dist/contracts/governance/gaugeController/getActiveGauges.js +10 -13
- package/dist/contracts/governance/gaugeController/getConstants.js +37 -0
- package/dist/contracts/governance/gaugeController/getCurrentEpoch.js +28 -0
- package/dist/contracts/governance/gaugeController/getExpiredGaugeVotePower.js +30 -0
- package/dist/contracts/governance/gaugeController/getGauge.js +31 -0
- package/dist/contracts/governance/gaugeController/getGaugeDistributor.js +28 -0
- package/dist/contracts/governance/gaugeController/getGaugeEmissions.js +163 -0
- package/dist/contracts/governance/gaugeController/getGaugeRelativeWeight.js +33 -0
- package/dist/contracts/governance/gaugeController/getGaugeRelativeWeightView.js +32 -0
- package/dist/contracts/governance/gaugeController/getGaugeWeight.js +10 -8
- package/dist/contracts/governance/gaugeController/getLastVoteTime.js +31 -0
- package/dist/contracts/governance/gaugeController/getMaxVoteBuckets.js +28 -0
- package/dist/contracts/governance/gaugeController/getNextEpoch.js +28 -0
- package/dist/contracts/governance/gaugeController/getRegisteredGaugeList.js +28 -0
- package/dist/contracts/governance/gaugeController/getTotalWeight.js +8 -7
- package/dist/contracts/governance/gaugeController/getUserGaugeVotePower.js +31 -0
- package/dist/contracts/governance/gaugeController/getUserVotePowerRemaining.js +10 -9
- package/dist/contracts/governance/gaugeController/getVeToken.js +28 -0
- package/dist/contracts/governance/gaugeController/getVoteUserLocks.js +32 -0
- package/dist/contracts/governance/gaugeController/getVoteUserPower.js +29 -0
- package/dist/contracts/governance/gaugeController/getVoteUserSlope.js +32 -0
- package/dist/contracts/governance/gaugeController/index.js +53 -23
- package/dist/contracts/governance/gaugeController/isGaugeActive.js +11 -9
- package/dist/contracts/governance/gaugeController/isPaused.js +28 -0
- package/dist/contracts/governance/gaugeController/kick.js +31 -0
- package/dist/contracts/governance/gaugeController/removeGauge.js +33 -0
- package/dist/contracts/governance/gaugeController/removePowerFromGauge.js +32 -0
- package/dist/contracts/governance/gaugeController/setBoostAmplificationEnabled.js +33 -0
- package/dist/contracts/governance/gaugeController/setDistributor.js +31 -0
- package/dist/contracts/governance/gaugeController/setEmergencyGaugePause.js +33 -0
- package/dist/contracts/governance/gaugeController/setEmergencyGaugePauseBatch.js +33 -0
- package/dist/contracts/governance/gaugeController/setEmergencyPause.js +31 -0
- package/dist/contracts/governance/gaugeController/setMaxVoteBuckets.js +31 -0
- package/dist/contracts/governance/gaugeController/vote.js +15 -16
- package/dist/contracts/governance/gaugeSystems/_helpers.js +123 -0
- package/dist/contracts/governance/gaugeSystems/findGauge.js +14 -0
- package/dist/contracts/governance/gaugeSystems/getGaugeSystem.js +14 -0
- package/dist/contracts/governance/gaugeSystems/getGaugeSystems.js +13 -0
- package/dist/contracts/governance/gaugeSystems/getGauges.js +15 -0
- package/dist/contracts/governance/gaugeSystems/index.js +21 -0
- package/dist/contracts/governance/proposals/cancel.js +8 -7
- package/dist/contracts/governance/proposals/castVote.js +5 -4
- package/dist/contracts/governance/proposals/execute.js +5 -4
- package/dist/contracts/governance/proposals/getGovernances.js +22 -0
- package/dist/contracts/governance/{distributor/getRewardTokens.js → proposals/getLabel.js} +12 -10
- package/dist/contracts/governance/proposals/getProposal.js +24 -26
- package/dist/contracts/governance/proposals/getProposalCount.js +4 -3
- package/dist/contracts/governance/proposals/{getProposalData.js → getProposalEta.js} +12 -16
- package/dist/contracts/governance/proposals/getProposalInfo.js +4 -3
- package/dist/contracts/governance/proposals/getProposalThreshold.js +4 -3
- package/dist/contracts/governance/proposals/getQuorum.js +9 -7
- package/dist/contracts/governance/proposals/getQuorumNumerator.js +4 -3
- package/dist/contracts/governance/proposals/getRoles.js +34 -0
- package/dist/contracts/governance/proposals/getState.js +4 -3
- package/dist/contracts/governance/proposals/getVoteReceipt.js +53 -0
- package/dist/contracts/governance/proposals/getVotes.js +4 -3
- package/dist/contracts/governance/proposals/getVotingDelay.js +4 -3
- package/dist/contracts/governance/proposals/getVotingPeriod.js +4 -3
- package/dist/contracts/governance/proposals/hasRole.js +31 -0
- package/dist/contracts/governance/proposals/hasVoted.js +32 -0
- package/dist/contracts/governance/proposals/index.js +22 -4
- package/dist/contracts/governance/proposals/propose.js +8 -19
- package/dist/contracts/governance/proposals/setParameter.js +46 -0
- package/dist/contracts/governance/proposals/setTimelock.js +36 -0
- package/dist/contracts/governance/timelock/getConstants.js +4 -3
- package/dist/contracts/governance/timelock/getMinDelay.js +4 -3
- package/dist/contracts/governance/timelock/getRoles.js +37 -0
- package/dist/contracts/governance/timelock/getTimestamp.js +4 -3
- package/dist/contracts/governance/timelock/hasRole.js +31 -0
- package/dist/contracts/governance/timelock/hashOperationBatch.js +6 -5
- package/dist/contracts/governance/timelock/index.js +5 -1
- package/dist/contracts/governance/timelock/isOperationDone.js +4 -3
- package/dist/contracts/governance/timelock/isOperationPending.js +4 -3
- package/dist/contracts/governance/timelock/isOperationReady.js +4 -3
- package/dist/contracts/lockers/botLocker/_helpers.js +19 -0
- package/dist/contracts/lockers/botLocker/claim.js +16 -0
- package/dist/contracts/lockers/botLocker/getClaimable.js +12 -0
- package/dist/contracts/lockers/botLocker/getClaimables.js +16 -0
- package/dist/contracts/lockers/botLocker/getClaimedRewards.js +13 -0
- package/dist/contracts/lockers/botLocker/getLockedTokenIds.js +10 -0
- package/dist/contracts/lockers/botLocker/getLocks.js +27 -0
- package/dist/contracts/lockers/botLocker/getRewardTokenCount.js +10 -0
- package/dist/contracts/lockers/botLocker/getRewardTokens.js +9 -0
- package/dist/contracts/lockers/botLocker/lock.js +17 -0
- package/dist/contracts/lockers/botLocker/unlock.js +20 -0
- package/dist/contracts/lockers/botLocker/unlockAndClaim.js +16 -0
- package/dist/contracts/lockers/liquidLocker/_helpers.js +19 -0
- package/dist/contracts/lockers/liquidLocker/borrow.js +17 -0
- package/dist/contracts/lockers/liquidLocker/deposit.js +17 -0
- package/dist/contracts/lockers/liquidLocker/donate.js +16 -0
- package/dist/contracts/lockers/liquidLocker/getConfig.js +52 -0
- package/dist/contracts/lockers/liquidLocker/getGlobalInfo.js +39 -0
- package/dist/contracts/lockers/liquidLocker/getUserInfo.js +28 -0
- package/dist/contracts/lockers/liquidLocker/getUserLocks.js +26 -0
- package/dist/contracts/lockers/liquidLocker/harvest.js +17 -0
- package/dist/contracts/lockers/liquidLocker/isKeeper.js +9 -0
- package/dist/contracts/lockers/liquidLocker/processVaultExpiredLocks.js +17 -0
- package/dist/contracts/lockers/liquidLocker/repay.js +17 -0
- package/dist/contracts/lockers/liquidLocker/requestUnlock.js +17 -0
- package/dist/contracts/lockers/liquidLocker/voteGauge.js +17 -0
- package/dist/contracts/lockers/liquidLocker/voteGovernance.js +16 -0
- package/dist/contracts/lockers/liquidLocker/withdrawUnlocked.js +16 -0
- package/dist/contracts/lockers/maturityVault/_helpers.js +19 -0
- package/dist/contracts/lockers/maturityVault/claim.js +16 -0
- package/dist/contracts/lockers/maturityVault/deposit.js +17 -0
- package/dist/contracts/lockers/maturityVault/depositFor.js +16 -0
- package/dist/contracts/lockers/maturityVault/distribute.js +17 -0
- package/dist/contracts/lockers/maturityVault/exit.js +16 -0
- package/dist/contracts/lockers/maturityVault/getConfig.js +26 -0
- package/dist/contracts/lockers/maturityVault/getGlobalInfo.js +45 -0
- package/dist/contracts/lockers/maturityVault/getUserInfo.js +18 -0
- package/dist/contracts/lockers/maturityVault/harvest.js +17 -0
- package/dist/contracts/lockers/maturityVault/isWhitelisted.js +9 -0
- package/dist/contracts/lockers/maturityVault/updatePendingDistribution.js +16 -0
- package/dist/contracts/lockers/maturityVault/withdraw.js +16 -0
- package/dist/contracts/lockers/maturityVault/withdrawAll.js +16 -0
- package/dist/contracts/tokens/leRAAC/_helpers.js +19 -0
- package/dist/contracts/tokens/leRAAC/approve.js +13 -0
- package/dist/contracts/tokens/leRAAC/burn.js +16 -0
- package/dist/contracts/tokens/leRAAC/burnFrom.js +16 -0
- package/dist/contracts/tokens/leRAAC/getAllowance.js +11 -0
- package/dist/contracts/tokens/leRAAC/getBalance.js +11 -0
- package/dist/contracts/tokens/leRAAC/getMinterInfo.js +15 -0
- package/dist/contracts/tokens/leRAAC/getTotalSupply.js +11 -0
- package/dist/contracts/tokens/leRAAC/transfer.js +13 -0
- package/dist/contracts/tokens/leRAAC/transferFrom.js +13 -0
- package/dist/contracts/{governance/gaugeController/isGauge.js → tokens/veRAAC/getRagequitEpochs.js} +12 -10
- package/dist/contracts/tokens/veRAAC/increaseWithApproval.js +37 -0
- package/dist/contracts/tokens/veRAAC/index.js +7 -1
- package/dist/contracts/tokens/veRAAC/lockWithApproval.js +40 -0
- package/dist/contracts/zap/aladdin/_helpers.js +19 -0
- package/dist/contracts/zap/aladdin/_types.js +38 -0
- package/dist/contracts/zap/aladdin/decodeRoute.js +36 -0
- package/dist/contracts/zap/aladdin/encodeRoute.js +34 -0
- package/dist/contracts/zap/aladdin/getCurvePoolToken.js +13 -0
- package/dist/contracts/zap/aladdin/getOwner.js +9 -0
- package/dist/contracts/zap/aladdin/getPool2Token.js +12 -0
- package/dist/contracts/zap/aladdin/getRoutes.js +16 -0
- package/dist/contracts/zap/aladdin/getVersion.js +9 -0
- package/dist/contracts/zap/aladdin/rescue.js +16 -0
- package/dist/contracts/zap/aladdin/updatePoolTokens.js +19 -0
- package/dist/contracts/zap/aladdin/updateRoute.js +31 -0
- package/dist/contracts/zap/aladdin/validateRoute.js +80 -0
- package/dist/contracts/zap/aladdin/zap.js +18 -0
- package/dist/contracts/zap/aladdin/zapFrom.js +18 -0
- package/dist/contracts/zap/aladdin/zapWithRoutes.js +28 -0
- package/dist/contracts/zap/codec.js +423 -0
- package/dist/minter/_helpers.js +19 -0
- package/dist/minter/activate.js +18 -0
- package/dist/minter/addDistributionPool.js +17 -0
- package/dist/minter/calculateScheduledMintableAmount.js +14 -0
- package/dist/minter/get.js +44 -112
- package/dist/minter/getApy.js +55 -19
- package/dist/minter/getDistributionPools.js +39 -0
- package/dist/minter/getEmissionPerSecond.js +25 -0
- package/dist/minter/getPoolInfo.js +23 -0
- package/dist/minter/isPaused.js +9 -0
- package/dist/minter/manageDistributionPool.js +18 -0
- package/dist/minter/pause.js +24 -0
- package/dist/minter/removeDistributionPool.js +20 -0
- package/dist/minter/tick.js +12 -24
- package/dist/types/RPCLibrary.d.ts +213 -66
- package/dist/types/configs/chains/index.d.ts +38 -78
- package/dist/types/configs/index.d.ts +19 -39
- package/dist/types/contracts/decodeCall.d.ts +33 -0
- package/dist/types/contracts/findContract.d.ts +24 -0
- package/dist/types/contracts/governance/_helpers.d.ts +28 -0
- package/dist/types/contracts/governance/distributor/claimAll.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/claimForGauge.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/deposit.d.ts +10 -10
- package/dist/types/contracts/governance/distributor/getClaimableForGauge.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/getClaimedAtEpoch.d.ts +14 -0
- package/dist/types/contracts/governance/distributor/getDepositedAtEpoch.d.ts +14 -0
- package/dist/types/contracts/governance/distributor/getDustLastProcessedEpoch.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/getGaugeController.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/getLastClaimedEpoch.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/getMaxClaimBound.d.ts +15 -0
- package/dist/types/contracts/governance/distributor/getPeriodDuration.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/getRewardToken.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/getRewardTokenInfo.d.ts +10 -10
- package/dist/types/contracts/governance/distributor/getRewardTokenStats.d.ts +17 -0
- package/dist/types/contracts/governance/distributor/index.d.ts +19 -8
- package/dist/types/contracts/governance/distributor/setController.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/setLastClaimedEpoch.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/setMaxClaimBound.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/withdrawDust.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/withdrawRemovedGaugeRewards.d.ts +14 -0
- package/dist/types/contracts/governance/gauge/_apy.d.ts +61 -0
- package/dist/types/contracts/governance/gauge/_tokens.d.ts +14 -0
- package/dist/types/contracts/governance/gauge/addRewardToken.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/approveGaugeToken.d.ts +14 -0
- package/dist/types/contracts/governance/gauge/claimExtraReward.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/claimExtraRewards.d.ts +9 -0
- package/dist/types/contracts/governance/gauge/claimOnBehalfOf.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/claimRewardToken.d.ts +2 -3
- package/dist/types/contracts/governance/gauge/claimRewardsFor.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/depositRewardToken.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getAllPendingExtraRewards.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/getApy.d.ts +41 -0
- package/dist/types/contracts/governance/gauge/getControllerAddress.d.ts +9 -0
- package/dist/types/contracts/governance/gauge/getDecimalAdjustment.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/getDepositRAACOnClaim.d.ts +9 -0
- package/dist/types/contracts/governance/gauge/getDistributorData.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/getDistributors.d.ts +9 -0
- package/dist/types/contracts/governance/gauge/getEarnedExtraReward.d.ts +13 -0
- package/dist/types/contracts/governance/gauge/getEarnedReward.d.ts +5 -5
- package/dist/types/contracts/governance/gauge/getExtraRewardTokens.d.ts +9 -0
- package/dist/types/contracts/governance/gauge/getGaugeData.d.ts +23 -0
- package/dist/types/contracts/governance/gauge/getGaugeRewardTokenData.d.ts +18 -0
- package/dist/types/contracts/governance/gauge/getPauseStatus.d.ts +19 -0
- package/dist/types/contracts/governance/gauge/getPendingExtraRewards.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getPendingRewards.d.ts +5 -5
- package/dist/types/contracts/governance/gauge/getRaacAutolockMin.d.ts +9 -0
- package/dist/types/contracts/governance/gauge/getRewardTokens.d.ts +3 -3
- package/dist/types/contracts/governance/gauge/getUserApy.d.ts +44 -0
- package/dist/types/contracts/governance/gauge/getUserClaimableRewards.d.ts +42 -0
- package/dist/types/contracts/governance/gauge/getUserGaugeState.d.ts +31 -0
- package/dist/types/contracts/governance/gauge/getUserRewardTokenData.d.ts +17 -0
- package/dist/types/contracts/governance/gauge/getUserWeight.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/index.d.ts +49 -17
- package/dist/types/contracts/governance/gauge/isPaused.d.ts +9 -0
- package/dist/types/contracts/governance/gauge/manageDistributor.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/pullRewardsFromDistributor.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/setController.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/setDepositRAACOnClaim.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/setEmergencyPaused.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/setGaugeRewardDistributor.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/setRaacAutolockMin.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/unwrapStakingToken.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/updateUserRewards.d.ts +2 -1
- package/dist/types/contracts/governance/gauge/wrapStakingToken.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/addGauge.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/batchVote.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/calculateBoost.d.ts +10 -8
- package/dist/types/contracts/governance/gaugeController/forceCompleteCheckpoint.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/getActiveGaugeCount.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getActiveGauges.d.ts +7 -3
- package/dist/types/contracts/governance/gaugeController/getConstants.d.ts +20 -0
- package/dist/types/contracts/governance/gaugeController/getCurrentEpoch.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getExpiredGaugeVotePower.d.ts +16 -0
- package/dist/types/contracts/governance/gaugeController/getGauge.d.ts +18 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeDistributor.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeEmissions.d.ts +67 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeRelativeWeight.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeRelativeWeightView.d.ts +17 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeWeight.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/getLastVoteTime.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/getMaxVoteBuckets.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getNextEpoch.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getRegisteredGaugeList.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getTotalWeight.d.ts +5 -3
- package/dist/types/contracts/governance/gaugeController/getUserGaugeVotePower.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/getUserVotePowerRemaining.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/getVeToken.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/getVoteUserLocks.d.ts +17 -0
- package/dist/types/contracts/governance/gaugeController/getVoteUserPower.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/getVoteUserSlope.d.ts +18 -0
- package/dist/types/contracts/governance/gaugeController/index.d.ts +38 -11
- package/dist/types/contracts/governance/gaugeController/isGaugeActive.d.ts +6 -4
- package/dist/types/contracts/governance/gaugeController/isPaused.d.ts +12 -0
- package/dist/types/contracts/governance/gaugeController/kick.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/removeGauge.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/removePowerFromGauge.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/setBoostAmplificationEnabled.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/setDistributor.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyGaugePause.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyGaugePauseBatch.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyPause.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/setMaxVoteBuckets.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeController/vote.d.ts +9 -7
- package/dist/types/contracts/governance/gaugeSystems/_helpers.d.ts +71 -0
- package/dist/types/contracts/governance/gaugeSystems/findGauge.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeSystems/getGaugeSystem.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeSystems/getGaugeSystems.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeSystems/getGauges.d.ts +13 -0
- package/dist/types/contracts/governance/gaugeSystems/index.d.ts +5 -0
- package/dist/types/contracts/governance/proposals/cancel.d.ts +5 -4
- package/dist/types/contracts/governance/proposals/castVote.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/execute.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/getGovernances.d.ts +11 -0
- package/dist/types/contracts/governance/proposals/getLabel.d.ts +11 -0
- package/dist/types/contracts/governance/proposals/getProposal.d.ts +8 -12
- package/dist/types/contracts/governance/proposals/getProposalCount.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/getProposalEta.d.ts +13 -0
- package/dist/types/contracts/governance/proposals/getProposalInfo.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/getProposalThreshold.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/getQuorum.d.ts +6 -4
- package/dist/types/contracts/governance/proposals/getQuorumNumerator.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/getRoles.d.ts +16 -0
- package/dist/types/contracts/governance/proposals/getState.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/getVoteReceipt.d.ts +26 -0
- package/dist/types/contracts/governance/proposals/getVotes.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/getVotingDelay.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/getVotingPeriod.d.ts +2 -1
- package/dist/types/contracts/governance/proposals/hasRole.d.ts +13 -0
- package/dist/types/contracts/governance/proposals/hasVoted.d.ts +14 -0
- package/dist/types/contracts/governance/proposals/index.d.ts +11 -2
- package/dist/types/contracts/governance/proposals/propose.d.ts +3 -13
- package/dist/types/contracts/governance/proposals/setParameter.d.ts +23 -0
- package/dist/types/contracts/governance/proposals/setTimelock.d.ts +14 -0
- package/dist/types/contracts/governance/timelock/getConstants.d.ts +2 -1
- package/dist/types/contracts/governance/timelock/getMinDelay.d.ts +2 -1
- package/dist/types/contracts/governance/timelock/getRoles.d.ts +19 -0
- package/dist/types/contracts/governance/timelock/getTimestamp.d.ts +2 -1
- package/dist/types/contracts/governance/timelock/hasRole.d.ts +13 -0
- package/dist/types/contracts/governance/timelock/hashOperationBatch.d.ts +3 -2
- package/dist/types/contracts/governance/timelock/index.d.ts +2 -0
- package/dist/types/contracts/governance/timelock/isOperationDone.d.ts +2 -1
- package/dist/types/contracts/governance/timelock/isOperationPending.d.ts +2 -1
- package/dist/types/contracts/governance/timelock/isOperationReady.d.ts +2 -1
- package/dist/types/contracts/lockers/botLocker/_helpers.d.ts +4 -0
- package/dist/types/contracts/lockers/botLocker/claim.d.ts +6 -0
- package/dist/types/contracts/lockers/botLocker/getClaimable.d.ts +6 -0
- package/dist/types/contracts/lockers/botLocker/getClaimables.d.ts +10 -0
- package/dist/types/contracts/lockers/botLocker/getClaimedRewards.d.ts +7 -0
- package/dist/types/contracts/lockers/botLocker/getLockedTokenIds.d.ts +3 -0
- package/dist/types/contracts/lockers/botLocker/getLocks.d.ts +15 -0
- package/dist/types/contracts/lockers/botLocker/getRewardTokenCount.d.ts +3 -0
- package/dist/types/contracts/lockers/botLocker/getRewardTokens.d.ts +3 -0
- package/dist/types/contracts/lockers/botLocker/lock.d.ts +7 -0
- package/dist/types/contracts/lockers/botLocker/unlock.d.ts +10 -0
- package/dist/types/contracts/lockers/botLocker/unlockAndClaim.d.ts +6 -0
- package/dist/types/contracts/lockers/liquidLocker/_helpers.d.ts +4 -0
- package/dist/types/contracts/lockers/liquidLocker/borrow.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/deposit.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/donate.d.ts +6 -0
- package/dist/types/contracts/lockers/liquidLocker/getConfig.d.ts +27 -0
- package/dist/types/contracts/lockers/liquidLocker/getGlobalInfo.d.ts +24 -0
- package/dist/types/contracts/lockers/liquidLocker/getUserInfo.d.ts +21 -0
- package/dist/types/contracts/lockers/liquidLocker/getUserLocks.d.ts +17 -0
- package/dist/types/contracts/lockers/liquidLocker/harvest.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/isKeeper.d.ts +3 -0
- package/dist/types/contracts/lockers/liquidLocker/processVaultExpiredLocks.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/repay.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/requestUnlock.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/voteGauge.d.ts +7 -0
- package/dist/types/contracts/lockers/liquidLocker/voteGovernance.d.ts +6 -0
- package/dist/types/contracts/lockers/liquidLocker/withdrawUnlocked.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/_helpers.d.ts +4 -0
- package/dist/types/contracts/lockers/maturityVault/claim.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/deposit.d.ts +7 -0
- package/dist/types/contracts/lockers/maturityVault/depositFor.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/distribute.d.ts +7 -0
- package/dist/types/contracts/lockers/maturityVault/exit.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/getConfig.d.ts +12 -0
- package/dist/types/contracts/lockers/maturityVault/getGlobalInfo.d.ts +32 -0
- package/dist/types/contracts/lockers/maturityVault/getUserInfo.d.ts +14 -0
- package/dist/types/contracts/lockers/maturityVault/harvest.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/isWhitelisted.d.ts +3 -0
- package/dist/types/contracts/lockers/maturityVault/updatePendingDistribution.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/withdraw.d.ts +6 -0
- package/dist/types/contracts/lockers/maturityVault/withdrawAll.d.ts +6 -0
- package/dist/types/contracts/tokens/leRAAC/_helpers.d.ts +4 -0
- package/dist/types/contracts/tokens/leRAAC/approve.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/burn.d.ts +6 -0
- package/dist/types/contracts/tokens/leRAAC/burnFrom.d.ts +6 -0
- package/dist/types/contracts/tokens/leRAAC/getAllowance.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/getBalance.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/getMinterInfo.d.ts +8 -0
- package/dist/types/contracts/tokens/leRAAC/getTotalSupply.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/transfer.d.ts +3 -0
- package/dist/types/contracts/tokens/leRAAC/transferFrom.d.ts +3 -0
- package/dist/types/contracts/tokens/veRAAC/getRagequitEpochs.d.ts +11 -0
- package/dist/types/contracts/tokens/veRAAC/increaseWithApproval.d.ts +13 -0
- package/dist/types/contracts/tokens/veRAAC/index.d.ts +3 -0
- package/dist/types/contracts/tokens/veRAAC/lockWithApproval.d.ts +14 -0
- package/dist/types/contracts/zap/aladdin/_helpers.d.ts +4 -0
- package/dist/types/contracts/zap/aladdin/_types.d.ts +44 -0
- package/dist/types/contracts/zap/aladdin/decodeRoute.d.ts +14 -0
- package/dist/types/contracts/zap/aladdin/encodeRoute.d.ts +18 -0
- package/dist/types/contracts/zap/aladdin/getCurvePoolToken.d.ts +8 -0
- package/dist/types/contracts/zap/aladdin/getOwner.d.ts +3 -0
- package/dist/types/contracts/zap/aladdin/getPool2Token.d.ts +6 -0
- package/dist/types/contracts/zap/aladdin/getRoutes.d.ts +13 -0
- package/dist/types/contracts/zap/aladdin/getVersion.d.ts +3 -0
- package/dist/types/contracts/zap/aladdin/rescue.d.ts +6 -0
- package/dist/types/contracts/zap/aladdin/updatePoolTokens.d.ts +6 -0
- package/dist/types/contracts/zap/aladdin/updateRoute.d.ts +13 -0
- package/dist/types/contracts/zap/aladdin/validateRoute.d.ts +26 -0
- package/dist/types/contracts/zap/aladdin/zap.d.ts +8 -0
- package/dist/types/contracts/zap/aladdin/zapFrom.d.ts +8 -0
- package/dist/types/contracts/zap/aladdin/zapWithRoutes.d.ts +11 -0
- package/dist/types/contracts/zap/codec.d.ts +36 -0
- package/dist/types/minter/_helpers.d.ts +4 -0
- package/dist/types/minter/activate.d.ts +8 -0
- package/dist/types/minter/addDistributionPool.d.ts +7 -0
- package/dist/types/minter/calculateScheduledMintableAmount.d.ts +8 -0
- package/dist/types/minter/get.d.ts +28 -16
- package/dist/types/minter/getApy.d.ts +19 -2
- package/dist/types/minter/getDistributionPools.d.ts +16 -0
- package/dist/types/minter/getEmissionPerSecond.d.ts +8 -0
- package/dist/types/minter/getPoolInfo.d.ts +13 -0
- package/dist/types/minter/isPaused.d.ts +3 -0
- package/dist/types/minter/manageDistributionPool.d.ts +8 -0
- package/dist/types/minter/pause.d.ts +6 -0
- package/dist/types/minter/removeDistributionPool.d.ts +10 -0
- package/dist/types/minter/tick.d.ts +7 -3
- package/dist/types/typechain-types/@openzeppelin/{contracts-v3/token/ERC20/IERC20.d.ts → contracts/token/ERC20/extensions/ERC20Capped.d.ts} +34 -18
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.d.ts +155 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/token/ERC20/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +169 -122
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +260 -225
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +173 -212
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +169 -122
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +169 -122
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +202 -82
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +8 -8
- package/dist/types/typechain-types/contracts/core/lockers/RAACLiquidLocker.d.ts +101 -171
- package/dist/types/typechain-types/contracts/core/lockers/RAACMaturityVault.d.ts +5 -38
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +58 -418
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +108 -2
- package/dist/types/typechain-types/contracts/core/oracles/KYCVerifyModule.sol/IKYCVerifyModule.d.ts +25 -0
- package/dist/types/typechain-types/{@openzeppelin/contracts-v3/access/Ownable.d.ts → contracts/core/oracles/KYCVerifyModule.sol/KYCVerifyModule.d.ts} +10 -6
- package/dist/types/typechain-types/contracts/core/oracles/KYCVerifyModule.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/PmUSDToUSDOracle.d.ts +338 -0
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +60 -4
- package/dist/types/typechain-types/contracts/core/oracles/ZkMeKYCVerifyModule.sol/ZKMEKYCVerifyModule.d.ts +110 -0
- package/dist/types/typechain-types/contracts/core/oracles/ZkMeKYCVerifyModule.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +9 -23
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +8 -4
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +8 -4
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +8 -4
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +70 -1
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +16 -1
- package/dist/types/typechain-types/contracts/core/tokens/LeRAAC.sol/LiquidEscrowedRAAC.d.ts +3 -3
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +65 -50
- package/dist/types/typechain-types/contracts/core/tokens/RAACToken.d.ts +6 -191
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +62 -1
- package/dist/types/typechain-types/contracts/core/tokens/SToken.d.ts +804 -0
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +28 -2
- package/dist/types/typechain-types/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/IZap.d.ts +15 -1
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +104 -125
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +210 -34
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +112 -151
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +36 -51
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +8 -8
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/IRaacLiquidLocker.d.ts +30 -37
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +68 -205
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +100 -2
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +15 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +1 -19
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +70 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +16 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +36 -25
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +2 -179
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/ISToken.d.ts +454 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +15 -1
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +19 -3
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +47 -1
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +47 -1
- package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/minters/MockRAACMinterRewardsReceiver.d.ts +181 -0
- package/dist/types/typechain-types/contracts/mocks/core/minters/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +15 -1
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +1 -19
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeOnTransferToken.d.ts +163 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/minters/EmissionScheduleMock.d.ts +91 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/minters/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/ChainlinkOracleAdapter.d.ts +212 -0
- package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/IRWACoordinator.d.ts +67 -0
- package/dist/types/typechain-types/contracts/rwaf/ChainlinkOracleAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/ITokenBlender.d.ts +331 -0
- package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/TokenBlender.d.ts +671 -0
- package/dist/types/typechain-types/contracts/rwaf/TokenBlender.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/rwaf/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/zap/AladdinZap.d.ts +15 -1
- package/dist/types/typechain-types/contracts/zap/index.d.ts +0 -2
- 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/token/ERC20/extensions/ERC20Capped__factory.d.ts +271 -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/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/{contracts-v3/token/ERC20/IERC20__factory.d.ts → contracts-upgradeable/token/ERC20/ERC20Upgradeable__factory.d.ts} +122 -10
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/token/ERC20/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/index.d.ts +0 -1
- 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 +11 -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 +166 -107
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +242 -242
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +164 -232
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +177 -110
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +177 -110
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoostProxy__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/VeBoost__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +288 -81
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +11 -15
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACBotLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACLiquidLocker__factory.d.ts +129 -197
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACMaturityVault__factory.d.ts +11 -51
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACNFTLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +28 -557
- 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 +81 -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/KYCVerifyModule.sol/IKYCVerifyModule__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/{@openzeppelin/contracts-v3/access/Ownable__factory.d.ts → contracts/core/oracles/KYCVerifyModule.sol/KYCVerifyModule__factory.d.ts} +38 -4
- package/dist/types/typechain-types/factories/contracts/core/oracles/KYCVerifyModule.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/PmUSDToUSDOracle__factory.d.ts +443 -0
- 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 +97 -3
- package/dist/types/typechain-types/factories/contracts/core/oracles/ZkMeKYCVerifyModule.sol/ZKMEKYCVerifyModule__factory.d.ts +181 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/ZkMeKYCVerifyModule.sol/index.d.ts +1 -0
- 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/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +9 -5
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +9 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +9 -5
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +9 -5
- 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 +62 -3
- 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 +16 -1
- 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 +7 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +79 -58
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +21 -252
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +51 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/SToken__factory.d.ts +1153 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterOracle.sol/RAACNFTVaultAdapterOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +35 -1
- package/dist/types/typechain-types/factories/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IZap__factory.d.ts +18 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +96 -107
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +241 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +72 -158
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +70 -40
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +8 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/IRaacLiquidLocker__factory.d.ts +26 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +44 -230
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +70 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +18 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -26
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +55 -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/IRAACNFT__factory.d.ts +28 -15
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -219
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/ISToken__factory.d.ts +564 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +66 -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 +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RagequitLib__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RewardLib__factory.d.ts +1 -1
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +67 -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/libraries/LockManagerMock__factory.d.ts +1 -1
- 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/index.d.ts +1 -0
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/minters/MockRAACMinterRewardsReceiver__factory.d.ts +184 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/minters/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 +19 -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 +1 -27
- 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/MockFeeOnTransferToken__factory.d.ts +306 -0
- 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/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- 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 +1 -1
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RagequitHarness__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RewardIntegralCalculatorMock.sol/MockRewardIntegralCalculator__factory.d.ts +1 -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/minters/EmissionScheduleMock__factory.d.ts +115 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/minters/index.d.ts +1 -0
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/ChainlinkOracleAdapter__factory.d.ts +295 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/IRWACoordinator__factory.d.ts +43 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/ChainlinkOracleAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/ITokenBlender__factory.d.ts +409 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/TokenBlender__factory.d.ts +990 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/TokenBlender.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/rwaf/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/zap/AladdinZap__factory.d.ts +19 -1
- package/dist/types/typechain-types/factories/contracts/zap/index.d.ts +0 -2
- 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 +34 -8
- package/dist/types/utils/artifacts.d.ts +677 -116
- package/dist/types/utils/contracts.d.ts +36 -76
- package/dist/utils/artifacts.js +16 -0
- package/dist/utils/contracts.js +1 -1
- package/package.json +1 -1
- package/dist/contracts/governance/distributor/getAvailableBalance.js +0 -29
- package/dist/contracts/governance/distributor/getGaugeRewardTokens.js +0 -28
- package/dist/contracts/governance/distributor/getTransferableBalance.js +0 -30
- package/dist/contracts/governance/distributor/isRewardTokenApproved.js +0 -29
- package/dist/contracts/governance/distributor/isTokenApproved.js +0 -29
- package/dist/contracts/governance/gauge/claimReward.js +0 -44
- package/dist/contracts/governance/gauge/getAllEarnedRewards.js +0 -51
- package/dist/contracts/governance/gauge/getAllPendingRewards.js +0 -41
- package/dist/contracts/governance/gauge/getUserGaugeVoteWeight.js +0 -42
- package/dist/contracts/governance/gauge/getWorkingBalance.js +0 -43
- package/dist/contracts/governance/gauge/syncRewardTokens.js +0 -51
- package/dist/contracts/governance/gaugeController/checkpoint.js +0 -33
- package/dist/contracts/governance/gaugeController/checkpointGauge.js +0 -34
- package/dist/contracts/governance/gaugeController/getUserGaugeVoteWeight.js +0 -30
- package/dist/tests/test.js +0 -32
- package/dist/types/contracts/governance/distributor/getAvailableBalance.d.ts +0 -11
- package/dist/types/contracts/governance/distributor/getGaugeRewardTokens.d.ts +0 -11
- package/dist/types/contracts/governance/distributor/getRewardTokens.d.ts +0 -10
- package/dist/types/contracts/governance/distributor/getTransferableBalance.d.ts +0 -12
- package/dist/types/contracts/governance/distributor/isRewardTokenApproved.d.ts +0 -12
- package/dist/types/contracts/governance/distributor/isTokenApproved.d.ts +0 -11
- package/dist/types/contracts/governance/gauge/claimReward.d.ts +0 -11
- package/dist/types/contracts/governance/gauge/getAllEarnedRewards.d.ts +0 -17
- package/dist/types/contracts/governance/gauge/getAllPendingRewards.d.ts +0 -19
- package/dist/types/contracts/governance/gauge/getUserGaugeVoteWeight.d.ts +0 -14
- package/dist/types/contracts/governance/gauge/getWorkingBalance.d.ts +0 -12
- package/dist/types/contracts/governance/gauge/syncRewardTokens.d.ts +0 -13
- package/dist/types/contracts/governance/gaugeController/checkpoint.d.ts +0 -11
- package/dist/types/contracts/governance/gaugeController/checkpointGauge.d.ts +0 -12
- package/dist/types/contracts/governance/gaugeController/getUserGaugeVoteWeight.d.ts +0 -12
- package/dist/types/contracts/governance/gaugeController/isGauge.d.ts +0 -11
- package/dist/types/contracts/governance/proposals/getProposalData.d.ts +0 -18
- package/dist/types/tests/test.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/access/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/index.d.ts +0 -4
- package/dist/types/typechain-types/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/zap/AladdinCRVZap.d.ts +0 -83
- package/dist/types/typechain-types/contracts/zap/AladdinConvexVaultZap.d.ts +0 -172
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/access/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-v3/token/ERC20/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/zap/AladdinCRVZap__factory.d.ts +0 -107
- package/dist/types/typechain-types/factories/contracts/zap/AladdinConvexVaultZap__factory.d.ts +0 -208
- /package/dist/types/typechain-types/@openzeppelin/{contracts-v3 → contracts-upgradeable}/token/index.d.ts +0 -0
- /package/dist/types/typechain-types/factories/@openzeppelin/{contracts-v3 → contracts-upgradeable}/token/index.d.ts +0 -0
|
@@ -49,35 +49,35 @@ export declare namespace IBaseGauge {
|
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
51
|
export interface RAACGaugeInterface extends Interface {
|
|
52
|
-
getFunction(nameOrSignature: "CLAIM_FOR_ROLE" | "CONTROLLER_ROLE" | "DEFAULT_ADMIN_ROLE" | "
|
|
53
|
-
getEvent(nameOrSignatureOrTopic: "DepositRAACOnClaimUpdated" | "DistributorApprovalUpdated" | "DistributorUpdated" | "EmergencyPauseUpdated" | "ExtraRewardClaimed" | "ExtraRewardDeposited" | "ExtraRewardTokenAdded" | "LeftoverRewardsIncluded" | "Paused" | "
|
|
52
|
+
getFunction(nameOrSignature: "CLAIM_FOR_ROLE" | "CONTROLLER_ROLE" | "DEFAULT_ADMIN_ROLE" | "DISTRIBUTOR_ROLE" | "GAUGE_ADMIN" | "MAX_EXTRA_REWARDS" | "WEEK" | "addRewardToken" | "allPendingExtraRewards" | "balanceOf" | "claimExtraReward" | "claimExtraRewards" | "claimOnBehalfOf" | "claimRewardToken" | "claimRewardsFor" | "depositRAACOnClaim" | "depositRewardToken" | "earnedExtraReward" | "earnedReward" | "extraRewardTokenData" | "gaugeController" | "gaugeData" | "getControllerAddress" | "getDecimalAdjustment" | "getDistributorData" | "getDistributors" | "getExtraRewardTokens" | "getGaugeRewardTokenData" | "getPeriodBoundaries" | "getRewardTokens" | "getRoleAdmin" | "getUserRewardTokenData" | "getUserWeight" | "grantRole" | "hasRole" | "isPaused" | "manageDistributor" | "paused" | "pendingExtraRewards" | "pendingRewards" | "periodDuration" | "pullRewardsFromDistributor" | "raacAutolockMin" | "raacLiquidLocker" | "raacToken" | "rawBalanceOf" | "rawTotalSupply" | "renounceRole" | "revokeRole" | "setController" | "setDepositRAACOnClaim" | "setEmergencyPaused" | "setGaugeRewardDistributor" | "setRaacAutolockMin" | "stake" | "supportsInterface" | "totalSupply" | "updateUserRewards" | "userGaugeData" | "withdraw"): FunctionFragment;
|
|
53
|
+
getEvent(nameOrSignatureOrTopic: "ControllerUpdated" | "DepositRAACOnClaimUpdated" | "DistributorApprovalUpdated" | "DistributorUpdated" | "EmergencyPauseUpdated" | "ExtraRewardClaimed" | "ExtraRewardDeposited" | "ExtraRewardTokenAdded" | "GaugeRewardDistributorUpdated" | "LeftoverRewardsIncluded" | "Paused" | "RaacAutolockMinUpdated" | "RewardTokenActivated" | "RewardTokenAdded" | "RewardTokenRegistered" | "RewardTransferred" | "RewardsPulledFromDistributor" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Staked" | "Unpaused" | "UserRewardsUpdated" | "Withdrawn" | "WorkingBalanceUpdated"): EventFragment;
|
|
54
54
|
encodeFunctionData(functionFragment: "CLAIM_FOR_ROLE", values?: undefined): string;
|
|
55
55
|
encodeFunctionData(functionFragment: "CONTROLLER_ROLE", values?: undefined): string;
|
|
56
56
|
encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
|
|
57
|
-
encodeFunctionData(functionFragment: "
|
|
57
|
+
encodeFunctionData(functionFragment: "DISTRIBUTOR_ROLE", values?: undefined): string;
|
|
58
|
+
encodeFunctionData(functionFragment: "GAUGE_ADMIN", values?: undefined): string;
|
|
58
59
|
encodeFunctionData(functionFragment: "MAX_EXTRA_REWARDS", values?: undefined): string;
|
|
59
60
|
encodeFunctionData(functionFragment: "WEEK", values?: undefined): string;
|
|
60
|
-
encodeFunctionData(functionFragment: "addRewardToken", values: [AddressLike
|
|
61
|
-
encodeFunctionData(functionFragment: "allEarnedRewards", values: [AddressLike]): string;
|
|
61
|
+
encodeFunctionData(functionFragment: "addRewardToken", values: [AddressLike]): string;
|
|
62
62
|
encodeFunctionData(functionFragment: "allPendingExtraRewards", values: [AddressLike]): string;
|
|
63
|
-
encodeFunctionData(functionFragment: "allPendingRewards", values: [AddressLike]): string;
|
|
64
63
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
65
64
|
encodeFunctionData(functionFragment: "claimExtraReward", values: [AddressLike]): string;
|
|
66
65
|
encodeFunctionData(functionFragment: "claimExtraRewards", values?: undefined): string;
|
|
67
66
|
encodeFunctionData(functionFragment: "claimOnBehalfOf", values: [AddressLike, BigNumberish, AddressLike]): string;
|
|
68
|
-
encodeFunctionData(functionFragment: "claimRewardToken", values
|
|
69
|
-
encodeFunctionData(functionFragment: "claimRewards", values?: undefined): string;
|
|
67
|
+
encodeFunctionData(functionFragment: "claimRewardToken", values?: undefined): string;
|
|
70
68
|
encodeFunctionData(functionFragment: "claimRewardsFor", values: [AddressLike]): string;
|
|
71
69
|
encodeFunctionData(functionFragment: "depositRAACOnClaim", values?: undefined): string;
|
|
72
70
|
encodeFunctionData(functionFragment: "depositRewardToken", values: [AddressLike, BigNumberish]): string;
|
|
71
|
+
encodeFunctionData(functionFragment: "earnedExtraReward", values: [AddressLike, AddressLike]): string;
|
|
73
72
|
encodeFunctionData(functionFragment: "earnedReward", values: [AddressLike, AddressLike]): string;
|
|
74
|
-
encodeFunctionData(functionFragment: "emergencyWithdraw", values: [AddressLike, BigNumberish]): string;
|
|
75
73
|
encodeFunctionData(functionFragment: "extraRewardTokenData", values: [AddressLike]): string;
|
|
76
74
|
encodeFunctionData(functionFragment: "gaugeController", values?: undefined): string;
|
|
77
75
|
encodeFunctionData(functionFragment: "gaugeData", values?: undefined): string;
|
|
78
76
|
encodeFunctionData(functionFragment: "getControllerAddress", values?: undefined): string;
|
|
79
77
|
encodeFunctionData(functionFragment: "getDecimalAdjustment", values: [AddressLike]): string;
|
|
78
|
+
encodeFunctionData(functionFragment: "getDistributorData", values: [AddressLike]): string;
|
|
80
79
|
encodeFunctionData(functionFragment: "getDistributors", values?: undefined): string;
|
|
80
|
+
encodeFunctionData(functionFragment: "getExtraRewardTokens", values?: undefined): string;
|
|
81
81
|
encodeFunctionData(functionFragment: "getGaugeRewardTokenData", values: [AddressLike]): string;
|
|
82
82
|
encodeFunctionData(functionFragment: "getPeriodBoundaries", values?: undefined): string;
|
|
83
83
|
encodeFunctionData(functionFragment: "getRewardTokens", values?: undefined): string;
|
|
@@ -86,55 +86,58 @@ export interface RAACGaugeInterface extends Interface {
|
|
|
86
86
|
encodeFunctionData(functionFragment: "getUserWeight", values: [AddressLike]): string;
|
|
87
87
|
encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
|
|
88
88
|
encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
|
|
89
|
-
encodeFunctionData(functionFragment: "
|
|
89
|
+
encodeFunctionData(functionFragment: "isPaused", values?: undefined): string;
|
|
90
90
|
encodeFunctionData(functionFragment: "manageDistributor", values: [AddressLike, boolean]): string;
|
|
91
91
|
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
92
92
|
encodeFunctionData(functionFragment: "pendingExtraRewards", values: [AddressLike, AddressLike]): string;
|
|
93
93
|
encodeFunctionData(functionFragment: "pendingRewards", values: [AddressLike, AddressLike]): string;
|
|
94
94
|
encodeFunctionData(functionFragment: "periodDuration", values?: undefined): string;
|
|
95
|
+
encodeFunctionData(functionFragment: "pullRewardsFromDistributor", values?: undefined): string;
|
|
96
|
+
encodeFunctionData(functionFragment: "raacAutolockMin", values?: undefined): string;
|
|
95
97
|
encodeFunctionData(functionFragment: "raacLiquidLocker", values?: undefined): string;
|
|
96
98
|
encodeFunctionData(functionFragment: "raacToken", values?: undefined): string;
|
|
97
99
|
encodeFunctionData(functionFragment: "rawBalanceOf", values: [AddressLike]): string;
|
|
98
100
|
encodeFunctionData(functionFragment: "rawTotalSupply", values?: undefined): string;
|
|
99
101
|
encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
|
|
100
102
|
encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
|
|
103
|
+
encodeFunctionData(functionFragment: "setController", values: [AddressLike]): string;
|
|
101
104
|
encodeFunctionData(functionFragment: "setDepositRAACOnClaim", values: [boolean]): string;
|
|
102
|
-
encodeFunctionData(functionFragment: "setDistributorApproval", values: [AddressLike, boolean]): string;
|
|
103
105
|
encodeFunctionData(functionFragment: "setEmergencyPaused", values: [boolean]): string;
|
|
106
|
+
encodeFunctionData(functionFragment: "setGaugeRewardDistributor", values: [AddressLike]): string;
|
|
107
|
+
encodeFunctionData(functionFragment: "setRaacAutolockMin", values: [BigNumberish]): string;
|
|
104
108
|
encodeFunctionData(functionFragment: "stake", values: [BigNumberish]): string;
|
|
105
109
|
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
106
|
-
encodeFunctionData(functionFragment: "syncRewardTokens", values?: undefined): string;
|
|
107
110
|
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
108
|
-
encodeFunctionData(functionFragment: "updateUserRewards", values
|
|
111
|
+
encodeFunctionData(functionFragment: "updateUserRewards", values: [AddressLike]): string;
|
|
109
112
|
encodeFunctionData(functionFragment: "userGaugeData", values: [AddressLike]): string;
|
|
110
113
|
encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string;
|
|
111
114
|
decodeFunctionResult(functionFragment: "CLAIM_FOR_ROLE", data: BytesLike): Result;
|
|
112
115
|
decodeFunctionResult(functionFragment: "CONTROLLER_ROLE", data: BytesLike): Result;
|
|
113
116
|
decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
|
|
114
|
-
decodeFunctionResult(functionFragment: "
|
|
117
|
+
decodeFunctionResult(functionFragment: "DISTRIBUTOR_ROLE", data: BytesLike): Result;
|
|
118
|
+
decodeFunctionResult(functionFragment: "GAUGE_ADMIN", data: BytesLike): Result;
|
|
115
119
|
decodeFunctionResult(functionFragment: "MAX_EXTRA_REWARDS", data: BytesLike): Result;
|
|
116
120
|
decodeFunctionResult(functionFragment: "WEEK", data: BytesLike): Result;
|
|
117
121
|
decodeFunctionResult(functionFragment: "addRewardToken", data: BytesLike): Result;
|
|
118
|
-
decodeFunctionResult(functionFragment: "allEarnedRewards", data: BytesLike): Result;
|
|
119
122
|
decodeFunctionResult(functionFragment: "allPendingExtraRewards", data: BytesLike): Result;
|
|
120
|
-
decodeFunctionResult(functionFragment: "allPendingRewards", data: BytesLike): Result;
|
|
121
123
|
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
122
124
|
decodeFunctionResult(functionFragment: "claimExtraReward", data: BytesLike): Result;
|
|
123
125
|
decodeFunctionResult(functionFragment: "claimExtraRewards", data: BytesLike): Result;
|
|
124
126
|
decodeFunctionResult(functionFragment: "claimOnBehalfOf", data: BytesLike): Result;
|
|
125
127
|
decodeFunctionResult(functionFragment: "claimRewardToken", data: BytesLike): Result;
|
|
126
|
-
decodeFunctionResult(functionFragment: "claimRewards", data: BytesLike): Result;
|
|
127
128
|
decodeFunctionResult(functionFragment: "claimRewardsFor", data: BytesLike): Result;
|
|
128
129
|
decodeFunctionResult(functionFragment: "depositRAACOnClaim", data: BytesLike): Result;
|
|
129
130
|
decodeFunctionResult(functionFragment: "depositRewardToken", data: BytesLike): Result;
|
|
131
|
+
decodeFunctionResult(functionFragment: "earnedExtraReward", data: BytesLike): Result;
|
|
130
132
|
decodeFunctionResult(functionFragment: "earnedReward", data: BytesLike): Result;
|
|
131
|
-
decodeFunctionResult(functionFragment: "emergencyWithdraw", data: BytesLike): Result;
|
|
132
133
|
decodeFunctionResult(functionFragment: "extraRewardTokenData", data: BytesLike): Result;
|
|
133
134
|
decodeFunctionResult(functionFragment: "gaugeController", data: BytesLike): Result;
|
|
134
135
|
decodeFunctionResult(functionFragment: "gaugeData", data: BytesLike): Result;
|
|
135
136
|
decodeFunctionResult(functionFragment: "getControllerAddress", data: BytesLike): Result;
|
|
136
137
|
decodeFunctionResult(functionFragment: "getDecimalAdjustment", data: BytesLike): Result;
|
|
138
|
+
decodeFunctionResult(functionFragment: "getDistributorData", data: BytesLike): Result;
|
|
137
139
|
decodeFunctionResult(functionFragment: "getDistributors", data: BytesLike): Result;
|
|
140
|
+
decodeFunctionResult(functionFragment: "getExtraRewardTokens", data: BytesLike): Result;
|
|
138
141
|
decodeFunctionResult(functionFragment: "getGaugeRewardTokenData", data: BytesLike): Result;
|
|
139
142
|
decodeFunctionResult(functionFragment: "getPeriodBoundaries", data: BytesLike): Result;
|
|
140
143
|
decodeFunctionResult(functionFragment: "getRewardTokens", data: BytesLike): Result;
|
|
@@ -143,29 +146,47 @@ export interface RAACGaugeInterface extends Interface {
|
|
|
143
146
|
decodeFunctionResult(functionFragment: "getUserWeight", data: BytesLike): Result;
|
|
144
147
|
decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
|
|
145
148
|
decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
|
|
146
|
-
decodeFunctionResult(functionFragment: "
|
|
149
|
+
decodeFunctionResult(functionFragment: "isPaused", data: BytesLike): Result;
|
|
147
150
|
decodeFunctionResult(functionFragment: "manageDistributor", data: BytesLike): Result;
|
|
148
151
|
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
149
152
|
decodeFunctionResult(functionFragment: "pendingExtraRewards", data: BytesLike): Result;
|
|
150
153
|
decodeFunctionResult(functionFragment: "pendingRewards", data: BytesLike): Result;
|
|
151
154
|
decodeFunctionResult(functionFragment: "periodDuration", data: BytesLike): Result;
|
|
155
|
+
decodeFunctionResult(functionFragment: "pullRewardsFromDistributor", data: BytesLike): Result;
|
|
156
|
+
decodeFunctionResult(functionFragment: "raacAutolockMin", data: BytesLike): Result;
|
|
152
157
|
decodeFunctionResult(functionFragment: "raacLiquidLocker", data: BytesLike): Result;
|
|
153
158
|
decodeFunctionResult(functionFragment: "raacToken", data: BytesLike): Result;
|
|
154
159
|
decodeFunctionResult(functionFragment: "rawBalanceOf", data: BytesLike): Result;
|
|
155
160
|
decodeFunctionResult(functionFragment: "rawTotalSupply", data: BytesLike): Result;
|
|
156
161
|
decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
|
|
157
162
|
decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
|
|
163
|
+
decodeFunctionResult(functionFragment: "setController", data: BytesLike): Result;
|
|
158
164
|
decodeFunctionResult(functionFragment: "setDepositRAACOnClaim", data: BytesLike): Result;
|
|
159
|
-
decodeFunctionResult(functionFragment: "setDistributorApproval", data: BytesLike): Result;
|
|
160
165
|
decodeFunctionResult(functionFragment: "setEmergencyPaused", data: BytesLike): Result;
|
|
166
|
+
decodeFunctionResult(functionFragment: "setGaugeRewardDistributor", data: BytesLike): Result;
|
|
167
|
+
decodeFunctionResult(functionFragment: "setRaacAutolockMin", data: BytesLike): Result;
|
|
161
168
|
decodeFunctionResult(functionFragment: "stake", data: BytesLike): Result;
|
|
162
169
|
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
163
|
-
decodeFunctionResult(functionFragment: "syncRewardTokens", data: BytesLike): Result;
|
|
164
170
|
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
165
171
|
decodeFunctionResult(functionFragment: "updateUserRewards", data: BytesLike): Result;
|
|
166
172
|
decodeFunctionResult(functionFragment: "userGaugeData", data: BytesLike): Result;
|
|
167
173
|
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
|
|
168
174
|
}
|
|
175
|
+
export declare namespace ControllerUpdatedEvent {
|
|
176
|
+
type InputTuple = [
|
|
177
|
+
oldController: AddressLike,
|
|
178
|
+
newController: AddressLike
|
|
179
|
+
];
|
|
180
|
+
type OutputTuple = [oldController: string, newController: string];
|
|
181
|
+
interface OutputObject {
|
|
182
|
+
oldController: string;
|
|
183
|
+
newController: string;
|
|
184
|
+
}
|
|
185
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
186
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
187
|
+
type Log = TypedEventLog<Event>;
|
|
188
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
189
|
+
}
|
|
169
190
|
export declare namespace DepositRAACOnClaimUpdatedEvent {
|
|
170
191
|
type InputTuple = [depositRAACOnClaim: boolean];
|
|
171
192
|
type OutputTuple = [depositRAACOnClaim: boolean];
|
|
@@ -245,11 +266,21 @@ export declare namespace ExtraRewardDepositedEvent {
|
|
|
245
266
|
type LogDescription = TypedLogDescription<Event>;
|
|
246
267
|
}
|
|
247
268
|
export declare namespace ExtraRewardTokenAddedEvent {
|
|
248
|
-
type InputTuple = [token: AddressLike
|
|
249
|
-
type OutputTuple = [token: string
|
|
269
|
+
type InputTuple = [token: AddressLike];
|
|
270
|
+
type OutputTuple = [token: string];
|
|
250
271
|
interface OutputObject {
|
|
251
272
|
token: string;
|
|
252
|
-
|
|
273
|
+
}
|
|
274
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
275
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
276
|
+
type Log = TypedEventLog<Event>;
|
|
277
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
278
|
+
}
|
|
279
|
+
export declare namespace GaugeRewardDistributorUpdatedEvent {
|
|
280
|
+
type InputTuple = [rewardDistributor: AddressLike];
|
|
281
|
+
type OutputTuple = [rewardDistributor: string];
|
|
282
|
+
interface OutputObject {
|
|
283
|
+
rewardDistributor: string;
|
|
253
284
|
}
|
|
254
285
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
255
286
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -288,21 +319,11 @@ export declare namespace PausedEvent {
|
|
|
288
319
|
type Log = TypedEventLog<Event>;
|
|
289
320
|
type LogDescription = TypedLogDescription<Event>;
|
|
290
321
|
}
|
|
291
|
-
export declare namespace
|
|
292
|
-
type InputTuple = [
|
|
293
|
-
|
|
294
|
-
newRate: BigNumberish,
|
|
295
|
-
remainingTime: BigNumberish
|
|
296
|
-
];
|
|
297
|
-
type OutputTuple = [
|
|
298
|
-
token: string,
|
|
299
|
-
newRate: bigint,
|
|
300
|
-
remainingTime: bigint
|
|
301
|
-
];
|
|
322
|
+
export declare namespace RaacAutolockMinUpdatedEvent {
|
|
323
|
+
type InputTuple = [newRaacAutolockMin: BigNumberish];
|
|
324
|
+
type OutputTuple = [newRaacAutolockMin: bigint];
|
|
302
325
|
interface OutputObject {
|
|
303
|
-
|
|
304
|
-
newRate: bigint;
|
|
305
|
-
remainingTime: bigint;
|
|
326
|
+
newRaacAutolockMin: bigint;
|
|
306
327
|
}
|
|
307
328
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
308
329
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -344,14 +365,14 @@ export declare namespace RewardTokenRegisteredEvent {
|
|
|
344
365
|
}
|
|
345
366
|
export declare namespace RewardTransferredEvent {
|
|
346
367
|
type InputTuple = [
|
|
347
|
-
user: AddressLike,
|
|
348
368
|
token: AddressLike,
|
|
369
|
+
user: AddressLike,
|
|
349
370
|
amount: BigNumberish
|
|
350
371
|
];
|
|
351
|
-
type OutputTuple = [
|
|
372
|
+
type OutputTuple = [token: string, user: string, amount: bigint];
|
|
352
373
|
interface OutputObject {
|
|
353
|
-
user: string;
|
|
354
374
|
token: string;
|
|
375
|
+
user: string;
|
|
355
376
|
amount: bigint;
|
|
356
377
|
}
|
|
357
378
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
@@ -359,6 +380,21 @@ export declare namespace RewardTransferredEvent {
|
|
|
359
380
|
type Log = TypedEventLog<Event>;
|
|
360
381
|
type LogDescription = TypedLogDescription<Event>;
|
|
361
382
|
}
|
|
383
|
+
export declare namespace RewardsPulledFromDistributorEvent {
|
|
384
|
+
type InputTuple = [
|
|
385
|
+
distributor: AddressLike,
|
|
386
|
+
transferred: BigNumberish
|
|
387
|
+
];
|
|
388
|
+
type OutputTuple = [distributor: string, transferred: bigint];
|
|
389
|
+
interface OutputObject {
|
|
390
|
+
distributor: string;
|
|
391
|
+
transferred: bigint;
|
|
392
|
+
}
|
|
393
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
394
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
395
|
+
type Log = TypedEventLog<Event>;
|
|
396
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
397
|
+
}
|
|
362
398
|
export declare namespace RoleAdminChangedEvent {
|
|
363
399
|
type InputTuple = [
|
|
364
400
|
role: BytesLike,
|
|
@@ -489,20 +525,15 @@ export interface RAACGauge extends BaseContract {
|
|
|
489
525
|
CLAIM_FOR_ROLE: TypedContractMethod<[], [string], "view">;
|
|
490
526
|
CONTROLLER_ROLE: TypedContractMethod<[], [string], "view">;
|
|
491
527
|
DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
|
|
492
|
-
|
|
528
|
+
DISTRIBUTOR_ROLE: TypedContractMethod<[], [string], "view">;
|
|
529
|
+
GAUGE_ADMIN: TypedContractMethod<[], [string], "view">;
|
|
493
530
|
MAX_EXTRA_REWARDS: TypedContractMethod<[], [bigint], "view">;
|
|
494
531
|
WEEK: TypedContractMethod<[], [bigint], "view">;
|
|
495
532
|
addRewardToken: TypedContractMethod<[
|
|
496
|
-
token: AddressLike
|
|
497
|
-
distributor: AddressLike
|
|
533
|
+
token: AddressLike
|
|
498
534
|
], [
|
|
499
535
|
void
|
|
500
536
|
], "nonpayable">;
|
|
501
|
-
allEarnedRewards: TypedContractMethod<[
|
|
502
|
-
account: AddressLike
|
|
503
|
-
], [
|
|
504
|
-
[string[], bigint[]]
|
|
505
|
-
], "view">;
|
|
506
537
|
allPendingExtraRewards: TypedContractMethod<[
|
|
507
538
|
user: AddressLike
|
|
508
539
|
], [
|
|
@@ -511,11 +542,6 @@ export interface RAACGauge extends BaseContract {
|
|
|
511
542
|
amounts: bigint[];
|
|
512
543
|
}
|
|
513
544
|
], "view">;
|
|
514
|
-
allPendingRewards: TypedContractMethod<[
|
|
515
|
-
account: AddressLike
|
|
516
|
-
], [
|
|
517
|
-
[string[], bigint[]]
|
|
518
|
-
], "view">;
|
|
519
545
|
balanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
520
546
|
claimExtraReward: TypedContractMethod<[
|
|
521
547
|
token: AddressLike
|
|
@@ -530,12 +556,7 @@ export interface RAACGauge extends BaseContract {
|
|
|
530
556
|
], [
|
|
531
557
|
bigint
|
|
532
558
|
], "nonpayable">;
|
|
533
|
-
claimRewardToken: TypedContractMethod<[
|
|
534
|
-
token: AddressLike
|
|
535
|
-
], [
|
|
536
|
-
bigint
|
|
537
|
-
], "nonpayable">;
|
|
538
|
-
claimRewards: TypedContractMethod<[], [void], "nonpayable">;
|
|
559
|
+
claimRewardToken: TypedContractMethod<[], [bigint], "nonpayable">;
|
|
539
560
|
claimRewardsFor: TypedContractMethod<[
|
|
540
561
|
user: AddressLike
|
|
541
562
|
], [
|
|
@@ -548,18 +569,18 @@ export interface RAACGauge extends BaseContract {
|
|
|
548
569
|
], [
|
|
549
570
|
void
|
|
550
571
|
], "nonpayable">;
|
|
551
|
-
|
|
572
|
+
earnedExtraReward: TypedContractMethod<[
|
|
552
573
|
token: AddressLike,
|
|
553
574
|
user: AddressLike
|
|
554
575
|
], [
|
|
555
576
|
bigint
|
|
556
577
|
], "view">;
|
|
557
|
-
|
|
578
|
+
earnedReward: TypedContractMethod<[
|
|
558
579
|
token: AddressLike,
|
|
559
|
-
|
|
580
|
+
user: AddressLike
|
|
560
581
|
], [
|
|
561
|
-
|
|
562
|
-
], "
|
|
582
|
+
bigint
|
|
583
|
+
], "view">;
|
|
563
584
|
extraRewardTokenData: TypedContractMethod<[
|
|
564
585
|
arg0: AddressLike
|
|
565
586
|
], [
|
|
@@ -567,7 +588,6 @@ export interface RAACGauge extends BaseContract {
|
|
|
567
588
|
boolean,
|
|
568
589
|
bigint,
|
|
569
590
|
bigint,
|
|
570
|
-
string,
|
|
571
591
|
bigint,
|
|
572
592
|
bigint,
|
|
573
593
|
bigint,
|
|
@@ -576,7 +596,6 @@ export interface RAACGauge extends BaseContract {
|
|
|
576
596
|
isActive: boolean;
|
|
577
597
|
decimals: bigint;
|
|
578
598
|
rate: bigint;
|
|
579
|
-
distributor: string;
|
|
580
599
|
periodFinish: bigint;
|
|
581
600
|
lastUpdate: bigint;
|
|
582
601
|
integral: bigint;
|
|
@@ -593,6 +612,8 @@ export interface RAACGauge extends BaseContract {
|
|
|
593
612
|
string,
|
|
594
613
|
bigint,
|
|
595
614
|
bigint,
|
|
615
|
+
string,
|
|
616
|
+
string,
|
|
596
617
|
bigint
|
|
597
618
|
] & {
|
|
598
619
|
gaugeInitialStartTime: bigint;
|
|
@@ -601,6 +622,8 @@ export interface RAACGauge extends BaseContract {
|
|
|
601
622
|
stakingToken: string;
|
|
602
623
|
totalSupply: bigint;
|
|
603
624
|
workingSupply: bigint;
|
|
625
|
+
rewardDistributor: string;
|
|
626
|
+
rewardToken: string;
|
|
604
627
|
lastUpdateTime: bigint;
|
|
605
628
|
}
|
|
606
629
|
], "view">;
|
|
@@ -610,7 +633,16 @@ export interface RAACGauge extends BaseContract {
|
|
|
610
633
|
], [
|
|
611
634
|
bigint
|
|
612
635
|
], "view">;
|
|
636
|
+
getDistributorData: TypedContractMethod<[
|
|
637
|
+
distributor: AddressLike
|
|
638
|
+
], [
|
|
639
|
+
[string, boolean] & {
|
|
640
|
+
distro: string;
|
|
641
|
+
approved: boolean;
|
|
642
|
+
}
|
|
643
|
+
], "view">;
|
|
613
644
|
getDistributors: TypedContractMethod<[], [string[]], "view">;
|
|
645
|
+
getExtraRewardTokens: TypedContractMethod<[], [string[]], "view">;
|
|
614
646
|
getGaugeRewardTokenData: TypedContractMethod<[
|
|
615
647
|
token: AddressLike
|
|
616
648
|
], [
|
|
@@ -644,12 +676,7 @@ export interface RAACGauge extends BaseContract {
|
|
|
644
676
|
], [
|
|
645
677
|
boolean
|
|
646
678
|
], "view">;
|
|
647
|
-
|
|
648
|
-
token: AddressLike,
|
|
649
|
-
distributor: AddressLike
|
|
650
|
-
], [
|
|
651
|
-
void
|
|
652
|
-
], "nonpayable">;
|
|
679
|
+
isPaused: TypedContractMethod<[], [boolean], "view">;
|
|
653
680
|
manageDistributor: TypedContractMethod<[
|
|
654
681
|
distributor: AddressLike,
|
|
655
682
|
shouldAddDistributor: boolean
|
|
@@ -670,6 +697,8 @@ export interface RAACGauge extends BaseContract {
|
|
|
670
697
|
bigint
|
|
671
698
|
], "view">;
|
|
672
699
|
periodDuration: TypedContractMethod<[], [bigint], "view">;
|
|
700
|
+
pullRewardsFromDistributor: TypedContractMethod<[], [bigint], "nonpayable">;
|
|
701
|
+
raacAutolockMin: TypedContractMethod<[], [bigint], "view">;
|
|
673
702
|
raacLiquidLocker: TypedContractMethod<[], [string], "view">;
|
|
674
703
|
raacToken: TypedContractMethod<[], [string], "view">;
|
|
675
704
|
rawBalanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
@@ -686,14 +715,13 @@ export interface RAACGauge extends BaseContract {
|
|
|
686
715
|
], [
|
|
687
716
|
void
|
|
688
717
|
], "nonpayable">;
|
|
689
|
-
|
|
690
|
-
|
|
718
|
+
setController: TypedContractMethod<[
|
|
719
|
+
_controller: AddressLike
|
|
691
720
|
], [
|
|
692
721
|
void
|
|
693
722
|
], "nonpayable">;
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
isApproved: boolean
|
|
723
|
+
setDepositRAACOnClaim: TypedContractMethod<[
|
|
724
|
+
newDepositRAACOnClaim: boolean
|
|
697
725
|
], [
|
|
698
726
|
void
|
|
699
727
|
], "nonpayable">;
|
|
@@ -702,15 +730,28 @@ export interface RAACGauge extends BaseContract {
|
|
|
702
730
|
], [
|
|
703
731
|
void
|
|
704
732
|
], "nonpayable">;
|
|
733
|
+
setGaugeRewardDistributor: TypedContractMethod<[
|
|
734
|
+
rewardDistributor: AddressLike
|
|
735
|
+
], [
|
|
736
|
+
void
|
|
737
|
+
], "nonpayable">;
|
|
738
|
+
setRaacAutolockMin: TypedContractMethod<[
|
|
739
|
+
newRaacAutolockMin: BigNumberish
|
|
740
|
+
], [
|
|
741
|
+
void
|
|
742
|
+
], "nonpayable">;
|
|
705
743
|
stake: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
706
744
|
supportsInterface: TypedContractMethod<[
|
|
707
745
|
interfaceId: BytesLike
|
|
708
746
|
], [
|
|
709
747
|
boolean
|
|
710
748
|
], "view">;
|
|
711
|
-
syncRewardTokens: TypedContractMethod<[], [void], "nonpayable">;
|
|
712
749
|
totalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
713
|
-
updateUserRewards: TypedContractMethod<[
|
|
750
|
+
updateUserRewards: TypedContractMethod<[
|
|
751
|
+
user: AddressLike
|
|
752
|
+
], [
|
|
753
|
+
void
|
|
754
|
+
], "nonpayable">;
|
|
714
755
|
userGaugeData: TypedContractMethod<[
|
|
715
756
|
arg0: AddressLike
|
|
716
757
|
], [
|
|
@@ -729,20 +770,11 @@ export interface RAACGauge extends BaseContract {
|
|
|
729
770
|
getFunction(nameOrSignature: "CLAIM_FOR_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
730
771
|
getFunction(nameOrSignature: "CONTROLLER_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
731
772
|
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
732
|
-
getFunction(nameOrSignature: "
|
|
773
|
+
getFunction(nameOrSignature: "DISTRIBUTOR_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
774
|
+
getFunction(nameOrSignature: "GAUGE_ADMIN"): TypedContractMethod<[], [string], "view">;
|
|
733
775
|
getFunction(nameOrSignature: "MAX_EXTRA_REWARDS"): TypedContractMethod<[], [bigint], "view">;
|
|
734
776
|
getFunction(nameOrSignature: "WEEK"): TypedContractMethod<[], [bigint], "view">;
|
|
735
|
-
getFunction(nameOrSignature: "addRewardToken"): TypedContractMethod<[
|
|
736
|
-
token: AddressLike,
|
|
737
|
-
distributor: AddressLike
|
|
738
|
-
], [
|
|
739
|
-
void
|
|
740
|
-
], "nonpayable">;
|
|
741
|
-
getFunction(nameOrSignature: "allEarnedRewards"): TypedContractMethod<[
|
|
742
|
-
account: AddressLike
|
|
743
|
-
], [
|
|
744
|
-
[string[], bigint[]]
|
|
745
|
-
], "view">;
|
|
777
|
+
getFunction(nameOrSignature: "addRewardToken"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
|
|
746
778
|
getFunction(nameOrSignature: "allPendingExtraRewards"): TypedContractMethod<[
|
|
747
779
|
user: AddressLike
|
|
748
780
|
], [
|
|
@@ -751,11 +783,6 @@ export interface RAACGauge extends BaseContract {
|
|
|
751
783
|
amounts: bigint[];
|
|
752
784
|
}
|
|
753
785
|
], "view">;
|
|
754
|
-
getFunction(nameOrSignature: "allPendingRewards"): TypedContractMethod<[
|
|
755
|
-
account: AddressLike
|
|
756
|
-
], [
|
|
757
|
-
[string[], bigint[]]
|
|
758
|
-
], "view">;
|
|
759
786
|
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
760
787
|
getFunction(nameOrSignature: "claimExtraReward"): TypedContractMethod<[token: AddressLike], [bigint], "nonpayable">;
|
|
761
788
|
getFunction(nameOrSignature: "claimExtraRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
@@ -766,8 +793,7 @@ export interface RAACGauge extends BaseContract {
|
|
|
766
793
|
], [
|
|
767
794
|
bigint
|
|
768
795
|
], "nonpayable">;
|
|
769
|
-
getFunction(nameOrSignature: "claimRewardToken"): TypedContractMethod<[
|
|
770
|
-
getFunction(nameOrSignature: "claimRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
796
|
+
getFunction(nameOrSignature: "claimRewardToken"): TypedContractMethod<[], [bigint], "nonpayable">;
|
|
771
797
|
getFunction(nameOrSignature: "claimRewardsFor"): TypedContractMethod<[user: AddressLike], [void], "nonpayable">;
|
|
772
798
|
getFunction(nameOrSignature: "depositRAACOnClaim"): TypedContractMethod<[], [boolean], "view">;
|
|
773
799
|
getFunction(nameOrSignature: "depositRewardToken"): TypedContractMethod<[
|
|
@@ -776,18 +802,18 @@ export interface RAACGauge extends BaseContract {
|
|
|
776
802
|
], [
|
|
777
803
|
void
|
|
778
804
|
], "nonpayable">;
|
|
779
|
-
getFunction(nameOrSignature: "
|
|
805
|
+
getFunction(nameOrSignature: "earnedExtraReward"): TypedContractMethod<[
|
|
780
806
|
token: AddressLike,
|
|
781
807
|
user: AddressLike
|
|
782
808
|
], [
|
|
783
809
|
bigint
|
|
784
810
|
], "view">;
|
|
785
|
-
getFunction(nameOrSignature: "
|
|
811
|
+
getFunction(nameOrSignature: "earnedReward"): TypedContractMethod<[
|
|
786
812
|
token: AddressLike,
|
|
787
|
-
|
|
813
|
+
user: AddressLike
|
|
788
814
|
], [
|
|
789
|
-
|
|
790
|
-
], "
|
|
815
|
+
bigint
|
|
816
|
+
], "view">;
|
|
791
817
|
getFunction(nameOrSignature: "extraRewardTokenData"): TypedContractMethod<[
|
|
792
818
|
arg0: AddressLike
|
|
793
819
|
], [
|
|
@@ -795,7 +821,6 @@ export interface RAACGauge extends BaseContract {
|
|
|
795
821
|
boolean,
|
|
796
822
|
bigint,
|
|
797
823
|
bigint,
|
|
798
|
-
string,
|
|
799
824
|
bigint,
|
|
800
825
|
bigint,
|
|
801
826
|
bigint,
|
|
@@ -804,7 +829,6 @@ export interface RAACGauge extends BaseContract {
|
|
|
804
829
|
isActive: boolean;
|
|
805
830
|
decimals: bigint;
|
|
806
831
|
rate: bigint;
|
|
807
|
-
distributor: string;
|
|
808
832
|
periodFinish: bigint;
|
|
809
833
|
lastUpdate: bigint;
|
|
810
834
|
integral: bigint;
|
|
@@ -821,6 +845,8 @@ export interface RAACGauge extends BaseContract {
|
|
|
821
845
|
string,
|
|
822
846
|
bigint,
|
|
823
847
|
bigint,
|
|
848
|
+
string,
|
|
849
|
+
string,
|
|
824
850
|
bigint
|
|
825
851
|
] & {
|
|
826
852
|
gaugeInitialStartTime: bigint;
|
|
@@ -829,12 +855,23 @@ export interface RAACGauge extends BaseContract {
|
|
|
829
855
|
stakingToken: string;
|
|
830
856
|
totalSupply: bigint;
|
|
831
857
|
workingSupply: bigint;
|
|
858
|
+
rewardDistributor: string;
|
|
859
|
+
rewardToken: string;
|
|
832
860
|
lastUpdateTime: bigint;
|
|
833
861
|
}
|
|
834
862
|
], "view">;
|
|
835
863
|
getFunction(nameOrSignature: "getControllerAddress"): TypedContractMethod<[], [string], "view">;
|
|
836
864
|
getFunction(nameOrSignature: "getDecimalAdjustment"): TypedContractMethod<[token: AddressLike], [bigint], "view">;
|
|
865
|
+
getFunction(nameOrSignature: "getDistributorData"): TypedContractMethod<[
|
|
866
|
+
distributor: AddressLike
|
|
867
|
+
], [
|
|
868
|
+
[string, boolean] & {
|
|
869
|
+
distro: string;
|
|
870
|
+
approved: boolean;
|
|
871
|
+
}
|
|
872
|
+
], "view">;
|
|
837
873
|
getFunction(nameOrSignature: "getDistributors"): TypedContractMethod<[], [string[]], "view">;
|
|
874
|
+
getFunction(nameOrSignature: "getExtraRewardTokens"): TypedContractMethod<[], [string[]], "view">;
|
|
838
875
|
getFunction(nameOrSignature: "getGaugeRewardTokenData"): TypedContractMethod<[
|
|
839
876
|
token: AddressLike
|
|
840
877
|
], [
|
|
@@ -868,12 +905,7 @@ export interface RAACGauge extends BaseContract {
|
|
|
868
905
|
], [
|
|
869
906
|
boolean
|
|
870
907
|
], "view">;
|
|
871
|
-
getFunction(nameOrSignature: "
|
|
872
|
-
token: AddressLike,
|
|
873
|
-
distributor: AddressLike
|
|
874
|
-
], [
|
|
875
|
-
void
|
|
876
|
-
], "nonpayable">;
|
|
908
|
+
getFunction(nameOrSignature: "isPaused"): TypedContractMethod<[], [boolean], "view">;
|
|
877
909
|
getFunction(nameOrSignature: "manageDistributor"): TypedContractMethod<[
|
|
878
910
|
distributor: AddressLike,
|
|
879
911
|
shouldAddDistributor: boolean
|
|
@@ -894,6 +926,8 @@ export interface RAACGauge extends BaseContract {
|
|
|
894
926
|
bigint
|
|
895
927
|
], "view">;
|
|
896
928
|
getFunction(nameOrSignature: "periodDuration"): TypedContractMethod<[], [bigint], "view">;
|
|
929
|
+
getFunction(nameOrSignature: "pullRewardsFromDistributor"): TypedContractMethod<[], [bigint], "nonpayable">;
|
|
930
|
+
getFunction(nameOrSignature: "raacAutolockMin"): TypedContractMethod<[], [bigint], "view">;
|
|
897
931
|
getFunction(nameOrSignature: "raacLiquidLocker"): TypedContractMethod<[], [string], "view">;
|
|
898
932
|
getFunction(nameOrSignature: "raacToken"): TypedContractMethod<[], [string], "view">;
|
|
899
933
|
getFunction(nameOrSignature: "rawBalanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
@@ -910,23 +944,27 @@ export interface RAACGauge extends BaseContract {
|
|
|
910
944
|
], [
|
|
911
945
|
void
|
|
912
946
|
], "nonpayable">;
|
|
947
|
+
getFunction(nameOrSignature: "setController"): TypedContractMethod<[_controller: AddressLike], [void], "nonpayable">;
|
|
913
948
|
getFunction(nameOrSignature: "setDepositRAACOnClaim"): TypedContractMethod<[
|
|
914
949
|
newDepositRAACOnClaim: boolean
|
|
915
950
|
], [
|
|
916
951
|
void
|
|
917
952
|
], "nonpayable">;
|
|
918
|
-
getFunction(nameOrSignature: "
|
|
919
|
-
|
|
920
|
-
|
|
953
|
+
getFunction(nameOrSignature: "setEmergencyPaused"): TypedContractMethod<[newPaused: boolean], [void], "nonpayable">;
|
|
954
|
+
getFunction(nameOrSignature: "setGaugeRewardDistributor"): TypedContractMethod<[
|
|
955
|
+
rewardDistributor: AddressLike
|
|
956
|
+
], [
|
|
957
|
+
void
|
|
958
|
+
], "nonpayable">;
|
|
959
|
+
getFunction(nameOrSignature: "setRaacAutolockMin"): TypedContractMethod<[
|
|
960
|
+
newRaacAutolockMin: BigNumberish
|
|
921
961
|
], [
|
|
922
962
|
void
|
|
923
963
|
], "nonpayable">;
|
|
924
|
-
getFunction(nameOrSignature: "setEmergencyPaused"): TypedContractMethod<[newPaused: boolean], [void], "nonpayable">;
|
|
925
964
|
getFunction(nameOrSignature: "stake"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
926
965
|
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
927
|
-
getFunction(nameOrSignature: "syncRewardTokens"): TypedContractMethod<[], [void], "nonpayable">;
|
|
928
966
|
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
929
|
-
getFunction(nameOrSignature: "updateUserRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
967
|
+
getFunction(nameOrSignature: "updateUserRewards"): TypedContractMethod<[user: AddressLike], [void], "nonpayable">;
|
|
930
968
|
getFunction(nameOrSignature: "userGaugeData"): TypedContractMethod<[
|
|
931
969
|
arg0: AddressLike
|
|
932
970
|
], [
|
|
@@ -941,6 +979,7 @@ export interface RAACGauge extends BaseContract {
|
|
|
941
979
|
}
|
|
942
980
|
], "view">;
|
|
943
981
|
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
982
|
+
getEvent(key: "ControllerUpdated"): TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
944
983
|
getEvent(key: "DepositRAACOnClaimUpdated"): TypedContractEvent<DepositRAACOnClaimUpdatedEvent.InputTuple, DepositRAACOnClaimUpdatedEvent.OutputTuple, DepositRAACOnClaimUpdatedEvent.OutputObject>;
|
|
945
984
|
getEvent(key: "DistributorApprovalUpdated"): TypedContractEvent<DistributorApprovalUpdatedEvent.InputTuple, DistributorApprovalUpdatedEvent.OutputTuple, DistributorApprovalUpdatedEvent.OutputObject>;
|
|
946
985
|
getEvent(key: "DistributorUpdated"): TypedContractEvent<DistributorUpdatedEvent.InputTuple, DistributorUpdatedEvent.OutputTuple, DistributorUpdatedEvent.OutputObject>;
|
|
@@ -948,13 +987,15 @@ export interface RAACGauge extends BaseContract {
|
|
|
948
987
|
getEvent(key: "ExtraRewardClaimed"): TypedContractEvent<ExtraRewardClaimedEvent.InputTuple, ExtraRewardClaimedEvent.OutputTuple, ExtraRewardClaimedEvent.OutputObject>;
|
|
949
988
|
getEvent(key: "ExtraRewardDeposited"): TypedContractEvent<ExtraRewardDepositedEvent.InputTuple, ExtraRewardDepositedEvent.OutputTuple, ExtraRewardDepositedEvent.OutputObject>;
|
|
950
989
|
getEvent(key: "ExtraRewardTokenAdded"): TypedContractEvent<ExtraRewardTokenAddedEvent.InputTuple, ExtraRewardTokenAddedEvent.OutputTuple, ExtraRewardTokenAddedEvent.OutputObject>;
|
|
990
|
+
getEvent(key: "GaugeRewardDistributorUpdated"): TypedContractEvent<GaugeRewardDistributorUpdatedEvent.InputTuple, GaugeRewardDistributorUpdatedEvent.OutputTuple, GaugeRewardDistributorUpdatedEvent.OutputObject>;
|
|
951
991
|
getEvent(key: "LeftoverRewardsIncluded"): TypedContractEvent<LeftoverRewardsIncludedEvent.InputTuple, LeftoverRewardsIncludedEvent.OutputTuple, LeftoverRewardsIncludedEvent.OutputObject>;
|
|
952
992
|
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
953
|
-
getEvent(key: "
|
|
993
|
+
getEvent(key: "RaacAutolockMinUpdated"): TypedContractEvent<RaacAutolockMinUpdatedEvent.InputTuple, RaacAutolockMinUpdatedEvent.OutputTuple, RaacAutolockMinUpdatedEvent.OutputObject>;
|
|
954
994
|
getEvent(key: "RewardTokenActivated"): TypedContractEvent<RewardTokenActivatedEvent.InputTuple, RewardTokenActivatedEvent.OutputTuple, RewardTokenActivatedEvent.OutputObject>;
|
|
955
995
|
getEvent(key: "RewardTokenAdded"): TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
956
996
|
getEvent(key: "RewardTokenRegistered"): TypedContractEvent<RewardTokenRegisteredEvent.InputTuple, RewardTokenRegisteredEvent.OutputTuple, RewardTokenRegisteredEvent.OutputObject>;
|
|
957
997
|
getEvent(key: "RewardTransferred"): TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
998
|
+
getEvent(key: "RewardsPulledFromDistributor"): TypedContractEvent<RewardsPulledFromDistributorEvent.InputTuple, RewardsPulledFromDistributorEvent.OutputTuple, RewardsPulledFromDistributorEvent.OutputObject>;
|
|
958
999
|
getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
959
1000
|
getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
960
1001
|
getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
@@ -964,6 +1005,8 @@ export interface RAACGauge extends BaseContract {
|
|
|
964
1005
|
getEvent(key: "Withdrawn"): TypedContractEvent<WithdrawnEvent.InputTuple, WithdrawnEvent.OutputTuple, WithdrawnEvent.OutputObject>;
|
|
965
1006
|
getEvent(key: "WorkingBalanceUpdated"): TypedContractEvent<WorkingBalanceUpdatedEvent.InputTuple, WorkingBalanceUpdatedEvent.OutputTuple, WorkingBalanceUpdatedEvent.OutputObject>;
|
|
966
1007
|
filters: {
|
|
1008
|
+
"ControllerUpdated(address,address)": TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
1009
|
+
ControllerUpdated: TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
967
1010
|
"DepositRAACOnClaimUpdated(bool)": TypedContractEvent<DepositRAACOnClaimUpdatedEvent.InputTuple, DepositRAACOnClaimUpdatedEvent.OutputTuple, DepositRAACOnClaimUpdatedEvent.OutputObject>;
|
|
968
1011
|
DepositRAACOnClaimUpdated: TypedContractEvent<DepositRAACOnClaimUpdatedEvent.InputTuple, DepositRAACOnClaimUpdatedEvent.OutputTuple, DepositRAACOnClaimUpdatedEvent.OutputObject>;
|
|
969
1012
|
"DistributorApprovalUpdated(address,bool)": TypedContractEvent<DistributorApprovalUpdatedEvent.InputTuple, DistributorApprovalUpdatedEvent.OutputTuple, DistributorApprovalUpdatedEvent.OutputObject>;
|
|
@@ -976,14 +1019,16 @@ export interface RAACGauge extends BaseContract {
|
|
|
976
1019
|
ExtraRewardClaimed: TypedContractEvent<ExtraRewardClaimedEvent.InputTuple, ExtraRewardClaimedEvent.OutputTuple, ExtraRewardClaimedEvent.OutputObject>;
|
|
977
1020
|
"ExtraRewardDeposited(address,uint256)": TypedContractEvent<ExtraRewardDepositedEvent.InputTuple, ExtraRewardDepositedEvent.OutputTuple, ExtraRewardDepositedEvent.OutputObject>;
|
|
978
1021
|
ExtraRewardDeposited: TypedContractEvent<ExtraRewardDepositedEvent.InputTuple, ExtraRewardDepositedEvent.OutputTuple, ExtraRewardDepositedEvent.OutputObject>;
|
|
979
|
-
"ExtraRewardTokenAdded(address
|
|
1022
|
+
"ExtraRewardTokenAdded(address)": TypedContractEvent<ExtraRewardTokenAddedEvent.InputTuple, ExtraRewardTokenAddedEvent.OutputTuple, ExtraRewardTokenAddedEvent.OutputObject>;
|
|
980
1023
|
ExtraRewardTokenAdded: TypedContractEvent<ExtraRewardTokenAddedEvent.InputTuple, ExtraRewardTokenAddedEvent.OutputTuple, ExtraRewardTokenAddedEvent.OutputObject>;
|
|
1024
|
+
"GaugeRewardDistributorUpdated(address)": TypedContractEvent<GaugeRewardDistributorUpdatedEvent.InputTuple, GaugeRewardDistributorUpdatedEvent.OutputTuple, GaugeRewardDistributorUpdatedEvent.OutputObject>;
|
|
1025
|
+
GaugeRewardDistributorUpdated: TypedContractEvent<GaugeRewardDistributorUpdatedEvent.InputTuple, GaugeRewardDistributorUpdatedEvent.OutputTuple, GaugeRewardDistributorUpdatedEvent.OutputObject>;
|
|
981
1026
|
"LeftoverRewardsIncluded(address,uint256,uint256)": TypedContractEvent<LeftoverRewardsIncludedEvent.InputTuple, LeftoverRewardsIncludedEvent.OutputTuple, LeftoverRewardsIncludedEvent.OutputObject>;
|
|
982
1027
|
LeftoverRewardsIncluded: TypedContractEvent<LeftoverRewardsIncludedEvent.InputTuple, LeftoverRewardsIncludedEvent.OutputTuple, LeftoverRewardsIncludedEvent.OutputObject>;
|
|
983
1028
|
"Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
984
1029
|
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
985
|
-
"
|
|
986
|
-
|
|
1030
|
+
"RaacAutolockMinUpdated(uint256)": TypedContractEvent<RaacAutolockMinUpdatedEvent.InputTuple, RaacAutolockMinUpdatedEvent.OutputTuple, RaacAutolockMinUpdatedEvent.OutputObject>;
|
|
1031
|
+
RaacAutolockMinUpdated: TypedContractEvent<RaacAutolockMinUpdatedEvent.InputTuple, RaacAutolockMinUpdatedEvent.OutputTuple, RaacAutolockMinUpdatedEvent.OutputObject>;
|
|
987
1032
|
"RewardTokenActivated(address)": TypedContractEvent<RewardTokenActivatedEvent.InputTuple, RewardTokenActivatedEvent.OutputTuple, RewardTokenActivatedEvent.OutputObject>;
|
|
988
1033
|
RewardTokenActivated: TypedContractEvent<RewardTokenActivatedEvent.InputTuple, RewardTokenActivatedEvent.OutputTuple, RewardTokenActivatedEvent.OutputObject>;
|
|
989
1034
|
"RewardTokenAdded(address)": TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
@@ -992,6 +1037,8 @@ export interface RAACGauge extends BaseContract {
|
|
|
992
1037
|
RewardTokenRegistered: TypedContractEvent<RewardTokenRegisteredEvent.InputTuple, RewardTokenRegisteredEvent.OutputTuple, RewardTokenRegisteredEvent.OutputObject>;
|
|
993
1038
|
"RewardTransferred(address,address,uint256)": TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
994
1039
|
RewardTransferred: TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
1040
|
+
"RewardsPulledFromDistributor(address,uint256)": TypedContractEvent<RewardsPulledFromDistributorEvent.InputTuple, RewardsPulledFromDistributorEvent.OutputTuple, RewardsPulledFromDistributorEvent.OutputObject>;
|
|
1041
|
+
RewardsPulledFromDistributor: TypedContractEvent<RewardsPulledFromDistributorEvent.InputTuple, RewardsPulledFromDistributorEvent.OutputTuple, RewardsPulledFromDistributorEvent.OutputObject>;
|
|
995
1042
|
"RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
996
1043
|
RoleAdminChanged: TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
997
1044
|
"RoleGranted(bytes32,address,address)": TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|