@raac/rpc 1.1.0-beta.63 → 1.1.0-beta.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +8 -8
- package/dist/oracles/houses/request.js +1 -1
- package/dist/oracles/prime-rate/request.js +1 -1
- package/dist/pools/rwaVault/depositToRWAVault.js +3 -10
- package/dist/pools/rwaVault/getRWAVaultInfo.js +1 -9
- package/dist/pools/rwaVault/previewDeposit.js +16 -0
- package/dist/pools/rwaVault/previewWithdraw.js +16 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +3 -4
- package/dist/scripts/index.js +1 -1
- package/dist/types/RPCLibrary.d.ts +4 -4
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +2 -2
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +0 -4
- package/dist/types/pools/rwaVault/previewDeposit.d.ts +4 -0
- package/dist/types/pools/rwaVault/previewWithdraw.d.ts +4 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +3 -2
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/{typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts → @openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.d.ts} +4 -4
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +65 -10
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +2 -2
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +316 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts} +33 -11
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts} +9 -9
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → contracts/core/pools/LendingPool}/ERC721AssetAdapter.d.ts +20 -2
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +86 -49
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +69 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +69 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +73 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +22 -16
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +58 -44
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +17 -13
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +85 -87
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +9 -19
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +7 -3
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +76 -2
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol → contracts/core/vaults}/ERC721VaultAdapter.d.ts +24 -2
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts → contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts} +79 -35
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +270 -63
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +2 -4
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts → contracts/interfaces/core/collectors/IDistributionTarget.d.ts} +13 -5
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +53 -2
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → contracts/interfaces/core/oracles/IERC721PriceOracle.d.ts} +6 -6
- package/dist/types/typechain-types/{typechain-types/contracts/interfaces/IHousePrices.d.ts → contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts} +12 -12
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer.d.ts +71 -0
- package/dist/types/typechain-types/{typechain-types/contracts/interfaces/core/oracles → contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices.d.ts +20 -28
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +4 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +66 -4
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +52 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +34 -24
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +5 -19
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +7 -3
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +38 -2
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +258 -23
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +9 -1
- package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts → contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts} +9 -13
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA.d.ts +59 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts → contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool.d.ts} +138 -31
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +9 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +66 -4
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +5 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts → factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +94 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +6 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +124 -23
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts} +118 -116
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle__factory.d.ts} +22 -18
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts} +6 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +199 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +149 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → factories/contracts/core/pools/LendingPool}/ERC721AssetAdapter__factory.d.ts +30 -4
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +62 -25
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +94 -41
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +62 -25
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +73 -30
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +27 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +17 -3
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +23 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +78 -64
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +96 -78
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +26 -18
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +21 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +88 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +25 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +22 -4
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +417 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +247 -68
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +2 -2
- package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts → factories/contracts/interfaces/core/collectors/IDistributionTarget__factory.d.ts} +13 -17
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/interfaces/core/oracles/IERC721PriceOracle__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer__factory.d.ts +59 -0
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/oracles → factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices__factory.d.ts +28 -14
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +3 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +26 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +67 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +45 -23
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +5 -15
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +38 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +210 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts} +7 -7
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +98 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +199 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +149 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +958 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +68 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +27 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +9 -5
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
- package/dist/types/typechain-types/index.d.ts +28 -14
- package/package.json +1 -1
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +0 -23
- package/dist/pools/lendingPool/requestWithdraw.js +0 -28
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +0 -9
- package/dist/types/pools/lendingPool/requestWithdraw.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +0 -67
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +0 -205
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +0 -103
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +0 -143
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +0 -529
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +0 -109
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +0 -192
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +0 -731
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +0 -159
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +0 -54
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +0 -77
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +0 -231
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +0 -318
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +0 -141
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +0 -236
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +0 -318
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -141
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +0 -61
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +0 -211
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -199
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +0 -233
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +0 -221
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -211
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -12
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +0 -36
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/common.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +0 -909
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +0 -127
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/Treasury.d.ts +0 -298
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +0 -1367
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +0 -1103
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +0 -641
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +0 -1371
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +0 -1375
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +0 -586
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +0 -477
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/index.d.ts +0 -18
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +0 -721
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +0 -808
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +0 -509
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +0 -183
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +0 -310
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +0 -221
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +0 -241
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +0 -2112
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +0 -432
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +0 -530
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +0 -485
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +0 -186
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +0 -810
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +0 -168
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +0 -231
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +0 -284
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DEToken.d.ts +0 -424
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DebtToken.d.ts +0 -326
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/IndexToken.d.ts +0 -340
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/LPToken.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +0 -897
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACToken.d.ts +0 -401
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RToken.d.ts +0 -543
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +0 -1077
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +0 -176
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +0 -174
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +0 -47
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RWAVault.d.ts +0 -560
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/index.d.ts +0 -10
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +0 -63
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IERC20.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +0 -240
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +0 -75
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IUSDC.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +0 -537
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +0 -120
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +0 -623
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +0 -523
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +0 -351
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +0 -551
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +0 -309
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/index.d.ts +0 -16
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +0 -332
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +0 -302
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +0 -345
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +0 -238
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +0 -185
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +0 -152
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +0 -51
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +0 -1163
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +0 -102
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +0 -51
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +0 -443
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +0 -270
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +0 -279
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +0 -187
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +0 -630
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +0 -346
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +0 -385
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +0 -197
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +0 -621
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +0 -265
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +0 -87
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +0 -176
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +0 -357
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/index.d.ts +0 -11
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +0 -137
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +0 -216
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/LockManager.d.ts +0 -94
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +0 -93
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/libraries/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +0 -80
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +0 -124
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +0 -134
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +0 -225
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +0 -350
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +0 -56
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +0 -76
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/index.d.ts +0 -18
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +0 -394
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +0 -151
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +0 -41
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +0 -43
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +0 -169
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +0 -731
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +0 -171
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +0 -237
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +0 -243
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/index.d.ts +0 -10
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +0 -121
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +0 -152
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +0 -1183
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +0 -47
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +0 -212
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +0 -234
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +0 -229
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +0 -292
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +0 -216
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +0 -187
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +0 -186
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +0 -290
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +0 -204
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +0 -173
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +0 -160
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +0 -41
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +0 -229
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +0 -185
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/zeno/Auction.d.ts +0 -275
- package/dist/types/typechain-types/typechain-types/contracts/zeno/AuctionFactory.d.ts +0 -209
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENO.d.ts +0 -293
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENOFactory.d.ts +0 -151
- package/dist/types/typechain-types/typechain-types/contracts/zeno/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +0 -268
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +0 -48
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +0 -90
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +0 -86
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +0 -93
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +0 -191
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +0 -663
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +0 -139
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +0 -194
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +0 -27
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +0 -32
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +0 -944
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +0 -181
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +0 -157
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +0 -95
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +0 -64
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +0 -289
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +0 -472
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +0 -46
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +0 -241
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +0 -402
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +0 -632
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -177
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +0 -46
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +0 -337
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +0 -395
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +0 -269
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -261
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +0 -11
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +0 -34
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +0 -34
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +0 -58
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +0 -62
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +0 -82
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +0 -63
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +0 -393
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +0 -1329
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +0 -223
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +0 -389
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +0 -389
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +0 -437
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -1815
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +0 -1448
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +0 -896
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +0 -1856
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +0 -1866
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +0 -950
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +0 -797
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +0 -1052
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +0 -1103
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +0 -717
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +0 -245
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +0 -436
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +0 -334
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +0 -336
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +0 -74
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +0 -52
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +0 -403
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +0 -586
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +0 -2699
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +0 -744
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +0 -674
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +0 -303
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +0 -275
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +0 -277
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +0 -1166
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +0 -320
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +0 -276
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +0 -741
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +0 -576
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +0 -401
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +0 -1358
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +0 -652
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +0 -901
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +0 -465
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +0 -1544
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +0 -285
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +0 -311
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -307
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +0 -350
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +0 -861
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +0 -272
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +0 -77
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +0 -43
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +0 -718
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +0 -775
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +0 -623
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +0 -425
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +0 -852
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +0 -492
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -397
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +0 -286
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +0 -143
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +0 -233
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +0 -191
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -1419
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +0 -61
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +0 -56
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +0 -567
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +0 -336
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +0 -372
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +0 -764
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -436
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +0 -486
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +0 -223
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +0 -761
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +0 -329
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +0 -137
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -115
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +0 -258
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +0 -503
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +0 -173
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +0 -288
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +0 -54
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +0 -120
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +0 -115
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +0 -97
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +0 -135
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +0 -165
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +0 -353
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +0 -661
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +0 -36
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +0 -100
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +0 -615
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +0 -168
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +0 -66
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +0 -62
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -242
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +0 -944
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +0 -184
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +0 -352
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +0 -354
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +0 -1471
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +0 -195
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +0 -795
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +0 -84
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +0 -109
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +0 -64
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +0 -417
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +0 -379
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +0 -286
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +0 -388
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +0 -451
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +0 -393
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +0 -324
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +0 -278
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +0 -335
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +0 -525
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +0 -40
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +0 -282
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +0 -206
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +0 -208
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +0 -247
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +0 -154
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +0 -287
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +0 -80
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +0 -287
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +0 -452
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +0 -235
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +0 -564
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/index.d.ts +0 -437
|
@@ -1,1103 +0,0 @@
|
|
|
1
|
-
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
-
import type { Signer, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
-
import type { NonPayableOverrides } from "../../../../../common";
|
|
4
|
-
import type { RAACMinter, RAACMinterInterface } from "../../../../../contracts/core/minters/RAACMinter/RAACMinter";
|
|
5
|
-
type RAACMinterConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
-
export declare class RAACMinter__factory extends ContractFactory {
|
|
7
|
-
constructor(...args: RAACMinterConstructorParams);
|
|
8
|
-
getDeployTransaction(_raacToken: AddressLike, initialOwner: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
|
-
from?: string;
|
|
10
|
-
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(_raacToken: AddressLike, initialOwner: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
|
-
from?: string;
|
|
13
|
-
}): Promise<RAACMinter & {
|
|
14
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
-
}>;
|
|
16
|
-
connect(runner: ContractRunner | null): RAACMinter__factory;
|
|
17
|
-
static readonly bytecode = "0x60a034620001af57601f620020c638819003918201601f19168301916001600160401b03831184841017620001b4578084926040948552833981010312620001af576200005a60206200005283620001ca565b9201620001ca565b6001600160a01b038181169081156200019657600080546001600160a01b0319811684178255604051919591939083167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08780a36001805560ff19600254166002556631c597113163336008556726e25e056e95802d6009556005600a556046600b551690811580156200018e575b6200017f5750608052671393074ab8be40fc8060075543600655600d556201517f1942014281116200016b57620001439250600e5562015180600f556200013081620001df565b506200013c8162000260565b5062000303565b50604051611d049081620003a282396080518181816104f3015281816117400152611a220152f35b634e487b7160e01b83526011600452602483fd5b63d92e233d60e01b8152600490fd5b5083620000e9565b604051631e4fbdf760e01b815260006004820152602490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b0382168203620001af57565b6001600160a01b031660008181527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff602052604081205490919060ff166200025c5781805260036020526040822081835260205260408220600160ff198254161790553391600080516020620020a68339815191528180a4600190565b5090565b6001600160a01b031660008181527f30adeb818ef77f204f5a603c30fa5332397b6e28fb3b7f9d937ae6a6914716de60205260408120549091907f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9060ff16620002fe5780835260036020526040832082845260205260408320600160ff19825416179055600080516020620020a6833981519152339380a4600190565b505090565b6001600160a01b031660008181527f705976d2a2c155a0b54ca0c2b7cabc2010840e9a89b81adebc8b7b790b76d29560205260408120549091907f73e573f9566d61418a34d5de3ff49360f9c51fec37f7486551670290f6285dab9060ff16620002fe5780835260036020526040832082845260205260408320600160ff19825416179055600080516020620020a6833981519152339380a460019056fe60806040908082526004918236101561001757600080fd5b600091823560e01c90816301ffc9a71461131e575080630342cd2114611300578063048c661d146112d85780630ba84cd2146112625780630bfc1f75146112285780630f648bca146111b8578063113aa8b114611121578063142fc582146111035780632445c937146110e1578063248a9ca3146110b657806327d8c1bb146110985780632f2ff15d1461106e578063313a7a7114610f5b57806332cb6b0c14610f3657806336568abe14610ef15780633b45911a14610e725780633eaf5d9f14610e2b57806347e6338014610e035780634dbac73314610ddf5780634dfbe6f114610d5b578063575014fa14610d3d5780635b39685114610cc05780635c975abb14610c9d5780636822b8bb14610c2d5780636bb987fe14610c115780636eaefec814610b4f578063715018a614610b0757806386ae8bac14610a925780638c3aeb0814610a975780638c5f187a14610a925780638d4564e914610a745780638da5cb5b14610a4d5780638e5e11cb14610a2f57806391d14854146109e857806396afc450146109ca57806396c82e57146109ac57806398d721e0146109085780639a7b5f11146108a75780639ba9e5c414610842578063a217fddf1461088d578063a218141b1461086f578063a59a997314610847578063bad4931114610842578063cb6741ed14610824578063cdafa64914610806578063d547741f146107c6578063d9dbdd0f14610782578063dc2db84d14610705578063de6267e614610522578063e40963f2146104df578063e63ab1e9146104b7578063efd12fc81461045d578063f2fde38b146103e45763f518f0261461027757600080fd5b346103e057806003193601126103e05761028f611372565b6024359161029b61142d565b6001600160a01b0382811680156103d0578086526012602052600160ff818589200154166103c05760028154146103b057600281556102d8611628565b6102e061172b565b808055835192608084016001600160401b0381118582101761039d5792610371610397959360029388967f3cdf4dd043c8cee1d98e28e63fc6f94e550d53e4a116340120f1c2c3cb0698649b9a99528986528b6020870192808452888089019287845260608a019781895281526012602052209751885587019251151560ff80198554169116178355511690611bc4565b5191015561037e83611be9565b61038a8460105461171e565b601055519283928361195d565b0390a180f35b634e487b7160e01b895260418a52602489fd5b8351633ee5aeb560e01b81528890fd5b8351630188c99160e11b81528890fd5b825163d92e233d60e01b81528790fd5b5080fd5b508234610459576020366003190112610459576103ff611372565b906104086115fc565b6001600160a01b0391821692831561044357505082546001600160a01b031981168317845516600080516020611c8f8339815191528380a380f35b51631e4fbdf760e01b8152908101849052602490fd5b8280fd5b50346103e057602090600080516020611caf83398151915261047e366113a3565b939092610489611495565b610491611628565b600160ff19600254161760025551338152a16104ab575080f35b6104b490611646565b80f35b50346103e057816003193601126103e05760209051600080516020611c6f8339815191528152f35b50346103e057816003193601126103e057517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5082346104595760203660031901126104595761053d611372565b9161054661142d565b60018060a01b0380931691828552601260205260019360ff85848820015416156106f6579293919285835b610606575b5050610590601054858752601260205284872054906116e8565b60105560028254146105f857509160209184600285817fd6cd6cc69e93b15025325731d2f2d821600523b00356acbc3704682e12c44e3b97556105d1611628565b6105d961172b565b808055848352601286528284812091818355820155015551908152a180f35b8251633ee5aeb560e01b8152fd5b6011959493958054808310156106eb5790839187610623856113fc565b949054600395861b1c161461064c5750505090610641869392611978565b909192939495610571565b909260009896979894929419918281019081116106d95790610681846106746106a0946113fc565b905490891b1c16916113fc565b90919082549060031b9160018060a01b03809116831b921b1916179055565b825480156106c65701926106b3846113fc565b81939154921b1b19169055558580610576565b634e487b7160e01b8a526031865260248afd5b634e487b7160e01b8b5284875260248bfd5b505094929394610576565b5090516302721e1f60e61b8152fd5b5082346104595760203660031901126104595780359061072361142d565b81158015610778575b61076a5750907f1fb3715671b01e7683667e5567b072e0309d5d13df0ef9f6446f0006c47c1c7391600a549080600a5582519182526020820152a180f35b82516329adebad60e21b8152fd5b506064821161072c565b5082346104595760203660031901126104595735916011548310156107c357506107ad6020926113fc565b905491519160018060a01b039160031b1c168152f35b80fd5b5082903461045957806003193601126104595761080291356107fd60016107eb61138d565b938387526003602052862001546114df565b611585565b5080f35b50346103e057816003193601126103e057602090600e549051908152f35b50346103e057816003193601126103e057602090600a549051908152f35b6113e0565b50346103e057816003193601126103e05760055490516001600160a01b039091168152602090f35b50346103e057816003193601126103e0576020906006549051908152f35b50346103e057816003193601126103e05751908152602090f35b50346103e05760203660031901126103e0576080916001600160a01b0391908190836108d1611372565b168152601260205220908154926002600184015493015492825194855260ff81161515602086015260081c16908301526060820152f35b50823461045957602036600319011261045957610923611372565b61092b61142d565b6001600160a01b031690811561099e5780546001600160a01b0319168217905581516c1cdd18589a5b1a5d1e541bdbdb609a1b905290519081527fbac5a2908c8e68865491ec2c343760aa08acd41de7cbee9b8258d05c5b8a30d990600080516020611c2f83398151915290602090a280f35b825163d92e233d60e01b8152fd5b50346103e057816003193601126103e0576020906010549051908152f35b50346103e057816003193601126103e0576020906007549051908152f35b5082346104595781600319360112610459578160209360ff92610a0961138d565b90358252600386528282206001600160a01b039091168252855220549151911615158152f35b50346103e057816003193601126103e0576020906008549051908152f35b50346103e057816003193601126103e057905490516001600160a01b039091168152602090f35b50346103e057816003193601126103e057602090600b549051908152f35b6113c2565b50823461045957602036600319011261045957803590610ab561142d565b600854821115610af95750907fc75dfdf293290d7c0b82cd4bbd3e59891026c72807e6a904d60b099fdf76d3a691600954908060095582519182526020820152a180f35b825163acabfa6160e01b8152fd5b82346107c357806003193601126107c357610b206115fc565b80546001600160a01b03198116825581906001600160a01b0316600080516020611c8f8339815191528280a380f35b50823461045957610b5f366113a3565b91848052600360205283852033865260205260ff848620541615610bf4575083600755610b8a611628565b600160ff196002541617600255600080516020611caf83398151915260208451338152a1610be5575b5060065490519081527f077382e0341a6d8666d1f8ed15b8c933a01f5c1a3e6c5229e2db8c5dc1c06ae160203392a280f35b610bee90611646565b82610bb3565b6044908585519163e2517d3f60e01b835233908301526024820152fd5b50346103e057816003193601126103e05760209051611be28152f35b50823461045957610c3d366113a3565b929091610c48611495565b6002549060ff821615610c8f575060ff1916600255513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a16104ab575080f35b8251638dfc202b60e01b8152fd5b50346103e057816003193601126103e05760209060ff6002541690519015158152f35b50823461045957602036600319011261045957803590610cde61142d565b81158015610d33575b610d255750907fee018a4b32d34638feed5025ed7c19ded938c601784251ee13fd898854f0d4b991600b549080600b5582519182526020820152a180f35b8251632fb3045560e21b8152fd5b5060648211610ce7565b50346103e057816003193601126103e057602090600f549051908152f35b50823461045957602036600319011261045957803590610d7961142d565b81158015610dce575b610dc05750907fd0b2c4b0d8a73885e6af967e0873f2b6964d56f61cf06fcf57145162b153746591600d549080600d5582519182526020820152a180f35b82516305f840af60e31b8152fd5b506726e25e056e95802d8211610d82565b50346103e057816003193601126103e05760209051690221c991517328d000008152f35b50346103e057816003193601126103e05760209051600080516020611c4f8339815191528152f35b50829034610459578260031936011261045957600260015414610e6557826002600155610e56611628565b610e5e61172b565b6001805580f35b51633ee5aeb560e01b8152fd5b50823461045957602036600319011261045957803590610e9061142d565b81158015610ee5575b610ed75750907f44bdf4c27b08858bf057592811f06b65ae5019592d2491f1f02e332ded4db2a091600f549080600f5582519182526020820152a180f35b8251631e0ea1f760e01b8152fd5b50620151808211610e99565b50346103e057806003193601126103e057610f0a61138d565b90336001600160a01b03831603610f275750610802919235611585565b5163334bd91960e11b81528390fd5b50346103e057816003193601126103e057602090516a115eec47f6cf7e350000008152f35b508234610459578160031936011261045957610f75611372565b9160243591610f8261142d565b6001600160a01b03841693841561105f576001916002835414611051575091838260209460027ffd3821d09d5bb7849ca0472ac9fa1c4d37c85fb9b2f68f97e66419e2aaad21fa979555610fd4611628565b610fdc61172b565b81805587895260128652838920918083019160ff835416600014611021575050506110148261100f6010548454906116e8565b61171e565b6010555b5551908152a280f35b8061102e61103492611be9565b83611bc4565b60ff198254161790556110498260105461171e565b601055611018565b8351633ee5aeb560e01b8152fd5b50905163d92e233d60e01b8152fd5b50829034610459578060031936011261045957610802913561109360016107eb61138d565b611505565b50346103e057816003193601126103e057602090600c549051908152f35b5082346104595760203660031901126104595781602093600192358152600385522001549051908152f35b50346103e057816003193601126103e057602090516726e25e056e95802d8152f35b50346103e057816003193601126103e0576020906009549051908152f35b5082346104595760203660031901126104595761113c611372565b61114461142d565b6001600160a01b031690811561099e5750600580546001600160a01b0319168217905581516a1b195b991a5b99d41bdbdb60aa1b905290519081527f03f05a55cb08789e5817d015569b10c3bb5472640159aee4ba73945ed003a7d790600080516020611c2f83398151915290602090a280f35b508234610459576020366003190112610459578035906111d661142d565b60095482101561121a5750907f8359ab540da756ff7366c37f8853d542ab5fd94e865744e65be20ae91b02af7d91600854908060085582519182526020820152a180f35b8251638052912360e01b8152fd5b50346103e057816003193601126103e057602090517f2ba088aeac4c69066badb5456997747974789cf8224c06112a8fa3d88cb809298152f35b5082346104595760203660031901126104595780359061128061142d565b811580156112c7575b610dc05750907f144d30c57e277deb14c5d686b95cf61cfea257d9d551cef4288b2f7db418f87a91600754908060075582519182526020820152a180f35b506726e25e056e95802d8211611289565b5082346104595782600319360112610459575490516001600160a01b03909116815260209150f35b50346103e057816003193601126103e057602090600d549051908152f35b83908534610459576020366003190112610459573563ffffffff60e01b81168091036104595760209250637965db0b60e01b8114908115611361575b5015158152f35b6301ffc9a760e01b1490508361135a565b600435906001600160a01b038216820361138857565b600080fd5b602435906001600160a01b038216820361138857565b6040906003190112611388576004358015158103611388579060243590565b34611388576000366003190112611388576020604051620151808152f35b3461138857600036600319011261138857602060405160648152f35b60115481101561141757601160005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b3360009081527f705976d2a2c155a0b54ca0c2b7cabc2010840e9a89b81adebc8b7b790b76d2956020526040902054600080516020611c4f8339815191529060ff16156114775750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b3360009081527f30adeb818ef77f204f5a603c30fa5332397b6e28fb3b7f9d937ae6a6914716de6020526040902054600080516020611c6f8339815191529060ff16156114775750565b80600052600360205260406000203360005260205260ff60406000205416156114775750565b906000918083526003602052604083209160018060a01b03169182845260205260ff604084205416156000146115805780835260036020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b906000918083526003602052604083209160018060a01b03169182845260205260ff604084205416600014611580578083526003602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b6000546001600160a01b0316330361161057565b60405163118cdaa760e01b8152336004820152602490fd5b60ff6002541661163457565b60405163d93c066560e01b8152600490fd5b43811161168a57806116735750600080516020611c0f8339815191526020435b80600655604051908152a1565b6020600080516020611c0f83398151915291611666565b604051631391e11b60e21b8152600490fd5b6001600160401b0381116116af57604052565b634e487b7160e01b600052604160045260246000fd5b601f909101601f19168101906001600160401b038211908210176116af57604052565b919082039182116116f557565b634e487b7160e01b600052601160045260246000fd5b818102929181159184041417156116f557565b919082018092116116f557565b604080516318160ddd60e01b808252602092917f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316918482600481865afa9182156118dd5760009261192e575b506a115eec47f6cf7e3500000080921015611927576117a1600654436116e8565b806117af575b505050505050565b6117bb9060075461170b565b9484518281528181600481885afa801561191c578785916000906118e8575b6117e592935061171e565b1161187b575b5050508261180a575b5050506117ff611987565b3880808080806117a7565b61181683600c5461171e565b600c5543600655803b156113885781516340c10f1960e01b815292600091849182908490829061184a90306004840161195d565b03925af19081156118715750611862575b80806117f4565b61186b9061169c565b3861185b565b513d6000823e3d90fd5b909192945083519182528082600481885afa9081156118dd576000916118b1575b50905081039081116116f557913880806117eb565b82813d83116118d6575b6118c581836116c5565b810103126107c3575051803861189c565b503d6118bb565b84513d6000823e3d90fd5b9150508282813d8311611915575b61190081836116c5565b810103126107c35750518390819088906117da565b503d6118f6565b86513d6000823e3d90fd5b5050505050565b90918582813d8311611956575b61194581836116c5565b810103126107c35750519038611780565b503d61193b565b6001600160a01b039091168152602081019190915260400190565b60001981146116f55760010190565b600c5480158015611bba575b611bb757601054908115611ba15704908115611b9d57600080600c55805b601154811015611b97576119c4816113fc565b9060018060a01b03918291549060031b1c1683526020601281526040808520926119ef84548961170b565b936119ff6002820195865461171e565b9081865581611a1d575b505050505050611a1890611978565b6119b1565b6001837f000000000000000000000000000000000000000000000000000000000000000016910190815490855163095ea7b360e01b815287818c8180611a6e60089a8c60049a8d1c168a840161195d565b0391865af18015611b8d57611b52575b50848354851c1690885492823b15611b4e578795938c99979593611abe938b8094611a189f9e9c51968795869485936311f9fbc960e21b8552840161195d565b03925af19081611b3f575b50611b0a577fde8579262fcb2d1163177c317c51de94ee1f7f5475e2ac16298614fe5280972b95965054901c1693549051908152a25b903880808080611a09565b5485549351938452901c16917fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece08691a255611aff565b611b489061169c565b38611ac9565b8b80fd5b8781813d8311611b86575b611b6781836116c5565b81010312611b82575180151503611b7e5738611a7e565b8980fd5b8a80fd5b503d611b5d565b87513d8d823e3d90fd5b50509050565b9050565b634e487b7160e01b600052601260045260246000fd5b50565b5060105415611993565b8054610100600160a81b03191660089290921b610100600160a81b0316919091179055565b60115490600160401b8210156116af57610681826001611c0c94016011556113fc565b56fe233aad4436659905d00f94d1d3a39c2126a5088956fc9e02d714ce315d0de7f13a64504f0bc0c335e2aecb78638a257e0351a3fe0370861fd54ee4190b92093373e573f9566d61418a34d5de3ff49360f9c51fec37f7486551670290f6285dab65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258a26469706673582212206416cbd6110ad35711e72c33c0be61606f261957b2010d9d6a17f94393dabdef64736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
|
|
18
|
-
static readonly abi: readonly [{
|
|
19
|
-
readonly inputs: readonly [{
|
|
20
|
-
readonly internalType: "address";
|
|
21
|
-
readonly name: "_raacToken";
|
|
22
|
-
readonly type: "address";
|
|
23
|
-
}, {
|
|
24
|
-
readonly internalType: "address";
|
|
25
|
-
readonly name: "initialOwner";
|
|
26
|
-
readonly type: "address";
|
|
27
|
-
}];
|
|
28
|
-
readonly stateMutability: "nonpayable";
|
|
29
|
-
readonly type: "constructor";
|
|
30
|
-
}, {
|
|
31
|
-
readonly inputs: readonly [];
|
|
32
|
-
readonly name: "AccessControlBadConfirmation";
|
|
33
|
-
readonly type: "error";
|
|
34
|
-
}, {
|
|
35
|
-
readonly inputs: readonly [{
|
|
36
|
-
readonly internalType: "address";
|
|
37
|
-
readonly name: "account";
|
|
38
|
-
readonly type: "address";
|
|
39
|
-
}, {
|
|
40
|
-
readonly internalType: "bytes32";
|
|
41
|
-
readonly name: "neededRole";
|
|
42
|
-
readonly type: "bytes32";
|
|
43
|
-
}];
|
|
44
|
-
readonly name: "AccessControlUnauthorizedAccount";
|
|
45
|
-
readonly type: "error";
|
|
46
|
-
}, {
|
|
47
|
-
readonly inputs: readonly [];
|
|
48
|
-
readonly name: "BurnTaxRateExceedsLimit";
|
|
49
|
-
readonly type: "error";
|
|
50
|
-
}, {
|
|
51
|
-
readonly inputs: readonly [];
|
|
52
|
-
readonly name: "EmissionUpdateTooFrequent";
|
|
53
|
-
readonly type: "error";
|
|
54
|
-
}, {
|
|
55
|
-
readonly inputs: readonly [];
|
|
56
|
-
readonly name: "EnforcedPause";
|
|
57
|
-
readonly type: "error";
|
|
58
|
-
}, {
|
|
59
|
-
readonly inputs: readonly [];
|
|
60
|
-
readonly name: "ExpectedPause";
|
|
61
|
-
readonly type: "error";
|
|
62
|
-
}, {
|
|
63
|
-
readonly inputs: readonly [];
|
|
64
|
-
readonly name: "FeeCollectorCannotBeZeroAddress";
|
|
65
|
-
readonly type: "error";
|
|
66
|
-
}, {
|
|
67
|
-
readonly inputs: readonly [];
|
|
68
|
-
readonly name: "InvalidAdjustmentFactor";
|
|
69
|
-
readonly type: "error";
|
|
70
|
-
}, {
|
|
71
|
-
readonly inputs: readonly [];
|
|
72
|
-
readonly name: "InvalidBenchmarkRate";
|
|
73
|
-
readonly type: "error";
|
|
74
|
-
}, {
|
|
75
|
-
readonly inputs: readonly [];
|
|
76
|
-
readonly name: "InvalidBlockNumber";
|
|
77
|
-
readonly type: "error";
|
|
78
|
-
}, {
|
|
79
|
-
readonly inputs: readonly [];
|
|
80
|
-
readonly name: "InvalidEmissionUpdateInterval";
|
|
81
|
-
readonly type: "error";
|
|
82
|
-
}, {
|
|
83
|
-
readonly inputs: readonly [];
|
|
84
|
-
readonly name: "InvalidMaxEmissionRate";
|
|
85
|
-
readonly type: "error";
|
|
86
|
-
}, {
|
|
87
|
-
readonly inputs: readonly [];
|
|
88
|
-
readonly name: "InvalidMinEmissionRate";
|
|
89
|
-
readonly type: "error";
|
|
90
|
-
}, {
|
|
91
|
-
readonly inputs: readonly [];
|
|
92
|
-
readonly name: "InvalidParameter";
|
|
93
|
-
readonly type: "error";
|
|
94
|
-
}, {
|
|
95
|
-
readonly inputs: readonly [];
|
|
96
|
-
readonly name: "InvalidUtilizationTarget";
|
|
97
|
-
readonly type: "error";
|
|
98
|
-
}, {
|
|
99
|
-
readonly inputs: readonly [];
|
|
100
|
-
readonly name: "MaxSupplyReached";
|
|
101
|
-
readonly type: "error";
|
|
102
|
-
}, {
|
|
103
|
-
readonly inputs: readonly [];
|
|
104
|
-
readonly name: "NoOwnershipTransferPending";
|
|
105
|
-
readonly type: "error";
|
|
106
|
-
}, {
|
|
107
|
-
readonly inputs: readonly [];
|
|
108
|
-
readonly name: "OnlyStabilityPool";
|
|
109
|
-
readonly type: "error";
|
|
110
|
-
}, {
|
|
111
|
-
readonly inputs: readonly [{
|
|
112
|
-
readonly internalType: "address";
|
|
113
|
-
readonly name: "owner";
|
|
114
|
-
readonly type: "address";
|
|
115
|
-
}];
|
|
116
|
-
readonly name: "OwnableInvalidOwner";
|
|
117
|
-
readonly type: "error";
|
|
118
|
-
}, {
|
|
119
|
-
readonly inputs: readonly [{
|
|
120
|
-
readonly internalType: "address";
|
|
121
|
-
readonly name: "account";
|
|
122
|
-
readonly type: "address";
|
|
123
|
-
}];
|
|
124
|
-
readonly name: "OwnableUnauthorizedAccount";
|
|
125
|
-
readonly type: "error";
|
|
126
|
-
}, {
|
|
127
|
-
readonly inputs: readonly [];
|
|
128
|
-
readonly name: "OwnershipTransferExpired";
|
|
129
|
-
readonly type: "error";
|
|
130
|
-
}, {
|
|
131
|
-
readonly inputs: readonly [];
|
|
132
|
-
readonly name: "OwnershipTransferNotDue";
|
|
133
|
-
readonly type: "error";
|
|
134
|
-
}, {
|
|
135
|
-
readonly inputs: readonly [];
|
|
136
|
-
readonly name: "PoolAlreadyExists";
|
|
137
|
-
readonly type: "error";
|
|
138
|
-
}, {
|
|
139
|
-
readonly inputs: readonly [];
|
|
140
|
-
readonly name: "PoolDoesNotExist";
|
|
141
|
-
readonly type: "error";
|
|
142
|
-
}, {
|
|
143
|
-
readonly inputs: readonly [];
|
|
144
|
-
readonly name: "ReentrancyGuardReentrantCall";
|
|
145
|
-
readonly type: "error";
|
|
146
|
-
}, {
|
|
147
|
-
readonly inputs: readonly [];
|
|
148
|
-
readonly name: "SwapTaxRateExceedsLimit";
|
|
149
|
-
readonly type: "error";
|
|
150
|
-
}, {
|
|
151
|
-
readonly inputs: readonly [];
|
|
152
|
-
readonly name: "ZeroAddress";
|
|
153
|
-
readonly type: "error";
|
|
154
|
-
}, {
|
|
155
|
-
readonly anonymous: false;
|
|
156
|
-
readonly inputs: readonly [{
|
|
157
|
-
readonly indexed: false;
|
|
158
|
-
readonly internalType: "uint256";
|
|
159
|
-
readonly name: "oldFactor";
|
|
160
|
-
readonly type: "uint256";
|
|
161
|
-
}, {
|
|
162
|
-
readonly indexed: false;
|
|
163
|
-
readonly internalType: "uint256";
|
|
164
|
-
readonly name: "newFactor";
|
|
165
|
-
readonly type: "uint256";
|
|
166
|
-
}];
|
|
167
|
-
readonly name: "AdjustmentFactorUpdated";
|
|
168
|
-
readonly type: "event";
|
|
169
|
-
}, {
|
|
170
|
-
readonly anonymous: false;
|
|
171
|
-
readonly inputs: readonly [{
|
|
172
|
-
readonly indexed: false;
|
|
173
|
-
readonly internalType: "uint256";
|
|
174
|
-
readonly name: "oldRate";
|
|
175
|
-
readonly type: "uint256";
|
|
176
|
-
}, {
|
|
177
|
-
readonly indexed: false;
|
|
178
|
-
readonly internalType: "uint256";
|
|
179
|
-
readonly name: "newRate";
|
|
180
|
-
readonly type: "uint256";
|
|
181
|
-
}];
|
|
182
|
-
readonly name: "BenchmarkRateUpdated";
|
|
183
|
-
readonly type: "event";
|
|
184
|
-
}, {
|
|
185
|
-
readonly anonymous: false;
|
|
186
|
-
readonly inputs: readonly [{
|
|
187
|
-
readonly indexed: true;
|
|
188
|
-
readonly internalType: "address";
|
|
189
|
-
readonly name: "pool";
|
|
190
|
-
readonly type: "address";
|
|
191
|
-
}, {
|
|
192
|
-
readonly indexed: false;
|
|
193
|
-
readonly internalType: "uint256";
|
|
194
|
-
readonly name: "amount";
|
|
195
|
-
readonly type: "uint256";
|
|
196
|
-
}];
|
|
197
|
-
readonly name: "DistributionFailed";
|
|
198
|
-
readonly type: "event";
|
|
199
|
-
}, {
|
|
200
|
-
readonly anonymous: false;
|
|
201
|
-
readonly inputs: readonly [{
|
|
202
|
-
readonly indexed: false;
|
|
203
|
-
readonly internalType: "address";
|
|
204
|
-
readonly name: "pool";
|
|
205
|
-
readonly type: "address";
|
|
206
|
-
}, {
|
|
207
|
-
readonly indexed: false;
|
|
208
|
-
readonly internalType: "uint256";
|
|
209
|
-
readonly name: "weight";
|
|
210
|
-
readonly type: "uint256";
|
|
211
|
-
}];
|
|
212
|
-
readonly name: "DistributionPoolAdded";
|
|
213
|
-
readonly type: "event";
|
|
214
|
-
}, {
|
|
215
|
-
readonly anonymous: false;
|
|
216
|
-
readonly inputs: readonly [{
|
|
217
|
-
readonly indexed: false;
|
|
218
|
-
readonly internalType: "address";
|
|
219
|
-
readonly name: "pool";
|
|
220
|
-
readonly type: "address";
|
|
221
|
-
}];
|
|
222
|
-
readonly name: "DistributionPoolRemoved";
|
|
223
|
-
readonly type: "event";
|
|
224
|
-
}, {
|
|
225
|
-
readonly anonymous: false;
|
|
226
|
-
readonly inputs: readonly [{
|
|
227
|
-
readonly indexed: true;
|
|
228
|
-
readonly internalType: "address";
|
|
229
|
-
readonly name: "pool";
|
|
230
|
-
readonly type: "address";
|
|
231
|
-
}, {
|
|
232
|
-
readonly indexed: false;
|
|
233
|
-
readonly internalType: "uint256";
|
|
234
|
-
readonly name: "weight";
|
|
235
|
-
readonly type: "uint256";
|
|
236
|
-
}];
|
|
237
|
-
readonly name: "DistributionPoolUpdated";
|
|
238
|
-
readonly type: "event";
|
|
239
|
-
}, {
|
|
240
|
-
readonly anonymous: false;
|
|
241
|
-
readonly inputs: readonly [{
|
|
242
|
-
readonly indexed: true;
|
|
243
|
-
readonly internalType: "address";
|
|
244
|
-
readonly name: "initiator";
|
|
245
|
-
readonly type: "address";
|
|
246
|
-
}, {
|
|
247
|
-
readonly indexed: false;
|
|
248
|
-
readonly internalType: "uint256";
|
|
249
|
-
readonly name: "lastUpdateBlock";
|
|
250
|
-
readonly type: "uint256";
|
|
251
|
-
}];
|
|
252
|
-
readonly name: "EmergencyShutdown";
|
|
253
|
-
readonly type: "event";
|
|
254
|
-
}, {
|
|
255
|
-
readonly anonymous: false;
|
|
256
|
-
readonly inputs: readonly [{
|
|
257
|
-
readonly indexed: false;
|
|
258
|
-
readonly internalType: "uint256";
|
|
259
|
-
readonly name: "oldRate";
|
|
260
|
-
readonly type: "uint256";
|
|
261
|
-
}, {
|
|
262
|
-
readonly indexed: false;
|
|
263
|
-
readonly internalType: "uint256";
|
|
264
|
-
readonly name: "newRate";
|
|
265
|
-
readonly type: "uint256";
|
|
266
|
-
}];
|
|
267
|
-
readonly name: "EmissionRateUpdated";
|
|
268
|
-
readonly type: "event";
|
|
269
|
-
}, {
|
|
270
|
-
readonly anonymous: false;
|
|
271
|
-
readonly inputs: readonly [{
|
|
272
|
-
readonly indexed: false;
|
|
273
|
-
readonly internalType: "uint256";
|
|
274
|
-
readonly name: "oldInterval";
|
|
275
|
-
readonly type: "uint256";
|
|
276
|
-
}, {
|
|
277
|
-
readonly indexed: false;
|
|
278
|
-
readonly internalType: "uint256";
|
|
279
|
-
readonly name: "newInterval";
|
|
280
|
-
readonly type: "uint256";
|
|
281
|
-
}];
|
|
282
|
-
readonly name: "EmissionUpdateIntervalUpdated";
|
|
283
|
-
readonly type: "event";
|
|
284
|
-
}, {
|
|
285
|
-
readonly anonymous: false;
|
|
286
|
-
readonly inputs: readonly [{
|
|
287
|
-
readonly indexed: false;
|
|
288
|
-
readonly internalType: "uint256";
|
|
289
|
-
readonly name: "newLastUpdateBlock";
|
|
290
|
-
readonly type: "uint256";
|
|
291
|
-
}];
|
|
292
|
-
readonly name: "LastUpdateBlockSet";
|
|
293
|
-
readonly type: "event";
|
|
294
|
-
}, {
|
|
295
|
-
readonly anonymous: false;
|
|
296
|
-
readonly inputs: readonly [{
|
|
297
|
-
readonly indexed: false;
|
|
298
|
-
readonly internalType: "uint256";
|
|
299
|
-
readonly name: "oldRate";
|
|
300
|
-
readonly type: "uint256";
|
|
301
|
-
}, {
|
|
302
|
-
readonly indexed: false;
|
|
303
|
-
readonly internalType: "uint256";
|
|
304
|
-
readonly name: "newRate";
|
|
305
|
-
readonly type: "uint256";
|
|
306
|
-
}];
|
|
307
|
-
readonly name: "MaxEmissionRateUpdated";
|
|
308
|
-
readonly type: "event";
|
|
309
|
-
}, {
|
|
310
|
-
readonly anonymous: false;
|
|
311
|
-
readonly inputs: readonly [{
|
|
312
|
-
readonly indexed: false;
|
|
313
|
-
readonly internalType: "uint256";
|
|
314
|
-
readonly name: "oldRate";
|
|
315
|
-
readonly type: "uint256";
|
|
316
|
-
}, {
|
|
317
|
-
readonly indexed: false;
|
|
318
|
-
readonly internalType: "uint256";
|
|
319
|
-
readonly name: "newRate";
|
|
320
|
-
readonly type: "uint256";
|
|
321
|
-
}];
|
|
322
|
-
readonly name: "MinEmissionRateUpdated";
|
|
323
|
-
readonly type: "event";
|
|
324
|
-
}, {
|
|
325
|
-
readonly anonymous: false;
|
|
326
|
-
readonly inputs: readonly [{
|
|
327
|
-
readonly indexed: true;
|
|
328
|
-
readonly internalType: "address";
|
|
329
|
-
readonly name: "previousOwner";
|
|
330
|
-
readonly type: "address";
|
|
331
|
-
}, {
|
|
332
|
-
readonly indexed: true;
|
|
333
|
-
readonly internalType: "address";
|
|
334
|
-
readonly name: "newOwner";
|
|
335
|
-
readonly type: "address";
|
|
336
|
-
}];
|
|
337
|
-
readonly name: "OwnershipTransferred";
|
|
338
|
-
readonly type: "event";
|
|
339
|
-
}, {
|
|
340
|
-
readonly anonymous: false;
|
|
341
|
-
readonly inputs: readonly [{
|
|
342
|
-
readonly indexed: true;
|
|
343
|
-
readonly internalType: "string";
|
|
344
|
-
readonly name: "parameter";
|
|
345
|
-
readonly type: "string";
|
|
346
|
-
}, {
|
|
347
|
-
readonly indexed: false;
|
|
348
|
-
readonly internalType: "uint256";
|
|
349
|
-
readonly name: "newValue";
|
|
350
|
-
readonly type: "uint256";
|
|
351
|
-
}];
|
|
352
|
-
readonly name: "ParameterUpdated";
|
|
353
|
-
readonly type: "event";
|
|
354
|
-
}, {
|
|
355
|
-
readonly anonymous: false;
|
|
356
|
-
readonly inputs: readonly [{
|
|
357
|
-
readonly indexed: false;
|
|
358
|
-
readonly internalType: "address";
|
|
359
|
-
readonly name: "account";
|
|
360
|
-
readonly type: "address";
|
|
361
|
-
}];
|
|
362
|
-
readonly name: "Paused";
|
|
363
|
-
readonly type: "event";
|
|
364
|
-
}, {
|
|
365
|
-
readonly anonymous: false;
|
|
366
|
-
readonly inputs: readonly [{
|
|
367
|
-
readonly indexed: false;
|
|
368
|
-
readonly internalType: "uint256";
|
|
369
|
-
readonly name: "amount";
|
|
370
|
-
readonly type: "uint256";
|
|
371
|
-
}];
|
|
372
|
-
readonly name: "RAACMinted";
|
|
373
|
-
readonly type: "event";
|
|
374
|
-
}, {
|
|
375
|
-
readonly anonymous: false;
|
|
376
|
-
readonly inputs: readonly [{
|
|
377
|
-
readonly indexed: true;
|
|
378
|
-
readonly internalType: "address";
|
|
379
|
-
readonly name: "newOwner";
|
|
380
|
-
readonly type: "address";
|
|
381
|
-
}, {
|
|
382
|
-
readonly indexed: false;
|
|
383
|
-
readonly internalType: "uint256";
|
|
384
|
-
readonly name: "effectiveTime";
|
|
385
|
-
readonly type: "uint256";
|
|
386
|
-
}];
|
|
387
|
-
readonly name: "RAACTokenOwnershipTransferInitiated";
|
|
388
|
-
readonly type: "event";
|
|
389
|
-
}, {
|
|
390
|
-
readonly anonymous: false;
|
|
391
|
-
readonly inputs: readonly [{
|
|
392
|
-
readonly indexed: true;
|
|
393
|
-
readonly internalType: "address";
|
|
394
|
-
readonly name: "newOwner";
|
|
395
|
-
readonly type: "address";
|
|
396
|
-
}];
|
|
397
|
-
readonly name: "RAACTokenOwnershipTransferred";
|
|
398
|
-
readonly type: "event";
|
|
399
|
-
}, {
|
|
400
|
-
readonly anonymous: false;
|
|
401
|
-
readonly inputs: readonly [{
|
|
402
|
-
readonly indexed: true;
|
|
403
|
-
readonly internalType: "address";
|
|
404
|
-
readonly name: "pool";
|
|
405
|
-
readonly type: "address";
|
|
406
|
-
}, {
|
|
407
|
-
readonly indexed: false;
|
|
408
|
-
readonly internalType: "uint256";
|
|
409
|
-
readonly name: "amount";
|
|
410
|
-
readonly type: "uint256";
|
|
411
|
-
}];
|
|
412
|
-
readonly name: "RewardsDistributed";
|
|
413
|
-
readonly type: "event";
|
|
414
|
-
}, {
|
|
415
|
-
readonly anonymous: false;
|
|
416
|
-
readonly inputs: readonly [{
|
|
417
|
-
readonly indexed: true;
|
|
418
|
-
readonly internalType: "bytes32";
|
|
419
|
-
readonly name: "role";
|
|
420
|
-
readonly type: "bytes32";
|
|
421
|
-
}, {
|
|
422
|
-
readonly indexed: true;
|
|
423
|
-
readonly internalType: "bytes32";
|
|
424
|
-
readonly name: "previousAdminRole";
|
|
425
|
-
readonly type: "bytes32";
|
|
426
|
-
}, {
|
|
427
|
-
readonly indexed: true;
|
|
428
|
-
readonly internalType: "bytes32";
|
|
429
|
-
readonly name: "newAdminRole";
|
|
430
|
-
readonly type: "bytes32";
|
|
431
|
-
}];
|
|
432
|
-
readonly name: "RoleAdminChanged";
|
|
433
|
-
readonly type: "event";
|
|
434
|
-
}, {
|
|
435
|
-
readonly anonymous: false;
|
|
436
|
-
readonly inputs: readonly [{
|
|
437
|
-
readonly indexed: true;
|
|
438
|
-
readonly internalType: "bytes32";
|
|
439
|
-
readonly name: "role";
|
|
440
|
-
readonly type: "bytes32";
|
|
441
|
-
}, {
|
|
442
|
-
readonly indexed: true;
|
|
443
|
-
readonly internalType: "address";
|
|
444
|
-
readonly name: "account";
|
|
445
|
-
readonly type: "address";
|
|
446
|
-
}, {
|
|
447
|
-
readonly indexed: true;
|
|
448
|
-
readonly internalType: "address";
|
|
449
|
-
readonly name: "sender";
|
|
450
|
-
readonly type: "address";
|
|
451
|
-
}];
|
|
452
|
-
readonly name: "RoleGranted";
|
|
453
|
-
readonly type: "event";
|
|
454
|
-
}, {
|
|
455
|
-
readonly anonymous: false;
|
|
456
|
-
readonly inputs: readonly [{
|
|
457
|
-
readonly indexed: true;
|
|
458
|
-
readonly internalType: "bytes32";
|
|
459
|
-
readonly name: "role";
|
|
460
|
-
readonly type: "bytes32";
|
|
461
|
-
}, {
|
|
462
|
-
readonly indexed: true;
|
|
463
|
-
readonly internalType: "address";
|
|
464
|
-
readonly name: "account";
|
|
465
|
-
readonly type: "address";
|
|
466
|
-
}, {
|
|
467
|
-
readonly indexed: true;
|
|
468
|
-
readonly internalType: "address";
|
|
469
|
-
readonly name: "sender";
|
|
470
|
-
readonly type: "address";
|
|
471
|
-
}];
|
|
472
|
-
readonly name: "RoleRevoked";
|
|
473
|
-
readonly type: "event";
|
|
474
|
-
}, {
|
|
475
|
-
readonly anonymous: false;
|
|
476
|
-
readonly inputs: readonly [{
|
|
477
|
-
readonly indexed: false;
|
|
478
|
-
readonly internalType: "address";
|
|
479
|
-
readonly name: "account";
|
|
480
|
-
readonly type: "address";
|
|
481
|
-
}];
|
|
482
|
-
readonly name: "Unpaused";
|
|
483
|
-
readonly type: "event";
|
|
484
|
-
}, {
|
|
485
|
-
readonly anonymous: false;
|
|
486
|
-
readonly inputs: readonly [{
|
|
487
|
-
readonly indexed: false;
|
|
488
|
-
readonly internalType: "uint256";
|
|
489
|
-
readonly name: "oldTarget";
|
|
490
|
-
readonly type: "uint256";
|
|
491
|
-
}, {
|
|
492
|
-
readonly indexed: false;
|
|
493
|
-
readonly internalType: "uint256";
|
|
494
|
-
readonly name: "newTarget";
|
|
495
|
-
readonly type: "uint256";
|
|
496
|
-
}];
|
|
497
|
-
readonly name: "UtilizationTargetUpdated";
|
|
498
|
-
readonly type: "event";
|
|
499
|
-
}, {
|
|
500
|
-
readonly inputs: readonly [];
|
|
501
|
-
readonly name: "BASE_EMISSION_UPDATE_INTERVAL";
|
|
502
|
-
readonly outputs: readonly [{
|
|
503
|
-
readonly internalType: "uint256";
|
|
504
|
-
readonly name: "";
|
|
505
|
-
readonly type: "uint256";
|
|
506
|
-
}];
|
|
507
|
-
readonly stateMutability: "view";
|
|
508
|
-
readonly type: "function";
|
|
509
|
-
}, {
|
|
510
|
-
readonly inputs: readonly [];
|
|
511
|
-
readonly name: "BLOCKS_PER_DAY";
|
|
512
|
-
readonly outputs: readonly [{
|
|
513
|
-
readonly internalType: "uint256";
|
|
514
|
-
readonly name: "";
|
|
515
|
-
readonly type: "uint256";
|
|
516
|
-
}];
|
|
517
|
-
readonly stateMutability: "view";
|
|
518
|
-
readonly type: "function";
|
|
519
|
-
}, {
|
|
520
|
-
readonly inputs: readonly [];
|
|
521
|
-
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
522
|
-
readonly outputs: readonly [{
|
|
523
|
-
readonly internalType: "bytes32";
|
|
524
|
-
readonly name: "";
|
|
525
|
-
readonly type: "bytes32";
|
|
526
|
-
}];
|
|
527
|
-
readonly stateMutability: "view";
|
|
528
|
-
readonly type: "function";
|
|
529
|
-
}, {
|
|
530
|
-
readonly inputs: readonly [];
|
|
531
|
-
readonly name: "EMERGENCY_SHUTDOWN_ROLE";
|
|
532
|
-
readonly outputs: readonly [{
|
|
533
|
-
readonly internalType: "bytes32";
|
|
534
|
-
readonly name: "";
|
|
535
|
-
readonly type: "bytes32";
|
|
536
|
-
}];
|
|
537
|
-
readonly stateMutability: "view";
|
|
538
|
-
readonly type: "function";
|
|
539
|
-
}, {
|
|
540
|
-
readonly inputs: readonly [];
|
|
541
|
-
readonly name: "INITIAL_RATE";
|
|
542
|
-
readonly outputs: readonly [{
|
|
543
|
-
readonly internalType: "uint256";
|
|
544
|
-
readonly name: "";
|
|
545
|
-
readonly type: "uint256";
|
|
546
|
-
}];
|
|
547
|
-
readonly stateMutability: "view";
|
|
548
|
-
readonly type: "function";
|
|
549
|
-
}, {
|
|
550
|
-
readonly inputs: readonly [];
|
|
551
|
-
readonly name: "MAX_ADJUSTMENT_FACTOR";
|
|
552
|
-
readonly outputs: readonly [{
|
|
553
|
-
readonly internalType: "uint256";
|
|
554
|
-
readonly name: "";
|
|
555
|
-
readonly type: "uint256";
|
|
556
|
-
}];
|
|
557
|
-
readonly stateMutability: "view";
|
|
558
|
-
readonly type: "function";
|
|
559
|
-
}, {
|
|
560
|
-
readonly inputs: readonly [];
|
|
561
|
-
readonly name: "MAX_BENCHMARK_RATE";
|
|
562
|
-
readonly outputs: readonly [{
|
|
563
|
-
readonly internalType: "uint256";
|
|
564
|
-
readonly name: "";
|
|
565
|
-
readonly type: "uint256";
|
|
566
|
-
}];
|
|
567
|
-
readonly stateMutability: "view";
|
|
568
|
-
readonly type: "function";
|
|
569
|
-
}, {
|
|
570
|
-
readonly inputs: readonly [];
|
|
571
|
-
readonly name: "MAX_EMISSION_UPDATE_INTERVAL";
|
|
572
|
-
readonly outputs: readonly [{
|
|
573
|
-
readonly internalType: "uint256";
|
|
574
|
-
readonly name: "";
|
|
575
|
-
readonly type: "uint256";
|
|
576
|
-
}];
|
|
577
|
-
readonly stateMutability: "view";
|
|
578
|
-
readonly type: "function";
|
|
579
|
-
}, {
|
|
580
|
-
readonly inputs: readonly [];
|
|
581
|
-
readonly name: "MAX_SUPPLY";
|
|
582
|
-
readonly outputs: readonly [{
|
|
583
|
-
readonly internalType: "uint256";
|
|
584
|
-
readonly name: "";
|
|
585
|
-
readonly type: "uint256";
|
|
586
|
-
}];
|
|
587
|
-
readonly stateMutability: "view";
|
|
588
|
-
readonly type: "function";
|
|
589
|
-
}, {
|
|
590
|
-
readonly inputs: readonly [];
|
|
591
|
-
readonly name: "MAX_UTILIZATION_TARGET";
|
|
592
|
-
readonly outputs: readonly [{
|
|
593
|
-
readonly internalType: "uint256";
|
|
594
|
-
readonly name: "";
|
|
595
|
-
readonly type: "uint256";
|
|
596
|
-
}];
|
|
597
|
-
readonly stateMutability: "view";
|
|
598
|
-
readonly type: "function";
|
|
599
|
-
}, {
|
|
600
|
-
readonly inputs: readonly [];
|
|
601
|
-
readonly name: "PAUSER_ROLE";
|
|
602
|
-
readonly outputs: readonly [{
|
|
603
|
-
readonly internalType: "bytes32";
|
|
604
|
-
readonly name: "";
|
|
605
|
-
readonly type: "bytes32";
|
|
606
|
-
}];
|
|
607
|
-
readonly stateMutability: "view";
|
|
608
|
-
readonly type: "function";
|
|
609
|
-
}, {
|
|
610
|
-
readonly inputs: readonly [];
|
|
611
|
-
readonly name: "UPDATER_ROLE";
|
|
612
|
-
readonly outputs: readonly [{
|
|
613
|
-
readonly internalType: "bytes32";
|
|
614
|
-
readonly name: "";
|
|
615
|
-
readonly type: "bytes32";
|
|
616
|
-
}];
|
|
617
|
-
readonly stateMutability: "view";
|
|
618
|
-
readonly type: "function";
|
|
619
|
-
}, {
|
|
620
|
-
readonly inputs: readonly [{
|
|
621
|
-
readonly internalType: "address";
|
|
622
|
-
readonly name: "pool";
|
|
623
|
-
readonly type: "address";
|
|
624
|
-
}, {
|
|
625
|
-
readonly internalType: "uint256";
|
|
626
|
-
readonly name: "weight";
|
|
627
|
-
readonly type: "uint256";
|
|
628
|
-
}];
|
|
629
|
-
readonly name: "addDistributionPool";
|
|
630
|
-
readonly outputs: readonly [];
|
|
631
|
-
readonly stateMutability: "nonpayable";
|
|
632
|
-
readonly type: "function";
|
|
633
|
-
}, {
|
|
634
|
-
readonly inputs: readonly [];
|
|
635
|
-
readonly name: "adjustmentFactor";
|
|
636
|
-
readonly outputs: readonly [{
|
|
637
|
-
readonly internalType: "uint256";
|
|
638
|
-
readonly name: "";
|
|
639
|
-
readonly type: "uint256";
|
|
640
|
-
}];
|
|
641
|
-
readonly stateMutability: "view";
|
|
642
|
-
readonly type: "function";
|
|
643
|
-
}, {
|
|
644
|
-
readonly inputs: readonly [];
|
|
645
|
-
readonly name: "benchmarkRate";
|
|
646
|
-
readonly outputs: readonly [{
|
|
647
|
-
readonly internalType: "uint256";
|
|
648
|
-
readonly name: "";
|
|
649
|
-
readonly type: "uint256";
|
|
650
|
-
}];
|
|
651
|
-
readonly stateMutability: "view";
|
|
652
|
-
readonly type: "function";
|
|
653
|
-
}, {
|
|
654
|
-
readonly inputs: readonly [{
|
|
655
|
-
readonly internalType: "uint256";
|
|
656
|
-
readonly name: "";
|
|
657
|
-
readonly type: "uint256";
|
|
658
|
-
}];
|
|
659
|
-
readonly name: "distributionPools";
|
|
660
|
-
readonly outputs: readonly [{
|
|
661
|
-
readonly internalType: "address";
|
|
662
|
-
readonly name: "";
|
|
663
|
-
readonly type: "address";
|
|
664
|
-
}];
|
|
665
|
-
readonly stateMutability: "view";
|
|
666
|
-
readonly type: "function";
|
|
667
|
-
}, {
|
|
668
|
-
readonly inputs: readonly [{
|
|
669
|
-
readonly internalType: "bool";
|
|
670
|
-
readonly name: "updateLastBlock";
|
|
671
|
-
readonly type: "bool";
|
|
672
|
-
}, {
|
|
673
|
-
readonly internalType: "uint256";
|
|
674
|
-
readonly name: "newLastUpdateBlock";
|
|
675
|
-
readonly type: "uint256";
|
|
676
|
-
}];
|
|
677
|
-
readonly name: "emergencyShutdown";
|
|
678
|
-
readonly outputs: readonly [];
|
|
679
|
-
readonly stateMutability: "nonpayable";
|
|
680
|
-
readonly type: "function";
|
|
681
|
-
}, {
|
|
682
|
-
readonly inputs: readonly [];
|
|
683
|
-
readonly name: "emissionRate";
|
|
684
|
-
readonly outputs: readonly [{
|
|
685
|
-
readonly internalType: "uint256";
|
|
686
|
-
readonly name: "";
|
|
687
|
-
readonly type: "uint256";
|
|
688
|
-
}];
|
|
689
|
-
readonly stateMutability: "view";
|
|
690
|
-
readonly type: "function";
|
|
691
|
-
}, {
|
|
692
|
-
readonly inputs: readonly [];
|
|
693
|
-
readonly name: "emissionUpdateInterval";
|
|
694
|
-
readonly outputs: readonly [{
|
|
695
|
-
readonly internalType: "uint256";
|
|
696
|
-
readonly name: "";
|
|
697
|
-
readonly type: "uint256";
|
|
698
|
-
}];
|
|
699
|
-
readonly stateMutability: "view";
|
|
700
|
-
readonly type: "function";
|
|
701
|
-
}, {
|
|
702
|
-
readonly inputs: readonly [];
|
|
703
|
-
readonly name: "excessTokens";
|
|
704
|
-
readonly outputs: readonly [{
|
|
705
|
-
readonly internalType: "uint256";
|
|
706
|
-
readonly name: "";
|
|
707
|
-
readonly type: "uint256";
|
|
708
|
-
}];
|
|
709
|
-
readonly stateMutability: "view";
|
|
710
|
-
readonly type: "function";
|
|
711
|
-
}, {
|
|
712
|
-
readonly inputs: readonly [{
|
|
713
|
-
readonly internalType: "bytes32";
|
|
714
|
-
readonly name: "role";
|
|
715
|
-
readonly type: "bytes32";
|
|
716
|
-
}];
|
|
717
|
-
readonly name: "getRoleAdmin";
|
|
718
|
-
readonly outputs: readonly [{
|
|
719
|
-
readonly internalType: "bytes32";
|
|
720
|
-
readonly name: "";
|
|
721
|
-
readonly type: "bytes32";
|
|
722
|
-
}];
|
|
723
|
-
readonly stateMutability: "view";
|
|
724
|
-
readonly type: "function";
|
|
725
|
-
}, {
|
|
726
|
-
readonly inputs: readonly [{
|
|
727
|
-
readonly internalType: "bytes32";
|
|
728
|
-
readonly name: "role";
|
|
729
|
-
readonly type: "bytes32";
|
|
730
|
-
}, {
|
|
731
|
-
readonly internalType: "address";
|
|
732
|
-
readonly name: "account";
|
|
733
|
-
readonly type: "address";
|
|
734
|
-
}];
|
|
735
|
-
readonly name: "grantRole";
|
|
736
|
-
readonly outputs: readonly [];
|
|
737
|
-
readonly stateMutability: "nonpayable";
|
|
738
|
-
readonly type: "function";
|
|
739
|
-
}, {
|
|
740
|
-
readonly inputs: readonly [{
|
|
741
|
-
readonly internalType: "bytes32";
|
|
742
|
-
readonly name: "role";
|
|
743
|
-
readonly type: "bytes32";
|
|
744
|
-
}, {
|
|
745
|
-
readonly internalType: "address";
|
|
746
|
-
readonly name: "account";
|
|
747
|
-
readonly type: "address";
|
|
748
|
-
}];
|
|
749
|
-
readonly name: "hasRole";
|
|
750
|
-
readonly outputs: readonly [{
|
|
751
|
-
readonly internalType: "bool";
|
|
752
|
-
readonly name: "";
|
|
753
|
-
readonly type: "bool";
|
|
754
|
-
}];
|
|
755
|
-
readonly stateMutability: "view";
|
|
756
|
-
readonly type: "function";
|
|
757
|
-
}, {
|
|
758
|
-
readonly inputs: readonly [];
|
|
759
|
-
readonly name: "lastEmissionUpdateTimestamp";
|
|
760
|
-
readonly outputs: readonly [{
|
|
761
|
-
readonly internalType: "uint256";
|
|
762
|
-
readonly name: "";
|
|
763
|
-
readonly type: "uint256";
|
|
764
|
-
}];
|
|
765
|
-
readonly stateMutability: "view";
|
|
766
|
-
readonly type: "function";
|
|
767
|
-
}, {
|
|
768
|
-
readonly inputs: readonly [];
|
|
769
|
-
readonly name: "lastUpdateBlock";
|
|
770
|
-
readonly outputs: readonly [{
|
|
771
|
-
readonly internalType: "uint256";
|
|
772
|
-
readonly name: "";
|
|
773
|
-
readonly type: "uint256";
|
|
774
|
-
}];
|
|
775
|
-
readonly stateMutability: "view";
|
|
776
|
-
readonly type: "function";
|
|
777
|
-
}, {
|
|
778
|
-
readonly inputs: readonly [];
|
|
779
|
-
readonly name: "lendingPool";
|
|
780
|
-
readonly outputs: readonly [{
|
|
781
|
-
readonly internalType: "contract ILendingPool";
|
|
782
|
-
readonly name: "";
|
|
783
|
-
readonly type: "address";
|
|
784
|
-
}];
|
|
785
|
-
readonly stateMutability: "view";
|
|
786
|
-
readonly type: "function";
|
|
787
|
-
}, {
|
|
788
|
-
readonly inputs: readonly [{
|
|
789
|
-
readonly internalType: "address";
|
|
790
|
-
readonly name: "pool";
|
|
791
|
-
readonly type: "address";
|
|
792
|
-
}, {
|
|
793
|
-
readonly internalType: "uint256";
|
|
794
|
-
readonly name: "weight";
|
|
795
|
-
readonly type: "uint256";
|
|
796
|
-
}];
|
|
797
|
-
readonly name: "manageDistributionPool";
|
|
798
|
-
readonly outputs: readonly [];
|
|
799
|
-
readonly stateMutability: "nonpayable";
|
|
800
|
-
readonly type: "function";
|
|
801
|
-
}, {
|
|
802
|
-
readonly inputs: readonly [];
|
|
803
|
-
readonly name: "maxEmissionRate";
|
|
804
|
-
readonly outputs: readonly [{
|
|
805
|
-
readonly internalType: "uint256";
|
|
806
|
-
readonly name: "";
|
|
807
|
-
readonly type: "uint256";
|
|
808
|
-
}];
|
|
809
|
-
readonly stateMutability: "view";
|
|
810
|
-
readonly type: "function";
|
|
811
|
-
}, {
|
|
812
|
-
readonly inputs: readonly [];
|
|
813
|
-
readonly name: "minEmissionRate";
|
|
814
|
-
readonly outputs: readonly [{
|
|
815
|
-
readonly internalType: "uint256";
|
|
816
|
-
readonly name: "";
|
|
817
|
-
readonly type: "uint256";
|
|
818
|
-
}];
|
|
819
|
-
readonly stateMutability: "view";
|
|
820
|
-
readonly type: "function";
|
|
821
|
-
}, {
|
|
822
|
-
readonly inputs: readonly [];
|
|
823
|
-
readonly name: "owner";
|
|
824
|
-
readonly outputs: readonly [{
|
|
825
|
-
readonly internalType: "address";
|
|
826
|
-
readonly name: "";
|
|
827
|
-
readonly type: "address";
|
|
828
|
-
}];
|
|
829
|
-
readonly stateMutability: "view";
|
|
830
|
-
readonly type: "function";
|
|
831
|
-
}, {
|
|
832
|
-
readonly inputs: readonly [{
|
|
833
|
-
readonly internalType: "bool";
|
|
834
|
-
readonly name: "updateLastBlock";
|
|
835
|
-
readonly type: "bool";
|
|
836
|
-
}, {
|
|
837
|
-
readonly internalType: "uint256";
|
|
838
|
-
readonly name: "newLastUpdateBlock";
|
|
839
|
-
readonly type: "uint256";
|
|
840
|
-
}];
|
|
841
|
-
readonly name: "pause";
|
|
842
|
-
readonly outputs: readonly [];
|
|
843
|
-
readonly stateMutability: "nonpayable";
|
|
844
|
-
readonly type: "function";
|
|
845
|
-
}, {
|
|
846
|
-
readonly inputs: readonly [];
|
|
847
|
-
readonly name: "paused";
|
|
848
|
-
readonly outputs: readonly [{
|
|
849
|
-
readonly internalType: "bool";
|
|
850
|
-
readonly name: "";
|
|
851
|
-
readonly type: "bool";
|
|
852
|
-
}];
|
|
853
|
-
readonly stateMutability: "view";
|
|
854
|
-
readonly type: "function";
|
|
855
|
-
}, {
|
|
856
|
-
readonly inputs: readonly [{
|
|
857
|
-
readonly internalType: "address";
|
|
858
|
-
readonly name: "";
|
|
859
|
-
readonly type: "address";
|
|
860
|
-
}];
|
|
861
|
-
readonly name: "poolInfo";
|
|
862
|
-
readonly outputs: readonly [{
|
|
863
|
-
readonly internalType: "uint256";
|
|
864
|
-
readonly name: "weight";
|
|
865
|
-
readonly type: "uint256";
|
|
866
|
-
}, {
|
|
867
|
-
readonly internalType: "bool";
|
|
868
|
-
readonly name: "exists";
|
|
869
|
-
readonly type: "bool";
|
|
870
|
-
}, {
|
|
871
|
-
readonly internalType: "address";
|
|
872
|
-
readonly name: "pool";
|
|
873
|
-
readonly type: "address";
|
|
874
|
-
}, {
|
|
875
|
-
readonly internalType: "uint256";
|
|
876
|
-
readonly name: "pendingRewards";
|
|
877
|
-
readonly type: "uint256";
|
|
878
|
-
}];
|
|
879
|
-
readonly stateMutability: "view";
|
|
880
|
-
readonly type: "function";
|
|
881
|
-
}, {
|
|
882
|
-
readonly inputs: readonly [];
|
|
883
|
-
readonly name: "raacToken";
|
|
884
|
-
readonly outputs: readonly [{
|
|
885
|
-
readonly internalType: "contract IRAACToken";
|
|
886
|
-
readonly name: "";
|
|
887
|
-
readonly type: "address";
|
|
888
|
-
}];
|
|
889
|
-
readonly stateMutability: "view";
|
|
890
|
-
readonly type: "function";
|
|
891
|
-
}, {
|
|
892
|
-
readonly inputs: readonly [{
|
|
893
|
-
readonly internalType: "address";
|
|
894
|
-
readonly name: "pool";
|
|
895
|
-
readonly type: "address";
|
|
896
|
-
}];
|
|
897
|
-
readonly name: "removeDistributionPool";
|
|
898
|
-
readonly outputs: readonly [];
|
|
899
|
-
readonly stateMutability: "nonpayable";
|
|
900
|
-
readonly type: "function";
|
|
901
|
-
}, {
|
|
902
|
-
readonly inputs: readonly [];
|
|
903
|
-
readonly name: "renounceOwnership";
|
|
904
|
-
readonly outputs: readonly [];
|
|
905
|
-
readonly stateMutability: "nonpayable";
|
|
906
|
-
readonly type: "function";
|
|
907
|
-
}, {
|
|
908
|
-
readonly inputs: readonly [{
|
|
909
|
-
readonly internalType: "bytes32";
|
|
910
|
-
readonly name: "role";
|
|
911
|
-
readonly type: "bytes32";
|
|
912
|
-
}, {
|
|
913
|
-
readonly internalType: "address";
|
|
914
|
-
readonly name: "callerConfirmation";
|
|
915
|
-
readonly type: "address";
|
|
916
|
-
}];
|
|
917
|
-
readonly name: "renounceRole";
|
|
918
|
-
readonly outputs: readonly [];
|
|
919
|
-
readonly stateMutability: "nonpayable";
|
|
920
|
-
readonly type: "function";
|
|
921
|
-
}, {
|
|
922
|
-
readonly inputs: readonly [{
|
|
923
|
-
readonly internalType: "bytes32";
|
|
924
|
-
readonly name: "role";
|
|
925
|
-
readonly type: "bytes32";
|
|
926
|
-
}, {
|
|
927
|
-
readonly internalType: "address";
|
|
928
|
-
readonly name: "account";
|
|
929
|
-
readonly type: "address";
|
|
930
|
-
}];
|
|
931
|
-
readonly name: "revokeRole";
|
|
932
|
-
readonly outputs: readonly [];
|
|
933
|
-
readonly stateMutability: "nonpayable";
|
|
934
|
-
readonly type: "function";
|
|
935
|
-
}, {
|
|
936
|
-
readonly inputs: readonly [{
|
|
937
|
-
readonly internalType: "uint256";
|
|
938
|
-
readonly name: "_adjustmentFactor";
|
|
939
|
-
readonly type: "uint256";
|
|
940
|
-
}];
|
|
941
|
-
readonly name: "setAdjustmentFactor";
|
|
942
|
-
readonly outputs: readonly [];
|
|
943
|
-
readonly stateMutability: "nonpayable";
|
|
944
|
-
readonly type: "function";
|
|
945
|
-
}, {
|
|
946
|
-
readonly inputs: readonly [{
|
|
947
|
-
readonly internalType: "uint256";
|
|
948
|
-
readonly name: "_emissionUpdateInterval";
|
|
949
|
-
readonly type: "uint256";
|
|
950
|
-
}];
|
|
951
|
-
readonly name: "setEmissionUpdateInterval";
|
|
952
|
-
readonly outputs: readonly [];
|
|
953
|
-
readonly stateMutability: "nonpayable";
|
|
954
|
-
readonly type: "function";
|
|
955
|
-
}, {
|
|
956
|
-
readonly inputs: readonly [{
|
|
957
|
-
readonly internalType: "address";
|
|
958
|
-
readonly name: "_lendingPool";
|
|
959
|
-
readonly type: "address";
|
|
960
|
-
}];
|
|
961
|
-
readonly name: "setLendingPool";
|
|
962
|
-
readonly outputs: readonly [];
|
|
963
|
-
readonly stateMutability: "nonpayable";
|
|
964
|
-
readonly type: "function";
|
|
965
|
-
}, {
|
|
966
|
-
readonly inputs: readonly [{
|
|
967
|
-
readonly internalType: "uint256";
|
|
968
|
-
readonly name: "_maxEmissionRate";
|
|
969
|
-
readonly type: "uint256";
|
|
970
|
-
}];
|
|
971
|
-
readonly name: "setMaxEmissionRate";
|
|
972
|
-
readonly outputs: readonly [];
|
|
973
|
-
readonly stateMutability: "nonpayable";
|
|
974
|
-
readonly type: "function";
|
|
975
|
-
}, {
|
|
976
|
-
readonly inputs: readonly [{
|
|
977
|
-
readonly internalType: "uint256";
|
|
978
|
-
readonly name: "_minEmissionRate";
|
|
979
|
-
readonly type: "uint256";
|
|
980
|
-
}];
|
|
981
|
-
readonly name: "setMinEmissionRate";
|
|
982
|
-
readonly outputs: readonly [];
|
|
983
|
-
readonly stateMutability: "nonpayable";
|
|
984
|
-
readonly type: "function";
|
|
985
|
-
}, {
|
|
986
|
-
readonly inputs: readonly [{
|
|
987
|
-
readonly internalType: "address";
|
|
988
|
-
readonly name: "_stabilityPool";
|
|
989
|
-
readonly type: "address";
|
|
990
|
-
}];
|
|
991
|
-
readonly name: "setStabilityPool";
|
|
992
|
-
readonly outputs: readonly [];
|
|
993
|
-
readonly stateMutability: "nonpayable";
|
|
994
|
-
readonly type: "function";
|
|
995
|
-
}, {
|
|
996
|
-
readonly inputs: readonly [{
|
|
997
|
-
readonly internalType: "uint256";
|
|
998
|
-
readonly name: "_utilizationTarget";
|
|
999
|
-
readonly type: "uint256";
|
|
1000
|
-
}];
|
|
1001
|
-
readonly name: "setUtilizationTarget";
|
|
1002
|
-
readonly outputs: readonly [];
|
|
1003
|
-
readonly stateMutability: "nonpayable";
|
|
1004
|
-
readonly type: "function";
|
|
1005
|
-
}, {
|
|
1006
|
-
readonly inputs: readonly [];
|
|
1007
|
-
readonly name: "stabilityPool";
|
|
1008
|
-
readonly outputs: readonly [{
|
|
1009
|
-
readonly internalType: "contract IStabilityPool";
|
|
1010
|
-
readonly name: "";
|
|
1011
|
-
readonly type: "address";
|
|
1012
|
-
}];
|
|
1013
|
-
readonly stateMutability: "view";
|
|
1014
|
-
readonly type: "function";
|
|
1015
|
-
}, {
|
|
1016
|
-
readonly inputs: readonly [{
|
|
1017
|
-
readonly internalType: "bytes4";
|
|
1018
|
-
readonly name: "interfaceId";
|
|
1019
|
-
readonly type: "bytes4";
|
|
1020
|
-
}];
|
|
1021
|
-
readonly name: "supportsInterface";
|
|
1022
|
-
readonly outputs: readonly [{
|
|
1023
|
-
readonly internalType: "bool";
|
|
1024
|
-
readonly name: "";
|
|
1025
|
-
readonly type: "bool";
|
|
1026
|
-
}];
|
|
1027
|
-
readonly stateMutability: "view";
|
|
1028
|
-
readonly type: "function";
|
|
1029
|
-
}, {
|
|
1030
|
-
readonly inputs: readonly [];
|
|
1031
|
-
readonly name: "tick";
|
|
1032
|
-
readonly outputs: readonly [];
|
|
1033
|
-
readonly stateMutability: "nonpayable";
|
|
1034
|
-
readonly type: "function";
|
|
1035
|
-
}, {
|
|
1036
|
-
readonly inputs: readonly [];
|
|
1037
|
-
readonly name: "totalWeight";
|
|
1038
|
-
readonly outputs: readonly [{
|
|
1039
|
-
readonly internalType: "uint256";
|
|
1040
|
-
readonly name: "";
|
|
1041
|
-
readonly type: "uint256";
|
|
1042
|
-
}];
|
|
1043
|
-
readonly stateMutability: "view";
|
|
1044
|
-
readonly type: "function";
|
|
1045
|
-
}, {
|
|
1046
|
-
readonly inputs: readonly [{
|
|
1047
|
-
readonly internalType: "address";
|
|
1048
|
-
readonly name: "newOwner";
|
|
1049
|
-
readonly type: "address";
|
|
1050
|
-
}];
|
|
1051
|
-
readonly name: "transferOwnership";
|
|
1052
|
-
readonly outputs: readonly [];
|
|
1053
|
-
readonly stateMutability: "nonpayable";
|
|
1054
|
-
readonly type: "function";
|
|
1055
|
-
}, {
|
|
1056
|
-
readonly inputs: readonly [{
|
|
1057
|
-
readonly internalType: "bool";
|
|
1058
|
-
readonly name: "updateLastBlock";
|
|
1059
|
-
readonly type: "bool";
|
|
1060
|
-
}, {
|
|
1061
|
-
readonly internalType: "uint256";
|
|
1062
|
-
readonly name: "newLastUpdateBlock";
|
|
1063
|
-
readonly type: "uint256";
|
|
1064
|
-
}];
|
|
1065
|
-
readonly name: "unpause";
|
|
1066
|
-
readonly outputs: readonly [];
|
|
1067
|
-
readonly stateMutability: "nonpayable";
|
|
1068
|
-
readonly type: "function";
|
|
1069
|
-
}, {
|
|
1070
|
-
readonly inputs: readonly [{
|
|
1071
|
-
readonly internalType: "uint256";
|
|
1072
|
-
readonly name: "_newRate";
|
|
1073
|
-
readonly type: "uint256";
|
|
1074
|
-
}];
|
|
1075
|
-
readonly name: "updateBenchmarkRate";
|
|
1076
|
-
readonly outputs: readonly [];
|
|
1077
|
-
readonly stateMutability: "nonpayable";
|
|
1078
|
-
readonly type: "function";
|
|
1079
|
-
}, {
|
|
1080
|
-
readonly inputs: readonly [{
|
|
1081
|
-
readonly internalType: "uint256";
|
|
1082
|
-
readonly name: "_newRate";
|
|
1083
|
-
readonly type: "uint256";
|
|
1084
|
-
}];
|
|
1085
|
-
readonly name: "updateEmissionRate";
|
|
1086
|
-
readonly outputs: readonly [];
|
|
1087
|
-
readonly stateMutability: "nonpayable";
|
|
1088
|
-
readonly type: "function";
|
|
1089
|
-
}, {
|
|
1090
|
-
readonly inputs: readonly [];
|
|
1091
|
-
readonly name: "utilizationTarget";
|
|
1092
|
-
readonly outputs: readonly [{
|
|
1093
|
-
readonly internalType: "uint256";
|
|
1094
|
-
readonly name: "";
|
|
1095
|
-
readonly type: "uint256";
|
|
1096
|
-
}];
|
|
1097
|
-
readonly stateMutability: "view";
|
|
1098
|
-
readonly type: "function";
|
|
1099
|
-
}];
|
|
1100
|
-
static createInterface(): RAACMinterInterface;
|
|
1101
|
-
static connect(address: string, runner?: ContractRunner | null): RAACMinter;
|
|
1102
|
-
}
|
|
1103
|
-
export {};
|