@raac/rpc 1.1.0-beta.63 → 1.1.0-beta.65
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 +8 -8
- package/dist/oracles/houses/request.js +1 -1
- package/dist/oracles/prime-rate/request.js +1 -1
- package/dist/pools/rwaVault/depositToRWAVault.js +3 -10
- package/dist/pools/rwaVault/getRWAVaultInfo.js +1 -9
- package/dist/pools/rwaVault/previewDeposit.js +16 -0
- package/dist/pools/rwaVault/previewWithdraw.js +16 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +3 -4
- package/dist/scripts/index.js +1 -1
- package/dist/types/RPCLibrary.d.ts +4 -4
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +2 -2
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +0 -4
- package/dist/types/pools/rwaVault/previewDeposit.d.ts +4 -0
- package/dist/types/pools/rwaVault/previewWithdraw.d.ts +4 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +3 -2
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/{typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts → @openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.d.ts} +4 -4
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +65 -10
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +2 -2
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +316 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts} +33 -11
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts} +9 -9
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → contracts/core/pools/LendingPool}/ERC721AssetAdapter.d.ts +20 -2
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +86 -49
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +69 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +69 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +73 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +22 -16
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +58 -44
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +17 -13
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +85 -87
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +9 -19
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +7 -3
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +76 -2
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol → contracts/core/vaults}/ERC721VaultAdapter.d.ts +24 -2
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts → contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts} +79 -35
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +270 -63
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +2 -4
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts → contracts/interfaces/core/collectors/IDistributionTarget.d.ts} +13 -5
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +53 -2
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → contracts/interfaces/core/oracles/IERC721PriceOracle.d.ts} +6 -6
- package/dist/types/typechain-types/{typechain-types/contracts/interfaces/IHousePrices.d.ts → contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts} +12 -12
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer.d.ts +71 -0
- package/dist/types/typechain-types/{typechain-types/contracts/interfaces/core/oracles → contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices.d.ts +20 -28
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +4 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +66 -4
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +52 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +34 -24
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +5 -19
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +7 -3
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +38 -2
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +258 -23
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +9 -1
- package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts → contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts} +9 -13
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA.d.ts +59 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts → contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool.d.ts} +138 -31
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +9 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +66 -4
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +5 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts → factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +94 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +6 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
- 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 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__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/LLamaTemple__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +124 -23
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts} +118 -116
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle__factory.d.ts} +22 -18
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts} +6 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +199 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +149 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +1 -1
- 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 +1 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → factories/contracts/core/pools/LendingPool}/ERC721AssetAdapter__factory.d.ts +30 -4
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +62 -25
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +94 -41
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +62 -25
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +73 -30
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +27 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +17 -3
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +23 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +78 -64
- 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 +96 -78
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +26 -18
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +21 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +88 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +25 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +22 -4
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +417 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +247 -68
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +2 -2
- package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts → factories/contracts/interfaces/core/collectors/IDistributionTarget__factory.d.ts} +13 -17
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/interfaces/core/oracles/IERC721PriceOracle__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer__factory.d.ts +59 -0
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/oracles → factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices__factory.d.ts +28 -14
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +3 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +26 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +67 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +45 -23
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +5 -15
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +38 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +210 -1
- 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/math/TimeWeightedAverage__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/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 +11 -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/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts} +7 -7
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +98 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +199 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +149 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +958 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +68 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +27 -11
- 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/pools/index.d.ts +1 -0
- 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 +15 -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 +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__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/LockManagerMock__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/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +9 -5
- 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/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 +28 -14
- package/package.json +1 -1
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +0 -23
- package/dist/pools/lendingPool/requestWithdraw.js +0 -28
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +0 -9
- package/dist/types/pools/lendingPool/requestWithdraw.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +0 -67
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +0 -205
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +0 -103
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +0 -143
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +0 -529
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +0 -109
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +0 -192
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +0 -731
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +0 -159
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +0 -54
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +0 -77
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +0 -231
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +0 -318
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +0 -141
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +0 -236
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +0 -318
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -141
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +0 -61
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +0 -211
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -199
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +0 -233
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +0 -221
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -211
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -12
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +0 -36
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/common.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +0 -909
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +0 -127
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/Treasury.d.ts +0 -298
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +0 -1367
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +0 -1103
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +0 -641
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +0 -1371
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +0 -1375
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +0 -586
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +0 -477
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/index.d.ts +0 -18
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +0 -721
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +0 -808
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +0 -509
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +0 -183
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +0 -310
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +0 -221
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +0 -241
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +0 -2112
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +0 -432
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +0 -530
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +0 -485
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +0 -186
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +0 -810
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +0 -168
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +0 -231
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +0 -284
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DEToken.d.ts +0 -424
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DebtToken.d.ts +0 -326
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/IndexToken.d.ts +0 -340
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/LPToken.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +0 -897
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACToken.d.ts +0 -401
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RToken.d.ts +0 -543
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +0 -1077
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +0 -176
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +0 -174
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +0 -47
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RWAVault.d.ts +0 -560
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/index.d.ts +0 -10
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +0 -63
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IERC20.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +0 -240
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +0 -75
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IUSDC.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +0 -537
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +0 -120
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +0 -623
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +0 -523
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +0 -351
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +0 -551
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +0 -309
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/index.d.ts +0 -16
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +0 -332
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +0 -302
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +0 -345
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +0 -238
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +0 -185
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +0 -152
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +0 -51
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +0 -1163
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +0 -102
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +0 -51
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +0 -443
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +0 -270
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +0 -279
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +0 -187
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +0 -630
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +0 -346
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +0 -385
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +0 -197
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +0 -621
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +0 -265
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +0 -87
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +0 -176
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +0 -357
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/index.d.ts +0 -11
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +0 -137
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +0 -216
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/LockManager.d.ts +0 -94
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +0 -93
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/libraries/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +0 -80
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +0 -124
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +0 -134
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +0 -225
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +0 -350
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +0 -56
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +0 -76
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/index.d.ts +0 -18
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +0 -394
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +0 -151
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +0 -41
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +0 -43
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +0 -169
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +0 -731
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +0 -171
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +0 -237
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +0 -243
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/index.d.ts +0 -10
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +0 -121
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +0 -152
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +0 -1183
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +0 -47
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +0 -212
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +0 -234
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +0 -229
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +0 -292
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +0 -216
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +0 -187
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +0 -186
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +0 -290
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +0 -204
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +0 -173
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +0 -160
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +0 -41
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +0 -229
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +0 -185
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/zeno/Auction.d.ts +0 -275
- package/dist/types/typechain-types/typechain-types/contracts/zeno/AuctionFactory.d.ts +0 -209
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENO.d.ts +0 -293
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENOFactory.d.ts +0 -151
- package/dist/types/typechain-types/typechain-types/contracts/zeno/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +0 -268
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +0 -48
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +0 -90
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +0 -86
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +0 -93
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +0 -191
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +0 -663
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +0 -139
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +0 -194
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +0 -27
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +0 -32
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +0 -944
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +0 -181
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +0 -157
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +0 -95
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +0 -64
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +0 -289
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +0 -472
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +0 -46
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +0 -241
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +0 -402
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +0 -632
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -177
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +0 -46
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +0 -337
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +0 -395
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +0 -269
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -261
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +0 -11
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +0 -34
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +0 -34
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +0 -58
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +0 -62
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +0 -82
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +0 -63
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +0 -393
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +0 -1329
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +0 -223
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +0 -389
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +0 -389
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +0 -437
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -1815
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +0 -1448
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +0 -896
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +0 -1856
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +0 -1866
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +0 -950
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +0 -797
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +0 -1052
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +0 -1103
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +0 -717
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +0 -245
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +0 -436
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +0 -334
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +0 -336
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +0 -74
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +0 -52
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +0 -403
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +0 -586
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +0 -2699
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +0 -744
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +0 -674
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +0 -303
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +0 -275
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +0 -277
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +0 -1166
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +0 -320
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +0 -276
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +0 -741
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +0 -576
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +0 -401
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +0 -1358
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +0 -652
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +0 -901
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +0 -465
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +0 -1544
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +0 -285
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +0 -311
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -307
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +0 -350
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +0 -861
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +0 -272
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +0 -77
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +0 -43
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +0 -718
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +0 -775
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +0 -623
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +0 -425
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +0 -852
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +0 -492
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -397
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +0 -286
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +0 -143
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +0 -233
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +0 -191
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -1419
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +0 -61
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +0 -56
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +0 -567
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +0 -336
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +0 -372
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +0 -764
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -436
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +0 -486
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +0 -223
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +0 -761
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +0 -329
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +0 -137
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -115
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +0 -258
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +0 -503
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +0 -173
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +0 -288
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +0 -54
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +0 -120
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +0 -115
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +0 -97
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +0 -135
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +0 -165
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +0 -353
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +0 -661
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +0 -36
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +0 -100
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +0 -615
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +0 -168
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +0 -66
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +0 -62
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -242
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +0 -944
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +0 -184
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +0 -352
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +0 -354
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +0 -1471
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +0 -195
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +0 -795
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +0 -84
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +0 -109
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +0 -64
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +0 -417
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +0 -379
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +0 -286
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +0 -388
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +0 -451
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +0 -393
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +0 -324
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +0 -278
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +0 -335
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +0 -525
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +0 -40
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +0 -282
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +0 -206
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +0 -208
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +0 -247
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +0 -154
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +0 -287
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +0 -80
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +0 -287
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +0 -452
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +0 -235
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +0 -564
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/index.d.ts +0 -437
package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts
DELETED
|
@@ -1,1367 +0,0 @@
|
|
|
1
|
-
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
-
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
|
-
export declare namespace TimeWeightedAverage {
|
|
4
|
-
type PeriodStruct = {
|
|
5
|
-
startTime: BigNumberish;
|
|
6
|
-
endTime: BigNumberish;
|
|
7
|
-
lastUpdateTime: BigNumberish;
|
|
8
|
-
value: BigNumberish;
|
|
9
|
-
weightedSum: BigNumberish;
|
|
10
|
-
totalDuration: BigNumberish;
|
|
11
|
-
weight: BigNumberish;
|
|
12
|
-
};
|
|
13
|
-
type PeriodStructOutput = [
|
|
14
|
-
startTime: bigint,
|
|
15
|
-
endTime: bigint,
|
|
16
|
-
lastUpdateTime: bigint,
|
|
17
|
-
value: bigint,
|
|
18
|
-
weightedSum: bigint,
|
|
19
|
-
totalDuration: bigint,
|
|
20
|
-
weight: bigint
|
|
21
|
-
] & {
|
|
22
|
-
startTime: bigint;
|
|
23
|
-
endTime: bigint;
|
|
24
|
-
lastUpdateTime: bigint;
|
|
25
|
-
value: bigint;
|
|
26
|
-
weightedSum: bigint;
|
|
27
|
-
totalDuration: bigint;
|
|
28
|
-
weight: bigint;
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
export declare namespace IBaseGauge {
|
|
32
|
-
type PeriodStateStruct = {
|
|
33
|
-
votingPeriod: TimeWeightedAverage.PeriodStruct;
|
|
34
|
-
emission: BigNumberish;
|
|
35
|
-
distributed: BigNumberish;
|
|
36
|
-
periodStartTime: BigNumberish;
|
|
37
|
-
};
|
|
38
|
-
type PeriodStateStructOutput = [
|
|
39
|
-
votingPeriod: TimeWeightedAverage.PeriodStructOutput,
|
|
40
|
-
emission: bigint,
|
|
41
|
-
distributed: bigint,
|
|
42
|
-
periodStartTime: bigint
|
|
43
|
-
] & {
|
|
44
|
-
votingPeriod: TimeWeightedAverage.PeriodStructOutput;
|
|
45
|
-
emission: bigint;
|
|
46
|
-
distributed: bigint;
|
|
47
|
-
periodStartTime: bigint;
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
export interface BaseGaugeInterface extends Interface {
|
|
51
|
-
getFunction(nameOrSignature: "CONTROLLER_ROLE" | "DEFAULT_ADMIN_ROLE" | "EMERGENCY_ADMIN" | "FEE_ADMIN" | "GAUGE_ADMIN" | "MAX_CHECKPOINTS" | "MAX_VOTE_WEIGHT" | "WEEK" | "WEIGHT_PRECISION" | "balanceOf" | "boostAmplificationEnabled" | "claimRewardToken" | "claimRewards" | "claimedRewards" | "controller" | "distributionCap" | "distributors" | "distributorsList" | "earned" | "earnedRewards" | "emergencyWithdraw" | "gaugeController" | "getDecimalAdjustment" | "getDistributorApproval" | "getDistributors" | "getNextPeriodTime" | "getPeriodState" | "getRewardTokens" | "getRoleAdmin" | "getTokenEmissionState" | "getUserWeight" | "getWorkingBalance" | "grantRole" | "hasRole" | "historicalCheckpointCount" | "historicalCheckpoints" | "initializeRewardToken" | "lastUpdateTime" | "manageDistributor" | "notifyRewardAmount" | "paused" | "pendingRewards" | "periodDuration" | "periodFinish" | "periodState" | "renounceRole" | "revokeRole" | "rewardData" | "rewardPerTokenStored" | "rewardRate" | "rewardToken" | "rewardTokenDecimals" | "rewardTokens" | "rewards" | "setBoostAmplificationEnabled" | "setDistributionCap" | "setDistributorApproval" | "setEmergencyPaused" | "setInitialWeight" | "setMaxEmission" | "setPeriodDuration" | "setTokenBoostRatio" | "setTokenEmissionCap" | "stake" | "stakingToken" | "supportsInterface" | "syncRewardData" | "syncRewardTokens" | "tokenBoostRatios" | "totalSupply" | "totalVotes" | "updatePeriod" | "updateUserRewards" | "userCheckpointCounts" | "userCheckpoints" | "userClaimedRewards" | "userRewardData" | "userRewardPerTokenPaid" | "userVotes" | "voteDirection" | "weightPeriod" | "withdraw" | "workingBalances" | "workingSupply"): FunctionFragment;
|
|
52
|
-
getEvent(nameOrSignatureOrTopic: "BoostAmplificationToggled" | "Checkpoint" | "DirectionVoted" | "DistributionCapUpdated" | "DistributorApprovalUpdated" | "DistributorUpdated" | "EmergencyPauseUpdated" | "EmissionCapUpdated" | "EmissionUpdated" | "Paused" | "PeriodCreated" | "PeriodDurationUpdated" | "PeriodUpdated" | "RewardNotified" | "RewardPaid" | "RewardTokenAdded" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Staked" | "TokenBoostRatioUpdated" | "TokenEmissionCapUpdated" | "Unpaused" | "UserRewardDataUpdated" | "UserRewardsUpdated" | "Withdrawn" | "WorkingBalanceUpdated"): EventFragment;
|
|
53
|
-
encodeFunctionData(functionFragment: "CONTROLLER_ROLE", values?: undefined): string;
|
|
54
|
-
encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
|
|
55
|
-
encodeFunctionData(functionFragment: "EMERGENCY_ADMIN", values?: undefined): string;
|
|
56
|
-
encodeFunctionData(functionFragment: "FEE_ADMIN", values?: undefined): string;
|
|
57
|
-
encodeFunctionData(functionFragment: "GAUGE_ADMIN", values?: undefined): string;
|
|
58
|
-
encodeFunctionData(functionFragment: "MAX_CHECKPOINTS", values?: undefined): string;
|
|
59
|
-
encodeFunctionData(functionFragment: "MAX_VOTE_WEIGHT", values?: undefined): string;
|
|
60
|
-
encodeFunctionData(functionFragment: "WEEK", values?: undefined): string;
|
|
61
|
-
encodeFunctionData(functionFragment: "WEIGHT_PRECISION", values?: undefined): string;
|
|
62
|
-
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
63
|
-
encodeFunctionData(functionFragment: "boostAmplificationEnabled", values?: undefined): string;
|
|
64
|
-
encodeFunctionData(functionFragment: "claimRewardToken", values: [AddressLike]): string;
|
|
65
|
-
encodeFunctionData(functionFragment: "claimRewards", values?: undefined): string;
|
|
66
|
-
encodeFunctionData(functionFragment: "claimedRewards", values: [AddressLike, AddressLike]): string;
|
|
67
|
-
encodeFunctionData(functionFragment: "controller", values?: undefined): string;
|
|
68
|
-
encodeFunctionData(functionFragment: "distributionCap", values?: undefined): string;
|
|
69
|
-
encodeFunctionData(functionFragment: "distributors", values: [AddressLike]): string;
|
|
70
|
-
encodeFunctionData(functionFragment: "distributorsList", values: [BigNumberish]): string;
|
|
71
|
-
encodeFunctionData(functionFragment: "earned", values: [AddressLike, AddressLike]): string;
|
|
72
|
-
encodeFunctionData(functionFragment: "earnedRewards", values: [AddressLike, AddressLike]): string;
|
|
73
|
-
encodeFunctionData(functionFragment: "emergencyWithdraw", values: [AddressLike, BigNumberish]): string;
|
|
74
|
-
encodeFunctionData(functionFragment: "gaugeController", values?: undefined): string;
|
|
75
|
-
encodeFunctionData(functionFragment: "getDecimalAdjustment", values: [AddressLike]): string;
|
|
76
|
-
encodeFunctionData(functionFragment: "getDistributorApproval", values: [AddressLike]): string;
|
|
77
|
-
encodeFunctionData(functionFragment: "getDistributors", values?: undefined): string;
|
|
78
|
-
encodeFunctionData(functionFragment: "getNextPeriodTime", values?: undefined): string;
|
|
79
|
-
encodeFunctionData(functionFragment: "getPeriodState", values?: undefined): string;
|
|
80
|
-
encodeFunctionData(functionFragment: "getRewardTokens", values?: undefined): string;
|
|
81
|
-
encodeFunctionData(functionFragment: "getRoleAdmin", values: [BytesLike]): string;
|
|
82
|
-
encodeFunctionData(functionFragment: "getTokenEmissionState", values: [AddressLike]): string;
|
|
83
|
-
encodeFunctionData(functionFragment: "getUserWeight", values: [AddressLike]): string;
|
|
84
|
-
encodeFunctionData(functionFragment: "getWorkingBalance", values: [AddressLike]): string;
|
|
85
|
-
encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
|
|
86
|
-
encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
|
|
87
|
-
encodeFunctionData(functionFragment: "historicalCheckpointCount", values?: undefined): string;
|
|
88
|
-
encodeFunctionData(functionFragment: "historicalCheckpoints", values: [BigNumberish]): string;
|
|
89
|
-
encodeFunctionData(functionFragment: "initializeRewardToken", values: [AddressLike, AddressLike]): string;
|
|
90
|
-
encodeFunctionData(functionFragment: "lastUpdateTime", values?: undefined): string;
|
|
91
|
-
encodeFunctionData(functionFragment: "manageDistributor", values: [AddressLike, boolean]): string;
|
|
92
|
-
encodeFunctionData(functionFragment: "notifyRewardAmount", values: [AddressLike, BigNumberish]): string;
|
|
93
|
-
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
94
|
-
encodeFunctionData(functionFragment: "pendingRewards", values: [AddressLike, AddressLike]): string;
|
|
95
|
-
encodeFunctionData(functionFragment: "periodDuration", values?: undefined): string;
|
|
96
|
-
encodeFunctionData(functionFragment: "periodFinish", values?: undefined): string;
|
|
97
|
-
encodeFunctionData(functionFragment: "periodState", values?: undefined): string;
|
|
98
|
-
encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
|
|
99
|
-
encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
|
|
100
|
-
encodeFunctionData(functionFragment: "rewardData", values: [AddressLike]): string;
|
|
101
|
-
encodeFunctionData(functionFragment: "rewardPerTokenStored", values?: undefined): string;
|
|
102
|
-
encodeFunctionData(functionFragment: "rewardRate", values?: undefined): string;
|
|
103
|
-
encodeFunctionData(functionFragment: "rewardToken", values?: undefined): string;
|
|
104
|
-
encodeFunctionData(functionFragment: "rewardTokenDecimals", values: [AddressLike]): string;
|
|
105
|
-
encodeFunctionData(functionFragment: "rewardTokens", values: [BigNumberish]): string;
|
|
106
|
-
encodeFunctionData(functionFragment: "rewards", values: [AddressLike, AddressLike]): string;
|
|
107
|
-
encodeFunctionData(functionFragment: "setBoostAmplificationEnabled", values: [boolean]): string;
|
|
108
|
-
encodeFunctionData(functionFragment: "setDistributionCap", values: [BigNumberish]): string;
|
|
109
|
-
encodeFunctionData(functionFragment: "setDistributorApproval", values: [AddressLike, boolean]): string;
|
|
110
|
-
encodeFunctionData(functionFragment: "setEmergencyPaused", values: [boolean]): string;
|
|
111
|
-
encodeFunctionData(functionFragment: "setInitialWeight", values: [BigNumberish]): string;
|
|
112
|
-
encodeFunctionData(functionFragment: "setMaxEmission", values: [BigNumberish]): string;
|
|
113
|
-
encodeFunctionData(functionFragment: "setPeriodDuration", values: [BigNumberish]): string;
|
|
114
|
-
encodeFunctionData(functionFragment: "setTokenBoostRatio", values: [AddressLike, BigNumberish]): string;
|
|
115
|
-
encodeFunctionData(functionFragment: "setTokenEmissionCap", values: [AddressLike, BigNumberish]): string;
|
|
116
|
-
encodeFunctionData(functionFragment: "stake", values: [BigNumberish]): string;
|
|
117
|
-
encodeFunctionData(functionFragment: "stakingToken", values?: undefined): string;
|
|
118
|
-
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
119
|
-
encodeFunctionData(functionFragment: "syncRewardData", values: [AddressLike]): string;
|
|
120
|
-
encodeFunctionData(functionFragment: "syncRewardTokens", values?: undefined): string;
|
|
121
|
-
encodeFunctionData(functionFragment: "tokenBoostRatios", values: [AddressLike]): string;
|
|
122
|
-
encodeFunctionData(functionFragment: "totalSupply", values?: undefined): string;
|
|
123
|
-
encodeFunctionData(functionFragment: "totalVotes", values?: undefined): string;
|
|
124
|
-
encodeFunctionData(functionFragment: "updatePeriod", values?: undefined): string;
|
|
125
|
-
encodeFunctionData(functionFragment: "updateUserRewards", values?: undefined): string;
|
|
126
|
-
encodeFunctionData(functionFragment: "userCheckpointCounts", values: [AddressLike]): string;
|
|
127
|
-
encodeFunctionData(functionFragment: "userCheckpoints", values: [AddressLike, BigNumberish]): string;
|
|
128
|
-
encodeFunctionData(functionFragment: "userClaimedRewards", values: [AddressLike, AddressLike]): string;
|
|
129
|
-
encodeFunctionData(functionFragment: "userRewardData", values: [AddressLike, AddressLike]): string;
|
|
130
|
-
encodeFunctionData(functionFragment: "userRewardPerTokenPaid", values: [AddressLike, AddressLike]): string;
|
|
131
|
-
encodeFunctionData(functionFragment: "userVotes", values: [AddressLike]): string;
|
|
132
|
-
encodeFunctionData(functionFragment: "voteDirection", values: [BigNumberish]): string;
|
|
133
|
-
encodeFunctionData(functionFragment: "weightPeriod", values?: undefined): string;
|
|
134
|
-
encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string;
|
|
135
|
-
encodeFunctionData(functionFragment: "workingBalances", values: [AddressLike]): string;
|
|
136
|
-
encodeFunctionData(functionFragment: "workingSupply", values?: undefined): string;
|
|
137
|
-
decodeFunctionResult(functionFragment: "CONTROLLER_ROLE", data: BytesLike): Result;
|
|
138
|
-
decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
|
|
139
|
-
decodeFunctionResult(functionFragment: "EMERGENCY_ADMIN", data: BytesLike): Result;
|
|
140
|
-
decodeFunctionResult(functionFragment: "FEE_ADMIN", data: BytesLike): Result;
|
|
141
|
-
decodeFunctionResult(functionFragment: "GAUGE_ADMIN", data: BytesLike): Result;
|
|
142
|
-
decodeFunctionResult(functionFragment: "MAX_CHECKPOINTS", data: BytesLike): Result;
|
|
143
|
-
decodeFunctionResult(functionFragment: "MAX_VOTE_WEIGHT", data: BytesLike): Result;
|
|
144
|
-
decodeFunctionResult(functionFragment: "WEEK", data: BytesLike): Result;
|
|
145
|
-
decodeFunctionResult(functionFragment: "WEIGHT_PRECISION", data: BytesLike): Result;
|
|
146
|
-
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
147
|
-
decodeFunctionResult(functionFragment: "boostAmplificationEnabled", data: BytesLike): Result;
|
|
148
|
-
decodeFunctionResult(functionFragment: "claimRewardToken", data: BytesLike): Result;
|
|
149
|
-
decodeFunctionResult(functionFragment: "claimRewards", data: BytesLike): Result;
|
|
150
|
-
decodeFunctionResult(functionFragment: "claimedRewards", data: BytesLike): Result;
|
|
151
|
-
decodeFunctionResult(functionFragment: "controller", data: BytesLike): Result;
|
|
152
|
-
decodeFunctionResult(functionFragment: "distributionCap", data: BytesLike): Result;
|
|
153
|
-
decodeFunctionResult(functionFragment: "distributors", data: BytesLike): Result;
|
|
154
|
-
decodeFunctionResult(functionFragment: "distributorsList", data: BytesLike): Result;
|
|
155
|
-
decodeFunctionResult(functionFragment: "earned", data: BytesLike): Result;
|
|
156
|
-
decodeFunctionResult(functionFragment: "earnedRewards", data: BytesLike): Result;
|
|
157
|
-
decodeFunctionResult(functionFragment: "emergencyWithdraw", data: BytesLike): Result;
|
|
158
|
-
decodeFunctionResult(functionFragment: "gaugeController", data: BytesLike): Result;
|
|
159
|
-
decodeFunctionResult(functionFragment: "getDecimalAdjustment", data: BytesLike): Result;
|
|
160
|
-
decodeFunctionResult(functionFragment: "getDistributorApproval", data: BytesLike): Result;
|
|
161
|
-
decodeFunctionResult(functionFragment: "getDistributors", data: BytesLike): Result;
|
|
162
|
-
decodeFunctionResult(functionFragment: "getNextPeriodTime", data: BytesLike): Result;
|
|
163
|
-
decodeFunctionResult(functionFragment: "getPeriodState", data: BytesLike): Result;
|
|
164
|
-
decodeFunctionResult(functionFragment: "getRewardTokens", data: BytesLike): Result;
|
|
165
|
-
decodeFunctionResult(functionFragment: "getRoleAdmin", data: BytesLike): Result;
|
|
166
|
-
decodeFunctionResult(functionFragment: "getTokenEmissionState", data: BytesLike): Result;
|
|
167
|
-
decodeFunctionResult(functionFragment: "getUserWeight", data: BytesLike): Result;
|
|
168
|
-
decodeFunctionResult(functionFragment: "getWorkingBalance", data: BytesLike): Result;
|
|
169
|
-
decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
|
|
170
|
-
decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
|
|
171
|
-
decodeFunctionResult(functionFragment: "historicalCheckpointCount", data: BytesLike): Result;
|
|
172
|
-
decodeFunctionResult(functionFragment: "historicalCheckpoints", data: BytesLike): Result;
|
|
173
|
-
decodeFunctionResult(functionFragment: "initializeRewardToken", data: BytesLike): Result;
|
|
174
|
-
decodeFunctionResult(functionFragment: "lastUpdateTime", data: BytesLike): Result;
|
|
175
|
-
decodeFunctionResult(functionFragment: "manageDistributor", data: BytesLike): Result;
|
|
176
|
-
decodeFunctionResult(functionFragment: "notifyRewardAmount", data: BytesLike): Result;
|
|
177
|
-
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
178
|
-
decodeFunctionResult(functionFragment: "pendingRewards", data: BytesLike): Result;
|
|
179
|
-
decodeFunctionResult(functionFragment: "periodDuration", data: BytesLike): Result;
|
|
180
|
-
decodeFunctionResult(functionFragment: "periodFinish", data: BytesLike): Result;
|
|
181
|
-
decodeFunctionResult(functionFragment: "periodState", data: BytesLike): Result;
|
|
182
|
-
decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
|
|
183
|
-
decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
|
|
184
|
-
decodeFunctionResult(functionFragment: "rewardData", data: BytesLike): Result;
|
|
185
|
-
decodeFunctionResult(functionFragment: "rewardPerTokenStored", data: BytesLike): Result;
|
|
186
|
-
decodeFunctionResult(functionFragment: "rewardRate", data: BytesLike): Result;
|
|
187
|
-
decodeFunctionResult(functionFragment: "rewardToken", data: BytesLike): Result;
|
|
188
|
-
decodeFunctionResult(functionFragment: "rewardTokenDecimals", data: BytesLike): Result;
|
|
189
|
-
decodeFunctionResult(functionFragment: "rewardTokens", data: BytesLike): Result;
|
|
190
|
-
decodeFunctionResult(functionFragment: "rewards", data: BytesLike): Result;
|
|
191
|
-
decodeFunctionResult(functionFragment: "setBoostAmplificationEnabled", data: BytesLike): Result;
|
|
192
|
-
decodeFunctionResult(functionFragment: "setDistributionCap", data: BytesLike): Result;
|
|
193
|
-
decodeFunctionResult(functionFragment: "setDistributorApproval", data: BytesLike): Result;
|
|
194
|
-
decodeFunctionResult(functionFragment: "setEmergencyPaused", data: BytesLike): Result;
|
|
195
|
-
decodeFunctionResult(functionFragment: "setInitialWeight", data: BytesLike): Result;
|
|
196
|
-
decodeFunctionResult(functionFragment: "setMaxEmission", data: BytesLike): Result;
|
|
197
|
-
decodeFunctionResult(functionFragment: "setPeriodDuration", data: BytesLike): Result;
|
|
198
|
-
decodeFunctionResult(functionFragment: "setTokenBoostRatio", data: BytesLike): Result;
|
|
199
|
-
decodeFunctionResult(functionFragment: "setTokenEmissionCap", data: BytesLike): Result;
|
|
200
|
-
decodeFunctionResult(functionFragment: "stake", data: BytesLike): Result;
|
|
201
|
-
decodeFunctionResult(functionFragment: "stakingToken", data: BytesLike): Result;
|
|
202
|
-
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
203
|
-
decodeFunctionResult(functionFragment: "syncRewardData", data: BytesLike): Result;
|
|
204
|
-
decodeFunctionResult(functionFragment: "syncRewardTokens", data: BytesLike): Result;
|
|
205
|
-
decodeFunctionResult(functionFragment: "tokenBoostRatios", data: BytesLike): Result;
|
|
206
|
-
decodeFunctionResult(functionFragment: "totalSupply", data: BytesLike): Result;
|
|
207
|
-
decodeFunctionResult(functionFragment: "totalVotes", data: BytesLike): Result;
|
|
208
|
-
decodeFunctionResult(functionFragment: "updatePeriod", data: BytesLike): Result;
|
|
209
|
-
decodeFunctionResult(functionFragment: "updateUserRewards", data: BytesLike): Result;
|
|
210
|
-
decodeFunctionResult(functionFragment: "userCheckpointCounts", data: BytesLike): Result;
|
|
211
|
-
decodeFunctionResult(functionFragment: "userCheckpoints", data: BytesLike): Result;
|
|
212
|
-
decodeFunctionResult(functionFragment: "userClaimedRewards", data: BytesLike): Result;
|
|
213
|
-
decodeFunctionResult(functionFragment: "userRewardData", data: BytesLike): Result;
|
|
214
|
-
decodeFunctionResult(functionFragment: "userRewardPerTokenPaid", data: BytesLike): Result;
|
|
215
|
-
decodeFunctionResult(functionFragment: "userVotes", data: BytesLike): Result;
|
|
216
|
-
decodeFunctionResult(functionFragment: "voteDirection", data: BytesLike): Result;
|
|
217
|
-
decodeFunctionResult(functionFragment: "weightPeriod", data: BytesLike): Result;
|
|
218
|
-
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
|
|
219
|
-
decodeFunctionResult(functionFragment: "workingBalances", data: BytesLike): Result;
|
|
220
|
-
decodeFunctionResult(functionFragment: "workingSupply", data: BytesLike): Result;
|
|
221
|
-
}
|
|
222
|
-
export declare namespace BoostAmplificationToggledEvent {
|
|
223
|
-
type InputTuple = [enabled: boolean];
|
|
224
|
-
type OutputTuple = [enabled: boolean];
|
|
225
|
-
interface OutputObject {
|
|
226
|
-
enabled: boolean;
|
|
227
|
-
}
|
|
228
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
229
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
230
|
-
type Log = TypedEventLog<Event>;
|
|
231
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
232
|
-
}
|
|
233
|
-
export declare namespace CheckpointEvent {
|
|
234
|
-
type InputTuple = [user: AddressLike, timestamp: BigNumberish];
|
|
235
|
-
type OutputTuple = [user: string, timestamp: bigint];
|
|
236
|
-
interface OutputObject {
|
|
237
|
-
user: string;
|
|
238
|
-
timestamp: bigint;
|
|
239
|
-
}
|
|
240
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
241
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
242
|
-
type Log = TypedEventLog<Event>;
|
|
243
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
244
|
-
}
|
|
245
|
-
export declare namespace DirectionVotedEvent {
|
|
246
|
-
type InputTuple = [
|
|
247
|
-
user: AddressLike,
|
|
248
|
-
direction: BigNumberish,
|
|
249
|
-
votingPower: BigNumberish
|
|
250
|
-
];
|
|
251
|
-
type OutputTuple = [
|
|
252
|
-
user: string,
|
|
253
|
-
direction: bigint,
|
|
254
|
-
votingPower: bigint
|
|
255
|
-
];
|
|
256
|
-
interface OutputObject {
|
|
257
|
-
user: string;
|
|
258
|
-
direction: bigint;
|
|
259
|
-
votingPower: bigint;
|
|
260
|
-
}
|
|
261
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
262
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
263
|
-
type Log = TypedEventLog<Event>;
|
|
264
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
265
|
-
}
|
|
266
|
-
export declare namespace DistributionCapUpdatedEvent {
|
|
267
|
-
type InputTuple = [newCap: BigNumberish];
|
|
268
|
-
type OutputTuple = [newCap: bigint];
|
|
269
|
-
interface OutputObject {
|
|
270
|
-
newCap: bigint;
|
|
271
|
-
}
|
|
272
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
273
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
274
|
-
type Log = TypedEventLog<Event>;
|
|
275
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
276
|
-
}
|
|
277
|
-
export declare namespace DistributorApprovalUpdatedEvent {
|
|
278
|
-
type InputTuple = [distributor: AddressLike, isApproved: boolean];
|
|
279
|
-
type OutputTuple = [distributor: string, isApproved: boolean];
|
|
280
|
-
interface OutputObject {
|
|
281
|
-
distributor: string;
|
|
282
|
-
isApproved: boolean;
|
|
283
|
-
}
|
|
284
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
285
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
286
|
-
type Log = TypedEventLog<Event>;
|
|
287
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
288
|
-
}
|
|
289
|
-
export declare namespace DistributorUpdatedEvent {
|
|
290
|
-
type InputTuple = [
|
|
291
|
-
distributor: AddressLike,
|
|
292
|
-
distributorAdded: boolean
|
|
293
|
-
];
|
|
294
|
-
type OutputTuple = [distributor: string, distributorAdded: boolean];
|
|
295
|
-
interface OutputObject {
|
|
296
|
-
distributor: string;
|
|
297
|
-
distributorAdded: boolean;
|
|
298
|
-
}
|
|
299
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
300
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
301
|
-
type Log = TypedEventLog<Event>;
|
|
302
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
303
|
-
}
|
|
304
|
-
export declare namespace EmergencyPauseUpdatedEvent {
|
|
305
|
-
type InputTuple = [paused: boolean];
|
|
306
|
-
type OutputTuple = [paused: boolean];
|
|
307
|
-
interface OutputObject {
|
|
308
|
-
paused: boolean;
|
|
309
|
-
}
|
|
310
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
311
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
312
|
-
type Log = TypedEventLog<Event>;
|
|
313
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
314
|
-
}
|
|
315
|
-
export declare namespace EmissionCapUpdatedEvent {
|
|
316
|
-
type InputTuple = [newCap: BigNumberish];
|
|
317
|
-
type OutputTuple = [newCap: bigint];
|
|
318
|
-
interface OutputObject {
|
|
319
|
-
newCap: bigint;
|
|
320
|
-
}
|
|
321
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
322
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
323
|
-
type Log = TypedEventLog<Event>;
|
|
324
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
325
|
-
}
|
|
326
|
-
export declare namespace EmissionUpdatedEvent {
|
|
327
|
-
type InputTuple = [newEmission: BigNumberish];
|
|
328
|
-
type OutputTuple = [newEmission: bigint];
|
|
329
|
-
interface OutputObject {
|
|
330
|
-
newEmission: bigint;
|
|
331
|
-
}
|
|
332
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
333
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
334
|
-
type Log = TypedEventLog<Event>;
|
|
335
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
336
|
-
}
|
|
337
|
-
export declare namespace PausedEvent {
|
|
338
|
-
type InputTuple = [account: AddressLike];
|
|
339
|
-
type OutputTuple = [account: string];
|
|
340
|
-
interface OutputObject {
|
|
341
|
-
account: string;
|
|
342
|
-
}
|
|
343
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
344
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
345
|
-
type Log = TypedEventLog<Event>;
|
|
346
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
347
|
-
}
|
|
348
|
-
export declare namespace PeriodCreatedEvent {
|
|
349
|
-
type InputTuple = [
|
|
350
|
-
startTime: BigNumberish,
|
|
351
|
-
duration: BigNumberish,
|
|
352
|
-
initialValue: BigNumberish
|
|
353
|
-
];
|
|
354
|
-
type OutputTuple = [
|
|
355
|
-
startTime: bigint,
|
|
356
|
-
duration: bigint,
|
|
357
|
-
initialValue: bigint
|
|
358
|
-
];
|
|
359
|
-
interface OutputObject {
|
|
360
|
-
startTime: bigint;
|
|
361
|
-
duration: bigint;
|
|
362
|
-
initialValue: bigint;
|
|
363
|
-
}
|
|
364
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
365
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
366
|
-
type Log = TypedEventLog<Event>;
|
|
367
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
368
|
-
}
|
|
369
|
-
export declare namespace PeriodDurationUpdatedEvent {
|
|
370
|
-
type InputTuple = [newDuration: BigNumberish];
|
|
371
|
-
type OutputTuple = [newDuration: bigint];
|
|
372
|
-
interface OutputObject {
|
|
373
|
-
newDuration: bigint;
|
|
374
|
-
}
|
|
375
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
376
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
377
|
-
type Log = TypedEventLog<Event>;
|
|
378
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
379
|
-
}
|
|
380
|
-
export declare namespace PeriodUpdatedEvent {
|
|
381
|
-
type InputTuple = [timestamp: BigNumberish, avgWeight: BigNumberish];
|
|
382
|
-
type OutputTuple = [timestamp: bigint, avgWeight: bigint];
|
|
383
|
-
interface OutputObject {
|
|
384
|
-
timestamp: bigint;
|
|
385
|
-
avgWeight: bigint;
|
|
386
|
-
}
|
|
387
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
388
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
389
|
-
type Log = TypedEventLog<Event>;
|
|
390
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
391
|
-
}
|
|
392
|
-
export declare namespace RewardNotifiedEvent {
|
|
393
|
-
type InputTuple = [
|
|
394
|
-
token: AddressLike,
|
|
395
|
-
amount: BigNumberish,
|
|
396
|
-
rewardRate: BigNumberish
|
|
397
|
-
];
|
|
398
|
-
type OutputTuple = [token: string, amount: bigint, rewardRate: bigint];
|
|
399
|
-
interface OutputObject {
|
|
400
|
-
token: string;
|
|
401
|
-
amount: bigint;
|
|
402
|
-
rewardRate: bigint;
|
|
403
|
-
}
|
|
404
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
405
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
406
|
-
type Log = TypedEventLog<Event>;
|
|
407
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
408
|
-
}
|
|
409
|
-
export declare namespace RewardPaidEvent {
|
|
410
|
-
type InputTuple = [
|
|
411
|
-
user: AddressLike,
|
|
412
|
-
token: AddressLike,
|
|
413
|
-
amount: BigNumberish
|
|
414
|
-
];
|
|
415
|
-
type OutputTuple = [user: string, token: string, amount: bigint];
|
|
416
|
-
interface OutputObject {
|
|
417
|
-
user: string;
|
|
418
|
-
token: string;
|
|
419
|
-
amount: bigint;
|
|
420
|
-
}
|
|
421
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
422
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
423
|
-
type Log = TypedEventLog<Event>;
|
|
424
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
425
|
-
}
|
|
426
|
-
export declare namespace RewardTokenAddedEvent {
|
|
427
|
-
type InputTuple = [token: AddressLike];
|
|
428
|
-
type OutputTuple = [token: string];
|
|
429
|
-
interface OutputObject {
|
|
430
|
-
token: string;
|
|
431
|
-
}
|
|
432
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
433
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
434
|
-
type Log = TypedEventLog<Event>;
|
|
435
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
436
|
-
}
|
|
437
|
-
export declare namespace RoleAdminChangedEvent {
|
|
438
|
-
type InputTuple = [
|
|
439
|
-
role: BytesLike,
|
|
440
|
-
previousAdminRole: BytesLike,
|
|
441
|
-
newAdminRole: BytesLike
|
|
442
|
-
];
|
|
443
|
-
type OutputTuple = [
|
|
444
|
-
role: string,
|
|
445
|
-
previousAdminRole: string,
|
|
446
|
-
newAdminRole: string
|
|
447
|
-
];
|
|
448
|
-
interface OutputObject {
|
|
449
|
-
role: string;
|
|
450
|
-
previousAdminRole: string;
|
|
451
|
-
newAdminRole: string;
|
|
452
|
-
}
|
|
453
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
454
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
455
|
-
type Log = TypedEventLog<Event>;
|
|
456
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
457
|
-
}
|
|
458
|
-
export declare namespace RoleGrantedEvent {
|
|
459
|
-
type InputTuple = [
|
|
460
|
-
role: BytesLike,
|
|
461
|
-
account: AddressLike,
|
|
462
|
-
sender: AddressLike
|
|
463
|
-
];
|
|
464
|
-
type OutputTuple = [role: string, account: string, sender: string];
|
|
465
|
-
interface OutputObject {
|
|
466
|
-
role: string;
|
|
467
|
-
account: string;
|
|
468
|
-
sender: string;
|
|
469
|
-
}
|
|
470
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
471
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
472
|
-
type Log = TypedEventLog<Event>;
|
|
473
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
474
|
-
}
|
|
475
|
-
export declare namespace RoleRevokedEvent {
|
|
476
|
-
type InputTuple = [
|
|
477
|
-
role: BytesLike,
|
|
478
|
-
account: AddressLike,
|
|
479
|
-
sender: AddressLike
|
|
480
|
-
];
|
|
481
|
-
type OutputTuple = [role: string, account: string, sender: string];
|
|
482
|
-
interface OutputObject {
|
|
483
|
-
role: string;
|
|
484
|
-
account: string;
|
|
485
|
-
sender: string;
|
|
486
|
-
}
|
|
487
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
488
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
489
|
-
type Log = TypedEventLog<Event>;
|
|
490
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
491
|
-
}
|
|
492
|
-
export declare namespace StakedEvent {
|
|
493
|
-
type InputTuple = [user: AddressLike, amount: BigNumberish];
|
|
494
|
-
type OutputTuple = [user: string, amount: bigint];
|
|
495
|
-
interface OutputObject {
|
|
496
|
-
user: string;
|
|
497
|
-
amount: bigint;
|
|
498
|
-
}
|
|
499
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
500
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
501
|
-
type Log = TypedEventLog<Event>;
|
|
502
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
503
|
-
}
|
|
504
|
-
export declare namespace TokenBoostRatioUpdatedEvent {
|
|
505
|
-
type InputTuple = [token: AddressLike, ratio: BigNumberish];
|
|
506
|
-
type OutputTuple = [token: string, ratio: bigint];
|
|
507
|
-
interface OutputObject {
|
|
508
|
-
token: string;
|
|
509
|
-
ratio: bigint;
|
|
510
|
-
}
|
|
511
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
512
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
513
|
-
type Log = TypedEventLog<Event>;
|
|
514
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
515
|
-
}
|
|
516
|
-
export declare namespace TokenEmissionCapUpdatedEvent {
|
|
517
|
-
type InputTuple = [token: AddressLike, newEmissionCap: BigNumberish];
|
|
518
|
-
type OutputTuple = [token: string, newEmissionCap: bigint];
|
|
519
|
-
interface OutputObject {
|
|
520
|
-
token: string;
|
|
521
|
-
newEmissionCap: bigint;
|
|
522
|
-
}
|
|
523
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
524
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
525
|
-
type Log = TypedEventLog<Event>;
|
|
526
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
527
|
-
}
|
|
528
|
-
export declare namespace UnpausedEvent {
|
|
529
|
-
type InputTuple = [account: AddressLike];
|
|
530
|
-
type OutputTuple = [account: string];
|
|
531
|
-
interface OutputObject {
|
|
532
|
-
account: string;
|
|
533
|
-
}
|
|
534
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
535
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
536
|
-
type Log = TypedEventLog<Event>;
|
|
537
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
538
|
-
}
|
|
539
|
-
export declare namespace UserRewardDataUpdatedEvent {
|
|
540
|
-
type InputTuple = [
|
|
541
|
-
user: AddressLike,
|
|
542
|
-
token: AddressLike,
|
|
543
|
-
newIntegral: BigNumberish,
|
|
544
|
-
timestamp: BigNumberish
|
|
545
|
-
];
|
|
546
|
-
type OutputTuple = [
|
|
547
|
-
user: string,
|
|
548
|
-
token: string,
|
|
549
|
-
newIntegral: bigint,
|
|
550
|
-
timestamp: bigint
|
|
551
|
-
];
|
|
552
|
-
interface OutputObject {
|
|
553
|
-
user: string;
|
|
554
|
-
token: string;
|
|
555
|
-
newIntegral: bigint;
|
|
556
|
-
timestamp: bigint;
|
|
557
|
-
}
|
|
558
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
559
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
560
|
-
type Log = TypedEventLog<Event>;
|
|
561
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
562
|
-
}
|
|
563
|
-
export declare namespace UserRewardsUpdatedEvent {
|
|
564
|
-
type InputTuple = [user: AddressLike, timestamp: BigNumberish];
|
|
565
|
-
type OutputTuple = [user: string, timestamp: bigint];
|
|
566
|
-
interface OutputObject {
|
|
567
|
-
user: string;
|
|
568
|
-
timestamp: bigint;
|
|
569
|
-
}
|
|
570
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
571
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
572
|
-
type Log = TypedEventLog<Event>;
|
|
573
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
574
|
-
}
|
|
575
|
-
export declare namespace WithdrawnEvent {
|
|
576
|
-
type InputTuple = [user: AddressLike, amount: BigNumberish];
|
|
577
|
-
type OutputTuple = [user: string, amount: bigint];
|
|
578
|
-
interface OutputObject {
|
|
579
|
-
user: string;
|
|
580
|
-
amount: bigint;
|
|
581
|
-
}
|
|
582
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
583
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
584
|
-
type Log = TypedEventLog<Event>;
|
|
585
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
586
|
-
}
|
|
587
|
-
export declare namespace WorkingBalanceUpdatedEvent {
|
|
588
|
-
type InputTuple = [user: AddressLike, newWorkingBalance: BigNumberish];
|
|
589
|
-
type OutputTuple = [user: string, newWorkingBalance: bigint];
|
|
590
|
-
interface OutputObject {
|
|
591
|
-
user: string;
|
|
592
|
-
newWorkingBalance: bigint;
|
|
593
|
-
}
|
|
594
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
595
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
596
|
-
type Log = TypedEventLog<Event>;
|
|
597
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
598
|
-
}
|
|
599
|
-
export interface BaseGauge extends BaseContract {
|
|
600
|
-
connect(runner?: ContractRunner | null): BaseGauge;
|
|
601
|
-
waitForDeployment(): Promise<this>;
|
|
602
|
-
interface: BaseGaugeInterface;
|
|
603
|
-
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
604
|
-
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
605
|
-
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
606
|
-
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
607
|
-
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
608
|
-
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
609
|
-
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
610
|
-
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
611
|
-
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
612
|
-
CONTROLLER_ROLE: TypedContractMethod<[], [string], "view">;
|
|
613
|
-
DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
|
|
614
|
-
EMERGENCY_ADMIN: TypedContractMethod<[], [string], "view">;
|
|
615
|
-
FEE_ADMIN: TypedContractMethod<[], [string], "view">;
|
|
616
|
-
GAUGE_ADMIN: TypedContractMethod<[], [string], "view">;
|
|
617
|
-
MAX_CHECKPOINTS: TypedContractMethod<[], [bigint], "view">;
|
|
618
|
-
MAX_VOTE_WEIGHT: TypedContractMethod<[], [bigint], "view">;
|
|
619
|
-
WEEK: TypedContractMethod<[], [bigint], "view">;
|
|
620
|
-
WEIGHT_PRECISION: TypedContractMethod<[], [bigint], "view">;
|
|
621
|
-
balanceOf: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
622
|
-
boostAmplificationEnabled: TypedContractMethod<[], [boolean], "view">;
|
|
623
|
-
claimRewardToken: TypedContractMethod<[
|
|
624
|
-
token: AddressLike
|
|
625
|
-
], [
|
|
626
|
-
bigint
|
|
627
|
-
], "nonpayable">;
|
|
628
|
-
claimRewards: TypedContractMethod<[], [void], "nonpayable">;
|
|
629
|
-
claimedRewards: TypedContractMethod<[
|
|
630
|
-
token: AddressLike,
|
|
631
|
-
user: AddressLike
|
|
632
|
-
], [
|
|
633
|
-
bigint
|
|
634
|
-
], "view">;
|
|
635
|
-
controller: TypedContractMethod<[], [string], "view">;
|
|
636
|
-
distributionCap: TypedContractMethod<[], [bigint], "view">;
|
|
637
|
-
distributors: TypedContractMethod<[
|
|
638
|
-
arg0: AddressLike
|
|
639
|
-
], [
|
|
640
|
-
[string, boolean] & {
|
|
641
|
-
distributor: string;
|
|
642
|
-
isApproved: boolean;
|
|
643
|
-
}
|
|
644
|
-
], "view">;
|
|
645
|
-
distributorsList: TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
646
|
-
earned: TypedContractMethod<[
|
|
647
|
-
token: AddressLike,
|
|
648
|
-
user: AddressLike
|
|
649
|
-
], [
|
|
650
|
-
bigint
|
|
651
|
-
], "view">;
|
|
652
|
-
earnedRewards: TypedContractMethod<[
|
|
653
|
-
token: AddressLike,
|
|
654
|
-
user: AddressLike
|
|
655
|
-
], [
|
|
656
|
-
bigint
|
|
657
|
-
], "view">;
|
|
658
|
-
emergencyWithdraw: TypedContractMethod<[
|
|
659
|
-
token: AddressLike,
|
|
660
|
-
amount: BigNumberish
|
|
661
|
-
], [
|
|
662
|
-
void
|
|
663
|
-
], "nonpayable">;
|
|
664
|
-
gaugeController: TypedContractMethod<[], [string], "view">;
|
|
665
|
-
getDecimalAdjustment: TypedContractMethod<[
|
|
666
|
-
token: AddressLike
|
|
667
|
-
], [
|
|
668
|
-
bigint
|
|
669
|
-
], "view">;
|
|
670
|
-
getDistributorApproval: TypedContractMethod<[
|
|
671
|
-
distributor: AddressLike
|
|
672
|
-
], [
|
|
673
|
-
boolean
|
|
674
|
-
], "view">;
|
|
675
|
-
getDistributors: TypedContractMethod<[], [string[]], "view">;
|
|
676
|
-
getNextPeriodTime: TypedContractMethod<[], [bigint], "view">;
|
|
677
|
-
getPeriodState: TypedContractMethod<[
|
|
678
|
-
], [
|
|
679
|
-
IBaseGauge.PeriodStateStructOutput
|
|
680
|
-
], "view">;
|
|
681
|
-
getRewardTokens: TypedContractMethod<[], [string[]], "view">;
|
|
682
|
-
getRoleAdmin: TypedContractMethod<[role: BytesLike], [string], "view">;
|
|
683
|
-
getTokenEmissionState: TypedContractMethod<[
|
|
684
|
-
token: AddressLike
|
|
685
|
-
], [
|
|
686
|
-
[bigint, bigint] & {
|
|
687
|
-
emissionCap_: bigint;
|
|
688
|
-
distributed_: bigint;
|
|
689
|
-
}
|
|
690
|
-
], "view">;
|
|
691
|
-
getUserWeight: TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
692
|
-
getWorkingBalance: TypedContractMethod<[
|
|
693
|
-
account: AddressLike
|
|
694
|
-
], [
|
|
695
|
-
bigint
|
|
696
|
-
], "view">;
|
|
697
|
-
grantRole: TypedContractMethod<[
|
|
698
|
-
role: BytesLike,
|
|
699
|
-
account: AddressLike
|
|
700
|
-
], [
|
|
701
|
-
void
|
|
702
|
-
], "nonpayable">;
|
|
703
|
-
hasRole: TypedContractMethod<[
|
|
704
|
-
role: BytesLike,
|
|
705
|
-
account: AddressLike
|
|
706
|
-
], [
|
|
707
|
-
boolean
|
|
708
|
-
], "view">;
|
|
709
|
-
historicalCheckpointCount: TypedContractMethod<[], [bigint], "view">;
|
|
710
|
-
historicalCheckpoints: TypedContractMethod<[
|
|
711
|
-
arg0: BigNumberish
|
|
712
|
-
], [
|
|
713
|
-
[
|
|
714
|
-
bigint,
|
|
715
|
-
bigint,
|
|
716
|
-
bigint,
|
|
717
|
-
bigint,
|
|
718
|
-
bigint
|
|
719
|
-
] & {
|
|
720
|
-
timestamp: bigint;
|
|
721
|
-
totalSupply: bigint;
|
|
722
|
-
workingSupply: bigint;
|
|
723
|
-
rewardPerToken: bigint;
|
|
724
|
-
rewardRate: bigint;
|
|
725
|
-
}
|
|
726
|
-
], "view">;
|
|
727
|
-
initializeRewardToken: TypedContractMethod<[
|
|
728
|
-
token: AddressLike,
|
|
729
|
-
distributor: AddressLike
|
|
730
|
-
], [
|
|
731
|
-
void
|
|
732
|
-
], "nonpayable">;
|
|
733
|
-
lastUpdateTime: TypedContractMethod<[], [bigint], "view">;
|
|
734
|
-
manageDistributor: TypedContractMethod<[
|
|
735
|
-
distributor: AddressLike,
|
|
736
|
-
shouldAddDistributor: boolean
|
|
737
|
-
], [
|
|
738
|
-
void
|
|
739
|
-
], "nonpayable">;
|
|
740
|
-
notifyRewardAmount: TypedContractMethod<[
|
|
741
|
-
token: AddressLike,
|
|
742
|
-
amount: BigNumberish
|
|
743
|
-
], [
|
|
744
|
-
void
|
|
745
|
-
], "nonpayable">;
|
|
746
|
-
paused: TypedContractMethod<[], [boolean], "view">;
|
|
747
|
-
pendingRewards: TypedContractMethod<[
|
|
748
|
-
token: AddressLike,
|
|
749
|
-
user: AddressLike
|
|
750
|
-
], [
|
|
751
|
-
bigint
|
|
752
|
-
], "view">;
|
|
753
|
-
periodDuration: TypedContractMethod<[], [bigint], "view">;
|
|
754
|
-
periodFinish: TypedContractMethod<[], [bigint], "view">;
|
|
755
|
-
periodState: TypedContractMethod<[
|
|
756
|
-
], [
|
|
757
|
-
[
|
|
758
|
-
TimeWeightedAverage.PeriodStructOutput,
|
|
759
|
-
bigint,
|
|
760
|
-
bigint,
|
|
761
|
-
bigint
|
|
762
|
-
] & {
|
|
763
|
-
votingPeriod: TimeWeightedAverage.PeriodStructOutput;
|
|
764
|
-
emission: bigint;
|
|
765
|
-
distributed: bigint;
|
|
766
|
-
periodStartTime: bigint;
|
|
767
|
-
}
|
|
768
|
-
], "view">;
|
|
769
|
-
renounceRole: TypedContractMethod<[
|
|
770
|
-
role: BytesLike,
|
|
771
|
-
callerConfirmation: AddressLike
|
|
772
|
-
], [
|
|
773
|
-
void
|
|
774
|
-
], "nonpayable">;
|
|
775
|
-
revokeRole: TypedContractMethod<[
|
|
776
|
-
role: BytesLike,
|
|
777
|
-
account: AddressLike
|
|
778
|
-
], [
|
|
779
|
-
void
|
|
780
|
-
], "nonpayable">;
|
|
781
|
-
rewardData: TypedContractMethod<[
|
|
782
|
-
arg0: AddressLike
|
|
783
|
-
], [
|
|
784
|
-
[
|
|
785
|
-
bigint,
|
|
786
|
-
bigint,
|
|
787
|
-
bigint,
|
|
788
|
-
bigint,
|
|
789
|
-
string,
|
|
790
|
-
bigint,
|
|
791
|
-
bigint,
|
|
792
|
-
bigint
|
|
793
|
-
] & {
|
|
794
|
-
rate: bigint;
|
|
795
|
-
periodFinish: bigint;
|
|
796
|
-
lastUpdateTime: bigint;
|
|
797
|
-
rewardPerTokenStored: bigint;
|
|
798
|
-
distributor: string;
|
|
799
|
-
integral: bigint;
|
|
800
|
-
emissionCap: bigint;
|
|
801
|
-
distributed: bigint;
|
|
802
|
-
}
|
|
803
|
-
], "view">;
|
|
804
|
-
rewardPerTokenStored: TypedContractMethod<[], [bigint], "view">;
|
|
805
|
-
rewardRate: TypedContractMethod<[], [bigint], "view">;
|
|
806
|
-
rewardToken: TypedContractMethod<[], [string], "view">;
|
|
807
|
-
rewardTokenDecimals: TypedContractMethod<[
|
|
808
|
-
arg0: AddressLike
|
|
809
|
-
], [
|
|
810
|
-
bigint
|
|
811
|
-
], "view">;
|
|
812
|
-
rewardTokens: TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
813
|
-
rewards: TypedContractMethod<[
|
|
814
|
-
arg0: AddressLike,
|
|
815
|
-
arg1: AddressLike
|
|
816
|
-
], [
|
|
817
|
-
bigint
|
|
818
|
-
], "view">;
|
|
819
|
-
setBoostAmplificationEnabled: TypedContractMethod<[
|
|
820
|
-
enabled: boolean
|
|
821
|
-
], [
|
|
822
|
-
void
|
|
823
|
-
], "nonpayable">;
|
|
824
|
-
setDistributionCap: TypedContractMethod<[
|
|
825
|
-
newCap: BigNumberish
|
|
826
|
-
], [
|
|
827
|
-
void
|
|
828
|
-
], "nonpayable">;
|
|
829
|
-
setDistributorApproval: TypedContractMethod<[
|
|
830
|
-
distributor: AddressLike,
|
|
831
|
-
isApproved: boolean
|
|
832
|
-
], [
|
|
833
|
-
void
|
|
834
|
-
], "nonpayable">;
|
|
835
|
-
setEmergencyPaused: TypedContractMethod<[
|
|
836
|
-
newPaused: boolean
|
|
837
|
-
], [
|
|
838
|
-
void
|
|
839
|
-
], "nonpayable">;
|
|
840
|
-
setInitialWeight: TypedContractMethod<[
|
|
841
|
-
weight: BigNumberish
|
|
842
|
-
], [
|
|
843
|
-
void
|
|
844
|
-
], "nonpayable">;
|
|
845
|
-
setMaxEmission: TypedContractMethod<[
|
|
846
|
-
emission: BigNumberish
|
|
847
|
-
], [
|
|
848
|
-
void
|
|
849
|
-
], "nonpayable">;
|
|
850
|
-
setPeriodDuration: TypedContractMethod<[
|
|
851
|
-
newPeriodDuration: BigNumberish
|
|
852
|
-
], [
|
|
853
|
-
void
|
|
854
|
-
], "nonpayable">;
|
|
855
|
-
setTokenBoostRatio: TypedContractMethod<[
|
|
856
|
-
token: AddressLike,
|
|
857
|
-
ratio: BigNumberish
|
|
858
|
-
], [
|
|
859
|
-
void
|
|
860
|
-
], "nonpayable">;
|
|
861
|
-
setTokenEmissionCap: TypedContractMethod<[
|
|
862
|
-
token: AddressLike,
|
|
863
|
-
emissionCap: BigNumberish
|
|
864
|
-
], [
|
|
865
|
-
void
|
|
866
|
-
], "nonpayable">;
|
|
867
|
-
stake: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
868
|
-
stakingToken: TypedContractMethod<[], [string], "view">;
|
|
869
|
-
supportsInterface: TypedContractMethod<[
|
|
870
|
-
interfaceId: BytesLike
|
|
871
|
-
], [
|
|
872
|
-
boolean
|
|
873
|
-
], "view">;
|
|
874
|
-
syncRewardData: TypedContractMethod<[
|
|
875
|
-
token: AddressLike
|
|
876
|
-
], [
|
|
877
|
-
void
|
|
878
|
-
], "nonpayable">;
|
|
879
|
-
syncRewardTokens: TypedContractMethod<[], [void], "nonpayable">;
|
|
880
|
-
tokenBoostRatios: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
881
|
-
totalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
882
|
-
totalVotes: TypedContractMethod<[], [bigint], "view">;
|
|
883
|
-
updatePeriod: TypedContractMethod<[], [void], "nonpayable">;
|
|
884
|
-
updateUserRewards: TypedContractMethod<[], [void], "nonpayable">;
|
|
885
|
-
userCheckpointCounts: TypedContractMethod<[
|
|
886
|
-
arg0: AddressLike
|
|
887
|
-
], [
|
|
888
|
-
bigint
|
|
889
|
-
], "view">;
|
|
890
|
-
userCheckpoints: TypedContractMethod<[
|
|
891
|
-
arg0: AddressLike,
|
|
892
|
-
arg1: BigNumberish
|
|
893
|
-
], [
|
|
894
|
-
[
|
|
895
|
-
bigint,
|
|
896
|
-
bigint,
|
|
897
|
-
bigint,
|
|
898
|
-
bigint,
|
|
899
|
-
bigint,
|
|
900
|
-
bigint
|
|
901
|
-
] & {
|
|
902
|
-
timestamp: bigint;
|
|
903
|
-
balance: bigint;
|
|
904
|
-
workingBalance: bigint;
|
|
905
|
-
rewardPerToken: bigint;
|
|
906
|
-
slope: bigint;
|
|
907
|
-
bias: bigint;
|
|
908
|
-
}
|
|
909
|
-
], "view">;
|
|
910
|
-
userClaimedRewards: TypedContractMethod<[
|
|
911
|
-
arg0: AddressLike,
|
|
912
|
-
arg1: AddressLike
|
|
913
|
-
], [
|
|
914
|
-
bigint
|
|
915
|
-
], "view">;
|
|
916
|
-
userRewardData: TypedContractMethod<[
|
|
917
|
-
arg0: AddressLike,
|
|
918
|
-
arg1: AddressLike
|
|
919
|
-
], [
|
|
920
|
-
[
|
|
921
|
-
bigint,
|
|
922
|
-
bigint,
|
|
923
|
-
bigint
|
|
924
|
-
] & {
|
|
925
|
-
integral: bigint;
|
|
926
|
-
lastUpdate: bigint;
|
|
927
|
-
claimable: bigint;
|
|
928
|
-
}
|
|
929
|
-
], "view">;
|
|
930
|
-
userRewardPerTokenPaid: TypedContractMethod<[
|
|
931
|
-
arg0: AddressLike,
|
|
932
|
-
arg1: AddressLike
|
|
933
|
-
], [
|
|
934
|
-
bigint
|
|
935
|
-
], "view">;
|
|
936
|
-
userVotes: TypedContractMethod<[
|
|
937
|
-
arg0: AddressLike
|
|
938
|
-
], [
|
|
939
|
-
[
|
|
940
|
-
bigint,
|
|
941
|
-
bigint,
|
|
942
|
-
bigint
|
|
943
|
-
] & {
|
|
944
|
-
direction: bigint;
|
|
945
|
-
weight: bigint;
|
|
946
|
-
timestamp: bigint;
|
|
947
|
-
}
|
|
948
|
-
], "view">;
|
|
949
|
-
voteDirection: TypedContractMethod<[
|
|
950
|
-
direction: BigNumberish
|
|
951
|
-
], [
|
|
952
|
-
void
|
|
953
|
-
], "nonpayable">;
|
|
954
|
-
weightPeriod: TypedContractMethod<[
|
|
955
|
-
], [
|
|
956
|
-
[
|
|
957
|
-
bigint,
|
|
958
|
-
bigint,
|
|
959
|
-
bigint,
|
|
960
|
-
bigint,
|
|
961
|
-
bigint,
|
|
962
|
-
bigint,
|
|
963
|
-
bigint
|
|
964
|
-
] & {
|
|
965
|
-
startTime: bigint;
|
|
966
|
-
endTime: bigint;
|
|
967
|
-
lastUpdateTime: bigint;
|
|
968
|
-
value: bigint;
|
|
969
|
-
weightedSum: bigint;
|
|
970
|
-
totalDuration: bigint;
|
|
971
|
-
weight: bigint;
|
|
972
|
-
}
|
|
973
|
-
], "view">;
|
|
974
|
-
withdraw: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
975
|
-
workingBalances: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
976
|
-
workingSupply: TypedContractMethod<[], [bigint], "view">;
|
|
977
|
-
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
978
|
-
getFunction(nameOrSignature: "CONTROLLER_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
979
|
-
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
980
|
-
getFunction(nameOrSignature: "EMERGENCY_ADMIN"): TypedContractMethod<[], [string], "view">;
|
|
981
|
-
getFunction(nameOrSignature: "FEE_ADMIN"): TypedContractMethod<[], [string], "view">;
|
|
982
|
-
getFunction(nameOrSignature: "GAUGE_ADMIN"): TypedContractMethod<[], [string], "view">;
|
|
983
|
-
getFunction(nameOrSignature: "MAX_CHECKPOINTS"): TypedContractMethod<[], [bigint], "view">;
|
|
984
|
-
getFunction(nameOrSignature: "MAX_VOTE_WEIGHT"): TypedContractMethod<[], [bigint], "view">;
|
|
985
|
-
getFunction(nameOrSignature: "WEEK"): TypedContractMethod<[], [bigint], "view">;
|
|
986
|
-
getFunction(nameOrSignature: "WEIGHT_PRECISION"): TypedContractMethod<[], [bigint], "view">;
|
|
987
|
-
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
988
|
-
getFunction(nameOrSignature: "boostAmplificationEnabled"): TypedContractMethod<[], [boolean], "view">;
|
|
989
|
-
getFunction(nameOrSignature: "claimRewardToken"): TypedContractMethod<[token: AddressLike], [bigint], "nonpayable">;
|
|
990
|
-
getFunction(nameOrSignature: "claimRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
991
|
-
getFunction(nameOrSignature: "claimedRewards"): TypedContractMethod<[
|
|
992
|
-
token: AddressLike,
|
|
993
|
-
user: AddressLike
|
|
994
|
-
], [
|
|
995
|
-
bigint
|
|
996
|
-
], "view">;
|
|
997
|
-
getFunction(nameOrSignature: "controller"): TypedContractMethod<[], [string], "view">;
|
|
998
|
-
getFunction(nameOrSignature: "distributionCap"): TypedContractMethod<[], [bigint], "view">;
|
|
999
|
-
getFunction(nameOrSignature: "distributors"): TypedContractMethod<[
|
|
1000
|
-
arg0: AddressLike
|
|
1001
|
-
], [
|
|
1002
|
-
[string, boolean] & {
|
|
1003
|
-
distributor: string;
|
|
1004
|
-
isApproved: boolean;
|
|
1005
|
-
}
|
|
1006
|
-
], "view">;
|
|
1007
|
-
getFunction(nameOrSignature: "distributorsList"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
1008
|
-
getFunction(nameOrSignature: "earned"): TypedContractMethod<[
|
|
1009
|
-
token: AddressLike,
|
|
1010
|
-
user: AddressLike
|
|
1011
|
-
], [
|
|
1012
|
-
bigint
|
|
1013
|
-
], "view">;
|
|
1014
|
-
getFunction(nameOrSignature: "earnedRewards"): TypedContractMethod<[
|
|
1015
|
-
token: AddressLike,
|
|
1016
|
-
user: AddressLike
|
|
1017
|
-
], [
|
|
1018
|
-
bigint
|
|
1019
|
-
], "view">;
|
|
1020
|
-
getFunction(nameOrSignature: "emergencyWithdraw"): TypedContractMethod<[
|
|
1021
|
-
token: AddressLike,
|
|
1022
|
-
amount: BigNumberish
|
|
1023
|
-
], [
|
|
1024
|
-
void
|
|
1025
|
-
], "nonpayable">;
|
|
1026
|
-
getFunction(nameOrSignature: "gaugeController"): TypedContractMethod<[], [string], "view">;
|
|
1027
|
-
getFunction(nameOrSignature: "getDecimalAdjustment"): TypedContractMethod<[token: AddressLike], [bigint], "view">;
|
|
1028
|
-
getFunction(nameOrSignature: "getDistributorApproval"): TypedContractMethod<[distributor: AddressLike], [boolean], "view">;
|
|
1029
|
-
getFunction(nameOrSignature: "getDistributors"): TypedContractMethod<[], [string[]], "view">;
|
|
1030
|
-
getFunction(nameOrSignature: "getNextPeriodTime"): TypedContractMethod<[], [bigint], "view">;
|
|
1031
|
-
getFunction(nameOrSignature: "getPeriodState"): TypedContractMethod<[], [IBaseGauge.PeriodStateStructOutput], "view">;
|
|
1032
|
-
getFunction(nameOrSignature: "getRewardTokens"): TypedContractMethod<[], [string[]], "view">;
|
|
1033
|
-
getFunction(nameOrSignature: "getRoleAdmin"): TypedContractMethod<[role: BytesLike], [string], "view">;
|
|
1034
|
-
getFunction(nameOrSignature: "getTokenEmissionState"): TypedContractMethod<[
|
|
1035
|
-
token: AddressLike
|
|
1036
|
-
], [
|
|
1037
|
-
[bigint, bigint] & {
|
|
1038
|
-
emissionCap_: bigint;
|
|
1039
|
-
distributed_: bigint;
|
|
1040
|
-
}
|
|
1041
|
-
], "view">;
|
|
1042
|
-
getFunction(nameOrSignature: "getUserWeight"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
1043
|
-
getFunction(nameOrSignature: "getWorkingBalance"): TypedContractMethod<[account: AddressLike], [bigint], "view">;
|
|
1044
|
-
getFunction(nameOrSignature: "grantRole"): TypedContractMethod<[
|
|
1045
|
-
role: BytesLike,
|
|
1046
|
-
account: AddressLike
|
|
1047
|
-
], [
|
|
1048
|
-
void
|
|
1049
|
-
], "nonpayable">;
|
|
1050
|
-
getFunction(nameOrSignature: "hasRole"): TypedContractMethod<[
|
|
1051
|
-
role: BytesLike,
|
|
1052
|
-
account: AddressLike
|
|
1053
|
-
], [
|
|
1054
|
-
boolean
|
|
1055
|
-
], "view">;
|
|
1056
|
-
getFunction(nameOrSignature: "historicalCheckpointCount"): TypedContractMethod<[], [bigint], "view">;
|
|
1057
|
-
getFunction(nameOrSignature: "historicalCheckpoints"): TypedContractMethod<[
|
|
1058
|
-
arg0: BigNumberish
|
|
1059
|
-
], [
|
|
1060
|
-
[
|
|
1061
|
-
bigint,
|
|
1062
|
-
bigint,
|
|
1063
|
-
bigint,
|
|
1064
|
-
bigint,
|
|
1065
|
-
bigint
|
|
1066
|
-
] & {
|
|
1067
|
-
timestamp: bigint;
|
|
1068
|
-
totalSupply: bigint;
|
|
1069
|
-
workingSupply: bigint;
|
|
1070
|
-
rewardPerToken: bigint;
|
|
1071
|
-
rewardRate: bigint;
|
|
1072
|
-
}
|
|
1073
|
-
], "view">;
|
|
1074
|
-
getFunction(nameOrSignature: "initializeRewardToken"): TypedContractMethod<[
|
|
1075
|
-
token: AddressLike,
|
|
1076
|
-
distributor: AddressLike
|
|
1077
|
-
], [
|
|
1078
|
-
void
|
|
1079
|
-
], "nonpayable">;
|
|
1080
|
-
getFunction(nameOrSignature: "lastUpdateTime"): TypedContractMethod<[], [bigint], "view">;
|
|
1081
|
-
getFunction(nameOrSignature: "manageDistributor"): TypedContractMethod<[
|
|
1082
|
-
distributor: AddressLike,
|
|
1083
|
-
shouldAddDistributor: boolean
|
|
1084
|
-
], [
|
|
1085
|
-
void
|
|
1086
|
-
], "nonpayable">;
|
|
1087
|
-
getFunction(nameOrSignature: "notifyRewardAmount"): TypedContractMethod<[
|
|
1088
|
-
token: AddressLike,
|
|
1089
|
-
amount: BigNumberish
|
|
1090
|
-
], [
|
|
1091
|
-
void
|
|
1092
|
-
], "nonpayable">;
|
|
1093
|
-
getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
|
|
1094
|
-
getFunction(nameOrSignature: "pendingRewards"): TypedContractMethod<[
|
|
1095
|
-
token: AddressLike,
|
|
1096
|
-
user: AddressLike
|
|
1097
|
-
], [
|
|
1098
|
-
bigint
|
|
1099
|
-
], "view">;
|
|
1100
|
-
getFunction(nameOrSignature: "periodDuration"): TypedContractMethod<[], [bigint], "view">;
|
|
1101
|
-
getFunction(nameOrSignature: "periodFinish"): TypedContractMethod<[], [bigint], "view">;
|
|
1102
|
-
getFunction(nameOrSignature: "periodState"): TypedContractMethod<[
|
|
1103
|
-
], [
|
|
1104
|
-
[
|
|
1105
|
-
TimeWeightedAverage.PeriodStructOutput,
|
|
1106
|
-
bigint,
|
|
1107
|
-
bigint,
|
|
1108
|
-
bigint
|
|
1109
|
-
] & {
|
|
1110
|
-
votingPeriod: TimeWeightedAverage.PeriodStructOutput;
|
|
1111
|
-
emission: bigint;
|
|
1112
|
-
distributed: bigint;
|
|
1113
|
-
periodStartTime: bigint;
|
|
1114
|
-
}
|
|
1115
|
-
], "view">;
|
|
1116
|
-
getFunction(nameOrSignature: "renounceRole"): TypedContractMethod<[
|
|
1117
|
-
role: BytesLike,
|
|
1118
|
-
callerConfirmation: AddressLike
|
|
1119
|
-
], [
|
|
1120
|
-
void
|
|
1121
|
-
], "nonpayable">;
|
|
1122
|
-
getFunction(nameOrSignature: "revokeRole"): TypedContractMethod<[
|
|
1123
|
-
role: BytesLike,
|
|
1124
|
-
account: AddressLike
|
|
1125
|
-
], [
|
|
1126
|
-
void
|
|
1127
|
-
], "nonpayable">;
|
|
1128
|
-
getFunction(nameOrSignature: "rewardData"): TypedContractMethod<[
|
|
1129
|
-
arg0: AddressLike
|
|
1130
|
-
], [
|
|
1131
|
-
[
|
|
1132
|
-
bigint,
|
|
1133
|
-
bigint,
|
|
1134
|
-
bigint,
|
|
1135
|
-
bigint,
|
|
1136
|
-
string,
|
|
1137
|
-
bigint,
|
|
1138
|
-
bigint,
|
|
1139
|
-
bigint
|
|
1140
|
-
] & {
|
|
1141
|
-
rate: bigint;
|
|
1142
|
-
periodFinish: bigint;
|
|
1143
|
-
lastUpdateTime: bigint;
|
|
1144
|
-
rewardPerTokenStored: bigint;
|
|
1145
|
-
distributor: string;
|
|
1146
|
-
integral: bigint;
|
|
1147
|
-
emissionCap: bigint;
|
|
1148
|
-
distributed: bigint;
|
|
1149
|
-
}
|
|
1150
|
-
], "view">;
|
|
1151
|
-
getFunction(nameOrSignature: "rewardPerTokenStored"): TypedContractMethod<[], [bigint], "view">;
|
|
1152
|
-
getFunction(nameOrSignature: "rewardRate"): TypedContractMethod<[], [bigint], "view">;
|
|
1153
|
-
getFunction(nameOrSignature: "rewardToken"): TypedContractMethod<[], [string], "view">;
|
|
1154
|
-
getFunction(nameOrSignature: "rewardTokenDecimals"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
1155
|
-
getFunction(nameOrSignature: "rewardTokens"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
1156
|
-
getFunction(nameOrSignature: "rewards"): TypedContractMethod<[
|
|
1157
|
-
arg0: AddressLike,
|
|
1158
|
-
arg1: AddressLike
|
|
1159
|
-
], [
|
|
1160
|
-
bigint
|
|
1161
|
-
], "view">;
|
|
1162
|
-
getFunction(nameOrSignature: "setBoostAmplificationEnabled"): TypedContractMethod<[enabled: boolean], [void], "nonpayable">;
|
|
1163
|
-
getFunction(nameOrSignature: "setDistributionCap"): TypedContractMethod<[newCap: BigNumberish], [void], "nonpayable">;
|
|
1164
|
-
getFunction(nameOrSignature: "setDistributorApproval"): TypedContractMethod<[
|
|
1165
|
-
distributor: AddressLike,
|
|
1166
|
-
isApproved: boolean
|
|
1167
|
-
], [
|
|
1168
|
-
void
|
|
1169
|
-
], "nonpayable">;
|
|
1170
|
-
getFunction(nameOrSignature: "setEmergencyPaused"): TypedContractMethod<[newPaused: boolean], [void], "nonpayable">;
|
|
1171
|
-
getFunction(nameOrSignature: "setInitialWeight"): TypedContractMethod<[weight: BigNumberish], [void], "nonpayable">;
|
|
1172
|
-
getFunction(nameOrSignature: "setMaxEmission"): TypedContractMethod<[emission: BigNumberish], [void], "nonpayable">;
|
|
1173
|
-
getFunction(nameOrSignature: "setPeriodDuration"): TypedContractMethod<[
|
|
1174
|
-
newPeriodDuration: BigNumberish
|
|
1175
|
-
], [
|
|
1176
|
-
void
|
|
1177
|
-
], "nonpayable">;
|
|
1178
|
-
getFunction(nameOrSignature: "setTokenBoostRatio"): TypedContractMethod<[
|
|
1179
|
-
token: AddressLike,
|
|
1180
|
-
ratio: BigNumberish
|
|
1181
|
-
], [
|
|
1182
|
-
void
|
|
1183
|
-
], "nonpayable">;
|
|
1184
|
-
getFunction(nameOrSignature: "setTokenEmissionCap"): TypedContractMethod<[
|
|
1185
|
-
token: AddressLike,
|
|
1186
|
-
emissionCap: BigNumberish
|
|
1187
|
-
], [
|
|
1188
|
-
void
|
|
1189
|
-
], "nonpayable">;
|
|
1190
|
-
getFunction(nameOrSignature: "stake"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
1191
|
-
getFunction(nameOrSignature: "stakingToken"): TypedContractMethod<[], [string], "view">;
|
|
1192
|
-
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
1193
|
-
getFunction(nameOrSignature: "syncRewardData"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
|
|
1194
|
-
getFunction(nameOrSignature: "syncRewardTokens"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1195
|
-
getFunction(nameOrSignature: "tokenBoostRatios"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
1196
|
-
getFunction(nameOrSignature: "totalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
1197
|
-
getFunction(nameOrSignature: "totalVotes"): TypedContractMethod<[], [bigint], "view">;
|
|
1198
|
-
getFunction(nameOrSignature: "updatePeriod"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1199
|
-
getFunction(nameOrSignature: "updateUserRewards"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1200
|
-
getFunction(nameOrSignature: "userCheckpointCounts"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
1201
|
-
getFunction(nameOrSignature: "userCheckpoints"): TypedContractMethod<[
|
|
1202
|
-
arg0: AddressLike,
|
|
1203
|
-
arg1: BigNumberish
|
|
1204
|
-
], [
|
|
1205
|
-
[
|
|
1206
|
-
bigint,
|
|
1207
|
-
bigint,
|
|
1208
|
-
bigint,
|
|
1209
|
-
bigint,
|
|
1210
|
-
bigint,
|
|
1211
|
-
bigint
|
|
1212
|
-
] & {
|
|
1213
|
-
timestamp: bigint;
|
|
1214
|
-
balance: bigint;
|
|
1215
|
-
workingBalance: bigint;
|
|
1216
|
-
rewardPerToken: bigint;
|
|
1217
|
-
slope: bigint;
|
|
1218
|
-
bias: bigint;
|
|
1219
|
-
}
|
|
1220
|
-
], "view">;
|
|
1221
|
-
getFunction(nameOrSignature: "userClaimedRewards"): TypedContractMethod<[
|
|
1222
|
-
arg0: AddressLike,
|
|
1223
|
-
arg1: AddressLike
|
|
1224
|
-
], [
|
|
1225
|
-
bigint
|
|
1226
|
-
], "view">;
|
|
1227
|
-
getFunction(nameOrSignature: "userRewardData"): TypedContractMethod<[
|
|
1228
|
-
arg0: AddressLike,
|
|
1229
|
-
arg1: AddressLike
|
|
1230
|
-
], [
|
|
1231
|
-
[
|
|
1232
|
-
bigint,
|
|
1233
|
-
bigint,
|
|
1234
|
-
bigint
|
|
1235
|
-
] & {
|
|
1236
|
-
integral: bigint;
|
|
1237
|
-
lastUpdate: bigint;
|
|
1238
|
-
claimable: bigint;
|
|
1239
|
-
}
|
|
1240
|
-
], "view">;
|
|
1241
|
-
getFunction(nameOrSignature: "userRewardPerTokenPaid"): TypedContractMethod<[
|
|
1242
|
-
arg0: AddressLike,
|
|
1243
|
-
arg1: AddressLike
|
|
1244
|
-
], [
|
|
1245
|
-
bigint
|
|
1246
|
-
], "view">;
|
|
1247
|
-
getFunction(nameOrSignature: "userVotes"): TypedContractMethod<[
|
|
1248
|
-
arg0: AddressLike
|
|
1249
|
-
], [
|
|
1250
|
-
[
|
|
1251
|
-
bigint,
|
|
1252
|
-
bigint,
|
|
1253
|
-
bigint
|
|
1254
|
-
] & {
|
|
1255
|
-
direction: bigint;
|
|
1256
|
-
weight: bigint;
|
|
1257
|
-
timestamp: bigint;
|
|
1258
|
-
}
|
|
1259
|
-
], "view">;
|
|
1260
|
-
getFunction(nameOrSignature: "voteDirection"): TypedContractMethod<[direction: BigNumberish], [void], "nonpayable">;
|
|
1261
|
-
getFunction(nameOrSignature: "weightPeriod"): TypedContractMethod<[
|
|
1262
|
-
], [
|
|
1263
|
-
[
|
|
1264
|
-
bigint,
|
|
1265
|
-
bigint,
|
|
1266
|
-
bigint,
|
|
1267
|
-
bigint,
|
|
1268
|
-
bigint,
|
|
1269
|
-
bigint,
|
|
1270
|
-
bigint
|
|
1271
|
-
] & {
|
|
1272
|
-
startTime: bigint;
|
|
1273
|
-
endTime: bigint;
|
|
1274
|
-
lastUpdateTime: bigint;
|
|
1275
|
-
value: bigint;
|
|
1276
|
-
weightedSum: bigint;
|
|
1277
|
-
totalDuration: bigint;
|
|
1278
|
-
weight: bigint;
|
|
1279
|
-
}
|
|
1280
|
-
], "view">;
|
|
1281
|
-
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
1282
|
-
getFunction(nameOrSignature: "workingBalances"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
1283
|
-
getFunction(nameOrSignature: "workingSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
1284
|
-
getEvent(key: "BoostAmplificationToggled"): TypedContractEvent<BoostAmplificationToggledEvent.InputTuple, BoostAmplificationToggledEvent.OutputTuple, BoostAmplificationToggledEvent.OutputObject>;
|
|
1285
|
-
getEvent(key: "Checkpoint"): TypedContractEvent<CheckpointEvent.InputTuple, CheckpointEvent.OutputTuple, CheckpointEvent.OutputObject>;
|
|
1286
|
-
getEvent(key: "DirectionVoted"): TypedContractEvent<DirectionVotedEvent.InputTuple, DirectionVotedEvent.OutputTuple, DirectionVotedEvent.OutputObject>;
|
|
1287
|
-
getEvent(key: "DistributionCapUpdated"): TypedContractEvent<DistributionCapUpdatedEvent.InputTuple, DistributionCapUpdatedEvent.OutputTuple, DistributionCapUpdatedEvent.OutputObject>;
|
|
1288
|
-
getEvent(key: "DistributorApprovalUpdated"): TypedContractEvent<DistributorApprovalUpdatedEvent.InputTuple, DistributorApprovalUpdatedEvent.OutputTuple, DistributorApprovalUpdatedEvent.OutputObject>;
|
|
1289
|
-
getEvent(key: "DistributorUpdated"): TypedContractEvent<DistributorUpdatedEvent.InputTuple, DistributorUpdatedEvent.OutputTuple, DistributorUpdatedEvent.OutputObject>;
|
|
1290
|
-
getEvent(key: "EmergencyPauseUpdated"): TypedContractEvent<EmergencyPauseUpdatedEvent.InputTuple, EmergencyPauseUpdatedEvent.OutputTuple, EmergencyPauseUpdatedEvent.OutputObject>;
|
|
1291
|
-
getEvent(key: "EmissionCapUpdated"): TypedContractEvent<EmissionCapUpdatedEvent.InputTuple, EmissionCapUpdatedEvent.OutputTuple, EmissionCapUpdatedEvent.OutputObject>;
|
|
1292
|
-
getEvent(key: "EmissionUpdated"): TypedContractEvent<EmissionUpdatedEvent.InputTuple, EmissionUpdatedEvent.OutputTuple, EmissionUpdatedEvent.OutputObject>;
|
|
1293
|
-
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
1294
|
-
getEvent(key: "PeriodCreated"): TypedContractEvent<PeriodCreatedEvent.InputTuple, PeriodCreatedEvent.OutputTuple, PeriodCreatedEvent.OutputObject>;
|
|
1295
|
-
getEvent(key: "PeriodDurationUpdated"): TypedContractEvent<PeriodDurationUpdatedEvent.InputTuple, PeriodDurationUpdatedEvent.OutputTuple, PeriodDurationUpdatedEvent.OutputObject>;
|
|
1296
|
-
getEvent(key: "PeriodUpdated"): TypedContractEvent<PeriodUpdatedEvent.InputTuple, PeriodUpdatedEvent.OutputTuple, PeriodUpdatedEvent.OutputObject>;
|
|
1297
|
-
getEvent(key: "RewardNotified"): TypedContractEvent<RewardNotifiedEvent.InputTuple, RewardNotifiedEvent.OutputTuple, RewardNotifiedEvent.OutputObject>;
|
|
1298
|
-
getEvent(key: "RewardPaid"): TypedContractEvent<RewardPaidEvent.InputTuple, RewardPaidEvent.OutputTuple, RewardPaidEvent.OutputObject>;
|
|
1299
|
-
getEvent(key: "RewardTokenAdded"): TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
1300
|
-
getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1301
|
-
getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
1302
|
-
getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
1303
|
-
getEvent(key: "Staked"): TypedContractEvent<StakedEvent.InputTuple, StakedEvent.OutputTuple, StakedEvent.OutputObject>;
|
|
1304
|
-
getEvent(key: "TokenBoostRatioUpdated"): TypedContractEvent<TokenBoostRatioUpdatedEvent.InputTuple, TokenBoostRatioUpdatedEvent.OutputTuple, TokenBoostRatioUpdatedEvent.OutputObject>;
|
|
1305
|
-
getEvent(key: "TokenEmissionCapUpdated"): TypedContractEvent<TokenEmissionCapUpdatedEvent.InputTuple, TokenEmissionCapUpdatedEvent.OutputTuple, TokenEmissionCapUpdatedEvent.OutputObject>;
|
|
1306
|
-
getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
1307
|
-
getEvent(key: "UserRewardDataUpdated"): TypedContractEvent<UserRewardDataUpdatedEvent.InputTuple, UserRewardDataUpdatedEvent.OutputTuple, UserRewardDataUpdatedEvent.OutputObject>;
|
|
1308
|
-
getEvent(key: "UserRewardsUpdated"): TypedContractEvent<UserRewardsUpdatedEvent.InputTuple, UserRewardsUpdatedEvent.OutputTuple, UserRewardsUpdatedEvent.OutputObject>;
|
|
1309
|
-
getEvent(key: "Withdrawn"): TypedContractEvent<WithdrawnEvent.InputTuple, WithdrawnEvent.OutputTuple, WithdrawnEvent.OutputObject>;
|
|
1310
|
-
getEvent(key: "WorkingBalanceUpdated"): TypedContractEvent<WorkingBalanceUpdatedEvent.InputTuple, WorkingBalanceUpdatedEvent.OutputTuple, WorkingBalanceUpdatedEvent.OutputObject>;
|
|
1311
|
-
filters: {
|
|
1312
|
-
"BoostAmplificationToggled(bool)": TypedContractEvent<BoostAmplificationToggledEvent.InputTuple, BoostAmplificationToggledEvent.OutputTuple, BoostAmplificationToggledEvent.OutputObject>;
|
|
1313
|
-
BoostAmplificationToggled: TypedContractEvent<BoostAmplificationToggledEvent.InputTuple, BoostAmplificationToggledEvent.OutputTuple, BoostAmplificationToggledEvent.OutputObject>;
|
|
1314
|
-
"Checkpoint(address,uint256)": TypedContractEvent<CheckpointEvent.InputTuple, CheckpointEvent.OutputTuple, CheckpointEvent.OutputObject>;
|
|
1315
|
-
Checkpoint: TypedContractEvent<CheckpointEvent.InputTuple, CheckpointEvent.OutputTuple, CheckpointEvent.OutputObject>;
|
|
1316
|
-
"DirectionVoted(address,uint256,uint256)": TypedContractEvent<DirectionVotedEvent.InputTuple, DirectionVotedEvent.OutputTuple, DirectionVotedEvent.OutputObject>;
|
|
1317
|
-
DirectionVoted: TypedContractEvent<DirectionVotedEvent.InputTuple, DirectionVotedEvent.OutputTuple, DirectionVotedEvent.OutputObject>;
|
|
1318
|
-
"DistributionCapUpdated(uint256)": TypedContractEvent<DistributionCapUpdatedEvent.InputTuple, DistributionCapUpdatedEvent.OutputTuple, DistributionCapUpdatedEvent.OutputObject>;
|
|
1319
|
-
DistributionCapUpdated: TypedContractEvent<DistributionCapUpdatedEvent.InputTuple, DistributionCapUpdatedEvent.OutputTuple, DistributionCapUpdatedEvent.OutputObject>;
|
|
1320
|
-
"DistributorApprovalUpdated(address,bool)": TypedContractEvent<DistributorApprovalUpdatedEvent.InputTuple, DistributorApprovalUpdatedEvent.OutputTuple, DistributorApprovalUpdatedEvent.OutputObject>;
|
|
1321
|
-
DistributorApprovalUpdated: TypedContractEvent<DistributorApprovalUpdatedEvent.InputTuple, DistributorApprovalUpdatedEvent.OutputTuple, DistributorApprovalUpdatedEvent.OutputObject>;
|
|
1322
|
-
"DistributorUpdated(address,bool)": TypedContractEvent<DistributorUpdatedEvent.InputTuple, DistributorUpdatedEvent.OutputTuple, DistributorUpdatedEvent.OutputObject>;
|
|
1323
|
-
DistributorUpdated: TypedContractEvent<DistributorUpdatedEvent.InputTuple, DistributorUpdatedEvent.OutputTuple, DistributorUpdatedEvent.OutputObject>;
|
|
1324
|
-
"EmergencyPauseUpdated(bool)": TypedContractEvent<EmergencyPauseUpdatedEvent.InputTuple, EmergencyPauseUpdatedEvent.OutputTuple, EmergencyPauseUpdatedEvent.OutputObject>;
|
|
1325
|
-
EmergencyPauseUpdated: TypedContractEvent<EmergencyPauseUpdatedEvent.InputTuple, EmergencyPauseUpdatedEvent.OutputTuple, EmergencyPauseUpdatedEvent.OutputObject>;
|
|
1326
|
-
"EmissionCapUpdated(uint256)": TypedContractEvent<EmissionCapUpdatedEvent.InputTuple, EmissionCapUpdatedEvent.OutputTuple, EmissionCapUpdatedEvent.OutputObject>;
|
|
1327
|
-
EmissionCapUpdated: TypedContractEvent<EmissionCapUpdatedEvent.InputTuple, EmissionCapUpdatedEvent.OutputTuple, EmissionCapUpdatedEvent.OutputObject>;
|
|
1328
|
-
"EmissionUpdated(uint256)": TypedContractEvent<EmissionUpdatedEvent.InputTuple, EmissionUpdatedEvent.OutputTuple, EmissionUpdatedEvent.OutputObject>;
|
|
1329
|
-
EmissionUpdated: TypedContractEvent<EmissionUpdatedEvent.InputTuple, EmissionUpdatedEvent.OutputTuple, EmissionUpdatedEvent.OutputObject>;
|
|
1330
|
-
"Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
1331
|
-
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
1332
|
-
"PeriodCreated(uint256,uint256,uint256)": TypedContractEvent<PeriodCreatedEvent.InputTuple, PeriodCreatedEvent.OutputTuple, PeriodCreatedEvent.OutputObject>;
|
|
1333
|
-
PeriodCreated: TypedContractEvent<PeriodCreatedEvent.InputTuple, PeriodCreatedEvent.OutputTuple, PeriodCreatedEvent.OutputObject>;
|
|
1334
|
-
"PeriodDurationUpdated(uint256)": TypedContractEvent<PeriodDurationUpdatedEvent.InputTuple, PeriodDurationUpdatedEvent.OutputTuple, PeriodDurationUpdatedEvent.OutputObject>;
|
|
1335
|
-
PeriodDurationUpdated: TypedContractEvent<PeriodDurationUpdatedEvent.InputTuple, PeriodDurationUpdatedEvent.OutputTuple, PeriodDurationUpdatedEvent.OutputObject>;
|
|
1336
|
-
"PeriodUpdated(uint256,uint256)": TypedContractEvent<PeriodUpdatedEvent.InputTuple, PeriodUpdatedEvent.OutputTuple, PeriodUpdatedEvent.OutputObject>;
|
|
1337
|
-
PeriodUpdated: TypedContractEvent<PeriodUpdatedEvent.InputTuple, PeriodUpdatedEvent.OutputTuple, PeriodUpdatedEvent.OutputObject>;
|
|
1338
|
-
"RewardNotified(address,uint256,uint256)": TypedContractEvent<RewardNotifiedEvent.InputTuple, RewardNotifiedEvent.OutputTuple, RewardNotifiedEvent.OutputObject>;
|
|
1339
|
-
RewardNotified: TypedContractEvent<RewardNotifiedEvent.InputTuple, RewardNotifiedEvent.OutputTuple, RewardNotifiedEvent.OutputObject>;
|
|
1340
|
-
"RewardPaid(address,address,uint256)": TypedContractEvent<RewardPaidEvent.InputTuple, RewardPaidEvent.OutputTuple, RewardPaidEvent.OutputObject>;
|
|
1341
|
-
RewardPaid: TypedContractEvent<RewardPaidEvent.InputTuple, RewardPaidEvent.OutputTuple, RewardPaidEvent.OutputObject>;
|
|
1342
|
-
"RewardTokenAdded(address)": TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
1343
|
-
RewardTokenAdded: TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
1344
|
-
"RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1345
|
-
RoleAdminChanged: TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1346
|
-
"RoleGranted(bytes32,address,address)": TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
1347
|
-
RoleGranted: TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
1348
|
-
"RoleRevoked(bytes32,address,address)": TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
1349
|
-
RoleRevoked: TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
1350
|
-
"Staked(address,uint256)": TypedContractEvent<StakedEvent.InputTuple, StakedEvent.OutputTuple, StakedEvent.OutputObject>;
|
|
1351
|
-
Staked: TypedContractEvent<StakedEvent.InputTuple, StakedEvent.OutputTuple, StakedEvent.OutputObject>;
|
|
1352
|
-
"TokenBoostRatioUpdated(address,uint256)": TypedContractEvent<TokenBoostRatioUpdatedEvent.InputTuple, TokenBoostRatioUpdatedEvent.OutputTuple, TokenBoostRatioUpdatedEvent.OutputObject>;
|
|
1353
|
-
TokenBoostRatioUpdated: TypedContractEvent<TokenBoostRatioUpdatedEvent.InputTuple, TokenBoostRatioUpdatedEvent.OutputTuple, TokenBoostRatioUpdatedEvent.OutputObject>;
|
|
1354
|
-
"TokenEmissionCapUpdated(address,uint256)": TypedContractEvent<TokenEmissionCapUpdatedEvent.InputTuple, TokenEmissionCapUpdatedEvent.OutputTuple, TokenEmissionCapUpdatedEvent.OutputObject>;
|
|
1355
|
-
TokenEmissionCapUpdated: TypedContractEvent<TokenEmissionCapUpdatedEvent.InputTuple, TokenEmissionCapUpdatedEvent.OutputTuple, TokenEmissionCapUpdatedEvent.OutputObject>;
|
|
1356
|
-
"Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
1357
|
-
Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
1358
|
-
"UserRewardDataUpdated(address,address,uint256,uint256)": TypedContractEvent<UserRewardDataUpdatedEvent.InputTuple, UserRewardDataUpdatedEvent.OutputTuple, UserRewardDataUpdatedEvent.OutputObject>;
|
|
1359
|
-
UserRewardDataUpdated: TypedContractEvent<UserRewardDataUpdatedEvent.InputTuple, UserRewardDataUpdatedEvent.OutputTuple, UserRewardDataUpdatedEvent.OutputObject>;
|
|
1360
|
-
"UserRewardsUpdated(address,uint256)": TypedContractEvent<UserRewardsUpdatedEvent.InputTuple, UserRewardsUpdatedEvent.OutputTuple, UserRewardsUpdatedEvent.OutputObject>;
|
|
1361
|
-
UserRewardsUpdated: TypedContractEvent<UserRewardsUpdatedEvent.InputTuple, UserRewardsUpdatedEvent.OutputTuple, UserRewardsUpdatedEvent.OutputObject>;
|
|
1362
|
-
"Withdrawn(address,uint256)": TypedContractEvent<WithdrawnEvent.InputTuple, WithdrawnEvent.OutputTuple, WithdrawnEvent.OutputObject>;
|
|
1363
|
-
Withdrawn: TypedContractEvent<WithdrawnEvent.InputTuple, WithdrawnEvent.OutputTuple, WithdrawnEvent.OutputObject>;
|
|
1364
|
-
"WorkingBalanceUpdated(address,uint256)": TypedContractEvent<WorkingBalanceUpdatedEvent.InputTuple, WorkingBalanceUpdatedEvent.OutputTuple, WorkingBalanceUpdatedEvent.OutputObject>;
|
|
1365
|
-
WorkingBalanceUpdated: TypedContractEvent<WorkingBalanceUpdatedEvent.InputTuple, WorkingBalanceUpdatedEvent.OutputTuple, WorkingBalanceUpdatedEvent.OutputObject>;
|
|
1366
|
-
};
|
|
1367
|
-
}
|