@raac/rpc 1.1.0-beta.42 → 1.1.0-beta.44
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 +4 -0
- package/dist/minter/get.js +1 -3
- package/dist/minter/getApy.js +2 -2
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +2 -1
- package/dist/pools/stabilityPool/_helpers.js +11 -0
- package/dist/pools/stabilityPool/getStabilityPoolInfo.js +2 -18
- package/dist/pools/stabilityPool/getWithdrawRequestInfo.js +23 -0
- package/dist/pools/stabilityPool/requestWithdraw.js +23 -0
- package/dist/scripts/index.js +2 -4
- package/dist/types/RPCLibrary.d.ts +4 -0
- package/dist/types/pools/lendingPool/getParameters.d.ts +1 -1
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +1 -0
- package/dist/types/pools/stabilityPool/_helpers.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +0 -2
- package/dist/types/pools/stabilityPool/getWithdrawRequestInfo.d.ts +9 -0
- package/dist/types/pools/stabilityPool/requestWithdraw.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -3
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +1 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +117 -170
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +17 -5
- package/dist/types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +51 -50
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +19 -1
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +2 -6
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +1 -41
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +36 -20
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +116 -10
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +37 -0
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +49 -107
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +34 -42
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +34 -42
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +42 -42
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +41 -13
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +19 -7
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +237 -59
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +41 -13
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +231 -0
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +132 -8
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -1
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +49 -9
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +6 -109
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +117 -31
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +11 -19
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +176 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +17 -7
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts +218 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +47 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +64 -15
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +3 -2
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +85 -44
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +23 -42
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +101 -5
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +2 -6
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +1 -37
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +21 -20
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +47 -1
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +8 -68
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +35 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +16 -54
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +157 -40
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +45 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +1 -13
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +91 -29
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +7 -19
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +70 -13
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +37 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +1 -3
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +33 -1
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +23 -58
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +350 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +37 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +151 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +169 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +171 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +4 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +2 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +1 -5
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +16 -54
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +39 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +234 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +5 -1
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +185 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +33 -2
- package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +34 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +472 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +632 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -9
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +393 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +149 -226
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +97 -60
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +179 -1
- 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 +49 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +180 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +180 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +14 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -71
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +43 -10
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +135 -14
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +74 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +52 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +35 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +46 -38
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +95 -131
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +66 -38
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +76 -38
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +44 -22
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +56 -8
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +44 -22
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +276 -73
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +320 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +159 -11
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +97 -7
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +2 -173
- 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 +146 -24
- 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 +36 -16
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +21 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +311 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +26 -6
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +350 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +72 -19
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +2 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +66 -95
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +20 -49
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +133 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +24 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -60
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +19 -16
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +52 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +1 -89
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +42 -78
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +180 -45
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +80 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +0 -20
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +84 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +8 -18
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +91 -18
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts +41 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/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 +21 -68
- 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 +661 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +65 -0
- 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/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +42 -0
- 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 +242 -0
- 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 +184 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +4 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +21 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +43 -69
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -5
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +21 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- 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/MockDistributableContract__factory.d.ts +21 -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/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +417 -0
- 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 +21 -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/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +21 -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 +224 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +1 -0
- 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 +34 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +64 -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 +21 -1
- package/dist/types/typechain-types/index.d.ts +52 -16
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +67 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +205 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +69 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +69 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +103 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +143 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +529 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +109 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +192 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +45 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +155 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +156 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +731 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +77 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +231 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +318 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +318 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +12 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +68 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +36 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts +36 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +69 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/common.d.ts +50 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +264 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +909 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +127 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/Treasury.d.ts +298 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/index.d.ts +7 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +573 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +1367 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +1103 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +641 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +1371 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +1375 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +586 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +477 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/index.d.ts +18 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +721 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +808 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +509 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +183 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +310 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +221 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +227 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +241 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +263 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +2112 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +432 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +530 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +485 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +186 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +136 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +283 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +810 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +168 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +203 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +231 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +284 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DEToken.d.ts +424 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DebtToken.d.ts +326 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/IndexToken.d.ts +340 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/LPToken.d.ts +224 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +897 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACToken.d.ts +401 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RToken.d.ts +543 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +264 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +1077 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +176 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +174 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +188 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts +218 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +47 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RWAVault.d.ts +560 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/contracts/index.d.ts +10 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +63 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IHousePrices.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +240 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +75 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IPoolManager.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +164 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IUSDC.d.ts +129 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +59 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +537 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +120 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +269 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +623 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +235 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +523 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +351 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +551 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +309 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/index.d.ts +16 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +332 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +302 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +345 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +238 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +136 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +57 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +185 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +152 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +51 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +1163 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +102 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +51 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +443 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +270 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +279 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +187 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +630 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +346 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +385 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +197 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +621 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +265 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +83 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +87 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +176 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +357 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/index.d.ts +11 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +137 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +216 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +55 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/LockManager.d.ts +94 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +93 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +45 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +66 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +80 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +124 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +134 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +225 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +350 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +56 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +845 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +76 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/index.d.ts +18 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +394 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +151 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +41 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +45 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +43 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +169 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +731 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +171 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +237 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +243 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/index.d.ts +10 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +121 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +152 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +1183 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +486 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +55 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +69 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +47 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +212 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +234 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +155 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +229 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +292 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +216 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +187 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +155 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +510 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +186 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +290 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +204 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +83 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +173 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +160 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +41 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +281 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/index.d.ts +7 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +203 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +78 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +229 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +185 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +71 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +100 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/Auction.d.ts +275 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/AuctionFactory.d.ts +209 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENO.d.ts +293 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENOFactory.d.ts +151 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +268 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +48 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +90 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +86 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +93 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +191 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +663 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +139 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +194 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +27 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +155 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +32 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +171 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +944 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +95 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +289 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts +43 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +472 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +632 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +50 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +26 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +82 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +63 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +393 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1329 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +223 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +437 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +716 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +1815 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1448 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +896 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1856 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1866 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +950 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +797 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1052 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1103 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +717 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +245 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +436 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +334 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +336 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +74 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +52 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +403 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +407 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +586 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +2699 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +744 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +674 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +303 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +275 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +390 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +277 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +1166 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +320 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +276 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +407 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +741 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +576 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +602 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +401 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +1358 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +652 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +901 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +465 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1544 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +285 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +311 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +307 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +350 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +861 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +71 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +272 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +77 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +43 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +189 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +147 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +75 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +718 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +136 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +295 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +775 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +623 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +425 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +307 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +852 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +492 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +390 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +390 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +397 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +286 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +143 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +233 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +203 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +191 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +1419 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +61 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +56 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +567 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +336 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +372 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +227 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +764 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +436 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +486 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +223 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +761 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +329 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +137 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts +41 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +115 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +258 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +503 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +173 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +288 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +54 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +68 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +120 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +115 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +92 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +74 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +97 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +135 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +26 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +165 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +353 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +661 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +65 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +1194 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +36 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +65 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +100 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +615 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +66 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +62 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +242 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +944 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +184 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +352 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +354 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +224 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +1471 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +195 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +795 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +84 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +109 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +50 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +68 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +64 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +417 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +379 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +286 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +388 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +451 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +393 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +324 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +278 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +714 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +335 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +525 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +40 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +282 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +124 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +206 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +208 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +70 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +341 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +247 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +154 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +224 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +287 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +80 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +113 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +287 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +452 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +235 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +564 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/index.d.ts +437 -0
- package/package.json +1 -1
package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts
ADDED
|
@@ -0,0 +1,1367 @@
|
|
|
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
|
+
}
|