@raac/rpc 1.2.0-beta.4 → 1.2.0-beta.6
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 +236 -83
- 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 +144 -158
- package/dist/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +119 -355
- package/dist/artifacts/core/governance/gauges/GaugeRewardsDistributor.sol/GaugeRewardsDistributor.json +104 -325
- package/dist/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +156 -160
- package/dist/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +156 -160
- package/dist/artifacts/core/governance/proposals/Governance.sol/Governance.json +2 -2
- package/dist/artifacts/core/governance/proposals/TimelockController.sol/TimelockController.json +2 -2
- 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/11155111.json +72 -16
- package/dist/configs/chains/8453.json +40 -8
- package/dist/contracts/getContractAddress.js +3 -0
- package/dist/contracts/governance/distributor/claimAll.js +25 -0
- package/dist/contracts/governance/distributor/claimForGauge.js +26 -0
- package/dist/contracts/governance/distributor/deposit.js +12 -21
- package/dist/contracts/governance/distributor/getClaimableForGauge.js +29 -0
- package/dist/contracts/governance/distributor/getClaimedAtEpoch.js +30 -0
- package/dist/contracts/governance/distributor/getDepositedAtEpoch.js +30 -0
- package/dist/contracts/governance/distributor/getGaugeController.js +28 -0
- package/dist/contracts/governance/distributor/getLastClaimedEpoch.js +29 -0
- package/dist/contracts/governance/distributor/getPeriodDuration.js +28 -0
- package/dist/contracts/governance/distributor/{getRewardTokens.js → getRewardToken.js} +10 -9
- package/dist/contracts/governance/distributor/getRewardTokenInfo.js +9 -19
- package/dist/contracts/governance/distributor/getRewardTokenStats.js +30 -0
- package/dist/contracts/governance/{gaugeController/isGauge.js → distributor/getStartEpoch.js} +10 -10
- package/dist/contracts/governance/distributor/index.js +31 -17
- package/dist/contracts/governance/distributor/setController.js +26 -0
- package/dist/contracts/governance/distributor/withdrawRemovedGaugeRewards.js +27 -0
- package/dist/contracts/governance/distributor/withdrawUnallocatedRewards.js +26 -0
- package/dist/contracts/governance/gauge/addRewardToken.js +34 -0
- package/dist/contracts/governance/gauge/claimExtraReward.js +34 -0
- package/dist/contracts/governance/gauge/claimExtraRewards.js +33 -0
- package/dist/contracts/governance/gauge/claimOnBehalfOf.js +36 -0
- package/dist/contracts/governance/gauge/claimRewardToken.js +3 -4
- package/dist/contracts/governance/gauge/claimRewardsFor.js +34 -0
- package/dist/contracts/governance/gauge/depositRewardToken.js +35 -0
- package/dist/contracts/governance/gauge/getAllPendingExtraRewards.js +36 -0
- package/dist/contracts/governance/gauge/getControllerAddress.js +34 -0
- package/dist/contracts/governance/gauge/getDecimalAdjustment.js +35 -0
- package/dist/contracts/governance/gauge/getDepositRAACOnClaim.js +34 -0
- package/dist/contracts/governance/gauge/getDistributorData.js +36 -0
- package/dist/contracts/governance/gauge/getDistributors.js +34 -0
- package/dist/contracts/governance/gauge/getEarnedReward.js +11 -19
- package/dist/contracts/governance/gauge/getExtraRewardTokens.js +34 -0
- package/dist/contracts/governance/gauge/getGaugeRewardTokenData.js +44 -0
- package/dist/contracts/governance/gauge/getPendingExtraRewards.js +36 -0
- package/dist/contracts/governance/gauge/getPendingRewards.js +11 -19
- package/dist/contracts/governance/gauge/getRaacAutolockMin.js +34 -0
- package/dist/contracts/governance/gauge/getUserRewardTokenData.js +37 -0
- package/dist/contracts/governance/gauge/getUserWeight.js +35 -0
- package/dist/contracts/governance/gauge/index.js +53 -35
- package/dist/contracts/governance/gauge/isPaused.js +34 -0
- package/dist/contracts/governance/gauge/manageDistributor.js +35 -0
- package/dist/contracts/governance/gauge/setController.js +34 -0
- package/dist/contracts/governance/gauge/setDepositRAACOnClaim.js +34 -0
- package/dist/contracts/governance/gauge/setDistributorApproval.js +35 -0
- package/dist/contracts/governance/gauge/setEmergencyPaused.js +34 -0
- package/dist/contracts/governance/gauge/setGaugeRewardDistributor.js +34 -0
- package/dist/contracts/governance/gauge/setRaacAutolockMin.js +34 -0
- package/dist/contracts/governance/gauge/updateUserRewards.js +3 -2
- package/dist/contracts/governance/gaugeController/addGauge.js +24 -0
- package/dist/contracts/governance/gaugeController/batchVote.js +25 -0
- package/dist/contracts/governance/gaugeController/forceCompleteCheckpoint.js +24 -0
- package/dist/contracts/governance/gaugeController/getConstants.js +45 -0
- package/dist/contracts/governance/gaugeController/getCurrentEpoch.js +27 -0
- package/dist/contracts/governance/gaugeController/getGauge.js +29 -0
- package/dist/contracts/governance/gaugeController/getGaugeRelativeWeight.js +29 -0
- package/dist/contracts/governance/gaugeController/getGaugeRelativeWeightView.js +30 -0
- package/dist/contracts/governance/gaugeController/getLastVoteTime.js +29 -0
- package/dist/contracts/governance/gaugeController/getNextEpoch.js +27 -0
- package/dist/contracts/governance/gaugeController/getUserGaugeVotePower.js +29 -0
- package/dist/contracts/governance/gaugeController/getVeToken.js +27 -0
- package/dist/contracts/governance/gaugeController/getVoteUserPower.js +28 -0
- package/dist/contracts/governance/gaugeController/getVoteUserSlope.js +30 -0
- package/dist/contracts/governance/gaugeController/index.js +43 -23
- package/dist/contracts/governance/gaugeController/isPaused.js +27 -0
- package/dist/contracts/governance/gaugeController/kick.js +24 -0
- package/dist/contracts/governance/gaugeController/removeGauge.js +24 -0
- package/dist/contracts/governance/gaugeController/removePowerFromGauge.js +24 -0
- package/dist/contracts/governance/gaugeController/setBoostAmplificationEnabled.js +25 -0
- package/dist/contracts/governance/gaugeController/setEmergencyGaugePause.js +25 -0
- package/dist/contracts/governance/gaugeController/setEmergencyPause.js +24 -0
- 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/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 +177 -64
- package/dist/types/contracts/governance/distributor/claimAll.d.ts +11 -0
- package/dist/types/contracts/governance/distributor/claimForGauge.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/deposit.d.ts +6 -7
- package/dist/types/contracts/governance/distributor/getClaimableForGauge.d.ts +11 -0
- package/dist/types/contracts/governance/distributor/getClaimedAtEpoch.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/getDepositedAtEpoch.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/getGaugeController.d.ts +10 -0
- package/dist/types/contracts/governance/distributor/getLastClaimedEpoch.d.ts +11 -0
- package/dist/types/contracts/governance/distributor/getPeriodDuration.d.ts +10 -0
- package/dist/types/contracts/governance/distributor/{getRewardTokens.d.ts → getRewardToken.d.ts} +3 -3
- package/dist/types/contracts/governance/distributor/getRewardTokenInfo.d.ts +8 -10
- package/dist/types/contracts/governance/distributor/getRewardTokenStats.d.ts +15 -0
- package/dist/types/contracts/governance/distributor/getStartEpoch.d.ts +10 -0
- package/dist/types/contracts/governance/distributor/index.d.ts +16 -8
- package/dist/types/contracts/governance/distributor/setController.d.ts +12 -0
- package/dist/types/contracts/governance/distributor/withdrawRemovedGaugeRewards.d.ts +13 -0
- package/dist/types/contracts/governance/distributor/withdrawUnallocatedRewards.d.ts +12 -0
- package/dist/types/contracts/governance/gauge/addRewardToken.d.ts +10 -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 +1 -2
- 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/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/{getRewardTokens.d.ts → getDistributors.d.ts} +3 -5
- package/dist/types/contracts/governance/gauge/getEarnedReward.d.ts +4 -5
- package/dist/types/contracts/governance/gauge/getExtraRewardTokens.d.ts +9 -0
- package/dist/types/contracts/governance/gauge/getGaugeRewardTokenData.d.ts +18 -0
- package/dist/types/contracts/governance/gauge/getPendingExtraRewards.d.ts +11 -0
- package/dist/types/contracts/governance/gauge/getPendingRewards.d.ts +4 -5
- package/dist/types/contracts/governance/gauge/getRaacAutolockMin.d.ts +9 -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 +38 -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/setController.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/setDepositRAACOnClaim.d.ts +10 -0
- package/dist/types/contracts/governance/gauge/setDistributorApproval.d.ts +11 -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/updateUserRewards.d.ts +2 -1
- package/dist/types/contracts/governance/gaugeController/addGauge.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeController/batchVote.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/forceCompleteCheckpoint.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeController/getConstants.d.ts +18 -0
- package/dist/types/contracts/governance/gaugeController/getCurrentEpoch.d.ts +9 -0
- package/dist/types/contracts/governance/gaugeController/getGauge.d.ts +15 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeRelativeWeight.d.ts +15 -0
- package/dist/types/contracts/governance/gaugeController/getGaugeRelativeWeightView.d.ts +14 -0
- package/dist/types/contracts/governance/gaugeController/getLastVoteTime.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/getNextEpoch.d.ts +9 -0
- package/dist/types/contracts/governance/gaugeController/getUserGaugeVotePower.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/getVeToken.d.ts +9 -0
- package/dist/types/contracts/governance/gaugeController/getVoteUserPower.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeController/getVoteUserSlope.d.ts +15 -0
- package/dist/types/contracts/governance/gaugeController/index.d.ts +28 -11
- package/dist/types/contracts/governance/gaugeController/isPaused.d.ts +9 -0
- package/dist/types/contracts/governance/gaugeController/kick.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeController/removeGauge.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeController/removePowerFromGauge.d.ts +10 -0
- package/dist/types/contracts/governance/gaugeController/setBoostAmplificationEnabled.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyGaugePause.d.ts +11 -0
- package/dist/types/contracts/governance/gaugeController/setEmergencyPause.d.ts +10 -0
- 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/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 +1 -25
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +1 -13
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +1 -25
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +1 -25
- 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 +1 -25
- 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 +0 -20
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -17
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -21
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/RAACBotLocker__factory.d.ts +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 +0 -20
- 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 +616 -95
- 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/getRewardTokens.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/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/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
|
@@ -17,16 +17,15 @@ export declare namespace RAACLiquidLocker {
|
|
|
17
17
|
};
|
|
18
18
|
}
|
|
19
19
|
export interface RAACLiquidLockerInterface extends Interface {
|
|
20
|
-
getFunction(nameOrSignature: "BOOSTER_ROLE" | "DEFAULT_ADMIN_ROLE" | "FEE_PRECISION" | "HARVEST_ROLE" | "ON_BEHALF_OF_ROLE" | "
|
|
21
|
-
getEvent(nameOrSignatureOrTopic: "BatchProcessCompleted" | "Borrow" | "Claim" | "ClaimRewardClaimed" | "ClaimRewardFailed" | "Deposit" | "DepositedToGauge" | "GaugeVote" | "GovernanceVote" | "Harvest" | "Initialized" | "OwnershipTransferred" | "
|
|
20
|
+
getFunction(nameOrSignature: "BOOSTER_ROLE" | "DEFAULT_ADMIN_ROLE" | "FEE_PRECISION" | "HARVEST_ROLE" | "ON_BEHALF_OF_ROLE" | "PAUSER_ROLE" | "accRewardPerShare" | "borrow" | "claimRewardFor" | "cleverFeeRecipient" | "deposit" | "depositOnBehalfOf" | "depositToGauge" | "donate" | "epochEndToLockAmount" | "epochEnds" | "feeSharesBots" | "feeSharesClever" | "feeSharesTreasury" | "getRoleAdmin" | "getUserInfo" | "getUserLocks" | "grantRole" | "harvest" | "harvestBountyPercentage" | "hasRole" | "initialize" | "intermediateRewardToken" | "isKeeper" | "leRAAC" | "lockDurationEpochs" | "maturityVault" | "oldToNewEpochEnds" | "owner" | "pause" | "paused" | "pendingCumulatedAmount" | "poolLockedUnderlying" | "processVaultExpiredLocks" | "processedEpochIndexes" | "raac" | "raacBotLocker" | "renounceOwnership" | "renounceRole" | "repay" | "repayFeePercentage" | "requestUnlock" | "reserveRate" | "revokeRole" | "supportsInterface" | "totalDebtGlobal" | "totalLockedGlobal" | "totalRaacInPool" | "totalUnlockedGlobal" | "transferOwnership" | "treasury" | "treasuryFeePercentage" | "unpause" | "updateBotLocker" | "updateCleverFeeRecipient" | "updateFeeShares" | "updateHarvestBountyPercentage" | "updateIntermediateRewardToken" | "updateRepayFeePercentage" | "updateTreasury" | "updateWhitelist" | "updateZap" | "userInfo" | "veRAAC" | "voteGauge" | "voteGovernance" | "withdrawFromGauge" | "withdrawUnlocked" | "zap"): FunctionFragment;
|
|
21
|
+
getEvent(nameOrSignatureOrTopic: "BatchProcessCompleted" | "Borrow" | "Claim" | "ClaimRewardClaimed" | "ClaimRewardFailed" | "Deposit" | "DepositedToGauge" | "GaugeVote" | "GovernanceVote" | "Harvest" | "Initialized" | "OwnershipTransferred" | "Paused" | "ProcessUnlockableRAAC" | "Repay" | "RewardClaimedFor" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Unlock" | "Unpaused" | "UpdateBotLocker" | "UpdateCleverFeeRecipient" | "UpdateFeeShares" | "UpdateHarvestBountyPercentage" | "UpdateIntermediateRewardToken" | "UpdateRepayFeePercentage" | "UpdateTreasury" | "UpdateVeBoost" | "UpdateWhitelist" | "UpdateZap" | "UserExpiredLocksProcessed" | "VaultExpiredLocksProcessed" | "Withdraw" | "WithdrawnFromGauge"): EventFragment;
|
|
22
22
|
encodeFunctionData(functionFragment: "BOOSTER_ROLE", values?: undefined): string;
|
|
23
23
|
encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
|
|
24
24
|
encodeFunctionData(functionFragment: "FEE_PRECISION", values?: undefined): string;
|
|
25
25
|
encodeFunctionData(functionFragment: "HARVEST_ROLE", values?: undefined): string;
|
|
26
26
|
encodeFunctionData(functionFragment: "ON_BEHALF_OF_ROLE", values?: undefined): string;
|
|
27
|
+
encodeFunctionData(functionFragment: "PAUSER_ROLE", values?: undefined): string;
|
|
27
28
|
encodeFunctionData(functionFragment: "accRewardPerShare", values?: undefined): string;
|
|
28
|
-
encodeFunctionData(functionFragment: "addRewardToken", values: [AddressLike]): string;
|
|
29
|
-
encodeFunctionData(functionFragment: "approvedTargets", values: [AddressLike]): string;
|
|
30
29
|
encodeFunctionData(functionFragment: "borrow", values: [BigNumberish, boolean]): string;
|
|
31
30
|
encodeFunctionData(functionFragment: "claimRewardFor", values: [AddressLike, BigNumberish, AddressLike, AddressLike]): string;
|
|
32
31
|
encodeFunctionData(functionFragment: "cleverFeeRecipient", values?: undefined): string;
|
|
@@ -34,6 +33,8 @@ export interface RAACLiquidLockerInterface extends Interface {
|
|
|
34
33
|
encodeFunctionData(functionFragment: "depositOnBehalfOf", values: [AddressLike, BigNumberish]): string;
|
|
35
34
|
encodeFunctionData(functionFragment: "depositToGauge", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
36
35
|
encodeFunctionData(functionFragment: "donate", values: [BigNumberish]): string;
|
|
36
|
+
encodeFunctionData(functionFragment: "epochEndToLockAmount", values: [BigNumberish]): string;
|
|
37
|
+
encodeFunctionData(functionFragment: "epochEnds", values: [BigNumberish]): string;
|
|
37
38
|
encodeFunctionData(functionFragment: "feeSharesBots", values?: undefined): string;
|
|
38
39
|
encodeFunctionData(functionFragment: "feeSharesClever", values?: undefined): string;
|
|
39
40
|
encodeFunctionData(functionFragment: "feeSharesTreasury", values?: undefined): string;
|
|
@@ -63,54 +64,49 @@ export interface RAACLiquidLockerInterface extends Interface {
|
|
|
63
64
|
]): string;
|
|
64
65
|
encodeFunctionData(functionFragment: "intermediateRewardToken", values?: undefined): string;
|
|
65
66
|
encodeFunctionData(functionFragment: "isKeeper", values: [AddressLike]): string;
|
|
66
|
-
encodeFunctionData(functionFragment: "lastInteractionBlock", values: [AddressLike]): string;
|
|
67
67
|
encodeFunctionData(functionFragment: "leRAAC", values?: undefined): string;
|
|
68
68
|
encodeFunctionData(functionFragment: "lockDurationEpochs", values?: undefined): string;
|
|
69
|
-
encodeFunctionData(functionFragment: "manualSwapRewardToken", values: [AddressLike]): string;
|
|
70
69
|
encodeFunctionData(functionFragment: "maturityVault", values?: undefined): string;
|
|
70
|
+
encodeFunctionData(functionFragment: "oldToNewEpochEnds", values: [BigNumberish]): string;
|
|
71
71
|
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
72
|
-
encodeFunctionData(functionFragment: "
|
|
72
|
+
encodeFunctionData(functionFragment: "pause", values?: undefined): string;
|
|
73
|
+
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
74
|
+
encodeFunctionData(functionFragment: "pendingCumulatedAmount", values?: undefined): string;
|
|
73
75
|
encodeFunctionData(functionFragment: "poolLockedUnderlying", values?: undefined): string;
|
|
74
76
|
encodeFunctionData(functionFragment: "processVaultExpiredLocks", values?: undefined): string;
|
|
77
|
+
encodeFunctionData(functionFragment: "processedEpochIndexes", values?: undefined): string;
|
|
75
78
|
encodeFunctionData(functionFragment: "raac", values?: undefined): string;
|
|
76
79
|
encodeFunctionData(functionFragment: "raacBotLocker", values?: undefined): string;
|
|
77
|
-
encodeFunctionData(functionFragment: "removeRewardToken", values: [AddressLike]): string;
|
|
78
80
|
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
79
81
|
encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
|
|
80
82
|
encodeFunctionData(functionFragment: "repay", values: [BigNumberish]): string;
|
|
81
83
|
encodeFunctionData(functionFragment: "repayFeePercentage", values?: undefined): string;
|
|
82
84
|
encodeFunctionData(functionFragment: "requestUnlock", values: [BigNumberish]): string;
|
|
83
|
-
encodeFunctionData(functionFragment: "rescueRewardToken", values: [AddressLike, BigNumberish]): string;
|
|
84
85
|
encodeFunctionData(functionFragment: "reserveRate", values?: undefined): string;
|
|
85
86
|
encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
|
|
86
|
-
encodeFunctionData(functionFragment: "rewardTokens", values: [BigNumberish]): string;
|
|
87
87
|
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
88
88
|
encodeFunctionData(functionFragment: "totalDebtGlobal", values?: undefined): string;
|
|
89
89
|
encodeFunctionData(functionFragment: "totalLockedGlobal", values?: undefined): string;
|
|
90
|
-
encodeFunctionData(functionFragment: "totalPendingUnlockGlobal", values?: undefined): string;
|
|
91
90
|
encodeFunctionData(functionFragment: "totalRaacInPool", values?: undefined): string;
|
|
92
91
|
encodeFunctionData(functionFragment: "totalUnlockedGlobal", values?: undefined): string;
|
|
93
92
|
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
94
93
|
encodeFunctionData(functionFragment: "treasury", values?: undefined): string;
|
|
95
94
|
encodeFunctionData(functionFragment: "treasuryFeePercentage", values?: undefined): string;
|
|
96
|
-
encodeFunctionData(functionFragment: "
|
|
95
|
+
encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
|
|
97
96
|
encodeFunctionData(functionFragment: "updateBotLocker", values: [AddressLike]): string;
|
|
98
97
|
encodeFunctionData(functionFragment: "updateCleverFeeRecipient", values: [AddressLike]): string;
|
|
99
|
-
encodeFunctionData(functionFragment: "updateFeeShares", values: [BigNumberish, BigNumberish, BigNumberish]): string;
|
|
98
|
+
encodeFunctionData(functionFragment: "updateFeeShares", values: [BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
|
|
100
99
|
encodeFunctionData(functionFragment: "updateHarvestBountyPercentage", values: [BigNumberish]): string;
|
|
101
100
|
encodeFunctionData(functionFragment: "updateIntermediateRewardToken", values: [AddressLike]): string;
|
|
102
|
-
encodeFunctionData(functionFragment: "updateManualSwapRewardToken", values: [AddressLike[], boolean]): string;
|
|
103
101
|
encodeFunctionData(functionFragment: "updateRepayFeePercentage", values: [BigNumberish]): string;
|
|
104
102
|
encodeFunctionData(functionFragment: "updateTreasury", values: [AddressLike]): string;
|
|
105
|
-
encodeFunctionData(functionFragment: "updateTreasuryFeePercentage", values: [BigNumberish]): string;
|
|
106
103
|
encodeFunctionData(functionFragment: "updateWhitelist", values: [AddressLike, boolean]): string;
|
|
107
104
|
encodeFunctionData(functionFragment: "updateZap", values: [AddressLike]): string;
|
|
108
105
|
encodeFunctionData(functionFragment: "userInfo", values: [AddressLike]): string;
|
|
109
106
|
encodeFunctionData(functionFragment: "veRAAC", values?: undefined): string;
|
|
110
|
-
encodeFunctionData(functionFragment: "verifyRewardTokenSync", values: [AddressLike]): string;
|
|
111
107
|
encodeFunctionData(functionFragment: "voteGauge", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
112
108
|
encodeFunctionData(functionFragment: "voteGovernance", values: [AddressLike, BigNumberish, boolean]): string;
|
|
113
|
-
encodeFunctionData(functionFragment: "withdrawFromGauge", values: [AddressLike, AddressLike, BigNumberish, AddressLike]): string;
|
|
109
|
+
encodeFunctionData(functionFragment: "withdrawFromGauge", values: [AddressLike, AddressLike, BigNumberish, BigNumberish, AddressLike]): string;
|
|
114
110
|
encodeFunctionData(functionFragment: "withdrawUnlocked", values?: undefined): string;
|
|
115
111
|
encodeFunctionData(functionFragment: "zap", values?: undefined): string;
|
|
116
112
|
decodeFunctionResult(functionFragment: "BOOSTER_ROLE", data: BytesLike): Result;
|
|
@@ -118,9 +114,8 @@ export interface RAACLiquidLockerInterface extends Interface {
|
|
|
118
114
|
decodeFunctionResult(functionFragment: "FEE_PRECISION", data: BytesLike): Result;
|
|
119
115
|
decodeFunctionResult(functionFragment: "HARVEST_ROLE", data: BytesLike): Result;
|
|
120
116
|
decodeFunctionResult(functionFragment: "ON_BEHALF_OF_ROLE", data: BytesLike): Result;
|
|
117
|
+
decodeFunctionResult(functionFragment: "PAUSER_ROLE", data: BytesLike): Result;
|
|
121
118
|
decodeFunctionResult(functionFragment: "accRewardPerShare", data: BytesLike): Result;
|
|
122
|
-
decodeFunctionResult(functionFragment: "addRewardToken", data: BytesLike): Result;
|
|
123
|
-
decodeFunctionResult(functionFragment: "approvedTargets", data: BytesLike): Result;
|
|
124
119
|
decodeFunctionResult(functionFragment: "borrow", data: BytesLike): Result;
|
|
125
120
|
decodeFunctionResult(functionFragment: "claimRewardFor", data: BytesLike): Result;
|
|
126
121
|
decodeFunctionResult(functionFragment: "cleverFeeRecipient", data: BytesLike): Result;
|
|
@@ -128,6 +123,8 @@ export interface RAACLiquidLockerInterface extends Interface {
|
|
|
128
123
|
decodeFunctionResult(functionFragment: "depositOnBehalfOf", data: BytesLike): Result;
|
|
129
124
|
decodeFunctionResult(functionFragment: "depositToGauge", data: BytesLike): Result;
|
|
130
125
|
decodeFunctionResult(functionFragment: "donate", data: BytesLike): Result;
|
|
126
|
+
decodeFunctionResult(functionFragment: "epochEndToLockAmount", data: BytesLike): Result;
|
|
127
|
+
decodeFunctionResult(functionFragment: "epochEnds", data: BytesLike): Result;
|
|
131
128
|
decodeFunctionResult(functionFragment: "feeSharesBots", data: BytesLike): Result;
|
|
132
129
|
decodeFunctionResult(functionFragment: "feeSharesClever", data: BytesLike): Result;
|
|
133
130
|
decodeFunctionResult(functionFragment: "feeSharesTreasury", data: BytesLike): Result;
|
|
@@ -141,51 +138,46 @@ export interface RAACLiquidLockerInterface extends Interface {
|
|
|
141
138
|
decodeFunctionResult(functionFragment: "initialize", data: BytesLike): Result;
|
|
142
139
|
decodeFunctionResult(functionFragment: "intermediateRewardToken", data: BytesLike): Result;
|
|
143
140
|
decodeFunctionResult(functionFragment: "isKeeper", data: BytesLike): Result;
|
|
144
|
-
decodeFunctionResult(functionFragment: "lastInteractionBlock", data: BytesLike): Result;
|
|
145
141
|
decodeFunctionResult(functionFragment: "leRAAC", data: BytesLike): Result;
|
|
146
142
|
decodeFunctionResult(functionFragment: "lockDurationEpochs", data: BytesLike): Result;
|
|
147
|
-
decodeFunctionResult(functionFragment: "manualSwapRewardToken", data: BytesLike): Result;
|
|
148
143
|
decodeFunctionResult(functionFragment: "maturityVault", data: BytesLike): Result;
|
|
144
|
+
decodeFunctionResult(functionFragment: "oldToNewEpochEnds", data: BytesLike): Result;
|
|
149
145
|
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
150
|
-
decodeFunctionResult(functionFragment: "
|
|
146
|
+
decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
|
|
147
|
+
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
148
|
+
decodeFunctionResult(functionFragment: "pendingCumulatedAmount", data: BytesLike): Result;
|
|
151
149
|
decodeFunctionResult(functionFragment: "poolLockedUnderlying", data: BytesLike): Result;
|
|
152
150
|
decodeFunctionResult(functionFragment: "processVaultExpiredLocks", data: BytesLike): Result;
|
|
151
|
+
decodeFunctionResult(functionFragment: "processedEpochIndexes", data: BytesLike): Result;
|
|
153
152
|
decodeFunctionResult(functionFragment: "raac", data: BytesLike): Result;
|
|
154
153
|
decodeFunctionResult(functionFragment: "raacBotLocker", data: BytesLike): Result;
|
|
155
|
-
decodeFunctionResult(functionFragment: "removeRewardToken", data: BytesLike): Result;
|
|
156
154
|
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
157
155
|
decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
|
|
158
156
|
decodeFunctionResult(functionFragment: "repay", data: BytesLike): Result;
|
|
159
157
|
decodeFunctionResult(functionFragment: "repayFeePercentage", data: BytesLike): Result;
|
|
160
158
|
decodeFunctionResult(functionFragment: "requestUnlock", data: BytesLike): Result;
|
|
161
|
-
decodeFunctionResult(functionFragment: "rescueRewardToken", data: BytesLike): Result;
|
|
162
159
|
decodeFunctionResult(functionFragment: "reserveRate", data: BytesLike): Result;
|
|
163
160
|
decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
|
|
164
|
-
decodeFunctionResult(functionFragment: "rewardTokens", data: BytesLike): Result;
|
|
165
161
|
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
166
162
|
decodeFunctionResult(functionFragment: "totalDebtGlobal", data: BytesLike): Result;
|
|
167
163
|
decodeFunctionResult(functionFragment: "totalLockedGlobal", data: BytesLike): Result;
|
|
168
|
-
decodeFunctionResult(functionFragment: "totalPendingUnlockGlobal", data: BytesLike): Result;
|
|
169
164
|
decodeFunctionResult(functionFragment: "totalRaacInPool", data: BytesLike): Result;
|
|
170
165
|
decodeFunctionResult(functionFragment: "totalUnlockedGlobal", data: BytesLike): Result;
|
|
171
166
|
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
172
167
|
decodeFunctionResult(functionFragment: "treasury", data: BytesLike): Result;
|
|
173
168
|
decodeFunctionResult(functionFragment: "treasuryFeePercentage", data: BytesLike): Result;
|
|
174
|
-
decodeFunctionResult(functionFragment: "
|
|
169
|
+
decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
|
|
175
170
|
decodeFunctionResult(functionFragment: "updateBotLocker", data: BytesLike): Result;
|
|
176
171
|
decodeFunctionResult(functionFragment: "updateCleverFeeRecipient", data: BytesLike): Result;
|
|
177
172
|
decodeFunctionResult(functionFragment: "updateFeeShares", data: BytesLike): Result;
|
|
178
173
|
decodeFunctionResult(functionFragment: "updateHarvestBountyPercentage", data: BytesLike): Result;
|
|
179
174
|
decodeFunctionResult(functionFragment: "updateIntermediateRewardToken", data: BytesLike): Result;
|
|
180
|
-
decodeFunctionResult(functionFragment: "updateManualSwapRewardToken", data: BytesLike): Result;
|
|
181
175
|
decodeFunctionResult(functionFragment: "updateRepayFeePercentage", data: BytesLike): Result;
|
|
182
176
|
decodeFunctionResult(functionFragment: "updateTreasury", data: BytesLike): Result;
|
|
183
|
-
decodeFunctionResult(functionFragment: "updateTreasuryFeePercentage", data: BytesLike): Result;
|
|
184
177
|
decodeFunctionResult(functionFragment: "updateWhitelist", data: BytesLike): Result;
|
|
185
178
|
decodeFunctionResult(functionFragment: "updateZap", data: BytesLike): Result;
|
|
186
179
|
decodeFunctionResult(functionFragment: "userInfo", data: BytesLike): Result;
|
|
187
180
|
decodeFunctionResult(functionFragment: "veRAAC", data: BytesLike): Result;
|
|
188
|
-
decodeFunctionResult(functionFragment: "verifyRewardTokenSync", data: BytesLike): Result;
|
|
189
181
|
decodeFunctionResult(functionFragment: "voteGauge", data: BytesLike): Result;
|
|
190
182
|
decodeFunctionResult(functionFragment: "voteGovernance", data: BytesLike): Result;
|
|
191
183
|
decodeFunctionResult(functionFragment: "withdrawFromGauge", data: BytesLike): Result;
|
|
@@ -394,6 +386,17 @@ export declare namespace OwnershipTransferredEvent {
|
|
|
394
386
|
type Log = TypedEventLog<Event>;
|
|
395
387
|
type LogDescription = TypedLogDescription<Event>;
|
|
396
388
|
}
|
|
389
|
+
export declare namespace PausedEvent {
|
|
390
|
+
type InputTuple = [account: AddressLike];
|
|
391
|
+
type OutputTuple = [account: string];
|
|
392
|
+
interface OutputObject {
|
|
393
|
+
account: string;
|
|
394
|
+
}
|
|
395
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
396
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
397
|
+
type Log = TypedEventLog<Event>;
|
|
398
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
399
|
+
}
|
|
397
400
|
export declare namespace ProcessUnlockableRAACEvent {
|
|
398
401
|
type InputTuple = [
|
|
399
402
|
epoch: BigNumberish,
|
|
@@ -447,28 +450,6 @@ export declare namespace RewardClaimedForEvent {
|
|
|
447
450
|
type Log = TypedEventLog<Event>;
|
|
448
451
|
type LogDescription = TypedLogDescription<Event>;
|
|
449
452
|
}
|
|
450
|
-
export declare namespace RewardTokenAddedEvent {
|
|
451
|
-
type InputTuple = [_token: AddressLike];
|
|
452
|
-
type OutputTuple = [_token: string];
|
|
453
|
-
interface OutputObject {
|
|
454
|
-
_token: string;
|
|
455
|
-
}
|
|
456
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
457
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
458
|
-
type Log = TypedEventLog<Event>;
|
|
459
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
460
|
-
}
|
|
461
|
-
export declare namespace RewardTokenRemovedEvent {
|
|
462
|
-
type InputTuple = [_token: AddressLike];
|
|
463
|
-
type OutputTuple = [_token: string];
|
|
464
|
-
interface OutputObject {
|
|
465
|
-
_token: string;
|
|
466
|
-
}
|
|
467
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
468
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
469
|
-
type Log = TypedEventLog<Event>;
|
|
470
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
471
|
-
}
|
|
472
453
|
export declare namespace RoleAdminChangedEvent {
|
|
473
454
|
type InputTuple = [
|
|
474
455
|
role: BytesLike,
|
|
@@ -525,10 +506,19 @@ export declare namespace RoleRevokedEvent {
|
|
|
525
506
|
type LogDescription = TypedLogDescription<Event>;
|
|
526
507
|
}
|
|
527
508
|
export declare namespace UnlockEvent {
|
|
528
|
-
type InputTuple = [
|
|
529
|
-
|
|
509
|
+
type InputTuple = [
|
|
510
|
+
_account: AddressLike,
|
|
511
|
+
_numLocks: BigNumberish,
|
|
512
|
+
_amount: BigNumberish
|
|
513
|
+
];
|
|
514
|
+
type OutputTuple = [
|
|
515
|
+
_account: string,
|
|
516
|
+
_numLocks: bigint,
|
|
517
|
+
_amount: bigint
|
|
518
|
+
];
|
|
530
519
|
interface OutputObject {
|
|
531
520
|
_account: string;
|
|
521
|
+
_numLocks: bigint;
|
|
532
522
|
_amount: bigint;
|
|
533
523
|
}
|
|
534
524
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
@@ -536,6 +526,17 @@ export declare namespace UnlockEvent {
|
|
|
536
526
|
type Log = TypedEventLog<Event>;
|
|
537
527
|
type LogDescription = TypedLogDescription<Event>;
|
|
538
528
|
}
|
|
529
|
+
export declare namespace UnpausedEvent {
|
|
530
|
+
type InputTuple = [account: AddressLike];
|
|
531
|
+
type OutputTuple = [account: string];
|
|
532
|
+
interface OutputObject {
|
|
533
|
+
account: string;
|
|
534
|
+
}
|
|
535
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
536
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
537
|
+
type Log = TypedEventLog<Event>;
|
|
538
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
539
|
+
}
|
|
539
540
|
export declare namespace UpdateBotLockerEvent {
|
|
540
541
|
type InputTuple = [_locker: AddressLike];
|
|
541
542
|
type OutputTuple = [_locker: string];
|
|
@@ -562,17 +563,20 @@ export declare namespace UpdateFeeSharesEvent {
|
|
|
562
563
|
type InputTuple = [
|
|
563
564
|
_feeSharesBots: BigNumberish,
|
|
564
565
|
_feeSharesClever: BigNumberish,
|
|
565
|
-
_feeSharesTreasury: BigNumberish
|
|
566
|
+
_feeSharesTreasury: BigNumberish,
|
|
567
|
+
_treasuryFeePercentage: BigNumberish
|
|
566
568
|
];
|
|
567
569
|
type OutputTuple = [
|
|
568
570
|
_feeSharesBots: bigint,
|
|
569
571
|
_feeSharesClever: bigint,
|
|
570
|
-
_feeSharesTreasury: bigint
|
|
572
|
+
_feeSharesTreasury: bigint,
|
|
573
|
+
_treasuryFeePercentage: bigint
|
|
571
574
|
];
|
|
572
575
|
interface OutputObject {
|
|
573
576
|
_feeSharesBots: bigint;
|
|
574
577
|
_feeSharesClever: bigint;
|
|
575
578
|
_feeSharesTreasury: bigint;
|
|
579
|
+
_treasuryFeePercentage: bigint;
|
|
576
580
|
}
|
|
577
581
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
578
582
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -601,17 +605,6 @@ export declare namespace UpdateIntermediateRewardTokenEvent {
|
|
|
601
605
|
type Log = TypedEventLog<Event>;
|
|
602
606
|
type LogDescription = TypedLogDescription<Event>;
|
|
603
607
|
}
|
|
604
|
-
export declare namespace UpdatePlatformFeePercentageEvent {
|
|
605
|
-
type InputTuple = [_feePercentage: BigNumberish];
|
|
606
|
-
type OutputTuple = [_feePercentage: bigint];
|
|
607
|
-
interface OutputObject {
|
|
608
|
-
_feePercentage: bigint;
|
|
609
|
-
}
|
|
610
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
611
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
612
|
-
type Log = TypedEventLog<Event>;
|
|
613
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
614
|
-
}
|
|
615
608
|
export declare namespace UpdateRepayFeePercentageEvent {
|
|
616
609
|
type InputTuple = [_feePercentage: BigNumberish];
|
|
617
610
|
type OutputTuple = [_feePercentage: bigint];
|
|
@@ -738,13 +731,8 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
738
731
|
FEE_PRECISION: TypedContractMethod<[], [bigint], "view">;
|
|
739
732
|
HARVEST_ROLE: TypedContractMethod<[], [string], "view">;
|
|
740
733
|
ON_BEHALF_OF_ROLE: TypedContractMethod<[], [string], "view">;
|
|
734
|
+
PAUSER_ROLE: TypedContractMethod<[], [string], "view">;
|
|
741
735
|
accRewardPerShare: TypedContractMethod<[], [bigint], "view">;
|
|
742
|
-
addRewardToken: TypedContractMethod<[
|
|
743
|
-
_token: AddressLike
|
|
744
|
-
], [
|
|
745
|
-
void
|
|
746
|
-
], "nonpayable">;
|
|
747
|
-
approvedTargets: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
748
736
|
borrow: TypedContractMethod<[
|
|
749
737
|
_amount: BigNumberish,
|
|
750
738
|
_depositMaturityVault: boolean
|
|
@@ -775,6 +763,12 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
775
763
|
void
|
|
776
764
|
], "nonpayable">;
|
|
777
765
|
donate: TypedContractMethod<[_amount: BigNumberish], [void], "nonpayable">;
|
|
766
|
+
epochEndToLockAmount: TypedContractMethod<[
|
|
767
|
+
arg0: BigNumberish
|
|
768
|
+
], [
|
|
769
|
+
bigint
|
|
770
|
+
], "view">;
|
|
771
|
+
epochEnds: TypedContractMethod<[arg0: BigNumberish], [bigint], "view">;
|
|
778
772
|
feeSharesBots: TypedContractMethod<[], [bigint], "view">;
|
|
779
773
|
feeSharesClever: TypedContractMethod<[], [bigint], "view">;
|
|
780
774
|
feeSharesTreasury: TypedContractMethod<[], [bigint], "view">;
|
|
@@ -841,30 +835,23 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
841
835
|
], "nonpayable">;
|
|
842
836
|
intermediateRewardToken: TypedContractMethod<[], [string], "view">;
|
|
843
837
|
isKeeper: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
844
|
-
lastInteractionBlock: TypedContractMethod<[
|
|
845
|
-
arg0: AddressLike
|
|
846
|
-
], [
|
|
847
|
-
bigint
|
|
848
|
-
], "view">;
|
|
849
838
|
leRAAC: TypedContractMethod<[], [string], "view">;
|
|
850
839
|
lockDurationEpochs: TypedContractMethod<[], [bigint], "view">;
|
|
851
|
-
|
|
852
|
-
|
|
840
|
+
maturityVault: TypedContractMethod<[], [string], "view">;
|
|
841
|
+
oldToNewEpochEnds: TypedContractMethod<[
|
|
842
|
+
arg0: BigNumberish
|
|
853
843
|
], [
|
|
854
|
-
|
|
844
|
+
bigint
|
|
855
845
|
], "view">;
|
|
856
|
-
maturityVault: TypedContractMethod<[], [string], "view">;
|
|
857
846
|
owner: TypedContractMethod<[], [string], "view">;
|
|
858
|
-
|
|
847
|
+
pause: TypedContractMethod<[], [void], "nonpayable">;
|
|
848
|
+
paused: TypedContractMethod<[], [boolean], "view">;
|
|
849
|
+
pendingCumulatedAmount: TypedContractMethod<[], [bigint], "view">;
|
|
859
850
|
poolLockedUnderlying: TypedContractMethod<[], [bigint], "view">;
|
|
860
851
|
processVaultExpiredLocks: TypedContractMethod<[], [void], "nonpayable">;
|
|
852
|
+
processedEpochIndexes: TypedContractMethod<[], [bigint], "view">;
|
|
861
853
|
raac: TypedContractMethod<[], [string], "view">;
|
|
862
854
|
raacBotLocker: TypedContractMethod<[], [string], "view">;
|
|
863
|
-
removeRewardToken: TypedContractMethod<[
|
|
864
|
-
_token: AddressLike
|
|
865
|
-
], [
|
|
866
|
-
void
|
|
867
|
-
], "nonpayable">;
|
|
868
855
|
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
869
856
|
renounceRole: TypedContractMethod<[
|
|
870
857
|
role: BytesLike,
|
|
@@ -879,13 +866,7 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
879
866
|
], "nonpayable">;
|
|
880
867
|
repayFeePercentage: TypedContractMethod<[], [bigint], "view">;
|
|
881
868
|
requestUnlock: TypedContractMethod<[
|
|
882
|
-
|
|
883
|
-
], [
|
|
884
|
-
void
|
|
885
|
-
], "nonpayable">;
|
|
886
|
-
rescueRewardToken: TypedContractMethod<[
|
|
887
|
-
_token: AddressLike,
|
|
888
|
-
_amount: BigNumberish
|
|
869
|
+
_numLocks: BigNumberish
|
|
889
870
|
], [
|
|
890
871
|
void
|
|
891
872
|
], "nonpayable">;
|
|
@@ -896,7 +877,6 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
896
877
|
], [
|
|
897
878
|
void
|
|
898
879
|
], "nonpayable">;
|
|
899
|
-
rewardTokens: TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
900
880
|
supportsInterface: TypedContractMethod<[
|
|
901
881
|
interfaceId: BytesLike
|
|
902
882
|
], [
|
|
@@ -904,7 +884,6 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
904
884
|
], "view">;
|
|
905
885
|
totalDebtGlobal: TypedContractMethod<[], [bigint], "view">;
|
|
906
886
|
totalLockedGlobal: TypedContractMethod<[], [bigint], "view">;
|
|
907
|
-
totalPendingUnlockGlobal: TypedContractMethod<[], [bigint], "view">;
|
|
908
887
|
totalRaacInPool: TypedContractMethod<[], [bigint], "view">;
|
|
909
888
|
totalUnlockedGlobal: TypedContractMethod<[], [bigint], "view">;
|
|
910
889
|
transferOwnership: TypedContractMethod<[
|
|
@@ -914,12 +893,7 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
914
893
|
], "nonpayable">;
|
|
915
894
|
treasury: TypedContractMethod<[], [string], "view">;
|
|
916
895
|
treasuryFeePercentage: TypedContractMethod<[], [bigint], "view">;
|
|
917
|
-
|
|
918
|
-
account: AddressLike,
|
|
919
|
-
_status: boolean
|
|
920
|
-
], [
|
|
921
|
-
void
|
|
922
|
-
], "nonpayable">;
|
|
896
|
+
unpause: TypedContractMethod<[], [void], "nonpayable">;
|
|
923
897
|
updateBotLocker: TypedContractMethod<[
|
|
924
898
|
_locker: AddressLike
|
|
925
899
|
], [
|
|
@@ -933,7 +907,8 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
933
907
|
updateFeeShares: TypedContractMethod<[
|
|
934
908
|
_feeSharesBots: BigNumberish,
|
|
935
909
|
_feeSharesClever: BigNumberish,
|
|
936
|
-
_feeSharesTreasury: BigNumberish
|
|
910
|
+
_feeSharesTreasury: BigNumberish,
|
|
911
|
+
_treasuryFeePercentage: BigNumberish
|
|
937
912
|
], [
|
|
938
913
|
void
|
|
939
914
|
], "nonpayable">;
|
|
@@ -947,12 +922,6 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
947
922
|
], [
|
|
948
923
|
void
|
|
949
924
|
], "nonpayable">;
|
|
950
|
-
updateManualSwapRewardToken: TypedContractMethod<[
|
|
951
|
-
_tokens: AddressLike[],
|
|
952
|
-
_status: boolean
|
|
953
|
-
], [
|
|
954
|
-
void
|
|
955
|
-
], "nonpayable">;
|
|
956
925
|
updateRepayFeePercentage: TypedContractMethod<[
|
|
957
926
|
_feePercentage: BigNumberish
|
|
958
927
|
], [
|
|
@@ -963,11 +932,6 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
963
932
|
], [
|
|
964
933
|
void
|
|
965
934
|
], "nonpayable">;
|
|
966
|
-
updateTreasuryFeePercentage: TypedContractMethod<[
|
|
967
|
-
_feePercentage: BigNumberish
|
|
968
|
-
], [
|
|
969
|
-
void
|
|
970
|
-
], "nonpayable">;
|
|
971
935
|
updateWhitelist: TypedContractMethod<[
|
|
972
936
|
_keeper: AddressLike,
|
|
973
937
|
_status: boolean
|
|
@@ -997,14 +961,6 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
997
961
|
}
|
|
998
962
|
], "view">;
|
|
999
963
|
veRAAC: TypedContractMethod<[], [string], "view">;
|
|
1000
|
-
verifyRewardTokenSync: TypedContractMethod<[
|
|
1001
|
-
_token: AddressLike
|
|
1002
|
-
], [
|
|
1003
|
-
[boolean, boolean] & {
|
|
1004
|
-
inLocker: boolean;
|
|
1005
|
-
inVeRAAC: boolean;
|
|
1006
|
-
}
|
|
1007
|
-
], "view">;
|
|
1008
964
|
voteGauge: TypedContractMethod<[
|
|
1009
965
|
_controller: AddressLike,
|
|
1010
966
|
_gauge: AddressLike,
|
|
@@ -1023,6 +979,7 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1023
979
|
_token: AddressLike,
|
|
1024
980
|
_gauge: AddressLike,
|
|
1025
981
|
_amount: BigNumberish,
|
|
982
|
+
_minOut: BigNumberish,
|
|
1026
983
|
_to: AddressLike
|
|
1027
984
|
], [
|
|
1028
985
|
void
|
|
@@ -1035,9 +992,8 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1035
992
|
getFunction(nameOrSignature: "FEE_PRECISION"): TypedContractMethod<[], [bigint], "view">;
|
|
1036
993
|
getFunction(nameOrSignature: "HARVEST_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
1037
994
|
getFunction(nameOrSignature: "ON_BEHALF_OF_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
995
|
+
getFunction(nameOrSignature: "PAUSER_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
1038
996
|
getFunction(nameOrSignature: "accRewardPerShare"): TypedContractMethod<[], [bigint], "view">;
|
|
1039
|
-
getFunction(nameOrSignature: "addRewardToken"): TypedContractMethod<[_token: AddressLike], [void], "nonpayable">;
|
|
1040
|
-
getFunction(nameOrSignature: "approvedTargets"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
1041
997
|
getFunction(nameOrSignature: "borrow"): TypedContractMethod<[
|
|
1042
998
|
_amount: BigNumberish,
|
|
1043
999
|
_depositMaturityVault: boolean
|
|
@@ -1068,6 +1024,8 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1068
1024
|
void
|
|
1069
1025
|
], "nonpayable">;
|
|
1070
1026
|
getFunction(nameOrSignature: "donate"): TypedContractMethod<[_amount: BigNumberish], [void], "nonpayable">;
|
|
1027
|
+
getFunction(nameOrSignature: "epochEndToLockAmount"): TypedContractMethod<[arg0: BigNumberish], [bigint], "view">;
|
|
1028
|
+
getFunction(nameOrSignature: "epochEnds"): TypedContractMethod<[arg0: BigNumberish], [bigint], "view">;
|
|
1071
1029
|
getFunction(nameOrSignature: "feeSharesBots"): TypedContractMethod<[], [bigint], "view">;
|
|
1072
1030
|
getFunction(nameOrSignature: "feeSharesClever"): TypedContractMethod<[], [bigint], "view">;
|
|
1073
1031
|
getFunction(nameOrSignature: "feeSharesTreasury"): TypedContractMethod<[], [bigint], "view">;
|
|
@@ -1134,18 +1092,19 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1134
1092
|
], "nonpayable">;
|
|
1135
1093
|
getFunction(nameOrSignature: "intermediateRewardToken"): TypedContractMethod<[], [string], "view">;
|
|
1136
1094
|
getFunction(nameOrSignature: "isKeeper"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
1137
|
-
getFunction(nameOrSignature: "lastInteractionBlock"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
1138
1095
|
getFunction(nameOrSignature: "leRAAC"): TypedContractMethod<[], [string], "view">;
|
|
1139
1096
|
getFunction(nameOrSignature: "lockDurationEpochs"): TypedContractMethod<[], [bigint], "view">;
|
|
1140
|
-
getFunction(nameOrSignature: "manualSwapRewardToken"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
1141
1097
|
getFunction(nameOrSignature: "maturityVault"): TypedContractMethod<[], [string], "view">;
|
|
1098
|
+
getFunction(nameOrSignature: "oldToNewEpochEnds"): TypedContractMethod<[arg0: BigNumberish], [bigint], "view">;
|
|
1142
1099
|
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
1143
|
-
getFunction(nameOrSignature: "
|
|
1100
|
+
getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1101
|
+
getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
|
|
1102
|
+
getFunction(nameOrSignature: "pendingCumulatedAmount"): TypedContractMethod<[], [bigint], "view">;
|
|
1144
1103
|
getFunction(nameOrSignature: "poolLockedUnderlying"): TypedContractMethod<[], [bigint], "view">;
|
|
1145
1104
|
getFunction(nameOrSignature: "processVaultExpiredLocks"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1105
|
+
getFunction(nameOrSignature: "processedEpochIndexes"): TypedContractMethod<[], [bigint], "view">;
|
|
1146
1106
|
getFunction(nameOrSignature: "raac"): TypedContractMethod<[], [string], "view">;
|
|
1147
1107
|
getFunction(nameOrSignature: "raacBotLocker"): TypedContractMethod<[], [string], "view">;
|
|
1148
|
-
getFunction(nameOrSignature: "removeRewardToken"): TypedContractMethod<[_token: AddressLike], [void], "nonpayable">;
|
|
1149
1108
|
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1150
1109
|
getFunction(nameOrSignature: "renounceRole"): TypedContractMethod<[
|
|
1151
1110
|
role: BytesLike,
|
|
@@ -1155,13 +1114,7 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1155
1114
|
], "nonpayable">;
|
|
1156
1115
|
getFunction(nameOrSignature: "repay"): TypedContractMethod<[_leRAACAmount: BigNumberish], [void], "nonpayable">;
|
|
1157
1116
|
getFunction(nameOrSignature: "repayFeePercentage"): TypedContractMethod<[], [bigint], "view">;
|
|
1158
|
-
getFunction(nameOrSignature: "requestUnlock"): TypedContractMethod<[
|
|
1159
|
-
getFunction(nameOrSignature: "rescueRewardToken"): TypedContractMethod<[
|
|
1160
|
-
_token: AddressLike,
|
|
1161
|
-
_amount: BigNumberish
|
|
1162
|
-
], [
|
|
1163
|
-
void
|
|
1164
|
-
], "nonpayable">;
|
|
1117
|
+
getFunction(nameOrSignature: "requestUnlock"): TypedContractMethod<[_numLocks: BigNumberish], [void], "nonpayable">;
|
|
1165
1118
|
getFunction(nameOrSignature: "reserveRate"): TypedContractMethod<[], [bigint], "view">;
|
|
1166
1119
|
getFunction(nameOrSignature: "revokeRole"): TypedContractMethod<[
|
|
1167
1120
|
role: BytesLike,
|
|
@@ -1169,28 +1122,22 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1169
1122
|
], [
|
|
1170
1123
|
void
|
|
1171
1124
|
], "nonpayable">;
|
|
1172
|
-
getFunction(nameOrSignature: "rewardTokens"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
1173
1125
|
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
1174
1126
|
getFunction(nameOrSignature: "totalDebtGlobal"): TypedContractMethod<[], [bigint], "view">;
|
|
1175
1127
|
getFunction(nameOrSignature: "totalLockedGlobal"): TypedContractMethod<[], [bigint], "view">;
|
|
1176
|
-
getFunction(nameOrSignature: "totalPendingUnlockGlobal"): TypedContractMethod<[], [bigint], "view">;
|
|
1177
1128
|
getFunction(nameOrSignature: "totalRaacInPool"): TypedContractMethod<[], [bigint], "view">;
|
|
1178
1129
|
getFunction(nameOrSignature: "totalUnlockedGlobal"): TypedContractMethod<[], [bigint], "view">;
|
|
1179
1130
|
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
1180
1131
|
getFunction(nameOrSignature: "treasury"): TypedContractMethod<[], [string], "view">;
|
|
1181
1132
|
getFunction(nameOrSignature: "treasuryFeePercentage"): TypedContractMethod<[], [bigint], "view">;
|
|
1182
|
-
getFunction(nameOrSignature: "
|
|
1183
|
-
account: AddressLike,
|
|
1184
|
-
_status: boolean
|
|
1185
|
-
], [
|
|
1186
|
-
void
|
|
1187
|
-
], "nonpayable">;
|
|
1133
|
+
getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1188
1134
|
getFunction(nameOrSignature: "updateBotLocker"): TypedContractMethod<[_locker: AddressLike], [void], "nonpayable">;
|
|
1189
1135
|
getFunction(nameOrSignature: "updateCleverFeeRecipient"): TypedContractMethod<[_recipient: AddressLike], [void], "nonpayable">;
|
|
1190
1136
|
getFunction(nameOrSignature: "updateFeeShares"): TypedContractMethod<[
|
|
1191
1137
|
_feeSharesBots: BigNumberish,
|
|
1192
1138
|
_feeSharesClever: BigNumberish,
|
|
1193
|
-
_feeSharesTreasury: BigNumberish
|
|
1139
|
+
_feeSharesTreasury: BigNumberish,
|
|
1140
|
+
_treasuryFeePercentage: BigNumberish
|
|
1194
1141
|
], [
|
|
1195
1142
|
void
|
|
1196
1143
|
], "nonpayable">;
|
|
@@ -1200,15 +1147,8 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1200
1147
|
], [
|
|
1201
1148
|
void
|
|
1202
1149
|
], "nonpayable">;
|
|
1203
|
-
getFunction(nameOrSignature: "updateManualSwapRewardToken"): TypedContractMethod<[
|
|
1204
|
-
_tokens: AddressLike[],
|
|
1205
|
-
_status: boolean
|
|
1206
|
-
], [
|
|
1207
|
-
void
|
|
1208
|
-
], "nonpayable">;
|
|
1209
1150
|
getFunction(nameOrSignature: "updateRepayFeePercentage"): TypedContractMethod<[_feePercentage: BigNumberish], [void], "nonpayable">;
|
|
1210
1151
|
getFunction(nameOrSignature: "updateTreasury"): TypedContractMethod<[_treasury: AddressLike], [void], "nonpayable">;
|
|
1211
|
-
getFunction(nameOrSignature: "updateTreasuryFeePercentage"): TypedContractMethod<[_feePercentage: BigNumberish], [void], "nonpayable">;
|
|
1212
1152
|
getFunction(nameOrSignature: "updateWhitelist"): TypedContractMethod<[
|
|
1213
1153
|
_keeper: AddressLike,
|
|
1214
1154
|
_status: boolean
|
|
@@ -1238,14 +1178,6 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1238
1178
|
}
|
|
1239
1179
|
], "view">;
|
|
1240
1180
|
getFunction(nameOrSignature: "veRAAC"): TypedContractMethod<[], [string], "view">;
|
|
1241
|
-
getFunction(nameOrSignature: "verifyRewardTokenSync"): TypedContractMethod<[
|
|
1242
|
-
_token: AddressLike
|
|
1243
|
-
], [
|
|
1244
|
-
[boolean, boolean] & {
|
|
1245
|
-
inLocker: boolean;
|
|
1246
|
-
inVeRAAC: boolean;
|
|
1247
|
-
}
|
|
1248
|
-
], "view">;
|
|
1249
1181
|
getFunction(nameOrSignature: "voteGauge"): TypedContractMethod<[
|
|
1250
1182
|
_controller: AddressLike,
|
|
1251
1183
|
_gauge: AddressLike,
|
|
@@ -1264,6 +1196,7 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1264
1196
|
_token: AddressLike,
|
|
1265
1197
|
_gauge: AddressLike,
|
|
1266
1198
|
_amount: BigNumberish,
|
|
1199
|
+
_minOut: BigNumberish,
|
|
1267
1200
|
_to: AddressLike
|
|
1268
1201
|
], [
|
|
1269
1202
|
void
|
|
@@ -1282,21 +1215,20 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1282
1215
|
getEvent(key: "Harvest"): TypedContractEvent<HarvestEvent.InputTuple, HarvestEvent.OutputTuple, HarvestEvent.OutputObject>;
|
|
1283
1216
|
getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
1284
1217
|
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
1218
|
+
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
1285
1219
|
getEvent(key: "ProcessUnlockableRAAC"): TypedContractEvent<ProcessUnlockableRAACEvent.InputTuple, ProcessUnlockableRAACEvent.OutputTuple, ProcessUnlockableRAACEvent.OutputObject>;
|
|
1286
1220
|
getEvent(key: "Repay"): TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
1287
1221
|
getEvent(key: "RewardClaimedFor"): TypedContractEvent<RewardClaimedForEvent.InputTuple, RewardClaimedForEvent.OutputTuple, RewardClaimedForEvent.OutputObject>;
|
|
1288
|
-
getEvent(key: "RewardTokenAdded"): TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
1289
|
-
getEvent(key: "RewardTokenRemoved"): TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
1290
1222
|
getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1291
1223
|
getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
1292
1224
|
getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
1293
1225
|
getEvent(key: "Unlock"): TypedContractEvent<UnlockEvent.InputTuple, UnlockEvent.OutputTuple, UnlockEvent.OutputObject>;
|
|
1226
|
+
getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
1294
1227
|
getEvent(key: "UpdateBotLocker"): TypedContractEvent<UpdateBotLockerEvent.InputTuple, UpdateBotLockerEvent.OutputTuple, UpdateBotLockerEvent.OutputObject>;
|
|
1295
1228
|
getEvent(key: "UpdateCleverFeeRecipient"): TypedContractEvent<UpdateCleverFeeRecipientEvent.InputTuple, UpdateCleverFeeRecipientEvent.OutputTuple, UpdateCleverFeeRecipientEvent.OutputObject>;
|
|
1296
1229
|
getEvent(key: "UpdateFeeShares"): TypedContractEvent<UpdateFeeSharesEvent.InputTuple, UpdateFeeSharesEvent.OutputTuple, UpdateFeeSharesEvent.OutputObject>;
|
|
1297
1230
|
getEvent(key: "UpdateHarvestBountyPercentage"): TypedContractEvent<UpdateHarvestBountyPercentageEvent.InputTuple, UpdateHarvestBountyPercentageEvent.OutputTuple, UpdateHarvestBountyPercentageEvent.OutputObject>;
|
|
1298
1231
|
getEvent(key: "UpdateIntermediateRewardToken"): TypedContractEvent<UpdateIntermediateRewardTokenEvent.InputTuple, UpdateIntermediateRewardTokenEvent.OutputTuple, UpdateIntermediateRewardTokenEvent.OutputObject>;
|
|
1299
|
-
getEvent(key: "UpdatePlatformFeePercentage"): TypedContractEvent<UpdatePlatformFeePercentageEvent.InputTuple, UpdatePlatformFeePercentageEvent.OutputTuple, UpdatePlatformFeePercentageEvent.OutputObject>;
|
|
1300
1232
|
getEvent(key: "UpdateRepayFeePercentage"): TypedContractEvent<UpdateRepayFeePercentageEvent.InputTuple, UpdateRepayFeePercentageEvent.OutputTuple, UpdateRepayFeePercentageEvent.OutputObject>;
|
|
1301
1233
|
getEvent(key: "UpdateTreasury"): TypedContractEvent<UpdateTreasuryEvent.InputTuple, UpdateTreasuryEvent.OutputTuple, UpdateTreasuryEvent.OutputObject>;
|
|
1302
1234
|
getEvent(key: "UpdateVeBoost"): TypedContractEvent<UpdateVeBoostEvent.InputTuple, UpdateVeBoostEvent.OutputTuple, UpdateVeBoostEvent.OutputObject>;
|
|
@@ -1331,36 +1263,34 @@ export interface RAACLiquidLocker extends BaseContract {
|
|
|
1331
1263
|
Initialized: TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
1332
1264
|
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
1333
1265
|
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
1266
|
+
"Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
1267
|
+
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
1334
1268
|
"ProcessUnlockableRAAC(uint256,uint256,uint256)": TypedContractEvent<ProcessUnlockableRAACEvent.InputTuple, ProcessUnlockableRAACEvent.OutputTuple, ProcessUnlockableRAACEvent.OutputObject>;
|
|
1335
1269
|
ProcessUnlockableRAAC: TypedContractEvent<ProcessUnlockableRAACEvent.InputTuple, ProcessUnlockableRAACEvent.OutputTuple, ProcessUnlockableRAACEvent.OutputObject>;
|
|
1336
1270
|
"Repay(address,uint256)": TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
1337
1271
|
Repay: TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
1338
1272
|
"RewardClaimedFor(address,address,address,uint256)": TypedContractEvent<RewardClaimedForEvent.InputTuple, RewardClaimedForEvent.OutputTuple, RewardClaimedForEvent.OutputObject>;
|
|
1339
1273
|
RewardClaimedFor: TypedContractEvent<RewardClaimedForEvent.InputTuple, RewardClaimedForEvent.OutputTuple, RewardClaimedForEvent.OutputObject>;
|
|
1340
|
-
"RewardTokenAdded(address)": TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
1341
|
-
RewardTokenAdded: TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
1342
|
-
"RewardTokenRemoved(address)": TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
1343
|
-
RewardTokenRemoved: TypedContractEvent<RewardTokenRemovedEvent.InputTuple, RewardTokenRemovedEvent.OutputTuple, RewardTokenRemovedEvent.OutputObject>;
|
|
1344
1274
|
"RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1345
1275
|
RoleAdminChanged: TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1346
1276
|
"RoleGranted(bytes32,address,address)": TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
1347
1277
|
RoleGranted: TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
1348
1278
|
"RoleRevoked(bytes32,address,address)": TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
1349
1279
|
RoleRevoked: TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
1350
|
-
"Unlock(address,uint256)": TypedContractEvent<UnlockEvent.InputTuple, UnlockEvent.OutputTuple, UnlockEvent.OutputObject>;
|
|
1280
|
+
"Unlock(address,uint256,uint256)": TypedContractEvent<UnlockEvent.InputTuple, UnlockEvent.OutputTuple, UnlockEvent.OutputObject>;
|
|
1351
1281
|
Unlock: TypedContractEvent<UnlockEvent.InputTuple, UnlockEvent.OutputTuple, UnlockEvent.OutputObject>;
|
|
1282
|
+
"Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
1283
|
+
Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
1352
1284
|
"UpdateBotLocker(address)": TypedContractEvent<UpdateBotLockerEvent.InputTuple, UpdateBotLockerEvent.OutputTuple, UpdateBotLockerEvent.OutputObject>;
|
|
1353
1285
|
UpdateBotLocker: TypedContractEvent<UpdateBotLockerEvent.InputTuple, UpdateBotLockerEvent.OutputTuple, UpdateBotLockerEvent.OutputObject>;
|
|
1354
1286
|
"UpdateCleverFeeRecipient(address)": TypedContractEvent<UpdateCleverFeeRecipientEvent.InputTuple, UpdateCleverFeeRecipientEvent.OutputTuple, UpdateCleverFeeRecipientEvent.OutputObject>;
|
|
1355
1287
|
UpdateCleverFeeRecipient: TypedContractEvent<UpdateCleverFeeRecipientEvent.InputTuple, UpdateCleverFeeRecipientEvent.OutputTuple, UpdateCleverFeeRecipientEvent.OutputObject>;
|
|
1356
|
-
"UpdateFeeShares(uint256,uint256,uint256)": TypedContractEvent<UpdateFeeSharesEvent.InputTuple, UpdateFeeSharesEvent.OutputTuple, UpdateFeeSharesEvent.OutputObject>;
|
|
1288
|
+
"UpdateFeeShares(uint256,uint256,uint256,uint256)": TypedContractEvent<UpdateFeeSharesEvent.InputTuple, UpdateFeeSharesEvent.OutputTuple, UpdateFeeSharesEvent.OutputObject>;
|
|
1357
1289
|
UpdateFeeShares: TypedContractEvent<UpdateFeeSharesEvent.InputTuple, UpdateFeeSharesEvent.OutputTuple, UpdateFeeSharesEvent.OutputObject>;
|
|
1358
1290
|
"UpdateHarvestBountyPercentage(uint256)": TypedContractEvent<UpdateHarvestBountyPercentageEvent.InputTuple, UpdateHarvestBountyPercentageEvent.OutputTuple, UpdateHarvestBountyPercentageEvent.OutputObject>;
|
|
1359
1291
|
UpdateHarvestBountyPercentage: TypedContractEvent<UpdateHarvestBountyPercentageEvent.InputTuple, UpdateHarvestBountyPercentageEvent.OutputTuple, UpdateHarvestBountyPercentageEvent.OutputObject>;
|
|
1360
1292
|
"UpdateIntermediateRewardToken(address)": TypedContractEvent<UpdateIntermediateRewardTokenEvent.InputTuple, UpdateIntermediateRewardTokenEvent.OutputTuple, UpdateIntermediateRewardTokenEvent.OutputObject>;
|
|
1361
1293
|
UpdateIntermediateRewardToken: TypedContractEvent<UpdateIntermediateRewardTokenEvent.InputTuple, UpdateIntermediateRewardTokenEvent.OutputTuple, UpdateIntermediateRewardTokenEvent.OutputObject>;
|
|
1362
|
-
"UpdatePlatformFeePercentage(uint256)": TypedContractEvent<UpdatePlatformFeePercentageEvent.InputTuple, UpdatePlatformFeePercentageEvent.OutputTuple, UpdatePlatformFeePercentageEvent.OutputObject>;
|
|
1363
|
-
UpdatePlatformFeePercentage: TypedContractEvent<UpdatePlatformFeePercentageEvent.InputTuple, UpdatePlatformFeePercentageEvent.OutputTuple, UpdatePlatformFeePercentageEvent.OutputObject>;
|
|
1364
1294
|
"UpdateRepayFeePercentage(uint256)": TypedContractEvent<UpdateRepayFeePercentageEvent.InputTuple, UpdateRepayFeePercentageEvent.OutputTuple, UpdateRepayFeePercentageEvent.OutputObject>;
|
|
1365
1295
|
UpdateRepayFeePercentage: TypedContractEvent<UpdateRepayFeePercentageEvent.InputTuple, UpdateRepayFeePercentageEvent.OutputTuple, UpdateRepayFeePercentageEvent.OutputObject>;
|
|
1366
1296
|
"UpdateTreasury(address)": TypedContractEvent<UpdateTreasuryEvent.InputTuple, UpdateTreasuryEvent.OutputTuple, UpdateTreasuryEvent.OutputObject>;
|