@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,797 +0,0 @@
|
|
|
1
|
-
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
-
import type { Signer, BigNumberish, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
-
import type { NonPayableOverrides } from "../../../../../common";
|
|
4
|
-
import type { TimelockController, TimelockControllerInterface } from "../../../../../contracts/core/governance/proposals/TimelockController";
|
|
5
|
-
type TimelockControllerConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
-
export declare class TimelockController__factory extends ContractFactory {
|
|
7
|
-
constructor(...args: TimelockControllerConstructorParams);
|
|
8
|
-
getDeployTransaction(initialMinDelay: BigNumberish, proposers: AddressLike[], executors: AddressLike[], admin: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
|
-
from?: string;
|
|
10
|
-
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(initialMinDelay: BigNumberish, proposers: AddressLike[], executors: AddressLike[], admin: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
|
-
from?: string;
|
|
13
|
-
}): Promise<TimelockController & {
|
|
14
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
-
}>;
|
|
16
|
-
connect(runner: ContractRunner | null): TimelockController__factory;
|
|
17
|
-
static readonly bytecode = "0x608060405234620001925762001bdc803803806200001d8162000197565b92833981016080828203126200019257815160208301519091906001600160401b039081811162000192578262000056918601620001e8565b91604085015191821162000192576200007860609162000080938701620001e8565b9401620001d3565b6001928380556202a3008110801562000185575b6200016d5760025562278d00600355620000c690620000b381620002ab565b50620000bf816200032b565b50620003cd565b50816000815b62000131575b50600091505b620000ee575b6040516116179081620005a58239f35b82518110156200012b5762000124906200011d6001600160a01b0362000115838762000280565b511662000507565b506200025a565b81620000d8565b620000de565b8251811015620001675762000160906200011d6001600160a01b0362000158838762000280565b51166200046a565b81620000cc565b620000d2565b602490604051906309913ab360e31b82526004820152fd5b5062278d00811162000094565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620001bd57604052565b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200019257565b81601f8201121562000192578051916001600160401b038311620001bd578260051b60209283806200021c81850162000197565b80978152019282010192831162000192578301905b82821062000240575050505090565b8380916200024e84620001d3565b81520191019062000231565b60001981146200026a5760010190565b634e487b7160e01b600052601160045260246000fd5b8051821015620002955760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166200032757818052816020526040822081835260205260408220600160ff19825416179055339160008051602062001bbc8339815191528180a4600190565b5090565b6001600160a01b031660008181527f3c1b1854ab1360abbb06c8d4c6b2672d4b8cedc5eff522ab19e51d5cb8fdbd4660205260408120549091907fbf233dd2aafeb4d50879c4aa5c81e96d92f6e6945c906a58f9f2d1c1631b4b269060ff16620003c857808352826020526040832082845260205260408320600160ff1982541617905560008051602062001bbc833981519152339380a4600190565b505090565b6001600160a01b031660008181527fc3ad33e20b0c56a223ad5104fff154aa010f8715b9c981fd38fdc60a4d1a52fb60205260408120549091907ffd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f7839060ff16620003c857808352826020526040832082845260205260408320600160ff1982541617905560008051602062001bbc833981519152339380a4600190565b6001600160a01b031660008181527f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d560205260408120549091907fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc19060ff16620003c857808352826020526040832082845260205260408320600160ff1982541617905560008051602062001bbc833981519152339380a4600190565b6001600160a01b031660008181527fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d706960205260408120549091907fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e639060ff16620003c857808352826020526040832082845260205260408320600160ff1982541617905560008051602062001bbc833981519152339380a460019056fe6080604052600436101561001257600080fd5b60003560e01c806301ffc9a7146101c757806307bd0265146101c25780630c730489146101bd57806313bc9f20146101b857806320df4359146101b3578063248a9ca3146101ae5780632ab0f529146101a95780632f2ff15d146101a45780633460cdaf1461019f57806336568abe1461019a5780634125ff9014610195578063584b153e1461019057806360f971521461018b57806364d62353146101865780637c87823b1461018157806382944e2d1461017c5780638f61f4f51461017757806391d14854146101725780639f81aed71461016d578063a217fddf14610168578063ac15e02d14610163578063b08e51c01461015e578063c1a287e214610159578063c4d252f514610154578063d45c44351461014f578063d547741f1461014a5763f27a0c921461014557600080fd5b610cce565b610c8c565b610c58565b610ba8565b610b8a565b610b61565b610af4565b610ad8565b610aba565b610a76565b610a4d565b610a30565b610a06565b610927565b610780565b610758565b61073a565b6106ef565b61065d565b61061b565b6105d6565b6105a7565b61057e565b6104db565b6102eb565b610222565b3461021d57602036600319011261021d5760043563ffffffff60e01b811680910361021d57602090637965db0b60e01b811490811561020c575b506040519015158152f35b6301ffc9a760e01b14905038610201565b600080fd5b3461021d57600036600319011261021d5760206040516000805160206115a28339815191528152f35b9181601f8401121561021d578235916001600160401b03831161021d576020808501948460051b01011161021d57565b60c060031982011261021d57600435916001600160401b0360243581811161021d57836102aa9160040161024b565b9390939260443583811161021d57826102c59160040161024b565b9390939260643591821161021d576102df9160040161024b565b90916084359060a43590565b61031e6102f73661027b565b81838587898b869f979b9e9d809d9e6103119c9a9c6114ca565b610319610d13565b6114ed565b9661032888610cec565b8054906001600160401b03821680156104c25760ff604093841c166104aa57804210610492576103579061117b565b421161047a5786610440575b805460ff60401b1916600160401b17905560005b8881106103c35750916103b59593917f7b2b8601571bffb7cd58e4066e50092c2cb5bbf6d6315d13231aa12cb332716f999a95935198899889611481565b0390a26103c160018055565b005b6000806103d96103d4848d8d6113d1565b6113e6565b6103e48488886113d1565b356103f0858b8b6113f3565b9190610400885180948193611434565b03925af161040c611442565b50156104205761041b906113ac565b610377565b8151634e6b53e760e01b8152600481018b90526024810191909152604490fd5b61045d61045961044f89610cec565b5460401c60ff1690565b1590565b15610363578151635f50150b60e11b815260048101889052602490fd5b81516316ab163560e31b8152600481018b9052602490fd5b8251635ccd0bb360e01b8152600481018c9052602490fd5b8251630f8944f560e11b8152600481018c9052602490fd5b6040516330ee848d60e01b8152600481018c9052602490fd5b3461021d57602036600319011261021d57600435600052600460205261055360406000206040519061050c826111c2565b5460ff60018060401b0382169182845260401c161591602083159101528015159182610576575b508161056a575b81610557575b5060405190151581529081906020820190565b0390f35b610561915061117b565b42111538610540565b8091504210159061053a565b915038610533565b3461021d57600036600319011261021d5760206040516000805160206115628339815191528152f35b3461021d57602036600319011261021d5760043560005260006020526020600160406000200154604051908152f35b3461021d57602036600319011261021d576004356000526004602052602060ff60406000205460401c166040519015158152f35b6001600160a01b0381160361021d57565b3461021d57604036600319011261021d576103c160243560043561063e8261060a565b806000526000602052610658600160406000200154610e47565b610e60565b3461021d5760e036600319011261021d576001600160401b0360243581811161021d5761068e90369060040161024b565b919060443582811161021d576106a890369060040161024b565b93909160643593841161021d57610553946106ca6106df95369060040161024b565b9160c4359560a4359560843595600435610f7b565b6040519081529081906020820190565b3461021d57604036600319011261021d5760243561070c8161060a565b336001600160a01b03821603610728576103c190600435610ed9565b60405163334bd91960e11b8152600490fd5b3461021d57600036600319011261021d57602060405162278d008152f35b3461021d57602036600319011261021d576020610776600435610f4a565b6040519015158152f35b6107a961078c3661027b565b91838587898b85999d9b9e989b6107a1610d7e565b6103196114ca565b946107cb6104596107c4886000526005602052604060002090565b5460ff1690565b61090e576107ec6107e6876000526006602052604060002090565b54611190565b42106108f557610813610809876000526005602052604060002090565b805460ff19169055565b6000968761082b886000526006602052604060002090565b55875b8181106108675788887f795616e7a0deec74cc07f2fe537272ce6e8ccd8a69b5e751cd4d402a54f1c7788280a261086460018055565b80f35b6108756103d482848a6113d1565b898061088284878a6113d1565b359261088f85898c6113f3565b90946040956108a2875180948193611434565b03925af16108ae611442565b90156108c45750506108bf906113ac565b61082e565b80518a9291816108f057505051634e6b53e760e01b815260048101919091526024810191909152604490fd5b602001fd5b6040516347ced73160e01b815260048101879052602490fd5b604051630758a74160e41b815260048101879052602490fd5b3461021d57602036600319011261021d576000808052602081905260043560ff610971337fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5610cfc565b5416156109e7576202a300811080156109db575b6109c35760407f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d591600254908060025582519182526020820152a180f35b602490604051906309913ab360e31b82526004820152fd5b5062278d008111610985565b60405163e2517d3f60e01b815233600482015260248101839052604490fd5b3461021d576020610a28610a193661027b565b979690969591959492946114ed565b604051908152f35b3461021d57600036600319011261021d57602060405161c4e08152f35b3461021d57600036600319011261021d5760206040516000805160206115828339815191528152f35b3461021d57604036600319011261021d57602060ff610aae602435610a9a8161060a565b600435600052600084526040600020610cfc565b54166040519015158152f35b3461021d57600036600319011261021d5760206040516202a3008152f35b3461021d57600036600319011261021d57602060405160008152f35b3461021d57602036600319011261021d57600435610b10610d7e565b8060005260056020526040600020600160ff198254161790556006602052426040600020557f200aed9164e142f3e2c072cbad433b7386e1bb53e9ec4b89d05fa991b72040aa6020604051428152a2005b3461021d57600036600319011261021d5760206040516000805160206115c28339815191528152f35b3461021d57600036600319011261021d576020604051621275008152f35b3461021d57602036600319011261021d57600435610bc4610dc1565b6000818152600460205260408120549091906001600160401b031615610c4057610bf061044f82610cec565b610c265781610bfe82610cec565b557fcf0f63b97f3387253cbc0bde884f975df77e39184dc3280c2c81be495f58eef48280a280f35b60405163197c793f60e21b81526004810191909152602490fd5b602490604051906330ee848d60e01b82526004820152fd5b3461021d57602036600319011261021d576004356000526004602052602060018060401b0360406000205416604051908152f35b3461021d57604036600319011261021d576103c1602435600435610caf8261060a565b806000526000602052610cc9600160406000200154610e47565b610ed9565b3461021d57600036600319011261021d576020600254604051908152f35b6000526004602052604060002090565b9060018060a01b0316600052602052604060002090565b6000805160206115a2833981519152600081815260205260ff610d56337fdae2aa361dfd1ca020a396615627d436107c35eff9fe7738a3512819782d7069610cfc565b541615610d605750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b600080516020611562833981519152600081815260205260ff610d56337f3c1b1854ab1360abbb06c8d4c6b2672d4b8cedc5eff522ab19e51d5cb8fdbd46610cfc565b6000805160206115c2833981519152600081815260205260ff610d56337fc3ad33e20b0c56a223ad5104fff154aa010f8715b9c981fd38fdc60a4d1a52fb610cfc565b600080516020611582833981519152600081815260205260ff610d56337f3412d5605ac6cd444957cedb533e5dacad6378b4bc819ebe3652188a665066d5610cfc565b80600052600060205260ff610d56336040600020610cfc565b6000908082528160205260ff610e798460408520610cfc565b5416610ed35780825281602052610e938360408420610cfc565b805460ff1916600117905533926001600160a01b0316917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9080a4600190565b50905090565b6000908082528160205260ff610ef28460408520610cfc565b541615610ed35780825281602052610f0d8360408420610cfc565b805460ff1916905533926001600160a01b0316917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9080a4600190565b6000908152600460205260409020546001600160401b03811615159081610f6f575090565b60ff915060401c161590565b989592989794919796939096610f8f610e04565b8815801561115b575b8015611151575b61113f5760025487108015611134575b61111b5785858585858e8e8e866110c2575b610fca986114ed565b986001600160401b03610fec610fdf8c610cec565b546001600160401b031690565b166110a957927f6526435b0444eb8cb0a5d62f5b0e1ef38d7c7be8675668215e84243d5ad3e4f19795926110a3959288956110978d611060611039829f9d611034904261119f565b611379565b91611054611045611205565b6001600160401b039094168452565b60006020840152610cec565b815181546020909301516001600160481b03199093166001600160401b03919091161791151560401b60ff60401b16919091179055565b604051998a998a61132a565b0390a290565b60405163197c793f60e21b8152600481018b9052602490fd5b5050505050506110d9915061044f61045991610cec565b80611109575b6110f05785858585858e8e8e610fc1565b604051635f50150b60e11b815260048101869052602490fd5b5061111661045986610f4a565b6110df565b6040516309913ab360e31b815260048101889052602490fd5b506003548711610faf565b6040516303918bd560e01b8152600490fd5b5083891415610f9f565b5081891415610f98565b634e487b7160e01b600052601160045260246000fd5b9062127500820180921161118b57565b611165565b9061c4e0820180921161118b57565b9190820180921161118b57565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b038211176111dd57604052565b6111ac565b601f909101601f19168101906001600160401b038211908210176111dd57604052565b60405190611212826111c2565b565b91908082526020809201929160005b828110611231575050505090565b90919293828060019287356112458161060a565b848060a01b03168152019501910192919092611223565b81835290916001600160fb1b03831161021d5760209260051b809284830137010190565b908060209392818452848401376000828201840152601f01601f1916010190565b9082818152602080910193818360051b82010194846000925b8584106112cb575050505050505090565b90919293949596601f198282030184528735601e198436030181121561021d5783018681019190356001600160401b03811161021d57803603831361021d5761131988928392600195611280565b9901940194019295949391906112ba565b95919261136a9461134e61135c9360a09a9d9c9b989660c08b5260c08b0191611214565b9188830360208a015261125c565b9185830360408701526112a1565b95606083015260808201520152565b6001600160401b039081811161138d571690565b604490604051906306dfcc6560e41b8252604060048301526024820152fd5b600019811461118b5760010190565b634e487b7160e01b600052603260045260246000fd5b91908110156113e15760051b0190565b6113bb565b356113f08161060a565b90565b91908110156113e15760051b81013590601e198136030182121561021d5701803591906001600160401b03831161021d57602001823603811361021d579190565b908092918237016000815290565b3d1561147c573d906001600160401b0382116111dd5760405191611470601f8201601f1916602001846111e2565b82523d6000602084013e565b606090565b94926114c0946114a46114b293608099959c9b9a9c60a08a5260a08a0191611214565b91878303602089015261125c565b9184830360408601526112a1565b9460608201520152565b6002600154146114db576002600155565b604051633ee5aeb560e01b8152600490fd5b9791939461155b96611534611544939995976115206040519b8c9960208b019e8f5260c060408c015260e08b0191611214565b90601f19998a8a84030160608b015261125c565b91878784030160808801526112a1565b9160a084015260c0830152039081018352826111e2565b5190209056febf233dd2aafeb4d50879c4aa5c81e96d92f6e6945c906a58f9f2d1c1631b4b26b09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63fd643c72710c63c0180259aba6b2d05451e3591a24e58b62239378085726f783a26469706673582212202bb5f2655eaee282fcbfda0b0898804c8f110dbb65d932b7f3aab66ffaef890664736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
|
|
18
|
-
static readonly abi: readonly [{
|
|
19
|
-
readonly inputs: readonly [{
|
|
20
|
-
readonly internalType: "uint256";
|
|
21
|
-
readonly name: "initialMinDelay";
|
|
22
|
-
readonly type: "uint256";
|
|
23
|
-
}, {
|
|
24
|
-
readonly internalType: "address[]";
|
|
25
|
-
readonly name: "proposers";
|
|
26
|
-
readonly type: "address[]";
|
|
27
|
-
}, {
|
|
28
|
-
readonly internalType: "address[]";
|
|
29
|
-
readonly name: "executors";
|
|
30
|
-
readonly type: "address[]";
|
|
31
|
-
}, {
|
|
32
|
-
readonly internalType: "address";
|
|
33
|
-
readonly name: "admin";
|
|
34
|
-
readonly type: "address";
|
|
35
|
-
}];
|
|
36
|
-
readonly stateMutability: "nonpayable";
|
|
37
|
-
readonly type: "constructor";
|
|
38
|
-
}, {
|
|
39
|
-
readonly inputs: readonly [];
|
|
40
|
-
readonly name: "AccessControlBadConfirmation";
|
|
41
|
-
readonly type: "error";
|
|
42
|
-
}, {
|
|
43
|
-
readonly inputs: readonly [{
|
|
44
|
-
readonly internalType: "address";
|
|
45
|
-
readonly name: "account";
|
|
46
|
-
readonly type: "address";
|
|
47
|
-
}, {
|
|
48
|
-
readonly internalType: "bytes32";
|
|
49
|
-
readonly name: "neededRole";
|
|
50
|
-
readonly type: "bytes32";
|
|
51
|
-
}];
|
|
52
|
-
readonly name: "AccessControlUnauthorizedAccount";
|
|
53
|
-
readonly type: "error";
|
|
54
|
-
}, {
|
|
55
|
-
readonly inputs: readonly [{
|
|
56
|
-
readonly internalType: "bytes32";
|
|
57
|
-
readonly name: "id";
|
|
58
|
-
readonly type: "bytes32";
|
|
59
|
-
}, {
|
|
60
|
-
readonly internalType: "uint256";
|
|
61
|
-
readonly name: "index";
|
|
62
|
-
readonly type: "uint256";
|
|
63
|
-
}];
|
|
64
|
-
readonly name: "CallReverted";
|
|
65
|
-
readonly type: "error";
|
|
66
|
-
}, {
|
|
67
|
-
readonly inputs: readonly [{
|
|
68
|
-
readonly internalType: "bytes32";
|
|
69
|
-
readonly name: "id";
|
|
70
|
-
readonly type: "bytes32";
|
|
71
|
-
}];
|
|
72
|
-
readonly name: "EmergencyActionAlreadyScheduled";
|
|
73
|
-
readonly type: "error";
|
|
74
|
-
}, {
|
|
75
|
-
readonly inputs: readonly [{
|
|
76
|
-
readonly internalType: "bytes32";
|
|
77
|
-
readonly name: "id";
|
|
78
|
-
readonly type: "bytes32";
|
|
79
|
-
}];
|
|
80
|
-
readonly name: "EmergencyActionDelayNotMet";
|
|
81
|
-
readonly type: "error";
|
|
82
|
-
}, {
|
|
83
|
-
readonly inputs: readonly [{
|
|
84
|
-
readonly internalType: "address";
|
|
85
|
-
readonly name: "caller";
|
|
86
|
-
readonly type: "address";
|
|
87
|
-
}];
|
|
88
|
-
readonly name: "EmergencyActionNotAuthorized";
|
|
89
|
-
readonly type: "error";
|
|
90
|
-
}, {
|
|
91
|
-
readonly inputs: readonly [{
|
|
92
|
-
readonly internalType: "bytes32";
|
|
93
|
-
readonly name: "id";
|
|
94
|
-
readonly type: "bytes32";
|
|
95
|
-
}];
|
|
96
|
-
readonly name: "EmergencyActionNotReady";
|
|
97
|
-
readonly type: "error";
|
|
98
|
-
}, {
|
|
99
|
-
readonly inputs: readonly [{
|
|
100
|
-
readonly internalType: "bytes32";
|
|
101
|
-
readonly name: "id";
|
|
102
|
-
readonly type: "bytes32";
|
|
103
|
-
}];
|
|
104
|
-
readonly name: "EmergencyActionNotScheduled";
|
|
105
|
-
readonly type: "error";
|
|
106
|
-
}, {
|
|
107
|
-
readonly inputs: readonly [{
|
|
108
|
-
readonly internalType: "bytes32";
|
|
109
|
-
readonly name: "id";
|
|
110
|
-
readonly type: "bytes32";
|
|
111
|
-
}];
|
|
112
|
-
readonly name: "EmergencyDelayNotMet";
|
|
113
|
-
readonly type: "error";
|
|
114
|
-
}, {
|
|
115
|
-
readonly inputs: readonly [];
|
|
116
|
-
readonly name: "InvalidCalldatas";
|
|
117
|
-
readonly type: "error";
|
|
118
|
-
}, {
|
|
119
|
-
readonly inputs: readonly [{
|
|
120
|
-
readonly internalType: "uint256";
|
|
121
|
-
readonly name: "delay";
|
|
122
|
-
readonly type: "uint256";
|
|
123
|
-
}];
|
|
124
|
-
readonly name: "InvalidDelay";
|
|
125
|
-
readonly type: "error";
|
|
126
|
-
}, {
|
|
127
|
-
readonly inputs: readonly [];
|
|
128
|
-
readonly name: "InvalidTargetCount";
|
|
129
|
-
readonly type: "error";
|
|
130
|
-
}, {
|
|
131
|
-
readonly inputs: readonly [];
|
|
132
|
-
readonly name: "InvalidTargets";
|
|
133
|
-
readonly type: "error";
|
|
134
|
-
}, {
|
|
135
|
-
readonly inputs: readonly [];
|
|
136
|
-
readonly name: "InvalidValues";
|
|
137
|
-
readonly type: "error";
|
|
138
|
-
}, {
|
|
139
|
-
readonly inputs: readonly [{
|
|
140
|
-
readonly internalType: "bytes32";
|
|
141
|
-
readonly name: "id";
|
|
142
|
-
readonly type: "bytes32";
|
|
143
|
-
}];
|
|
144
|
-
readonly name: "OperationAlreadyExecuted";
|
|
145
|
-
readonly type: "error";
|
|
146
|
-
}, {
|
|
147
|
-
readonly inputs: readonly [{
|
|
148
|
-
readonly internalType: "bytes32";
|
|
149
|
-
readonly name: "id";
|
|
150
|
-
readonly type: "bytes32";
|
|
151
|
-
}];
|
|
152
|
-
readonly name: "OperationAlreadyScheduled";
|
|
153
|
-
readonly type: "error";
|
|
154
|
-
}, {
|
|
155
|
-
readonly inputs: readonly [{
|
|
156
|
-
readonly internalType: "bytes32";
|
|
157
|
-
readonly name: "id";
|
|
158
|
-
readonly type: "bytes32";
|
|
159
|
-
}];
|
|
160
|
-
readonly name: "OperationExpired";
|
|
161
|
-
readonly type: "error";
|
|
162
|
-
}, {
|
|
163
|
-
readonly inputs: readonly [{
|
|
164
|
-
readonly internalType: "bytes32";
|
|
165
|
-
readonly name: "id";
|
|
166
|
-
readonly type: "bytes32";
|
|
167
|
-
}];
|
|
168
|
-
readonly name: "OperationNotFound";
|
|
169
|
-
readonly type: "error";
|
|
170
|
-
}, {
|
|
171
|
-
readonly inputs: readonly [{
|
|
172
|
-
readonly internalType: "bytes32";
|
|
173
|
-
readonly name: "id";
|
|
174
|
-
readonly type: "bytes32";
|
|
175
|
-
}];
|
|
176
|
-
readonly name: "OperationNotReady";
|
|
177
|
-
readonly type: "error";
|
|
178
|
-
}, {
|
|
179
|
-
readonly inputs: readonly [{
|
|
180
|
-
readonly internalType: "bytes32";
|
|
181
|
-
readonly name: "predecessor";
|
|
182
|
-
readonly type: "bytes32";
|
|
183
|
-
}];
|
|
184
|
-
readonly name: "PredecessorNotExecuted";
|
|
185
|
-
readonly type: "error";
|
|
186
|
-
}, {
|
|
187
|
-
readonly inputs: readonly [];
|
|
188
|
-
readonly name: "ReentrancyGuardReentrantCall";
|
|
189
|
-
readonly type: "error";
|
|
190
|
-
}, {
|
|
191
|
-
readonly inputs: readonly [{
|
|
192
|
-
readonly internalType: "uint8";
|
|
193
|
-
readonly name: "bits";
|
|
194
|
-
readonly type: "uint8";
|
|
195
|
-
}, {
|
|
196
|
-
readonly internalType: "uint256";
|
|
197
|
-
readonly name: "value";
|
|
198
|
-
readonly type: "uint256";
|
|
199
|
-
}];
|
|
200
|
-
readonly name: "SafeCastOverflowedUintDowncast";
|
|
201
|
-
readonly type: "error";
|
|
202
|
-
}, {
|
|
203
|
-
readonly anonymous: false;
|
|
204
|
-
readonly inputs: readonly [{
|
|
205
|
-
readonly indexed: true;
|
|
206
|
-
readonly internalType: "bytes32";
|
|
207
|
-
readonly name: "id";
|
|
208
|
-
readonly type: "bytes32";
|
|
209
|
-
}];
|
|
210
|
-
readonly name: "EmergencyActionExecuted";
|
|
211
|
-
readonly type: "event";
|
|
212
|
-
}, {
|
|
213
|
-
readonly anonymous: false;
|
|
214
|
-
readonly inputs: readonly [{
|
|
215
|
-
readonly indexed: true;
|
|
216
|
-
readonly internalType: "bytes32";
|
|
217
|
-
readonly name: "id";
|
|
218
|
-
readonly type: "bytes32";
|
|
219
|
-
}, {
|
|
220
|
-
readonly indexed: false;
|
|
221
|
-
readonly internalType: "uint256";
|
|
222
|
-
readonly name: "timestamp";
|
|
223
|
-
readonly type: "uint256";
|
|
224
|
-
}];
|
|
225
|
-
readonly name: "EmergencyActionScheduled";
|
|
226
|
-
readonly type: "event";
|
|
227
|
-
}, {
|
|
228
|
-
readonly anonymous: false;
|
|
229
|
-
readonly inputs: readonly [{
|
|
230
|
-
readonly indexed: false;
|
|
231
|
-
readonly internalType: "uint256";
|
|
232
|
-
readonly name: "oldDelay";
|
|
233
|
-
readonly type: "uint256";
|
|
234
|
-
}, {
|
|
235
|
-
readonly indexed: false;
|
|
236
|
-
readonly internalType: "uint256";
|
|
237
|
-
readonly name: "newDelay";
|
|
238
|
-
readonly type: "uint256";
|
|
239
|
-
}];
|
|
240
|
-
readonly name: "MinDelayChange";
|
|
241
|
-
readonly type: "event";
|
|
242
|
-
}, {
|
|
243
|
-
readonly anonymous: false;
|
|
244
|
-
readonly inputs: readonly [{
|
|
245
|
-
readonly indexed: true;
|
|
246
|
-
readonly internalType: "bytes32";
|
|
247
|
-
readonly name: "id";
|
|
248
|
-
readonly type: "bytes32";
|
|
249
|
-
}];
|
|
250
|
-
readonly name: "OperationCancelled";
|
|
251
|
-
readonly type: "event";
|
|
252
|
-
}, {
|
|
253
|
-
readonly anonymous: false;
|
|
254
|
-
readonly inputs: readonly [{
|
|
255
|
-
readonly indexed: true;
|
|
256
|
-
readonly internalType: "bytes32";
|
|
257
|
-
readonly name: "id";
|
|
258
|
-
readonly type: "bytes32";
|
|
259
|
-
}, {
|
|
260
|
-
readonly indexed: false;
|
|
261
|
-
readonly internalType: "address[]";
|
|
262
|
-
readonly name: "targets";
|
|
263
|
-
readonly type: "address[]";
|
|
264
|
-
}, {
|
|
265
|
-
readonly indexed: false;
|
|
266
|
-
readonly internalType: "uint256[]";
|
|
267
|
-
readonly name: "values";
|
|
268
|
-
readonly type: "uint256[]";
|
|
269
|
-
}, {
|
|
270
|
-
readonly indexed: false;
|
|
271
|
-
readonly internalType: "bytes[]";
|
|
272
|
-
readonly name: "calldatas";
|
|
273
|
-
readonly type: "bytes[]";
|
|
274
|
-
}, {
|
|
275
|
-
readonly indexed: false;
|
|
276
|
-
readonly internalType: "bytes32";
|
|
277
|
-
readonly name: "predecessor";
|
|
278
|
-
readonly type: "bytes32";
|
|
279
|
-
}, {
|
|
280
|
-
readonly indexed: false;
|
|
281
|
-
readonly internalType: "bytes32";
|
|
282
|
-
readonly name: "salt";
|
|
283
|
-
readonly type: "bytes32";
|
|
284
|
-
}];
|
|
285
|
-
readonly name: "OperationExecuted";
|
|
286
|
-
readonly type: "event";
|
|
287
|
-
}, {
|
|
288
|
-
readonly anonymous: false;
|
|
289
|
-
readonly inputs: readonly [{
|
|
290
|
-
readonly indexed: true;
|
|
291
|
-
readonly internalType: "bytes32";
|
|
292
|
-
readonly name: "id";
|
|
293
|
-
readonly type: "bytes32";
|
|
294
|
-
}, {
|
|
295
|
-
readonly indexed: false;
|
|
296
|
-
readonly internalType: "address[]";
|
|
297
|
-
readonly name: "targets";
|
|
298
|
-
readonly type: "address[]";
|
|
299
|
-
}, {
|
|
300
|
-
readonly indexed: false;
|
|
301
|
-
readonly internalType: "uint256[]";
|
|
302
|
-
readonly name: "values";
|
|
303
|
-
readonly type: "uint256[]";
|
|
304
|
-
}, {
|
|
305
|
-
readonly indexed: false;
|
|
306
|
-
readonly internalType: "bytes[]";
|
|
307
|
-
readonly name: "calldatas";
|
|
308
|
-
readonly type: "bytes[]";
|
|
309
|
-
}, {
|
|
310
|
-
readonly indexed: false;
|
|
311
|
-
readonly internalType: "bytes32";
|
|
312
|
-
readonly name: "predecessor";
|
|
313
|
-
readonly type: "bytes32";
|
|
314
|
-
}, {
|
|
315
|
-
readonly indexed: false;
|
|
316
|
-
readonly internalType: "bytes32";
|
|
317
|
-
readonly name: "salt";
|
|
318
|
-
readonly type: "bytes32";
|
|
319
|
-
}, {
|
|
320
|
-
readonly indexed: false;
|
|
321
|
-
readonly internalType: "uint256";
|
|
322
|
-
readonly name: "delay";
|
|
323
|
-
readonly type: "uint256";
|
|
324
|
-
}];
|
|
325
|
-
readonly name: "OperationScheduled";
|
|
326
|
-
readonly type: "event";
|
|
327
|
-
}, {
|
|
328
|
-
readonly anonymous: false;
|
|
329
|
-
readonly inputs: readonly [{
|
|
330
|
-
readonly indexed: true;
|
|
331
|
-
readonly internalType: "bytes32";
|
|
332
|
-
readonly name: "role";
|
|
333
|
-
readonly type: "bytes32";
|
|
334
|
-
}, {
|
|
335
|
-
readonly indexed: true;
|
|
336
|
-
readonly internalType: "bytes32";
|
|
337
|
-
readonly name: "previousAdminRole";
|
|
338
|
-
readonly type: "bytes32";
|
|
339
|
-
}, {
|
|
340
|
-
readonly indexed: true;
|
|
341
|
-
readonly internalType: "bytes32";
|
|
342
|
-
readonly name: "newAdminRole";
|
|
343
|
-
readonly type: "bytes32";
|
|
344
|
-
}];
|
|
345
|
-
readonly name: "RoleAdminChanged";
|
|
346
|
-
readonly type: "event";
|
|
347
|
-
}, {
|
|
348
|
-
readonly anonymous: false;
|
|
349
|
-
readonly inputs: readonly [{
|
|
350
|
-
readonly indexed: true;
|
|
351
|
-
readonly internalType: "bytes32";
|
|
352
|
-
readonly name: "role";
|
|
353
|
-
readonly type: "bytes32";
|
|
354
|
-
}, {
|
|
355
|
-
readonly indexed: true;
|
|
356
|
-
readonly internalType: "address";
|
|
357
|
-
readonly name: "account";
|
|
358
|
-
readonly type: "address";
|
|
359
|
-
}, {
|
|
360
|
-
readonly indexed: true;
|
|
361
|
-
readonly internalType: "address";
|
|
362
|
-
readonly name: "sender";
|
|
363
|
-
readonly type: "address";
|
|
364
|
-
}];
|
|
365
|
-
readonly name: "RoleGranted";
|
|
366
|
-
readonly type: "event";
|
|
367
|
-
}, {
|
|
368
|
-
readonly anonymous: false;
|
|
369
|
-
readonly inputs: readonly [{
|
|
370
|
-
readonly indexed: true;
|
|
371
|
-
readonly internalType: "bytes32";
|
|
372
|
-
readonly name: "role";
|
|
373
|
-
readonly type: "bytes32";
|
|
374
|
-
}, {
|
|
375
|
-
readonly indexed: true;
|
|
376
|
-
readonly internalType: "address";
|
|
377
|
-
readonly name: "account";
|
|
378
|
-
readonly type: "address";
|
|
379
|
-
}, {
|
|
380
|
-
readonly indexed: true;
|
|
381
|
-
readonly internalType: "address";
|
|
382
|
-
readonly name: "sender";
|
|
383
|
-
readonly type: "address";
|
|
384
|
-
}];
|
|
385
|
-
readonly name: "RoleRevoked";
|
|
386
|
-
readonly type: "event";
|
|
387
|
-
}, {
|
|
388
|
-
readonly inputs: readonly [];
|
|
389
|
-
readonly name: "CANCELLER_ROLE";
|
|
390
|
-
readonly outputs: readonly [{
|
|
391
|
-
readonly internalType: "bytes32";
|
|
392
|
-
readonly name: "";
|
|
393
|
-
readonly type: "bytes32";
|
|
394
|
-
}];
|
|
395
|
-
readonly stateMutability: "view";
|
|
396
|
-
readonly type: "function";
|
|
397
|
-
}, {
|
|
398
|
-
readonly inputs: readonly [];
|
|
399
|
-
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
400
|
-
readonly outputs: readonly [{
|
|
401
|
-
readonly internalType: "bytes32";
|
|
402
|
-
readonly name: "";
|
|
403
|
-
readonly type: "bytes32";
|
|
404
|
-
}];
|
|
405
|
-
readonly stateMutability: "view";
|
|
406
|
-
readonly type: "function";
|
|
407
|
-
}, {
|
|
408
|
-
readonly inputs: readonly [];
|
|
409
|
-
readonly name: "EMERGENCY_DELAY";
|
|
410
|
-
readonly outputs: readonly [{
|
|
411
|
-
readonly internalType: "uint256";
|
|
412
|
-
readonly name: "";
|
|
413
|
-
readonly type: "uint256";
|
|
414
|
-
}];
|
|
415
|
-
readonly stateMutability: "view";
|
|
416
|
-
readonly type: "function";
|
|
417
|
-
}, {
|
|
418
|
-
readonly inputs: readonly [];
|
|
419
|
-
readonly name: "EMERGENCY_ROLE";
|
|
420
|
-
readonly outputs: readonly [{
|
|
421
|
-
readonly internalType: "bytes32";
|
|
422
|
-
readonly name: "";
|
|
423
|
-
readonly type: "bytes32";
|
|
424
|
-
}];
|
|
425
|
-
readonly stateMutability: "view";
|
|
426
|
-
readonly type: "function";
|
|
427
|
-
}, {
|
|
428
|
-
readonly inputs: readonly [];
|
|
429
|
-
readonly name: "EXECUTOR_ROLE";
|
|
430
|
-
readonly outputs: readonly [{
|
|
431
|
-
readonly internalType: "bytes32";
|
|
432
|
-
readonly name: "";
|
|
433
|
-
readonly type: "bytes32";
|
|
434
|
-
}];
|
|
435
|
-
readonly stateMutability: "view";
|
|
436
|
-
readonly type: "function";
|
|
437
|
-
}, {
|
|
438
|
-
readonly inputs: readonly [];
|
|
439
|
-
readonly name: "GRACE_PERIOD";
|
|
440
|
-
readonly outputs: readonly [{
|
|
441
|
-
readonly internalType: "uint256";
|
|
442
|
-
readonly name: "";
|
|
443
|
-
readonly type: "uint256";
|
|
444
|
-
}];
|
|
445
|
-
readonly stateMutability: "view";
|
|
446
|
-
readonly type: "function";
|
|
447
|
-
}, {
|
|
448
|
-
readonly inputs: readonly [];
|
|
449
|
-
readonly name: "MAX_DELAY";
|
|
450
|
-
readonly outputs: readonly [{
|
|
451
|
-
readonly internalType: "uint256";
|
|
452
|
-
readonly name: "";
|
|
453
|
-
readonly type: "uint256";
|
|
454
|
-
}];
|
|
455
|
-
readonly stateMutability: "view";
|
|
456
|
-
readonly type: "function";
|
|
457
|
-
}, {
|
|
458
|
-
readonly inputs: readonly [];
|
|
459
|
-
readonly name: "MIN_DELAY";
|
|
460
|
-
readonly outputs: readonly [{
|
|
461
|
-
readonly internalType: "uint256";
|
|
462
|
-
readonly name: "";
|
|
463
|
-
readonly type: "uint256";
|
|
464
|
-
}];
|
|
465
|
-
readonly stateMutability: "view";
|
|
466
|
-
readonly type: "function";
|
|
467
|
-
}, {
|
|
468
|
-
readonly inputs: readonly [];
|
|
469
|
-
readonly name: "PROPOSER_ROLE";
|
|
470
|
-
readonly outputs: readonly [{
|
|
471
|
-
readonly internalType: "bytes32";
|
|
472
|
-
readonly name: "";
|
|
473
|
-
readonly type: "bytes32";
|
|
474
|
-
}];
|
|
475
|
-
readonly stateMutability: "view";
|
|
476
|
-
readonly type: "function";
|
|
477
|
-
}, {
|
|
478
|
-
readonly inputs: readonly [{
|
|
479
|
-
readonly internalType: "bytes32";
|
|
480
|
-
readonly name: "id";
|
|
481
|
-
readonly type: "bytes32";
|
|
482
|
-
}];
|
|
483
|
-
readonly name: "cancel";
|
|
484
|
-
readonly outputs: readonly [];
|
|
485
|
-
readonly stateMutability: "nonpayable";
|
|
486
|
-
readonly type: "function";
|
|
487
|
-
}, {
|
|
488
|
-
readonly inputs: readonly [{
|
|
489
|
-
readonly internalType: "uint256";
|
|
490
|
-
readonly name: "proposalId";
|
|
491
|
-
readonly type: "uint256";
|
|
492
|
-
}, {
|
|
493
|
-
readonly internalType: "address[]";
|
|
494
|
-
readonly name: "targets";
|
|
495
|
-
readonly type: "address[]";
|
|
496
|
-
}, {
|
|
497
|
-
readonly internalType: "uint256[]";
|
|
498
|
-
readonly name: "values";
|
|
499
|
-
readonly type: "uint256[]";
|
|
500
|
-
}, {
|
|
501
|
-
readonly internalType: "bytes[]";
|
|
502
|
-
readonly name: "calldatas";
|
|
503
|
-
readonly type: "bytes[]";
|
|
504
|
-
}, {
|
|
505
|
-
readonly internalType: "bytes32";
|
|
506
|
-
readonly name: "predecessor";
|
|
507
|
-
readonly type: "bytes32";
|
|
508
|
-
}, {
|
|
509
|
-
readonly internalType: "bytes32";
|
|
510
|
-
readonly name: "salt";
|
|
511
|
-
readonly type: "bytes32";
|
|
512
|
-
}];
|
|
513
|
-
readonly name: "executeBatch";
|
|
514
|
-
readonly outputs: readonly [];
|
|
515
|
-
readonly stateMutability: "payable";
|
|
516
|
-
readonly type: "function";
|
|
517
|
-
}, {
|
|
518
|
-
readonly inputs: readonly [{
|
|
519
|
-
readonly internalType: "uint256";
|
|
520
|
-
readonly name: "proposalId";
|
|
521
|
-
readonly type: "uint256";
|
|
522
|
-
}, {
|
|
523
|
-
readonly internalType: "address[]";
|
|
524
|
-
readonly name: "targets";
|
|
525
|
-
readonly type: "address[]";
|
|
526
|
-
}, {
|
|
527
|
-
readonly internalType: "uint256[]";
|
|
528
|
-
readonly name: "values";
|
|
529
|
-
readonly type: "uint256[]";
|
|
530
|
-
}, {
|
|
531
|
-
readonly internalType: "bytes[]";
|
|
532
|
-
readonly name: "calldatas";
|
|
533
|
-
readonly type: "bytes[]";
|
|
534
|
-
}, {
|
|
535
|
-
readonly internalType: "bytes32";
|
|
536
|
-
readonly name: "predecessor";
|
|
537
|
-
readonly type: "bytes32";
|
|
538
|
-
}, {
|
|
539
|
-
readonly internalType: "bytes32";
|
|
540
|
-
readonly name: "salt";
|
|
541
|
-
readonly type: "bytes32";
|
|
542
|
-
}];
|
|
543
|
-
readonly name: "executeEmergencyAction";
|
|
544
|
-
readonly outputs: readonly [];
|
|
545
|
-
readonly stateMutability: "payable";
|
|
546
|
-
readonly type: "function";
|
|
547
|
-
}, {
|
|
548
|
-
readonly inputs: readonly [];
|
|
549
|
-
readonly name: "getMinDelay";
|
|
550
|
-
readonly outputs: readonly [{
|
|
551
|
-
readonly internalType: "uint256";
|
|
552
|
-
readonly name: "";
|
|
553
|
-
readonly type: "uint256";
|
|
554
|
-
}];
|
|
555
|
-
readonly stateMutability: "view";
|
|
556
|
-
readonly type: "function";
|
|
557
|
-
}, {
|
|
558
|
-
readonly inputs: readonly [{
|
|
559
|
-
readonly internalType: "bytes32";
|
|
560
|
-
readonly name: "role";
|
|
561
|
-
readonly type: "bytes32";
|
|
562
|
-
}];
|
|
563
|
-
readonly name: "getRoleAdmin";
|
|
564
|
-
readonly outputs: readonly [{
|
|
565
|
-
readonly internalType: "bytes32";
|
|
566
|
-
readonly name: "";
|
|
567
|
-
readonly type: "bytes32";
|
|
568
|
-
}];
|
|
569
|
-
readonly stateMutability: "view";
|
|
570
|
-
readonly type: "function";
|
|
571
|
-
}, {
|
|
572
|
-
readonly inputs: readonly [{
|
|
573
|
-
readonly internalType: "bytes32";
|
|
574
|
-
readonly name: "id";
|
|
575
|
-
readonly type: "bytes32";
|
|
576
|
-
}];
|
|
577
|
-
readonly name: "getTimestamp";
|
|
578
|
-
readonly outputs: readonly [{
|
|
579
|
-
readonly internalType: "uint256";
|
|
580
|
-
readonly name: "";
|
|
581
|
-
readonly type: "uint256";
|
|
582
|
-
}];
|
|
583
|
-
readonly stateMutability: "view";
|
|
584
|
-
readonly type: "function";
|
|
585
|
-
}, {
|
|
586
|
-
readonly inputs: readonly [{
|
|
587
|
-
readonly internalType: "bytes32";
|
|
588
|
-
readonly name: "role";
|
|
589
|
-
readonly type: "bytes32";
|
|
590
|
-
}, {
|
|
591
|
-
readonly internalType: "address";
|
|
592
|
-
readonly name: "account";
|
|
593
|
-
readonly type: "address";
|
|
594
|
-
}];
|
|
595
|
-
readonly name: "grantRole";
|
|
596
|
-
readonly outputs: readonly [];
|
|
597
|
-
readonly stateMutability: "nonpayable";
|
|
598
|
-
readonly type: "function";
|
|
599
|
-
}, {
|
|
600
|
-
readonly inputs: readonly [{
|
|
601
|
-
readonly internalType: "bytes32";
|
|
602
|
-
readonly name: "role";
|
|
603
|
-
readonly type: "bytes32";
|
|
604
|
-
}, {
|
|
605
|
-
readonly internalType: "address";
|
|
606
|
-
readonly name: "account";
|
|
607
|
-
readonly type: "address";
|
|
608
|
-
}];
|
|
609
|
-
readonly name: "hasRole";
|
|
610
|
-
readonly outputs: readonly [{
|
|
611
|
-
readonly internalType: "bool";
|
|
612
|
-
readonly name: "";
|
|
613
|
-
readonly type: "bool";
|
|
614
|
-
}];
|
|
615
|
-
readonly stateMutability: "view";
|
|
616
|
-
readonly type: "function";
|
|
617
|
-
}, {
|
|
618
|
-
readonly inputs: readonly [{
|
|
619
|
-
readonly internalType: "uint256";
|
|
620
|
-
readonly name: "proposalId";
|
|
621
|
-
readonly type: "uint256";
|
|
622
|
-
}, {
|
|
623
|
-
readonly internalType: "address[]";
|
|
624
|
-
readonly name: "targets";
|
|
625
|
-
readonly type: "address[]";
|
|
626
|
-
}, {
|
|
627
|
-
readonly internalType: "uint256[]";
|
|
628
|
-
readonly name: "values";
|
|
629
|
-
readonly type: "uint256[]";
|
|
630
|
-
}, {
|
|
631
|
-
readonly internalType: "bytes[]";
|
|
632
|
-
readonly name: "calldatas";
|
|
633
|
-
readonly type: "bytes[]";
|
|
634
|
-
}, {
|
|
635
|
-
readonly internalType: "bytes32";
|
|
636
|
-
readonly name: "predecessor";
|
|
637
|
-
readonly type: "bytes32";
|
|
638
|
-
}, {
|
|
639
|
-
readonly internalType: "bytes32";
|
|
640
|
-
readonly name: "salt";
|
|
641
|
-
readonly type: "bytes32";
|
|
642
|
-
}];
|
|
643
|
-
readonly name: "hashOperationBatch";
|
|
644
|
-
readonly outputs: readonly [{
|
|
645
|
-
readonly internalType: "bytes32";
|
|
646
|
-
readonly name: "";
|
|
647
|
-
readonly type: "bytes32";
|
|
648
|
-
}];
|
|
649
|
-
readonly stateMutability: "pure";
|
|
650
|
-
readonly type: "function";
|
|
651
|
-
}, {
|
|
652
|
-
readonly inputs: readonly [{
|
|
653
|
-
readonly internalType: "bytes32";
|
|
654
|
-
readonly name: "id";
|
|
655
|
-
readonly type: "bytes32";
|
|
656
|
-
}];
|
|
657
|
-
readonly name: "isOperationDone";
|
|
658
|
-
readonly outputs: readonly [{
|
|
659
|
-
readonly internalType: "bool";
|
|
660
|
-
readonly name: "";
|
|
661
|
-
readonly type: "bool";
|
|
662
|
-
}];
|
|
663
|
-
readonly stateMutability: "view";
|
|
664
|
-
readonly type: "function";
|
|
665
|
-
}, {
|
|
666
|
-
readonly inputs: readonly [{
|
|
667
|
-
readonly internalType: "bytes32";
|
|
668
|
-
readonly name: "id";
|
|
669
|
-
readonly type: "bytes32";
|
|
670
|
-
}];
|
|
671
|
-
readonly name: "isOperationPending";
|
|
672
|
-
readonly outputs: readonly [{
|
|
673
|
-
readonly internalType: "bool";
|
|
674
|
-
readonly name: "";
|
|
675
|
-
readonly type: "bool";
|
|
676
|
-
}];
|
|
677
|
-
readonly stateMutability: "view";
|
|
678
|
-
readonly type: "function";
|
|
679
|
-
}, {
|
|
680
|
-
readonly inputs: readonly [{
|
|
681
|
-
readonly internalType: "bytes32";
|
|
682
|
-
readonly name: "id";
|
|
683
|
-
readonly type: "bytes32";
|
|
684
|
-
}];
|
|
685
|
-
readonly name: "isOperationReady";
|
|
686
|
-
readonly outputs: readonly [{
|
|
687
|
-
readonly internalType: "bool";
|
|
688
|
-
readonly name: "";
|
|
689
|
-
readonly type: "bool";
|
|
690
|
-
}];
|
|
691
|
-
readonly stateMutability: "view";
|
|
692
|
-
readonly type: "function";
|
|
693
|
-
}, {
|
|
694
|
-
readonly inputs: readonly [{
|
|
695
|
-
readonly internalType: "bytes32";
|
|
696
|
-
readonly name: "role";
|
|
697
|
-
readonly type: "bytes32";
|
|
698
|
-
}, {
|
|
699
|
-
readonly internalType: "address";
|
|
700
|
-
readonly name: "callerConfirmation";
|
|
701
|
-
readonly type: "address";
|
|
702
|
-
}];
|
|
703
|
-
readonly name: "renounceRole";
|
|
704
|
-
readonly outputs: readonly [];
|
|
705
|
-
readonly stateMutability: "nonpayable";
|
|
706
|
-
readonly type: "function";
|
|
707
|
-
}, {
|
|
708
|
-
readonly inputs: readonly [{
|
|
709
|
-
readonly internalType: "bytes32";
|
|
710
|
-
readonly name: "role";
|
|
711
|
-
readonly type: "bytes32";
|
|
712
|
-
}, {
|
|
713
|
-
readonly internalType: "address";
|
|
714
|
-
readonly name: "account";
|
|
715
|
-
readonly type: "address";
|
|
716
|
-
}];
|
|
717
|
-
readonly name: "revokeRole";
|
|
718
|
-
readonly outputs: readonly [];
|
|
719
|
-
readonly stateMutability: "nonpayable";
|
|
720
|
-
readonly type: "function";
|
|
721
|
-
}, {
|
|
722
|
-
readonly inputs: readonly [{
|
|
723
|
-
readonly internalType: "uint256";
|
|
724
|
-
readonly name: "proposalId";
|
|
725
|
-
readonly type: "uint256";
|
|
726
|
-
}, {
|
|
727
|
-
readonly internalType: "address[]";
|
|
728
|
-
readonly name: "targets";
|
|
729
|
-
readonly type: "address[]";
|
|
730
|
-
}, {
|
|
731
|
-
readonly internalType: "uint256[]";
|
|
732
|
-
readonly name: "values";
|
|
733
|
-
readonly type: "uint256[]";
|
|
734
|
-
}, {
|
|
735
|
-
readonly internalType: "bytes[]";
|
|
736
|
-
readonly name: "calldatas";
|
|
737
|
-
readonly type: "bytes[]";
|
|
738
|
-
}, {
|
|
739
|
-
readonly internalType: "bytes32";
|
|
740
|
-
readonly name: "predecessor";
|
|
741
|
-
readonly type: "bytes32";
|
|
742
|
-
}, {
|
|
743
|
-
readonly internalType: "bytes32";
|
|
744
|
-
readonly name: "salt";
|
|
745
|
-
readonly type: "bytes32";
|
|
746
|
-
}, {
|
|
747
|
-
readonly internalType: "uint256";
|
|
748
|
-
readonly name: "delay";
|
|
749
|
-
readonly type: "uint256";
|
|
750
|
-
}];
|
|
751
|
-
readonly name: "scheduleBatch";
|
|
752
|
-
readonly outputs: readonly [{
|
|
753
|
-
readonly internalType: "bytes32";
|
|
754
|
-
readonly name: "";
|
|
755
|
-
readonly type: "bytes32";
|
|
756
|
-
}];
|
|
757
|
-
readonly stateMutability: "nonpayable";
|
|
758
|
-
readonly type: "function";
|
|
759
|
-
}, {
|
|
760
|
-
readonly inputs: readonly [{
|
|
761
|
-
readonly internalType: "bytes32";
|
|
762
|
-
readonly name: "id";
|
|
763
|
-
readonly type: "bytes32";
|
|
764
|
-
}];
|
|
765
|
-
readonly name: "scheduleEmergencyAction";
|
|
766
|
-
readonly outputs: readonly [];
|
|
767
|
-
readonly stateMutability: "nonpayable";
|
|
768
|
-
readonly type: "function";
|
|
769
|
-
}, {
|
|
770
|
-
readonly inputs: readonly [{
|
|
771
|
-
readonly internalType: "bytes4";
|
|
772
|
-
readonly name: "interfaceId";
|
|
773
|
-
readonly type: "bytes4";
|
|
774
|
-
}];
|
|
775
|
-
readonly name: "supportsInterface";
|
|
776
|
-
readonly outputs: readonly [{
|
|
777
|
-
readonly internalType: "bool";
|
|
778
|
-
readonly name: "";
|
|
779
|
-
readonly type: "bool";
|
|
780
|
-
}];
|
|
781
|
-
readonly stateMutability: "view";
|
|
782
|
-
readonly type: "function";
|
|
783
|
-
}, {
|
|
784
|
-
readonly inputs: readonly [{
|
|
785
|
-
readonly internalType: "uint256";
|
|
786
|
-
readonly name: "newDelay";
|
|
787
|
-
readonly type: "uint256";
|
|
788
|
-
}];
|
|
789
|
-
readonly name: "updateDelay";
|
|
790
|
-
readonly outputs: readonly [];
|
|
791
|
-
readonly stateMutability: "nonpayable";
|
|
792
|
-
readonly type: "function";
|
|
793
|
-
}];
|
|
794
|
-
static createInterface(): TimelockControllerInterface;
|
|
795
|
-
static connect(address: string, runner?: ContractRunner | null): TimelockController;
|
|
796
|
-
}
|
|
797
|
-
export {};
|