@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,36 +49,36 @@ export declare namespace IBaseGauge {
|
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
51
|
export interface RWAGaugeInterface 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" | "MONTH" | "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: "MONTH", values?: undefined): string;
|
|
60
61
|
encodeFunctionData(functionFragment: "WEEK", values?: undefined): string;
|
|
61
|
-
encodeFunctionData(functionFragment: "addRewardToken", values: [AddressLike
|
|
62
|
-
encodeFunctionData(functionFragment: "allEarnedRewards", values: [AddressLike]): string;
|
|
62
|
+
encodeFunctionData(functionFragment: "addRewardToken", values: [AddressLike]): string;
|
|
63
63
|
encodeFunctionData(functionFragment: "allPendingExtraRewards", values: [AddressLike]): string;
|
|
64
|
-
encodeFunctionData(functionFragment: "allPendingRewards", values: [AddressLike]): string;
|
|
65
64
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
66
65
|
encodeFunctionData(functionFragment: "claimExtraReward", values: [AddressLike]): string;
|
|
67
66
|
encodeFunctionData(functionFragment: "claimExtraRewards", values?: undefined): string;
|
|
68
67
|
encodeFunctionData(functionFragment: "claimOnBehalfOf", values: [AddressLike, BigNumberish, AddressLike]): string;
|
|
69
|
-
encodeFunctionData(functionFragment: "claimRewardToken", values
|
|
70
|
-
encodeFunctionData(functionFragment: "claimRewards", values?: undefined): string;
|
|
68
|
+
encodeFunctionData(functionFragment: "claimRewardToken", values?: undefined): string;
|
|
71
69
|
encodeFunctionData(functionFragment: "claimRewardsFor", values: [AddressLike]): string;
|
|
72
70
|
encodeFunctionData(functionFragment: "depositRAACOnClaim", values?: undefined): string;
|
|
73
71
|
encodeFunctionData(functionFragment: "depositRewardToken", values: [AddressLike, BigNumberish]): string;
|
|
72
|
+
encodeFunctionData(functionFragment: "earnedExtraReward", values: [AddressLike, AddressLike]): string;
|
|
74
73
|
encodeFunctionData(functionFragment: "earnedReward", values: [AddressLike, AddressLike]): string;
|
|
75
|
-
encodeFunctionData(functionFragment: "emergencyWithdraw", values: [AddressLike, BigNumberish]): string;
|
|
76
74
|
encodeFunctionData(functionFragment: "extraRewardTokenData", values: [AddressLike]): string;
|
|
77
75
|
encodeFunctionData(functionFragment: "gaugeController", values?: undefined): string;
|
|
78
76
|
encodeFunctionData(functionFragment: "gaugeData", values?: undefined): string;
|
|
79
77
|
encodeFunctionData(functionFragment: "getControllerAddress", values?: undefined): string;
|
|
80
78
|
encodeFunctionData(functionFragment: "getDecimalAdjustment", values: [AddressLike]): string;
|
|
79
|
+
encodeFunctionData(functionFragment: "getDistributorData", values: [AddressLike]): string;
|
|
81
80
|
encodeFunctionData(functionFragment: "getDistributors", values?: undefined): string;
|
|
81
|
+
encodeFunctionData(functionFragment: "getExtraRewardTokens", values?: undefined): string;
|
|
82
82
|
encodeFunctionData(functionFragment: "getGaugeRewardTokenData", values: [AddressLike]): string;
|
|
83
83
|
encodeFunctionData(functionFragment: "getPeriodBoundaries", values?: undefined): string;
|
|
84
84
|
encodeFunctionData(functionFragment: "getRewardTokens", values?: undefined): string;
|
|
@@ -87,56 +87,59 @@ export interface RWAGaugeInterface extends Interface {
|
|
|
87
87
|
encodeFunctionData(functionFragment: "getUserWeight", values: [AddressLike]): string;
|
|
88
88
|
encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
|
|
89
89
|
encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
|
|
90
|
-
encodeFunctionData(functionFragment: "
|
|
90
|
+
encodeFunctionData(functionFragment: "isPaused", values?: undefined): string;
|
|
91
91
|
encodeFunctionData(functionFragment: "manageDistributor", values: [AddressLike, boolean]): string;
|
|
92
92
|
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
93
93
|
encodeFunctionData(functionFragment: "pendingExtraRewards", values: [AddressLike, AddressLike]): string;
|
|
94
94
|
encodeFunctionData(functionFragment: "pendingRewards", values: [AddressLike, AddressLike]): string;
|
|
95
95
|
encodeFunctionData(functionFragment: "periodDuration", values?: undefined): string;
|
|
96
|
+
encodeFunctionData(functionFragment: "pullRewardsFromDistributor", values?: undefined): string;
|
|
97
|
+
encodeFunctionData(functionFragment: "raacAutolockMin", values?: undefined): string;
|
|
96
98
|
encodeFunctionData(functionFragment: "raacLiquidLocker", values?: undefined): string;
|
|
97
99
|
encodeFunctionData(functionFragment: "raacToken", values?: undefined): string;
|
|
98
100
|
encodeFunctionData(functionFragment: "rawBalanceOf", values: [AddressLike]): string;
|
|
99
101
|
encodeFunctionData(functionFragment: "rawTotalSupply", values?: undefined): string;
|
|
100
102
|
encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
|
|
101
103
|
encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
|
|
104
|
+
encodeFunctionData(functionFragment: "setController", values: [AddressLike]): string;
|
|
102
105
|
encodeFunctionData(functionFragment: "setDepositRAACOnClaim", values: [boolean]): string;
|
|
103
|
-
encodeFunctionData(functionFragment: "setDistributorApproval", values: [AddressLike, boolean]): string;
|
|
104
106
|
encodeFunctionData(functionFragment: "setEmergencyPaused", values: [boolean]): string;
|
|
107
|
+
encodeFunctionData(functionFragment: "setGaugeRewardDistributor", values: [AddressLike]): string;
|
|
108
|
+
encodeFunctionData(functionFragment: "setRaacAutolockMin", values: [BigNumberish]): string;
|
|
105
109
|
encodeFunctionData(functionFragment: "stake", values: [BigNumberish]): string;
|
|
106
110
|
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
107
|
-
encodeFunctionData(functionFragment: "syncRewardTokens", values?: undefined): string;
|
|
108
111
|
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
109
|
-
encodeFunctionData(functionFragment: "updateUserRewards", values
|
|
112
|
+
encodeFunctionData(functionFragment: "updateUserRewards", values: [AddressLike]): string;
|
|
110
113
|
encodeFunctionData(functionFragment: "userGaugeData", values: [AddressLike]): string;
|
|
111
114
|
encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string;
|
|
112
115
|
decodeFunctionResult(functionFragment: "CLAIM_FOR_ROLE", data: BytesLike): Result;
|
|
113
116
|
decodeFunctionResult(functionFragment: "CONTROLLER_ROLE", data: BytesLike): Result;
|
|
114
117
|
decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
|
|
115
|
-
decodeFunctionResult(functionFragment: "
|
|
118
|
+
decodeFunctionResult(functionFragment: "DISTRIBUTOR_ROLE", data: BytesLike): Result;
|
|
119
|
+
decodeFunctionResult(functionFragment: "GAUGE_ADMIN", data: BytesLike): Result;
|
|
116
120
|
decodeFunctionResult(functionFragment: "MAX_EXTRA_REWARDS", data: BytesLike): Result;
|
|
117
121
|
decodeFunctionResult(functionFragment: "MONTH", data: BytesLike): Result;
|
|
118
122
|
decodeFunctionResult(functionFragment: "WEEK", data: BytesLike): Result;
|
|
119
123
|
decodeFunctionResult(functionFragment: "addRewardToken", data: BytesLike): Result;
|
|
120
|
-
decodeFunctionResult(functionFragment: "allEarnedRewards", data: BytesLike): Result;
|
|
121
124
|
decodeFunctionResult(functionFragment: "allPendingExtraRewards", data: BytesLike): Result;
|
|
122
|
-
decodeFunctionResult(functionFragment: "allPendingRewards", data: BytesLike): Result;
|
|
123
125
|
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
124
126
|
decodeFunctionResult(functionFragment: "claimExtraReward", data: BytesLike): Result;
|
|
125
127
|
decodeFunctionResult(functionFragment: "claimExtraRewards", data: BytesLike): Result;
|
|
126
128
|
decodeFunctionResult(functionFragment: "claimOnBehalfOf", data: BytesLike): Result;
|
|
127
129
|
decodeFunctionResult(functionFragment: "claimRewardToken", data: BytesLike): Result;
|
|
128
|
-
decodeFunctionResult(functionFragment: "claimRewards", data: BytesLike): Result;
|
|
129
130
|
decodeFunctionResult(functionFragment: "claimRewardsFor", data: BytesLike): Result;
|
|
130
131
|
decodeFunctionResult(functionFragment: "depositRAACOnClaim", data: BytesLike): Result;
|
|
131
132
|
decodeFunctionResult(functionFragment: "depositRewardToken", data: BytesLike): Result;
|
|
133
|
+
decodeFunctionResult(functionFragment: "earnedExtraReward", data: BytesLike): Result;
|
|
132
134
|
decodeFunctionResult(functionFragment: "earnedReward", data: BytesLike): Result;
|
|
133
|
-
decodeFunctionResult(functionFragment: "emergencyWithdraw", data: BytesLike): Result;
|
|
134
135
|
decodeFunctionResult(functionFragment: "extraRewardTokenData", data: BytesLike): Result;
|
|
135
136
|
decodeFunctionResult(functionFragment: "gaugeController", data: BytesLike): Result;
|
|
136
137
|
decodeFunctionResult(functionFragment: "gaugeData", data: BytesLike): Result;
|
|
137
138
|
decodeFunctionResult(functionFragment: "getControllerAddress", data: BytesLike): Result;
|
|
138
139
|
decodeFunctionResult(functionFragment: "getDecimalAdjustment", data: BytesLike): Result;
|
|
140
|
+
decodeFunctionResult(functionFragment: "getDistributorData", data: BytesLike): Result;
|
|
139
141
|
decodeFunctionResult(functionFragment: "getDistributors", data: BytesLike): Result;
|
|
142
|
+
decodeFunctionResult(functionFragment: "getExtraRewardTokens", data: BytesLike): Result;
|
|
140
143
|
decodeFunctionResult(functionFragment: "getGaugeRewardTokenData", data: BytesLike): Result;
|
|
141
144
|
decodeFunctionResult(functionFragment: "getPeriodBoundaries", data: BytesLike): Result;
|
|
142
145
|
decodeFunctionResult(functionFragment: "getRewardTokens", data: BytesLike): Result;
|
|
@@ -145,29 +148,47 @@ export interface RWAGaugeInterface extends Interface {
|
|
|
145
148
|
decodeFunctionResult(functionFragment: "getUserWeight", data: BytesLike): Result;
|
|
146
149
|
decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
|
|
147
150
|
decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
|
|
148
|
-
decodeFunctionResult(functionFragment: "
|
|
151
|
+
decodeFunctionResult(functionFragment: "isPaused", data: BytesLike): Result;
|
|
149
152
|
decodeFunctionResult(functionFragment: "manageDistributor", data: BytesLike): Result;
|
|
150
153
|
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
151
154
|
decodeFunctionResult(functionFragment: "pendingExtraRewards", data: BytesLike): Result;
|
|
152
155
|
decodeFunctionResult(functionFragment: "pendingRewards", data: BytesLike): Result;
|
|
153
156
|
decodeFunctionResult(functionFragment: "periodDuration", data: BytesLike): Result;
|
|
157
|
+
decodeFunctionResult(functionFragment: "pullRewardsFromDistributor", data: BytesLike): Result;
|
|
158
|
+
decodeFunctionResult(functionFragment: "raacAutolockMin", data: BytesLike): Result;
|
|
154
159
|
decodeFunctionResult(functionFragment: "raacLiquidLocker", data: BytesLike): Result;
|
|
155
160
|
decodeFunctionResult(functionFragment: "raacToken", data: BytesLike): Result;
|
|
156
161
|
decodeFunctionResult(functionFragment: "rawBalanceOf", data: BytesLike): Result;
|
|
157
162
|
decodeFunctionResult(functionFragment: "rawTotalSupply", data: BytesLike): Result;
|
|
158
163
|
decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
|
|
159
164
|
decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
|
|
165
|
+
decodeFunctionResult(functionFragment: "setController", data: BytesLike): Result;
|
|
160
166
|
decodeFunctionResult(functionFragment: "setDepositRAACOnClaim", data: BytesLike): Result;
|
|
161
|
-
decodeFunctionResult(functionFragment: "setDistributorApproval", data: BytesLike): Result;
|
|
162
167
|
decodeFunctionResult(functionFragment: "setEmergencyPaused", data: BytesLike): Result;
|
|
168
|
+
decodeFunctionResult(functionFragment: "setGaugeRewardDistributor", data: BytesLike): Result;
|
|
169
|
+
decodeFunctionResult(functionFragment: "setRaacAutolockMin", data: BytesLike): Result;
|
|
163
170
|
decodeFunctionResult(functionFragment: "stake", data: BytesLike): Result;
|
|
164
171
|
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
165
|
-
decodeFunctionResult(functionFragment: "syncRewardTokens", data: BytesLike): Result;
|
|
166
172
|
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
167
173
|
decodeFunctionResult(functionFragment: "updateUserRewards", data: BytesLike): Result;
|
|
168
174
|
decodeFunctionResult(functionFragment: "userGaugeData", data: BytesLike): Result;
|
|
169
175
|
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
|
|
170
176
|
}
|
|
177
|
+
export declare namespace ControllerUpdatedEvent {
|
|
178
|
+
type InputTuple = [
|
|
179
|
+
oldController: AddressLike,
|
|
180
|
+
newController: AddressLike
|
|
181
|
+
];
|
|
182
|
+
type OutputTuple = [oldController: string, newController: string];
|
|
183
|
+
interface OutputObject {
|
|
184
|
+
oldController: string;
|
|
185
|
+
newController: string;
|
|
186
|
+
}
|
|
187
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
188
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
189
|
+
type Log = TypedEventLog<Event>;
|
|
190
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
191
|
+
}
|
|
171
192
|
export declare namespace DepositRAACOnClaimUpdatedEvent {
|
|
172
193
|
type InputTuple = [depositRAACOnClaim: boolean];
|
|
173
194
|
type OutputTuple = [depositRAACOnClaim: boolean];
|
|
@@ -247,11 +268,21 @@ export declare namespace ExtraRewardDepositedEvent {
|
|
|
247
268
|
type LogDescription = TypedLogDescription<Event>;
|
|
248
269
|
}
|
|
249
270
|
export declare namespace ExtraRewardTokenAddedEvent {
|
|
250
|
-
type InputTuple = [token: AddressLike
|
|
251
|
-
type OutputTuple = [token: string
|
|
271
|
+
type InputTuple = [token: AddressLike];
|
|
272
|
+
type OutputTuple = [token: string];
|
|
252
273
|
interface OutputObject {
|
|
253
274
|
token: string;
|
|
254
|
-
|
|
275
|
+
}
|
|
276
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
277
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
278
|
+
type Log = TypedEventLog<Event>;
|
|
279
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
280
|
+
}
|
|
281
|
+
export declare namespace GaugeRewardDistributorUpdatedEvent {
|
|
282
|
+
type InputTuple = [rewardDistributor: AddressLike];
|
|
283
|
+
type OutputTuple = [rewardDistributor: string];
|
|
284
|
+
interface OutputObject {
|
|
285
|
+
rewardDistributor: string;
|
|
255
286
|
}
|
|
256
287
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
257
288
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -290,21 +321,11 @@ export declare namespace PausedEvent {
|
|
|
290
321
|
type Log = TypedEventLog<Event>;
|
|
291
322
|
type LogDescription = TypedLogDescription<Event>;
|
|
292
323
|
}
|
|
293
|
-
export declare namespace
|
|
294
|
-
type InputTuple = [
|
|
295
|
-
|
|
296
|
-
newRate: BigNumberish,
|
|
297
|
-
remainingTime: BigNumberish
|
|
298
|
-
];
|
|
299
|
-
type OutputTuple = [
|
|
300
|
-
token: string,
|
|
301
|
-
newRate: bigint,
|
|
302
|
-
remainingTime: bigint
|
|
303
|
-
];
|
|
324
|
+
export declare namespace RaacAutolockMinUpdatedEvent {
|
|
325
|
+
type InputTuple = [newRaacAutolockMin: BigNumberish];
|
|
326
|
+
type OutputTuple = [newRaacAutolockMin: bigint];
|
|
304
327
|
interface OutputObject {
|
|
305
|
-
|
|
306
|
-
newRate: bigint;
|
|
307
|
-
remainingTime: bigint;
|
|
328
|
+
newRaacAutolockMin: bigint;
|
|
308
329
|
}
|
|
309
330
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
310
331
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -346,14 +367,14 @@ export declare namespace RewardTokenRegisteredEvent {
|
|
|
346
367
|
}
|
|
347
368
|
export declare namespace RewardTransferredEvent {
|
|
348
369
|
type InputTuple = [
|
|
349
|
-
user: AddressLike,
|
|
350
370
|
token: AddressLike,
|
|
371
|
+
user: AddressLike,
|
|
351
372
|
amount: BigNumberish
|
|
352
373
|
];
|
|
353
|
-
type OutputTuple = [
|
|
374
|
+
type OutputTuple = [token: string, user: string, amount: bigint];
|
|
354
375
|
interface OutputObject {
|
|
355
|
-
user: string;
|
|
356
376
|
token: string;
|
|
377
|
+
user: string;
|
|
357
378
|
amount: bigint;
|
|
358
379
|
}
|
|
359
380
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
@@ -361,6 +382,21 @@ export declare namespace RewardTransferredEvent {
|
|
|
361
382
|
type Log = TypedEventLog<Event>;
|
|
362
383
|
type LogDescription = TypedLogDescription<Event>;
|
|
363
384
|
}
|
|
385
|
+
export declare namespace RewardsPulledFromDistributorEvent {
|
|
386
|
+
type InputTuple = [
|
|
387
|
+
distributor: AddressLike,
|
|
388
|
+
transferred: BigNumberish
|
|
389
|
+
];
|
|
390
|
+
type OutputTuple = [distributor: string, transferred: bigint];
|
|
391
|
+
interface OutputObject {
|
|
392
|
+
distributor: string;
|
|
393
|
+
transferred: bigint;
|
|
394
|
+
}
|
|
395
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
396
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
397
|
+
type Log = TypedEventLog<Event>;
|
|
398
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
399
|
+
}
|
|
364
400
|
export declare namespace RoleAdminChangedEvent {
|
|
365
401
|
type InputTuple = [
|
|
366
402
|
role: BytesLike,
|
|
@@ -491,21 +527,16 @@ export interface RWAGauge extends BaseContract {
|
|
|
491
527
|
CLAIM_FOR_ROLE: TypedContractMethod<[], [string], "view">;
|
|
492
528
|
CONTROLLER_ROLE: TypedContractMethod<[], [string], "view">;
|
|
493
529
|
DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
|
|
494
|
-
|
|
530
|
+
DISTRIBUTOR_ROLE: TypedContractMethod<[], [string], "view">;
|
|
531
|
+
GAUGE_ADMIN: TypedContractMethod<[], [string], "view">;
|
|
495
532
|
MAX_EXTRA_REWARDS: TypedContractMethod<[], [bigint], "view">;
|
|
496
533
|
MONTH: TypedContractMethod<[], [bigint], "view">;
|
|
497
534
|
WEEK: TypedContractMethod<[], [bigint], "view">;
|
|
498
535
|
addRewardToken: TypedContractMethod<[
|
|
499
|
-
token: AddressLike
|
|
500
|
-
distributor: AddressLike
|
|
536
|
+
token: AddressLike
|
|
501
537
|
], [
|
|
502
538
|
void
|
|
503
539
|
], "nonpayable">;
|
|
504
|
-
allEarnedRewards: TypedContractMethod<[
|
|
505
|
-
account: AddressLike
|
|
506
|
-
], [
|
|
507
|
-
[string[], bigint[]]
|
|
508
|
-
], "view">;
|
|
509
540
|
allPendingExtraRewards: TypedContractMethod<[
|
|
510
541
|
user: AddressLike
|
|
511
542
|
], [
|
|
@@ -514,11 +545,6 @@ export interface RWAGauge extends BaseContract {
|
|
|
514
545
|
amounts: bigint[];
|
|
515
546
|
}
|
|
516
547
|
], "view">;
|
|
517
|
-
allPendingRewards: TypedContractMethod<[
|
|
518
|
-
account: AddressLike
|
|
519
|
-
], [
|
|
520
|
-
[string[], bigint[]]
|
|
521
|
-
], "view">;
|
|
522
548
|
balanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
523
549
|
claimExtraReward: TypedContractMethod<[
|
|
524
550
|
token: AddressLike
|
|
@@ -533,12 +559,7 @@ export interface RWAGauge extends BaseContract {
|
|
|
533
559
|
], [
|
|
534
560
|
bigint
|
|
535
561
|
], "nonpayable">;
|
|
536
|
-
claimRewardToken: TypedContractMethod<[
|
|
537
|
-
token: AddressLike
|
|
538
|
-
], [
|
|
539
|
-
bigint
|
|
540
|
-
], "nonpayable">;
|
|
541
|
-
claimRewards: TypedContractMethod<[], [void], "nonpayable">;
|
|
562
|
+
claimRewardToken: TypedContractMethod<[], [bigint], "nonpayable">;
|
|
542
563
|
claimRewardsFor: TypedContractMethod<[
|
|
543
564
|
user: AddressLike
|
|
544
565
|
], [
|
|
@@ -551,18 +572,18 @@ export interface RWAGauge extends BaseContract {
|
|
|
551
572
|
], [
|
|
552
573
|
void
|
|
553
574
|
], "nonpayable">;
|
|
554
|
-
|
|
575
|
+
earnedExtraReward: TypedContractMethod<[
|
|
555
576
|
token: AddressLike,
|
|
556
577
|
user: AddressLike
|
|
557
578
|
], [
|
|
558
579
|
bigint
|
|
559
580
|
], "view">;
|
|
560
|
-
|
|
581
|
+
earnedReward: TypedContractMethod<[
|
|
561
582
|
token: AddressLike,
|
|
562
|
-
|
|
583
|
+
user: AddressLike
|
|
563
584
|
], [
|
|
564
|
-
|
|
565
|
-
], "
|
|
585
|
+
bigint
|
|
586
|
+
], "view">;
|
|
566
587
|
extraRewardTokenData: TypedContractMethod<[
|
|
567
588
|
arg0: AddressLike
|
|
568
589
|
], [
|
|
@@ -570,7 +591,6 @@ export interface RWAGauge extends BaseContract {
|
|
|
570
591
|
boolean,
|
|
571
592
|
bigint,
|
|
572
593
|
bigint,
|
|
573
|
-
string,
|
|
574
594
|
bigint,
|
|
575
595
|
bigint,
|
|
576
596
|
bigint,
|
|
@@ -579,7 +599,6 @@ export interface RWAGauge extends BaseContract {
|
|
|
579
599
|
isActive: boolean;
|
|
580
600
|
decimals: bigint;
|
|
581
601
|
rate: bigint;
|
|
582
|
-
distributor: string;
|
|
583
602
|
periodFinish: bigint;
|
|
584
603
|
lastUpdate: bigint;
|
|
585
604
|
integral: bigint;
|
|
@@ -596,6 +615,8 @@ export interface RWAGauge extends BaseContract {
|
|
|
596
615
|
string,
|
|
597
616
|
bigint,
|
|
598
617
|
bigint,
|
|
618
|
+
string,
|
|
619
|
+
string,
|
|
599
620
|
bigint
|
|
600
621
|
] & {
|
|
601
622
|
gaugeInitialStartTime: bigint;
|
|
@@ -604,6 +625,8 @@ export interface RWAGauge extends BaseContract {
|
|
|
604
625
|
stakingToken: string;
|
|
605
626
|
totalSupply: bigint;
|
|
606
627
|
workingSupply: bigint;
|
|
628
|
+
rewardDistributor: string;
|
|
629
|
+
rewardToken: string;
|
|
607
630
|
lastUpdateTime: bigint;
|
|
608
631
|
}
|
|
609
632
|
], "view">;
|
|
@@ -613,7 +636,16 @@ export interface RWAGauge extends BaseContract {
|
|
|
613
636
|
], [
|
|
614
637
|
bigint
|
|
615
638
|
], "view">;
|
|
639
|
+
getDistributorData: TypedContractMethod<[
|
|
640
|
+
distributor: AddressLike
|
|
641
|
+
], [
|
|
642
|
+
[string, boolean] & {
|
|
643
|
+
distro: string;
|
|
644
|
+
approved: boolean;
|
|
645
|
+
}
|
|
646
|
+
], "view">;
|
|
616
647
|
getDistributors: TypedContractMethod<[], [string[]], "view">;
|
|
648
|
+
getExtraRewardTokens: TypedContractMethod<[], [string[]], "view">;
|
|
617
649
|
getGaugeRewardTokenData: TypedContractMethod<[
|
|
618
650
|
token: AddressLike
|
|
619
651
|
], [
|
|
@@ -647,12 +679,7 @@ export interface RWAGauge extends BaseContract {
|
|
|
647
679
|
], [
|
|
648
680
|
boolean
|
|
649
681
|
], "view">;
|
|
650
|
-
|
|
651
|
-
token: AddressLike,
|
|
652
|
-
distributor: AddressLike
|
|
653
|
-
], [
|
|
654
|
-
void
|
|
655
|
-
], "nonpayable">;
|
|
682
|
+
isPaused: TypedContractMethod<[], [boolean], "view">;
|
|
656
683
|
manageDistributor: TypedContractMethod<[
|
|
657
684
|
distributor: AddressLike,
|
|
658
685
|
shouldAddDistributor: boolean
|
|
@@ -673,6 +700,8 @@ export interface RWAGauge extends BaseContract {
|
|
|
673
700
|
bigint
|
|
674
701
|
], "view">;
|
|
675
702
|
periodDuration: TypedContractMethod<[], [bigint], "view">;
|
|
703
|
+
pullRewardsFromDistributor: TypedContractMethod<[], [bigint], "nonpayable">;
|
|
704
|
+
raacAutolockMin: TypedContractMethod<[], [bigint], "view">;
|
|
676
705
|
raacLiquidLocker: TypedContractMethod<[], [string], "view">;
|
|
677
706
|
raacToken: TypedContractMethod<[], [string], "view">;
|
|
678
707
|
rawBalanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
@@ -689,14 +718,13 @@ export interface RWAGauge extends BaseContract {
|
|
|
689
718
|
], [
|
|
690
719
|
void
|
|
691
720
|
], "nonpayable">;
|
|
692
|
-
|
|
693
|
-
|
|
721
|
+
setController: TypedContractMethod<[
|
|
722
|
+
_controller: AddressLike
|
|
694
723
|
], [
|
|
695
724
|
void
|
|
696
725
|
], "nonpayable">;
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
isApproved: boolean
|
|
726
|
+
setDepositRAACOnClaim: TypedContractMethod<[
|
|
727
|
+
newDepositRAACOnClaim: boolean
|
|
700
728
|
], [
|
|
701
729
|
void
|
|
702
730
|
], "nonpayable">;
|
|
@@ -705,15 +733,28 @@ export interface RWAGauge extends BaseContract {
|
|
|
705
733
|
], [
|
|
706
734
|
void
|
|
707
735
|
], "nonpayable">;
|
|
736
|
+
setGaugeRewardDistributor: TypedContractMethod<[
|
|
737
|
+
rewardDistributor: AddressLike
|
|
738
|
+
], [
|
|
739
|
+
void
|
|
740
|
+
], "nonpayable">;
|
|
741
|
+
setRaacAutolockMin: TypedContractMethod<[
|
|
742
|
+
newRaacAutolockMin: BigNumberish
|
|
743
|
+
], [
|
|
744
|
+
void
|
|
745
|
+
], "nonpayable">;
|
|
708
746
|
stake: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
709
747
|
supportsInterface: TypedContractMethod<[
|
|
710
748
|
interfaceId: BytesLike
|
|
711
749
|
], [
|
|
712
750
|
boolean
|
|
713
751
|
], "view">;
|
|
714
|
-
syncRewardTokens: TypedContractMethod<[], [void], "nonpayable">;
|
|
715
752
|
totalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
716
|
-
updateUserRewards: TypedContractMethod<[
|
|
753
|
+
updateUserRewards: TypedContractMethod<[
|
|
754
|
+
user: AddressLike
|
|
755
|
+
], [
|
|
756
|
+
void
|
|
757
|
+
], "nonpayable">;
|
|
717
758
|
userGaugeData: TypedContractMethod<[
|
|
718
759
|
arg0: AddressLike
|
|
719
760
|
], [
|
|
@@ -732,21 +773,12 @@ export interface RWAGauge extends BaseContract {
|
|
|
732
773
|
getFunction(nameOrSignature: "CLAIM_FOR_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
733
774
|
getFunction(nameOrSignature: "CONTROLLER_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
734
775
|
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
735
|
-
getFunction(nameOrSignature: "
|
|
776
|
+
getFunction(nameOrSignature: "DISTRIBUTOR_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
777
|
+
getFunction(nameOrSignature: "GAUGE_ADMIN"): TypedContractMethod<[], [string], "view">;
|
|
736
778
|
getFunction(nameOrSignature: "MAX_EXTRA_REWARDS"): TypedContractMethod<[], [bigint], "view">;
|
|
737
779
|
getFunction(nameOrSignature: "MONTH"): TypedContractMethod<[], [bigint], "view">;
|
|
738
780
|
getFunction(nameOrSignature: "WEEK"): TypedContractMethod<[], [bigint], "view">;
|
|
739
|
-
getFunction(nameOrSignature: "addRewardToken"): TypedContractMethod<[
|
|
740
|
-
token: AddressLike,
|
|
741
|
-
distributor: AddressLike
|
|
742
|
-
], [
|
|
743
|
-
void
|
|
744
|
-
], "nonpayable">;
|
|
745
|
-
getFunction(nameOrSignature: "allEarnedRewards"): TypedContractMethod<[
|
|
746
|
-
account: AddressLike
|
|
747
|
-
], [
|
|
748
|
-
[string[], bigint[]]
|
|
749
|
-
], "view">;
|
|
781
|
+
getFunction(nameOrSignature: "addRewardToken"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
|
|
750
782
|
getFunction(nameOrSignature: "allPendingExtraRewards"): TypedContractMethod<[
|
|
751
783
|
user: AddressLike
|
|
752
784
|
], [
|
|
@@ -755,11 +787,6 @@ export interface RWAGauge extends BaseContract {
|
|
|
755
787
|
amounts: bigint[];
|
|
756
788
|
}
|
|
757
789
|
], "view">;
|
|
758
|
-
getFunction(nameOrSignature: "allPendingRewards"): TypedContractMethod<[
|
|
759
|
-
account: AddressLike
|
|
760
|
-
], [
|
|
761
|
-
[string[], bigint[]]
|
|
762
|
-
], "view">;
|
|
763
790
|
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
764
791
|
getFunction(nameOrSignature: "claimExtraReward"): TypedContractMethod<[token: AddressLike], [bigint], "nonpayable">;
|
|
765
792
|
getFunction(nameOrSignature: "claimExtraRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
@@ -770,8 +797,7 @@ export interface RWAGauge extends BaseContract {
|
|
|
770
797
|
], [
|
|
771
798
|
bigint
|
|
772
799
|
], "nonpayable">;
|
|
773
|
-
getFunction(nameOrSignature: "claimRewardToken"): TypedContractMethod<[
|
|
774
|
-
getFunction(nameOrSignature: "claimRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
800
|
+
getFunction(nameOrSignature: "claimRewardToken"): TypedContractMethod<[], [bigint], "nonpayable">;
|
|
775
801
|
getFunction(nameOrSignature: "claimRewardsFor"): TypedContractMethod<[user: AddressLike], [void], "nonpayable">;
|
|
776
802
|
getFunction(nameOrSignature: "depositRAACOnClaim"): TypedContractMethod<[], [boolean], "view">;
|
|
777
803
|
getFunction(nameOrSignature: "depositRewardToken"): TypedContractMethod<[
|
|
@@ -780,18 +806,18 @@ export interface RWAGauge extends BaseContract {
|
|
|
780
806
|
], [
|
|
781
807
|
void
|
|
782
808
|
], "nonpayable">;
|
|
783
|
-
getFunction(nameOrSignature: "
|
|
809
|
+
getFunction(nameOrSignature: "earnedExtraReward"): TypedContractMethod<[
|
|
784
810
|
token: AddressLike,
|
|
785
811
|
user: AddressLike
|
|
786
812
|
], [
|
|
787
813
|
bigint
|
|
788
814
|
], "view">;
|
|
789
|
-
getFunction(nameOrSignature: "
|
|
815
|
+
getFunction(nameOrSignature: "earnedReward"): TypedContractMethod<[
|
|
790
816
|
token: AddressLike,
|
|
791
|
-
|
|
817
|
+
user: AddressLike
|
|
792
818
|
], [
|
|
793
|
-
|
|
794
|
-
], "
|
|
819
|
+
bigint
|
|
820
|
+
], "view">;
|
|
795
821
|
getFunction(nameOrSignature: "extraRewardTokenData"): TypedContractMethod<[
|
|
796
822
|
arg0: AddressLike
|
|
797
823
|
], [
|
|
@@ -799,7 +825,6 @@ export interface RWAGauge extends BaseContract {
|
|
|
799
825
|
boolean,
|
|
800
826
|
bigint,
|
|
801
827
|
bigint,
|
|
802
|
-
string,
|
|
803
828
|
bigint,
|
|
804
829
|
bigint,
|
|
805
830
|
bigint,
|
|
@@ -808,7 +833,6 @@ export interface RWAGauge extends BaseContract {
|
|
|
808
833
|
isActive: boolean;
|
|
809
834
|
decimals: bigint;
|
|
810
835
|
rate: bigint;
|
|
811
|
-
distributor: string;
|
|
812
836
|
periodFinish: bigint;
|
|
813
837
|
lastUpdate: bigint;
|
|
814
838
|
integral: bigint;
|
|
@@ -825,6 +849,8 @@ export interface RWAGauge extends BaseContract {
|
|
|
825
849
|
string,
|
|
826
850
|
bigint,
|
|
827
851
|
bigint,
|
|
852
|
+
string,
|
|
853
|
+
string,
|
|
828
854
|
bigint
|
|
829
855
|
] & {
|
|
830
856
|
gaugeInitialStartTime: bigint;
|
|
@@ -833,12 +859,23 @@ export interface RWAGauge extends BaseContract {
|
|
|
833
859
|
stakingToken: string;
|
|
834
860
|
totalSupply: bigint;
|
|
835
861
|
workingSupply: bigint;
|
|
862
|
+
rewardDistributor: string;
|
|
863
|
+
rewardToken: string;
|
|
836
864
|
lastUpdateTime: bigint;
|
|
837
865
|
}
|
|
838
866
|
], "view">;
|
|
839
867
|
getFunction(nameOrSignature: "getControllerAddress"): TypedContractMethod<[], [string], "view">;
|
|
840
868
|
getFunction(nameOrSignature: "getDecimalAdjustment"): TypedContractMethod<[token: AddressLike], [bigint], "view">;
|
|
869
|
+
getFunction(nameOrSignature: "getDistributorData"): TypedContractMethod<[
|
|
870
|
+
distributor: AddressLike
|
|
871
|
+
], [
|
|
872
|
+
[string, boolean] & {
|
|
873
|
+
distro: string;
|
|
874
|
+
approved: boolean;
|
|
875
|
+
}
|
|
876
|
+
], "view">;
|
|
841
877
|
getFunction(nameOrSignature: "getDistributors"): TypedContractMethod<[], [string[]], "view">;
|
|
878
|
+
getFunction(nameOrSignature: "getExtraRewardTokens"): TypedContractMethod<[], [string[]], "view">;
|
|
842
879
|
getFunction(nameOrSignature: "getGaugeRewardTokenData"): TypedContractMethod<[
|
|
843
880
|
token: AddressLike
|
|
844
881
|
], [
|
|
@@ -872,12 +909,7 @@ export interface RWAGauge extends BaseContract {
|
|
|
872
909
|
], [
|
|
873
910
|
boolean
|
|
874
911
|
], "view">;
|
|
875
|
-
getFunction(nameOrSignature: "
|
|
876
|
-
token: AddressLike,
|
|
877
|
-
distributor: AddressLike
|
|
878
|
-
], [
|
|
879
|
-
void
|
|
880
|
-
], "nonpayable">;
|
|
912
|
+
getFunction(nameOrSignature: "isPaused"): TypedContractMethod<[], [boolean], "view">;
|
|
881
913
|
getFunction(nameOrSignature: "manageDistributor"): TypedContractMethod<[
|
|
882
914
|
distributor: AddressLike,
|
|
883
915
|
shouldAddDistributor: boolean
|
|
@@ -898,6 +930,8 @@ export interface RWAGauge extends BaseContract {
|
|
|
898
930
|
bigint
|
|
899
931
|
], "view">;
|
|
900
932
|
getFunction(nameOrSignature: "periodDuration"): TypedContractMethod<[], [bigint], "view">;
|
|
933
|
+
getFunction(nameOrSignature: "pullRewardsFromDistributor"): TypedContractMethod<[], [bigint], "nonpayable">;
|
|
934
|
+
getFunction(nameOrSignature: "raacAutolockMin"): TypedContractMethod<[], [bigint], "view">;
|
|
901
935
|
getFunction(nameOrSignature: "raacLiquidLocker"): TypedContractMethod<[], [string], "view">;
|
|
902
936
|
getFunction(nameOrSignature: "raacToken"): TypedContractMethod<[], [string], "view">;
|
|
903
937
|
getFunction(nameOrSignature: "rawBalanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
@@ -914,23 +948,27 @@ export interface RWAGauge extends BaseContract {
|
|
|
914
948
|
], [
|
|
915
949
|
void
|
|
916
950
|
], "nonpayable">;
|
|
951
|
+
getFunction(nameOrSignature: "setController"): TypedContractMethod<[_controller: AddressLike], [void], "nonpayable">;
|
|
917
952
|
getFunction(nameOrSignature: "setDepositRAACOnClaim"): TypedContractMethod<[
|
|
918
953
|
newDepositRAACOnClaim: boolean
|
|
919
954
|
], [
|
|
920
955
|
void
|
|
921
956
|
], "nonpayable">;
|
|
922
|
-
getFunction(nameOrSignature: "
|
|
923
|
-
|
|
924
|
-
|
|
957
|
+
getFunction(nameOrSignature: "setEmergencyPaused"): TypedContractMethod<[newPaused: boolean], [void], "nonpayable">;
|
|
958
|
+
getFunction(nameOrSignature: "setGaugeRewardDistributor"): TypedContractMethod<[
|
|
959
|
+
rewardDistributor: AddressLike
|
|
960
|
+
], [
|
|
961
|
+
void
|
|
962
|
+
], "nonpayable">;
|
|
963
|
+
getFunction(nameOrSignature: "setRaacAutolockMin"): TypedContractMethod<[
|
|
964
|
+
newRaacAutolockMin: BigNumberish
|
|
925
965
|
], [
|
|
926
966
|
void
|
|
927
967
|
], "nonpayable">;
|
|
928
|
-
getFunction(nameOrSignature: "setEmergencyPaused"): TypedContractMethod<[newPaused: boolean], [void], "nonpayable">;
|
|
929
968
|
getFunction(nameOrSignature: "stake"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
930
969
|
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
931
|
-
getFunction(nameOrSignature: "syncRewardTokens"): TypedContractMethod<[], [void], "nonpayable">;
|
|
932
970
|
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
933
|
-
getFunction(nameOrSignature: "updateUserRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
971
|
+
getFunction(nameOrSignature: "updateUserRewards"): TypedContractMethod<[user: AddressLike], [void], "nonpayable">;
|
|
934
972
|
getFunction(nameOrSignature: "userGaugeData"): TypedContractMethod<[
|
|
935
973
|
arg0: AddressLike
|
|
936
974
|
], [
|
|
@@ -945,6 +983,7 @@ export interface RWAGauge extends BaseContract {
|
|
|
945
983
|
}
|
|
946
984
|
], "view">;
|
|
947
985
|
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
986
|
+
getEvent(key: "ControllerUpdated"): TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
948
987
|
getEvent(key: "DepositRAACOnClaimUpdated"): TypedContractEvent<DepositRAACOnClaimUpdatedEvent.InputTuple, DepositRAACOnClaimUpdatedEvent.OutputTuple, DepositRAACOnClaimUpdatedEvent.OutputObject>;
|
|
949
988
|
getEvent(key: "DistributorApprovalUpdated"): TypedContractEvent<DistributorApprovalUpdatedEvent.InputTuple, DistributorApprovalUpdatedEvent.OutputTuple, DistributorApprovalUpdatedEvent.OutputObject>;
|
|
950
989
|
getEvent(key: "DistributorUpdated"): TypedContractEvent<DistributorUpdatedEvent.InputTuple, DistributorUpdatedEvent.OutputTuple, DistributorUpdatedEvent.OutputObject>;
|
|
@@ -952,13 +991,15 @@ export interface RWAGauge extends BaseContract {
|
|
|
952
991
|
getEvent(key: "ExtraRewardClaimed"): TypedContractEvent<ExtraRewardClaimedEvent.InputTuple, ExtraRewardClaimedEvent.OutputTuple, ExtraRewardClaimedEvent.OutputObject>;
|
|
953
992
|
getEvent(key: "ExtraRewardDeposited"): TypedContractEvent<ExtraRewardDepositedEvent.InputTuple, ExtraRewardDepositedEvent.OutputTuple, ExtraRewardDepositedEvent.OutputObject>;
|
|
954
993
|
getEvent(key: "ExtraRewardTokenAdded"): TypedContractEvent<ExtraRewardTokenAddedEvent.InputTuple, ExtraRewardTokenAddedEvent.OutputTuple, ExtraRewardTokenAddedEvent.OutputObject>;
|
|
994
|
+
getEvent(key: "GaugeRewardDistributorUpdated"): TypedContractEvent<GaugeRewardDistributorUpdatedEvent.InputTuple, GaugeRewardDistributorUpdatedEvent.OutputTuple, GaugeRewardDistributorUpdatedEvent.OutputObject>;
|
|
955
995
|
getEvent(key: "LeftoverRewardsIncluded"): TypedContractEvent<LeftoverRewardsIncludedEvent.InputTuple, LeftoverRewardsIncludedEvent.OutputTuple, LeftoverRewardsIncludedEvent.OutputObject>;
|
|
956
996
|
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
957
|
-
getEvent(key: "
|
|
997
|
+
getEvent(key: "RaacAutolockMinUpdated"): TypedContractEvent<RaacAutolockMinUpdatedEvent.InputTuple, RaacAutolockMinUpdatedEvent.OutputTuple, RaacAutolockMinUpdatedEvent.OutputObject>;
|
|
958
998
|
getEvent(key: "RewardTokenActivated"): TypedContractEvent<RewardTokenActivatedEvent.InputTuple, RewardTokenActivatedEvent.OutputTuple, RewardTokenActivatedEvent.OutputObject>;
|
|
959
999
|
getEvent(key: "RewardTokenAdded"): TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
960
1000
|
getEvent(key: "RewardTokenRegistered"): TypedContractEvent<RewardTokenRegisteredEvent.InputTuple, RewardTokenRegisteredEvent.OutputTuple, RewardTokenRegisteredEvent.OutputObject>;
|
|
961
1001
|
getEvent(key: "RewardTransferred"): TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
1002
|
+
getEvent(key: "RewardsPulledFromDistributor"): TypedContractEvent<RewardsPulledFromDistributorEvent.InputTuple, RewardsPulledFromDistributorEvent.OutputTuple, RewardsPulledFromDistributorEvent.OutputObject>;
|
|
962
1003
|
getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
963
1004
|
getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
964
1005
|
getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
@@ -968,6 +1009,8 @@ export interface RWAGauge extends BaseContract {
|
|
|
968
1009
|
getEvent(key: "Withdrawn"): TypedContractEvent<WithdrawnEvent.InputTuple, WithdrawnEvent.OutputTuple, WithdrawnEvent.OutputObject>;
|
|
969
1010
|
getEvent(key: "WorkingBalanceUpdated"): TypedContractEvent<WorkingBalanceUpdatedEvent.InputTuple, WorkingBalanceUpdatedEvent.OutputTuple, WorkingBalanceUpdatedEvent.OutputObject>;
|
|
970
1011
|
filters: {
|
|
1012
|
+
"ControllerUpdated(address,address)": TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
1013
|
+
ControllerUpdated: TypedContractEvent<ControllerUpdatedEvent.InputTuple, ControllerUpdatedEvent.OutputTuple, ControllerUpdatedEvent.OutputObject>;
|
|
971
1014
|
"DepositRAACOnClaimUpdated(bool)": TypedContractEvent<DepositRAACOnClaimUpdatedEvent.InputTuple, DepositRAACOnClaimUpdatedEvent.OutputTuple, DepositRAACOnClaimUpdatedEvent.OutputObject>;
|
|
972
1015
|
DepositRAACOnClaimUpdated: TypedContractEvent<DepositRAACOnClaimUpdatedEvent.InputTuple, DepositRAACOnClaimUpdatedEvent.OutputTuple, DepositRAACOnClaimUpdatedEvent.OutputObject>;
|
|
973
1016
|
"DistributorApprovalUpdated(address,bool)": TypedContractEvent<DistributorApprovalUpdatedEvent.InputTuple, DistributorApprovalUpdatedEvent.OutputTuple, DistributorApprovalUpdatedEvent.OutputObject>;
|
|
@@ -980,14 +1023,16 @@ export interface RWAGauge extends BaseContract {
|
|
|
980
1023
|
ExtraRewardClaimed: TypedContractEvent<ExtraRewardClaimedEvent.InputTuple, ExtraRewardClaimedEvent.OutputTuple, ExtraRewardClaimedEvent.OutputObject>;
|
|
981
1024
|
"ExtraRewardDeposited(address,uint256)": TypedContractEvent<ExtraRewardDepositedEvent.InputTuple, ExtraRewardDepositedEvent.OutputTuple, ExtraRewardDepositedEvent.OutputObject>;
|
|
982
1025
|
ExtraRewardDeposited: TypedContractEvent<ExtraRewardDepositedEvent.InputTuple, ExtraRewardDepositedEvent.OutputTuple, ExtraRewardDepositedEvent.OutputObject>;
|
|
983
|
-
"ExtraRewardTokenAdded(address
|
|
1026
|
+
"ExtraRewardTokenAdded(address)": TypedContractEvent<ExtraRewardTokenAddedEvent.InputTuple, ExtraRewardTokenAddedEvent.OutputTuple, ExtraRewardTokenAddedEvent.OutputObject>;
|
|
984
1027
|
ExtraRewardTokenAdded: TypedContractEvent<ExtraRewardTokenAddedEvent.InputTuple, ExtraRewardTokenAddedEvent.OutputTuple, ExtraRewardTokenAddedEvent.OutputObject>;
|
|
1028
|
+
"GaugeRewardDistributorUpdated(address)": TypedContractEvent<GaugeRewardDistributorUpdatedEvent.InputTuple, GaugeRewardDistributorUpdatedEvent.OutputTuple, GaugeRewardDistributorUpdatedEvent.OutputObject>;
|
|
1029
|
+
GaugeRewardDistributorUpdated: TypedContractEvent<GaugeRewardDistributorUpdatedEvent.InputTuple, GaugeRewardDistributorUpdatedEvent.OutputTuple, GaugeRewardDistributorUpdatedEvent.OutputObject>;
|
|
985
1030
|
"LeftoverRewardsIncluded(address,uint256,uint256)": TypedContractEvent<LeftoverRewardsIncludedEvent.InputTuple, LeftoverRewardsIncludedEvent.OutputTuple, LeftoverRewardsIncludedEvent.OutputObject>;
|
|
986
1031
|
LeftoverRewardsIncluded: TypedContractEvent<LeftoverRewardsIncludedEvent.InputTuple, LeftoverRewardsIncludedEvent.OutputTuple, LeftoverRewardsIncludedEvent.OutputObject>;
|
|
987
1032
|
"Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
988
1033
|
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
989
|
-
"
|
|
990
|
-
|
|
1034
|
+
"RaacAutolockMinUpdated(uint256)": TypedContractEvent<RaacAutolockMinUpdatedEvent.InputTuple, RaacAutolockMinUpdatedEvent.OutputTuple, RaacAutolockMinUpdatedEvent.OutputObject>;
|
|
1035
|
+
RaacAutolockMinUpdated: TypedContractEvent<RaacAutolockMinUpdatedEvent.InputTuple, RaacAutolockMinUpdatedEvent.OutputTuple, RaacAutolockMinUpdatedEvent.OutputObject>;
|
|
991
1036
|
"RewardTokenActivated(address)": TypedContractEvent<RewardTokenActivatedEvent.InputTuple, RewardTokenActivatedEvent.OutputTuple, RewardTokenActivatedEvent.OutputObject>;
|
|
992
1037
|
RewardTokenActivated: TypedContractEvent<RewardTokenActivatedEvent.InputTuple, RewardTokenActivatedEvent.OutputTuple, RewardTokenActivatedEvent.OutputObject>;
|
|
993
1038
|
"RewardTokenAdded(address)": TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
@@ -996,6 +1041,8 @@ export interface RWAGauge extends BaseContract {
|
|
|
996
1041
|
RewardTokenRegistered: TypedContractEvent<RewardTokenRegisteredEvent.InputTuple, RewardTokenRegisteredEvent.OutputTuple, RewardTokenRegisteredEvent.OutputObject>;
|
|
997
1042
|
"RewardTransferred(address,address,uint256)": TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
998
1043
|
RewardTransferred: TypedContractEvent<RewardTransferredEvent.InputTuple, RewardTransferredEvent.OutputTuple, RewardTransferredEvent.OutputObject>;
|
|
1044
|
+
"RewardsPulledFromDistributor(address,uint256)": TypedContractEvent<RewardsPulledFromDistributorEvent.InputTuple, RewardsPulledFromDistributorEvent.OutputTuple, RewardsPulledFromDistributorEvent.OutputObject>;
|
|
1045
|
+
RewardsPulledFromDistributor: TypedContractEvent<RewardsPulledFromDistributorEvent.InputTuple, RewardsPulledFromDistributorEvent.OutputTuple, RewardsPulledFromDistributorEvent.OutputObject>;
|
|
999
1046
|
"RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1000
1047
|
RoleAdminChanged: TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1001
1048
|
"RoleGranted(bytes32,address,address)": TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|