@raac/rpc 1.1.0-beta.63 → 1.1.0-beta.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +4 -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/redeemNFTFromRWAVault.js +3 -4
- package/dist/scripts/index.js +1 -1
- package/dist/types/RPCLibrary.d.ts +0 -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/redeemNFTFromRWAVault.d.ts +3 -2
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/{typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts → @openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.d.ts} +4 -4
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +65 -10
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +2 -2
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +316 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts} +33 -11
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts} +9 -9
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → contracts/core/pools/LendingPool}/ERC721AssetAdapter.d.ts +20 -2
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +86 -49
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +69 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +69 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +73 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +22 -16
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +58 -44
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +17 -13
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +85 -87
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +9 -19
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +7 -3
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +76 -2
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol → contracts/core/vaults}/ERC721VaultAdapter.d.ts +24 -2
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts → contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts} +79 -35
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +270 -63
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +2 -4
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts → contracts/interfaces/core/collectors/IDistributionTarget.d.ts} +13 -5
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +53 -2
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → contracts/interfaces/core/oracles/IERC721PriceOracle.d.ts} +6 -6
- package/dist/types/typechain-types/{typechain-types/contracts/interfaces/IHousePrices.d.ts → contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts} +12 -12
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer.d.ts +71 -0
- package/dist/types/typechain-types/{typechain-types/contracts/interfaces/core/oracles → contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices.d.ts +20 -28
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +4 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +66 -4
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +52 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +34 -24
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +5 -19
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +7 -3
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +38 -2
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +258 -23
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +9 -1
- package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts → contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts} +9 -13
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA.d.ts +59 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts → contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool.d.ts} +138 -31
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +9 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +66 -4
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +5 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts → factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +94 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +6 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +124 -23
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts} +118 -116
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle__factory.d.ts} +22 -18
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts} +6 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +199 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +149 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → factories/contracts/core/pools/LendingPool}/ERC721AssetAdapter__factory.d.ts +30 -4
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +62 -25
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +94 -41
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +62 -25
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +73 -30
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +27 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +17 -3
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +23 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +78 -64
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +96 -78
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +26 -18
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +21 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +88 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +25 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +22 -4
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +417 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +247 -68
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +2 -2
- package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts → factories/contracts/interfaces/core/collectors/IDistributionTarget__factory.d.ts} +13 -17
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/interfaces/core/oracles/IERC721PriceOracle__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer__factory.d.ts +59 -0
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/oracles → factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices__factory.d.ts +28 -14
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +3 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +26 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +67 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +45 -23
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +5 -15
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +38 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +210 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts} +7 -7
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +98 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +199 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +149 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +958 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +68 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +27 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +9 -5
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
- package/dist/types/typechain-types/index.d.ts +28 -14
- package/package.json +1 -1
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +0 -23
- package/dist/pools/lendingPool/requestWithdraw.js +0 -28
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +0 -9
- package/dist/types/pools/lendingPool/requestWithdraw.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +0 -67
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +0 -205
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +0 -103
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +0 -143
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +0 -529
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +0 -109
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +0 -192
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +0 -731
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +0 -159
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +0 -54
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +0 -77
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +0 -231
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +0 -318
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +0 -141
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +0 -236
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +0 -318
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -141
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +0 -61
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +0 -211
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -199
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +0 -233
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +0 -221
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -211
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -12
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +0 -36
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/common.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +0 -909
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +0 -127
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/Treasury.d.ts +0 -298
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +0 -1367
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +0 -1103
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +0 -641
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +0 -1371
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +0 -1375
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +0 -586
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +0 -477
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/index.d.ts +0 -18
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +0 -721
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +0 -808
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +0 -509
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +0 -183
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +0 -310
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +0 -221
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +0 -241
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +0 -2112
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +0 -432
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +0 -530
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +0 -485
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +0 -186
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +0 -810
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +0 -168
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +0 -231
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +0 -284
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DEToken.d.ts +0 -424
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DebtToken.d.ts +0 -326
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/IndexToken.d.ts +0 -340
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/LPToken.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +0 -897
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACToken.d.ts +0 -401
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RToken.d.ts +0 -543
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +0 -1077
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +0 -176
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +0 -174
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +0 -47
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RWAVault.d.ts +0 -560
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/index.d.ts +0 -10
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +0 -63
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IERC20.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +0 -240
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +0 -75
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IUSDC.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +0 -537
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +0 -120
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +0 -623
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +0 -523
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +0 -351
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +0 -551
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +0 -309
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/index.d.ts +0 -16
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +0 -332
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +0 -302
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +0 -345
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +0 -238
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +0 -185
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +0 -152
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +0 -51
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +0 -1163
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +0 -102
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +0 -51
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +0 -443
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +0 -270
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +0 -279
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +0 -187
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +0 -630
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +0 -346
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +0 -385
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +0 -197
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +0 -621
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +0 -265
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +0 -87
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +0 -176
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +0 -357
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/index.d.ts +0 -11
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +0 -137
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +0 -216
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/LockManager.d.ts +0 -94
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +0 -93
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/libraries/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +0 -80
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +0 -124
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +0 -134
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +0 -225
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +0 -350
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +0 -56
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +0 -76
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/index.d.ts +0 -18
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +0 -394
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +0 -151
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +0 -41
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +0 -43
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +0 -169
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +0 -731
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +0 -171
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +0 -237
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +0 -243
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/index.d.ts +0 -10
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +0 -121
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +0 -152
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +0 -1183
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +0 -47
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +0 -212
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +0 -234
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +0 -229
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +0 -292
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +0 -216
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +0 -187
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +0 -186
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +0 -290
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +0 -204
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +0 -173
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +0 -160
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +0 -41
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +0 -229
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +0 -185
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/zeno/Auction.d.ts +0 -275
- package/dist/types/typechain-types/typechain-types/contracts/zeno/AuctionFactory.d.ts +0 -209
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENO.d.ts +0 -293
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENOFactory.d.ts +0 -151
- package/dist/types/typechain-types/typechain-types/contracts/zeno/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +0 -268
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +0 -48
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +0 -90
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +0 -86
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +0 -93
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +0 -191
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +0 -663
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +0 -139
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +0 -194
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +0 -27
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +0 -32
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +0 -944
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +0 -181
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +0 -157
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +0 -95
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +0 -64
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +0 -289
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +0 -472
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +0 -46
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +0 -241
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +0 -402
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +0 -632
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -177
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +0 -46
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +0 -337
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +0 -395
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +0 -269
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -261
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +0 -11
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +0 -34
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +0 -34
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +0 -58
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +0 -62
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +0 -82
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +0 -63
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +0 -393
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +0 -1329
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +0 -223
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +0 -389
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +0 -389
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +0 -437
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -1815
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +0 -1448
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +0 -896
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +0 -1856
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +0 -1866
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +0 -950
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +0 -797
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +0 -1052
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +0 -1103
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +0 -717
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +0 -245
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +0 -436
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +0 -334
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +0 -336
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +0 -74
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +0 -52
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +0 -403
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +0 -586
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +0 -2699
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +0 -744
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +0 -674
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +0 -303
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +0 -275
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +0 -277
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +0 -1166
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +0 -320
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +0 -276
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +0 -741
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +0 -576
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +0 -401
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +0 -1358
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +0 -652
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +0 -901
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +0 -465
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +0 -1544
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +0 -285
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +0 -311
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -307
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +0 -350
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +0 -861
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +0 -272
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +0 -77
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +0 -43
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +0 -718
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +0 -775
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +0 -623
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +0 -425
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +0 -852
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +0 -492
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -397
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +0 -286
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +0 -143
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +0 -233
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +0 -191
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -1419
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +0 -61
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +0 -56
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +0 -567
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +0 -336
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +0 -372
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +0 -764
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -436
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +0 -486
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +0 -223
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +0 -761
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +0 -329
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +0 -137
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -115
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +0 -258
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +0 -503
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +0 -173
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +0 -288
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +0 -54
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +0 -120
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +0 -115
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +0 -97
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +0 -135
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +0 -165
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +0 -353
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +0 -661
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +0 -36
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +0 -100
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +0 -615
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +0 -168
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +0 -66
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +0 -62
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -242
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +0 -944
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +0 -184
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +0 -352
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +0 -354
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +0 -1471
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +0 -195
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +0 -795
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +0 -84
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +0 -109
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +0 -64
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +0 -417
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +0 -379
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +0 -286
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +0 -388
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +0 -451
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +0 -393
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +0 -324
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +0 -278
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +0 -335
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +0 -525
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +0 -40
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +0 -282
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +0 -206
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +0 -208
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +0 -247
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +0 -154
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +0 -287
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +0 -80
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +0 -287
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +0 -452
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +0 -235
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +0 -564
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/index.d.ts +0 -437
package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts
DELETED
|
@@ -1,2112 +0,0 @@
|
|
|
1
|
-
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
-
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
|
-
export declare namespace ILendingPoolStorage {
|
|
4
|
-
type CollateralPositionStruct = {
|
|
5
|
-
rawDebtBalance: BigNumberish;
|
|
6
|
-
isUnderLiquidation: boolean;
|
|
7
|
-
liquidationStartTime: BigNumberish;
|
|
8
|
-
positionIndex: BigNumberish;
|
|
9
|
-
isInsured: boolean;
|
|
10
|
-
rawInsuredBalance: BigNumberish;
|
|
11
|
-
};
|
|
12
|
-
type CollateralPositionStructOutput = [
|
|
13
|
-
rawDebtBalance: bigint,
|
|
14
|
-
isUnderLiquidation: boolean,
|
|
15
|
-
liquidationStartTime: bigint,
|
|
16
|
-
positionIndex: bigint,
|
|
17
|
-
isInsured: boolean,
|
|
18
|
-
rawInsuredBalance: bigint
|
|
19
|
-
] & {
|
|
20
|
-
rawDebtBalance: bigint;
|
|
21
|
-
isUnderLiquidation: boolean;
|
|
22
|
-
liquidationStartTime: bigint;
|
|
23
|
-
positionIndex: bigint;
|
|
24
|
-
isInsured: boolean;
|
|
25
|
-
rawInsuredBalance: bigint;
|
|
26
|
-
};
|
|
27
|
-
type CollateralPositionViewStruct = {
|
|
28
|
-
rawDebtBalance: BigNumberish;
|
|
29
|
-
scaledDebtBalance: BigNumberish;
|
|
30
|
-
healthFactor: BigNumberish;
|
|
31
|
-
isUnderLiquidation: boolean;
|
|
32
|
-
liquidationStartTime: BigNumberish;
|
|
33
|
-
positionIndex: BigNumberish;
|
|
34
|
-
isInsured: boolean;
|
|
35
|
-
adapter: AddressLike;
|
|
36
|
-
asset: AddressLike;
|
|
37
|
-
};
|
|
38
|
-
type CollateralPositionViewStructOutput = [
|
|
39
|
-
rawDebtBalance: bigint,
|
|
40
|
-
scaledDebtBalance: bigint,
|
|
41
|
-
healthFactor: bigint,
|
|
42
|
-
isUnderLiquidation: boolean,
|
|
43
|
-
liquidationStartTime: bigint,
|
|
44
|
-
positionIndex: bigint,
|
|
45
|
-
isInsured: boolean,
|
|
46
|
-
adapter: string,
|
|
47
|
-
asset: string
|
|
48
|
-
] & {
|
|
49
|
-
rawDebtBalance: bigint;
|
|
50
|
-
scaledDebtBalance: bigint;
|
|
51
|
-
healthFactor: bigint;
|
|
52
|
-
isUnderLiquidation: boolean;
|
|
53
|
-
liquidationStartTime: bigint;
|
|
54
|
-
positionIndex: bigint;
|
|
55
|
-
isInsured: boolean;
|
|
56
|
-
adapter: string;
|
|
57
|
-
asset: string;
|
|
58
|
-
};
|
|
59
|
-
}
|
|
60
|
-
export declare namespace ReserveLibrary {
|
|
61
|
-
type ReserveRateDataStruct = {
|
|
62
|
-
currentLiquidityRate: BigNumberish;
|
|
63
|
-
currentUsageRate: BigNumberish;
|
|
64
|
-
primeRate: BigNumberish;
|
|
65
|
-
baseRate: BigNumberish;
|
|
66
|
-
optimalRate: BigNumberish;
|
|
67
|
-
maxRate: BigNumberish;
|
|
68
|
-
optimalUtilizationRate: BigNumberish;
|
|
69
|
-
protocolFeeRate: BigNumberish;
|
|
70
|
-
};
|
|
71
|
-
type ReserveRateDataStructOutput = [
|
|
72
|
-
currentLiquidityRate: bigint,
|
|
73
|
-
currentUsageRate: bigint,
|
|
74
|
-
primeRate: bigint,
|
|
75
|
-
baseRate: bigint,
|
|
76
|
-
optimalRate: bigint,
|
|
77
|
-
maxRate: bigint,
|
|
78
|
-
optimalUtilizationRate: bigint,
|
|
79
|
-
protocolFeeRate: bigint
|
|
80
|
-
] & {
|
|
81
|
-
currentLiquidityRate: bigint;
|
|
82
|
-
currentUsageRate: bigint;
|
|
83
|
-
primeRate: bigint;
|
|
84
|
-
baseRate: bigint;
|
|
85
|
-
optimalRate: bigint;
|
|
86
|
-
maxRate: bigint;
|
|
87
|
-
optimalUtilizationRate: bigint;
|
|
88
|
-
protocolFeeRate: bigint;
|
|
89
|
-
};
|
|
90
|
-
type ReserveDataStruct = {
|
|
91
|
-
reserveRTokenAddress: AddressLike;
|
|
92
|
-
reserveAssetAddress: AddressLike;
|
|
93
|
-
reserveDebtTokenAddress: AddressLike;
|
|
94
|
-
totalLiquidity: BigNumberish;
|
|
95
|
-
totalUsage: BigNumberish;
|
|
96
|
-
liquidityIndex: BigNumberish;
|
|
97
|
-
usageIndex: BigNumberish;
|
|
98
|
-
lastUpdateTimestamp: BigNumberish;
|
|
99
|
-
};
|
|
100
|
-
type ReserveDataStructOutput = [
|
|
101
|
-
reserveRTokenAddress: string,
|
|
102
|
-
reserveAssetAddress: string,
|
|
103
|
-
reserveDebtTokenAddress: string,
|
|
104
|
-
totalLiquidity: bigint,
|
|
105
|
-
totalUsage: bigint,
|
|
106
|
-
liquidityIndex: bigint,
|
|
107
|
-
usageIndex: bigint,
|
|
108
|
-
lastUpdateTimestamp: bigint
|
|
109
|
-
] & {
|
|
110
|
-
reserveRTokenAddress: string;
|
|
111
|
-
reserveAssetAddress: string;
|
|
112
|
-
reserveDebtTokenAddress: string;
|
|
113
|
-
totalLiquidity: bigint;
|
|
114
|
-
totalUsage: bigint;
|
|
115
|
-
liquidityIndex: bigint;
|
|
116
|
-
usageIndex: bigint;
|
|
117
|
-
lastUpdateTimestamp: bigint;
|
|
118
|
-
};
|
|
119
|
-
}
|
|
120
|
-
export interface LendingPoolInterface extends Interface {
|
|
121
|
-
getFunction(nameOrSignature: "BASE_BORROW_THRESHOLD" | "BASE_LIQUIDATION_GRACE_PERIOD" | "BASE_LIQUIDATION_THRESHOLD" | "DEFAULT_ADMIN_ROLE" | "GOVERNANCE_ROLE" | "HEALTH_FACTOR_LIQUIDATION_THRESHOLD" | "PROTOCOL_ROLE" | "adapters" | "borrow" | "borrowWithInsurance" | "calculateHealthFactor" | "calculateInsuranceFee" | "claimCollectorRewards" | "closeLiquidation" | "complianceRegistry" | "deposit" | "depositAsset" | "depositBlock" | "feeCollector" | "finalizeLiquidation" | "getAdapters" | "getAssetValue" | "getEligibleUserDeposits" | "getNormalizedDebt" | "getNormalizedIncome" | "getPosition" | "getPositionData" | "getPositionDebt" | "getPositionScaledDebt" | "getPositionView" | "getPositionsScaledDebt" | "getPrimeRate" | "getReserveRateData" | "getReserveState" | "getRoleAdmin" | "getUninsuredBalance" | "getUserCollateralValue" | "getUserDeposits" | "getUserDepositsInStabilityPool" | "grantRole" | "hasRole" | "initiateLiquidation" | "liquidationProxy" | "onERC721Received" | "openVaultPosition" | "owner" | "parameters" | "pause" | "paused" | "positions" | "primeRateOracle" | "rateData" | "registerAdapter" | "renounceOwnership" | "renounceRole" | "repay" | "repayOnBehalf" | "requestWithdraw" | "rescueToken" | "reserve" | "revokeRole" | "setFeeCollector" | "setLiquidationProxy" | "setParameter" | "setPrimeRate" | "setPrimeRateOracle" | "setStabilityPool" | "setVault" | "stabilityPool" | "supportedAdapter" | "supportedAdapters" | "supportsInterface" | "transferAccruedDust" | "transferOwnership" | "unpause" | "unregisterAdapter" | "updateState" | "vault" | "vaultOpened" | "vaultProxy" | "vaultRewards" | "withdraw" | "withdrawAsset" | "withdrawTimelock"): FunctionFragment;
|
|
122
|
-
getEvent(nameOrSignatureOrTopic: "AdapterRegistered" | "AdapterRemoved" | "Borrow" | "BorrowCapUpdated" | "CanPaybackDebtChanged" | "Deposit(address,uint256,uint256)" | "Deposit(address,uint256,uint256)" | "DepositFeeUpdated" | "FeeCollectorUpdated" | "InsufficientFees" | "InsuranceFeeUpdated" | "InsuredAsset" | "InterestRatesUpdated" | "Liquidation" | "LiquidationClosed" | "LiquidationFinalized" | "LiquidationInitiated" | "LiquidationProxyUpdated" | "LiquidityBufferRatioUpdated" | "LiquidityRebalanced" | "NFTDeposited" | "NFTWithdrawn" | "NotFeeCollector" | "OwnershipTransferred" | "ParameterChanged" | "Paused" | "PrimeRateOracleUpdated" | "PrimeRateUpdated" | "ProtocolFeeRateUpdated" | "ProtocolFeesCollected" | "ProtocolFeesWithdrawn" | "Repay" | "ReserveInterestsUpdated" | "RewardClaimed" | "RewardDistributed" | "RewardParametersUpdated" | "RewardTokenAdded" | "RewardTokensDeposited" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "StabilityPoolUpdated" | "SupplyCapUpdated" | "Unpaused" | "VaultOpeningFeePaid" | "VaultOpeningFeeUpdated" | "VaultRewardsClaimed" | "VaultUpdated" | "VaultWithdrawalFailed" | "Withdraw(address,uint256)" | "Withdraw(address,uint256,uint256)" | "WithdrawCancelled" | "WithdrawFeeUpdated" | "WithdrawQueued" | "WithdrawTimelockDurationUpdated" | "WithdrawalsPauseStatusChanged"): EventFragment;
|
|
123
|
-
encodeFunctionData(functionFragment: "BASE_BORROW_THRESHOLD", values?: undefined): string;
|
|
124
|
-
encodeFunctionData(functionFragment: "BASE_LIQUIDATION_GRACE_PERIOD", values?: undefined): string;
|
|
125
|
-
encodeFunctionData(functionFragment: "BASE_LIQUIDATION_THRESHOLD", values?: undefined): string;
|
|
126
|
-
encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
|
|
127
|
-
encodeFunctionData(functionFragment: "GOVERNANCE_ROLE", values?: undefined): string;
|
|
128
|
-
encodeFunctionData(functionFragment: "HEALTH_FACTOR_LIQUIDATION_THRESHOLD", values?: undefined): string;
|
|
129
|
-
encodeFunctionData(functionFragment: "PROTOCOL_ROLE", values?: undefined): string;
|
|
130
|
-
encodeFunctionData(functionFragment: "adapters", values: [BigNumberish]): string;
|
|
131
|
-
encodeFunctionData(functionFragment: "borrow", values: [AddressLike, BytesLike, BigNumberish]): string;
|
|
132
|
-
encodeFunctionData(functionFragment: "borrowWithInsurance", values: [AddressLike, BytesLike, BigNumberish]): string;
|
|
133
|
-
encodeFunctionData(functionFragment: "calculateHealthFactor", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
134
|
-
encodeFunctionData(functionFragment: "calculateInsuranceFee", values: [AddressLike, AddressLike, BytesLike, BigNumberish]): string;
|
|
135
|
-
encodeFunctionData(functionFragment: "claimCollectorRewards", values?: undefined): string;
|
|
136
|
-
encodeFunctionData(functionFragment: "closeLiquidation", values: [AddressLike, BytesLike]): string;
|
|
137
|
-
encodeFunctionData(functionFragment: "complianceRegistry", values?: undefined): string;
|
|
138
|
-
encodeFunctionData(functionFragment: "deposit", values: [BigNumberish]): string;
|
|
139
|
-
encodeFunctionData(functionFragment: "depositAsset", values: [AddressLike, BytesLike]): string;
|
|
140
|
-
encodeFunctionData(functionFragment: "depositBlock", values: [AddressLike]): string;
|
|
141
|
-
encodeFunctionData(functionFragment: "feeCollector", values?: undefined): string;
|
|
142
|
-
encodeFunctionData(functionFragment: "finalizeLiquidation", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
143
|
-
encodeFunctionData(functionFragment: "getAdapters", values?: undefined): string;
|
|
144
|
-
encodeFunctionData(functionFragment: "getAssetValue", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
145
|
-
encodeFunctionData(functionFragment: "getEligibleUserDeposits", values: [AddressLike]): string;
|
|
146
|
-
encodeFunctionData(functionFragment: "getNormalizedDebt", values?: undefined): string;
|
|
147
|
-
encodeFunctionData(functionFragment: "getNormalizedIncome", values?: undefined): string;
|
|
148
|
-
encodeFunctionData(functionFragment: "getPosition", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
149
|
-
encodeFunctionData(functionFragment: "getPositionData", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
150
|
-
encodeFunctionData(functionFragment: "getPositionDebt", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
151
|
-
encodeFunctionData(functionFragment: "getPositionScaledDebt", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
152
|
-
encodeFunctionData(functionFragment: "getPositionView", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
153
|
-
encodeFunctionData(functionFragment: "getPositionsScaledDebt", values: [AddressLike]): string;
|
|
154
|
-
encodeFunctionData(functionFragment: "getPrimeRate", values?: undefined): string;
|
|
155
|
-
encodeFunctionData(functionFragment: "getReserveRateData", values?: undefined): string;
|
|
156
|
-
encodeFunctionData(functionFragment: "getReserveState", values?: undefined): string;
|
|
157
|
-
encodeFunctionData(functionFragment: "getRoleAdmin", values: [BytesLike]): string;
|
|
158
|
-
encodeFunctionData(functionFragment: "getUninsuredBalance", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
159
|
-
encodeFunctionData(functionFragment: "getUserCollateralValue", values: [AddressLike]): string;
|
|
160
|
-
encodeFunctionData(functionFragment: "getUserDeposits", values: [AddressLike]): string;
|
|
161
|
-
encodeFunctionData(functionFragment: "getUserDepositsInStabilityPool", values: [AddressLike]): string;
|
|
162
|
-
encodeFunctionData(functionFragment: "grantRole", values: [BytesLike, AddressLike]): string;
|
|
163
|
-
encodeFunctionData(functionFragment: "hasRole", values: [BytesLike, AddressLike]): string;
|
|
164
|
-
encodeFunctionData(functionFragment: "initiateLiquidation", values: [AddressLike, AddressLike, BytesLike]): string;
|
|
165
|
-
encodeFunctionData(functionFragment: "liquidationProxy", values?: undefined): string;
|
|
166
|
-
encodeFunctionData(functionFragment: "onERC721Received", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
|
|
167
|
-
encodeFunctionData(functionFragment: "openVaultPosition", values?: undefined): string;
|
|
168
|
-
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
169
|
-
encodeFunctionData(functionFragment: "parameters", values?: undefined): string;
|
|
170
|
-
encodeFunctionData(functionFragment: "pause", values?: undefined): string;
|
|
171
|
-
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
172
|
-
encodeFunctionData(functionFragment: "positions", values: [AddressLike, BytesLike]): string;
|
|
173
|
-
encodeFunctionData(functionFragment: "primeRateOracle", values?: undefined): string;
|
|
174
|
-
encodeFunctionData(functionFragment: "rateData", values?: undefined): string;
|
|
175
|
-
encodeFunctionData(functionFragment: "registerAdapter", values: [AddressLike]): string;
|
|
176
|
-
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
177
|
-
encodeFunctionData(functionFragment: "renounceRole", values: [BytesLike, AddressLike]): string;
|
|
178
|
-
encodeFunctionData(functionFragment: "repay", values: [AddressLike, BytesLike, BigNumberish]): string;
|
|
179
|
-
encodeFunctionData(functionFragment: "repayOnBehalf", values: [AddressLike, BytesLike, BigNumberish, AddressLike]): string;
|
|
180
|
-
encodeFunctionData(functionFragment: "requestWithdraw", values: [BigNumberish]): string;
|
|
181
|
-
encodeFunctionData(functionFragment: "rescueToken", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
182
|
-
encodeFunctionData(functionFragment: "reserve", values?: undefined): string;
|
|
183
|
-
encodeFunctionData(functionFragment: "revokeRole", values: [BytesLike, AddressLike]): string;
|
|
184
|
-
encodeFunctionData(functionFragment: "setFeeCollector", values: [AddressLike]): string;
|
|
185
|
-
encodeFunctionData(functionFragment: "setLiquidationProxy", values: [AddressLike]): string;
|
|
186
|
-
encodeFunctionData(functionFragment: "setParameter", values: [BigNumberish, BigNumberish]): string;
|
|
187
|
-
encodeFunctionData(functionFragment: "setPrimeRate", values: [BigNumberish]): string;
|
|
188
|
-
encodeFunctionData(functionFragment: "setPrimeRateOracle", values: [AddressLike]): string;
|
|
189
|
-
encodeFunctionData(functionFragment: "setStabilityPool", values: [AddressLike]): string;
|
|
190
|
-
encodeFunctionData(functionFragment: "setVault", values: [AddressLike]): string;
|
|
191
|
-
encodeFunctionData(functionFragment: "stabilityPool", values?: undefined): string;
|
|
192
|
-
encodeFunctionData(functionFragment: "supportedAdapter", values: [AddressLike]): string;
|
|
193
|
-
encodeFunctionData(functionFragment: "supportedAdapters", values: [AddressLike]): string;
|
|
194
|
-
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
195
|
-
encodeFunctionData(functionFragment: "transferAccruedDust", values: [AddressLike, BigNumberish]): string;
|
|
196
|
-
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
197
|
-
encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
|
|
198
|
-
encodeFunctionData(functionFragment: "unregisterAdapter", values: [AddressLike]): string;
|
|
199
|
-
encodeFunctionData(functionFragment: "updateState", values?: undefined): string;
|
|
200
|
-
encodeFunctionData(functionFragment: "vault", values?: undefined): string;
|
|
201
|
-
encodeFunctionData(functionFragment: "vaultOpened", values: [AddressLike]): string;
|
|
202
|
-
encodeFunctionData(functionFragment: "vaultProxy", values?: undefined): string;
|
|
203
|
-
encodeFunctionData(functionFragment: "vaultRewards", values?: undefined): string;
|
|
204
|
-
encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string;
|
|
205
|
-
encodeFunctionData(functionFragment: "withdrawAsset", values: [AddressLike, BytesLike]): string;
|
|
206
|
-
encodeFunctionData(functionFragment: "withdrawTimelock", values: [AddressLike]): string;
|
|
207
|
-
decodeFunctionResult(functionFragment: "BASE_BORROW_THRESHOLD", data: BytesLike): Result;
|
|
208
|
-
decodeFunctionResult(functionFragment: "BASE_LIQUIDATION_GRACE_PERIOD", data: BytesLike): Result;
|
|
209
|
-
decodeFunctionResult(functionFragment: "BASE_LIQUIDATION_THRESHOLD", data: BytesLike): Result;
|
|
210
|
-
decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
|
|
211
|
-
decodeFunctionResult(functionFragment: "GOVERNANCE_ROLE", data: BytesLike): Result;
|
|
212
|
-
decodeFunctionResult(functionFragment: "HEALTH_FACTOR_LIQUIDATION_THRESHOLD", data: BytesLike): Result;
|
|
213
|
-
decodeFunctionResult(functionFragment: "PROTOCOL_ROLE", data: BytesLike): Result;
|
|
214
|
-
decodeFunctionResult(functionFragment: "adapters", data: BytesLike): Result;
|
|
215
|
-
decodeFunctionResult(functionFragment: "borrow", data: BytesLike): Result;
|
|
216
|
-
decodeFunctionResult(functionFragment: "borrowWithInsurance", data: BytesLike): Result;
|
|
217
|
-
decodeFunctionResult(functionFragment: "calculateHealthFactor", data: BytesLike): Result;
|
|
218
|
-
decodeFunctionResult(functionFragment: "calculateInsuranceFee", data: BytesLike): Result;
|
|
219
|
-
decodeFunctionResult(functionFragment: "claimCollectorRewards", data: BytesLike): Result;
|
|
220
|
-
decodeFunctionResult(functionFragment: "closeLiquidation", data: BytesLike): Result;
|
|
221
|
-
decodeFunctionResult(functionFragment: "complianceRegistry", data: BytesLike): Result;
|
|
222
|
-
decodeFunctionResult(functionFragment: "deposit", data: BytesLike): Result;
|
|
223
|
-
decodeFunctionResult(functionFragment: "depositAsset", data: BytesLike): Result;
|
|
224
|
-
decodeFunctionResult(functionFragment: "depositBlock", data: BytesLike): Result;
|
|
225
|
-
decodeFunctionResult(functionFragment: "feeCollector", data: BytesLike): Result;
|
|
226
|
-
decodeFunctionResult(functionFragment: "finalizeLiquidation", data: BytesLike): Result;
|
|
227
|
-
decodeFunctionResult(functionFragment: "getAdapters", data: BytesLike): Result;
|
|
228
|
-
decodeFunctionResult(functionFragment: "getAssetValue", data: BytesLike): Result;
|
|
229
|
-
decodeFunctionResult(functionFragment: "getEligibleUserDeposits", data: BytesLike): Result;
|
|
230
|
-
decodeFunctionResult(functionFragment: "getNormalizedDebt", data: BytesLike): Result;
|
|
231
|
-
decodeFunctionResult(functionFragment: "getNormalizedIncome", data: BytesLike): Result;
|
|
232
|
-
decodeFunctionResult(functionFragment: "getPosition", data: BytesLike): Result;
|
|
233
|
-
decodeFunctionResult(functionFragment: "getPositionData", data: BytesLike): Result;
|
|
234
|
-
decodeFunctionResult(functionFragment: "getPositionDebt", data: BytesLike): Result;
|
|
235
|
-
decodeFunctionResult(functionFragment: "getPositionScaledDebt", data: BytesLike): Result;
|
|
236
|
-
decodeFunctionResult(functionFragment: "getPositionView", data: BytesLike): Result;
|
|
237
|
-
decodeFunctionResult(functionFragment: "getPositionsScaledDebt", data: BytesLike): Result;
|
|
238
|
-
decodeFunctionResult(functionFragment: "getPrimeRate", data: BytesLike): Result;
|
|
239
|
-
decodeFunctionResult(functionFragment: "getReserveRateData", data: BytesLike): Result;
|
|
240
|
-
decodeFunctionResult(functionFragment: "getReserveState", data: BytesLike): Result;
|
|
241
|
-
decodeFunctionResult(functionFragment: "getRoleAdmin", data: BytesLike): Result;
|
|
242
|
-
decodeFunctionResult(functionFragment: "getUninsuredBalance", data: BytesLike): Result;
|
|
243
|
-
decodeFunctionResult(functionFragment: "getUserCollateralValue", data: BytesLike): Result;
|
|
244
|
-
decodeFunctionResult(functionFragment: "getUserDeposits", data: BytesLike): Result;
|
|
245
|
-
decodeFunctionResult(functionFragment: "getUserDepositsInStabilityPool", data: BytesLike): Result;
|
|
246
|
-
decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
|
|
247
|
-
decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
|
|
248
|
-
decodeFunctionResult(functionFragment: "initiateLiquidation", data: BytesLike): Result;
|
|
249
|
-
decodeFunctionResult(functionFragment: "liquidationProxy", data: BytesLike): Result;
|
|
250
|
-
decodeFunctionResult(functionFragment: "onERC721Received", data: BytesLike): Result;
|
|
251
|
-
decodeFunctionResult(functionFragment: "openVaultPosition", data: BytesLike): Result;
|
|
252
|
-
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
253
|
-
decodeFunctionResult(functionFragment: "parameters", data: BytesLike): Result;
|
|
254
|
-
decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
|
|
255
|
-
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
256
|
-
decodeFunctionResult(functionFragment: "positions", data: BytesLike): Result;
|
|
257
|
-
decodeFunctionResult(functionFragment: "primeRateOracle", data: BytesLike): Result;
|
|
258
|
-
decodeFunctionResult(functionFragment: "rateData", data: BytesLike): Result;
|
|
259
|
-
decodeFunctionResult(functionFragment: "registerAdapter", data: BytesLike): Result;
|
|
260
|
-
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
261
|
-
decodeFunctionResult(functionFragment: "renounceRole", data: BytesLike): Result;
|
|
262
|
-
decodeFunctionResult(functionFragment: "repay", data: BytesLike): Result;
|
|
263
|
-
decodeFunctionResult(functionFragment: "repayOnBehalf", data: BytesLike): Result;
|
|
264
|
-
decodeFunctionResult(functionFragment: "requestWithdraw", data: BytesLike): Result;
|
|
265
|
-
decodeFunctionResult(functionFragment: "rescueToken", data: BytesLike): Result;
|
|
266
|
-
decodeFunctionResult(functionFragment: "reserve", data: BytesLike): Result;
|
|
267
|
-
decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
|
|
268
|
-
decodeFunctionResult(functionFragment: "setFeeCollector", data: BytesLike): Result;
|
|
269
|
-
decodeFunctionResult(functionFragment: "setLiquidationProxy", data: BytesLike): Result;
|
|
270
|
-
decodeFunctionResult(functionFragment: "setParameter", data: BytesLike): Result;
|
|
271
|
-
decodeFunctionResult(functionFragment: "setPrimeRate", data: BytesLike): Result;
|
|
272
|
-
decodeFunctionResult(functionFragment: "setPrimeRateOracle", data: BytesLike): Result;
|
|
273
|
-
decodeFunctionResult(functionFragment: "setStabilityPool", data: BytesLike): Result;
|
|
274
|
-
decodeFunctionResult(functionFragment: "setVault", data: BytesLike): Result;
|
|
275
|
-
decodeFunctionResult(functionFragment: "stabilityPool", data: BytesLike): Result;
|
|
276
|
-
decodeFunctionResult(functionFragment: "supportedAdapter", data: BytesLike): Result;
|
|
277
|
-
decodeFunctionResult(functionFragment: "supportedAdapters", data: BytesLike): Result;
|
|
278
|
-
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
279
|
-
decodeFunctionResult(functionFragment: "transferAccruedDust", data: BytesLike): Result;
|
|
280
|
-
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
281
|
-
decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
|
|
282
|
-
decodeFunctionResult(functionFragment: "unregisterAdapter", data: BytesLike): Result;
|
|
283
|
-
decodeFunctionResult(functionFragment: "updateState", data: BytesLike): Result;
|
|
284
|
-
decodeFunctionResult(functionFragment: "vault", data: BytesLike): Result;
|
|
285
|
-
decodeFunctionResult(functionFragment: "vaultOpened", data: BytesLike): Result;
|
|
286
|
-
decodeFunctionResult(functionFragment: "vaultProxy", data: BytesLike): Result;
|
|
287
|
-
decodeFunctionResult(functionFragment: "vaultRewards", data: BytesLike): Result;
|
|
288
|
-
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
|
|
289
|
-
decodeFunctionResult(functionFragment: "withdrawAsset", data: BytesLike): Result;
|
|
290
|
-
decodeFunctionResult(functionFragment: "withdrawTimelock", data: BytesLike): Result;
|
|
291
|
-
}
|
|
292
|
-
export declare namespace AdapterRegisteredEvent {
|
|
293
|
-
type InputTuple = [adapter: AddressLike];
|
|
294
|
-
type OutputTuple = [adapter: string];
|
|
295
|
-
interface OutputObject {
|
|
296
|
-
adapter: string;
|
|
297
|
-
}
|
|
298
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
299
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
300
|
-
type Log = TypedEventLog<Event>;
|
|
301
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
302
|
-
}
|
|
303
|
-
export declare namespace AdapterRemovedEvent {
|
|
304
|
-
type InputTuple = [adapter: AddressLike];
|
|
305
|
-
type OutputTuple = [adapter: string];
|
|
306
|
-
interface OutputObject {
|
|
307
|
-
adapter: string;
|
|
308
|
-
}
|
|
309
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
310
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
311
|
-
type Log = TypedEventLog<Event>;
|
|
312
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
313
|
-
}
|
|
314
|
-
export declare namespace BorrowEvent {
|
|
315
|
-
type InputTuple = [user: AddressLike, amount: BigNumberish];
|
|
316
|
-
type OutputTuple = [user: string, amount: bigint];
|
|
317
|
-
interface OutputObject {
|
|
318
|
-
user: string;
|
|
319
|
-
amount: bigint;
|
|
320
|
-
}
|
|
321
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
322
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
323
|
-
type Log = TypedEventLog<Event>;
|
|
324
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
325
|
-
}
|
|
326
|
-
export declare namespace BorrowCapUpdatedEvent {
|
|
327
|
-
type InputTuple = [oldalue: BigNumberish, newValue: BigNumberish];
|
|
328
|
-
type OutputTuple = [oldalue: bigint, newValue: bigint];
|
|
329
|
-
interface OutputObject {
|
|
330
|
-
oldalue: bigint;
|
|
331
|
-
newValue: bigint;
|
|
332
|
-
}
|
|
333
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
334
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
335
|
-
type Log = TypedEventLog<Event>;
|
|
336
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
337
|
-
}
|
|
338
|
-
export declare namespace CanPaybackDebtChangedEvent {
|
|
339
|
-
type InputTuple = [enabled: boolean];
|
|
340
|
-
type OutputTuple = [enabled: boolean];
|
|
341
|
-
interface OutputObject {
|
|
342
|
-
enabled: boolean;
|
|
343
|
-
}
|
|
344
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
345
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
346
|
-
type Log = TypedEventLog<Event>;
|
|
347
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
348
|
-
}
|
|
349
|
-
export declare namespace Deposit_address_uint256_uint256_Event {
|
|
350
|
-
type InputTuple = [
|
|
351
|
-
user: AddressLike,
|
|
352
|
-
amount: BigNumberish,
|
|
353
|
-
mintedAmount: BigNumberish
|
|
354
|
-
];
|
|
355
|
-
type OutputTuple = [
|
|
356
|
-
user: string,
|
|
357
|
-
amount: bigint,
|
|
358
|
-
mintedAmount: bigint
|
|
359
|
-
];
|
|
360
|
-
interface OutputObject {
|
|
361
|
-
user: string;
|
|
362
|
-
amount: bigint;
|
|
363
|
-
mintedAmount: bigint;
|
|
364
|
-
}
|
|
365
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
366
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
367
|
-
type Log = TypedEventLog<Event>;
|
|
368
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
369
|
-
}
|
|
370
|
-
export declare namespace Deposit_address_uint256_uint256_Event {
|
|
371
|
-
type InputTuple = [
|
|
372
|
-
user: AddressLike,
|
|
373
|
-
amount: BigNumberish,
|
|
374
|
-
liquidityMinted: BigNumberish
|
|
375
|
-
];
|
|
376
|
-
type OutputTuple = [
|
|
377
|
-
user: string,
|
|
378
|
-
amount: bigint,
|
|
379
|
-
liquidityMinted: bigint
|
|
380
|
-
];
|
|
381
|
-
interface OutputObject {
|
|
382
|
-
user: string;
|
|
383
|
-
amount: bigint;
|
|
384
|
-
liquidityMinted: bigint;
|
|
385
|
-
}
|
|
386
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
387
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
388
|
-
type Log = TypedEventLog<Event>;
|
|
389
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
390
|
-
}
|
|
391
|
-
export declare namespace DepositFeeUpdatedEvent {
|
|
392
|
-
type InputTuple = [
|
|
393
|
-
oldDepositFee: BigNumberish,
|
|
394
|
-
newDepositFee: BigNumberish
|
|
395
|
-
];
|
|
396
|
-
type OutputTuple = [oldDepositFee: bigint, newDepositFee: bigint];
|
|
397
|
-
interface OutputObject {
|
|
398
|
-
oldDepositFee: bigint;
|
|
399
|
-
newDepositFee: bigint;
|
|
400
|
-
}
|
|
401
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
402
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
403
|
-
type Log = TypedEventLog<Event>;
|
|
404
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
405
|
-
}
|
|
406
|
-
export declare namespace FeeCollectorUpdatedEvent {
|
|
407
|
-
type InputTuple = [
|
|
408
|
-
oldFeeCollector: AddressLike,
|
|
409
|
-
newFeeCollector: AddressLike
|
|
410
|
-
];
|
|
411
|
-
type OutputTuple = [oldFeeCollector: string, newFeeCollector: string];
|
|
412
|
-
interface OutputObject {
|
|
413
|
-
oldFeeCollector: string;
|
|
414
|
-
newFeeCollector: string;
|
|
415
|
-
}
|
|
416
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
417
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
418
|
-
type Log = TypedEventLog<Event>;
|
|
419
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
420
|
-
}
|
|
421
|
-
export declare namespace InsufficientFeesEvent {
|
|
422
|
-
type InputTuple = [];
|
|
423
|
-
type OutputTuple = [];
|
|
424
|
-
interface OutputObject {
|
|
425
|
-
}
|
|
426
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
427
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
428
|
-
type Log = TypedEventLog<Event>;
|
|
429
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
430
|
-
}
|
|
431
|
-
export declare namespace InsuranceFeeUpdatedEvent {
|
|
432
|
-
type InputTuple = [
|
|
433
|
-
oldInsuranceFee: BigNumberish,
|
|
434
|
-
newInsuranceFee: BigNumberish
|
|
435
|
-
];
|
|
436
|
-
type OutputTuple = [oldInsuranceFee: bigint, newInsuranceFee: bigint];
|
|
437
|
-
interface OutputObject {
|
|
438
|
-
oldInsuranceFee: bigint;
|
|
439
|
-
newInsuranceFee: bigint;
|
|
440
|
-
}
|
|
441
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
442
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
443
|
-
type Log = TypedEventLog<Event>;
|
|
444
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
445
|
-
}
|
|
446
|
-
export declare namespace InsuredAssetEvent {
|
|
447
|
-
type InputTuple = [
|
|
448
|
-
asset: AddressLike,
|
|
449
|
-
user: AddressLike,
|
|
450
|
-
data: BytesLike,
|
|
451
|
-
amount: BigNumberish
|
|
452
|
-
];
|
|
453
|
-
type OutputTuple = [
|
|
454
|
-
asset: string,
|
|
455
|
-
user: string,
|
|
456
|
-
data: string,
|
|
457
|
-
amount: bigint
|
|
458
|
-
];
|
|
459
|
-
interface OutputObject {
|
|
460
|
-
asset: string;
|
|
461
|
-
user: string;
|
|
462
|
-
data: string;
|
|
463
|
-
amount: bigint;
|
|
464
|
-
}
|
|
465
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
466
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
467
|
-
type Log = TypedEventLog<Event>;
|
|
468
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
469
|
-
}
|
|
470
|
-
export declare namespace InterestRatesUpdatedEvent {
|
|
471
|
-
type InputTuple = [
|
|
472
|
-
liquidityRate: BigNumberish,
|
|
473
|
-
usageRate: BigNumberish
|
|
474
|
-
];
|
|
475
|
-
type OutputTuple = [liquidityRate: bigint, usageRate: bigint];
|
|
476
|
-
interface OutputObject {
|
|
477
|
-
liquidityRate: bigint;
|
|
478
|
-
usageRate: bigint;
|
|
479
|
-
}
|
|
480
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
481
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
482
|
-
type Log = TypedEventLog<Event>;
|
|
483
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
484
|
-
}
|
|
485
|
-
export declare namespace LiquidationEvent {
|
|
486
|
-
type InputTuple = [
|
|
487
|
-
liquidator: AddressLike,
|
|
488
|
-
user: AddressLike,
|
|
489
|
-
debtRepaid: BigNumberish,
|
|
490
|
-
collateralLiquidated: BigNumberish
|
|
491
|
-
];
|
|
492
|
-
type OutputTuple = [
|
|
493
|
-
liquidator: string,
|
|
494
|
-
user: string,
|
|
495
|
-
debtRepaid: bigint,
|
|
496
|
-
collateralLiquidated: bigint
|
|
497
|
-
];
|
|
498
|
-
interface OutputObject {
|
|
499
|
-
liquidator: string;
|
|
500
|
-
user: string;
|
|
501
|
-
debtRepaid: bigint;
|
|
502
|
-
collateralLiquidated: bigint;
|
|
503
|
-
}
|
|
504
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
505
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
506
|
-
type Log = TypedEventLog<Event>;
|
|
507
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
508
|
-
}
|
|
509
|
-
export declare namespace LiquidationClosedEvent {
|
|
510
|
-
type InputTuple = [
|
|
511
|
-
user: AddressLike,
|
|
512
|
-
adapter: AddressLike,
|
|
513
|
-
data: BytesLike
|
|
514
|
-
];
|
|
515
|
-
type OutputTuple = [user: string, adapter: string, data: string];
|
|
516
|
-
interface OutputObject {
|
|
517
|
-
user: string;
|
|
518
|
-
adapter: string;
|
|
519
|
-
data: string;
|
|
520
|
-
}
|
|
521
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
522
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
523
|
-
type Log = TypedEventLog<Event>;
|
|
524
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
525
|
-
}
|
|
526
|
-
export declare namespace LiquidationFinalizedEvent {
|
|
527
|
-
type InputTuple = [
|
|
528
|
-
liquidator: AddressLike,
|
|
529
|
-
user: AddressLike,
|
|
530
|
-
adapter: AddressLike,
|
|
531
|
-
data: BytesLike,
|
|
532
|
-
debtRepaid: BigNumberish,
|
|
533
|
-
collateralLiquidated: BigNumberish
|
|
534
|
-
];
|
|
535
|
-
type OutputTuple = [
|
|
536
|
-
liquidator: string,
|
|
537
|
-
user: string,
|
|
538
|
-
adapter: string,
|
|
539
|
-
data: string,
|
|
540
|
-
debtRepaid: bigint,
|
|
541
|
-
collateralLiquidated: bigint
|
|
542
|
-
];
|
|
543
|
-
interface OutputObject {
|
|
544
|
-
liquidator: string;
|
|
545
|
-
user: string;
|
|
546
|
-
adapter: string;
|
|
547
|
-
data: string;
|
|
548
|
-
debtRepaid: bigint;
|
|
549
|
-
collateralLiquidated: bigint;
|
|
550
|
-
}
|
|
551
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
552
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
553
|
-
type Log = TypedEventLog<Event>;
|
|
554
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
555
|
-
}
|
|
556
|
-
export declare namespace LiquidationInitiatedEvent {
|
|
557
|
-
type InputTuple = [
|
|
558
|
-
liquidator: AddressLike,
|
|
559
|
-
user: AddressLike,
|
|
560
|
-
adapter: AddressLike,
|
|
561
|
-
data: BytesLike
|
|
562
|
-
];
|
|
563
|
-
type OutputTuple = [
|
|
564
|
-
liquidator: string,
|
|
565
|
-
user: string,
|
|
566
|
-
adapter: string,
|
|
567
|
-
data: string
|
|
568
|
-
];
|
|
569
|
-
interface OutputObject {
|
|
570
|
-
liquidator: string;
|
|
571
|
-
user: string;
|
|
572
|
-
adapter: string;
|
|
573
|
-
data: string;
|
|
574
|
-
}
|
|
575
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
576
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
577
|
-
type Log = TypedEventLog<Event>;
|
|
578
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
579
|
-
}
|
|
580
|
-
export declare namespace LiquidationProxyUpdatedEvent {
|
|
581
|
-
type InputTuple = [
|
|
582
|
-
oldLiquidationProxy: AddressLike,
|
|
583
|
-
newLiquidationProxy: AddressLike
|
|
584
|
-
];
|
|
585
|
-
type OutputTuple = [
|
|
586
|
-
oldLiquidationProxy: string,
|
|
587
|
-
newLiquidationProxy: string
|
|
588
|
-
];
|
|
589
|
-
interface OutputObject {
|
|
590
|
-
oldLiquidationProxy: string;
|
|
591
|
-
newLiquidationProxy: string;
|
|
592
|
-
}
|
|
593
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
594
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
595
|
-
type Log = TypedEventLog<Event>;
|
|
596
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
597
|
-
}
|
|
598
|
-
export declare namespace LiquidityBufferRatioUpdatedEvent {
|
|
599
|
-
type InputTuple = [oldRatio: BigNumberish, newRatio: BigNumberish];
|
|
600
|
-
type OutputTuple = [oldRatio: bigint, newRatio: bigint];
|
|
601
|
-
interface OutputObject {
|
|
602
|
-
oldRatio: bigint;
|
|
603
|
-
newRatio: bigint;
|
|
604
|
-
}
|
|
605
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
606
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
607
|
-
type Log = TypedEventLog<Event>;
|
|
608
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
609
|
-
}
|
|
610
|
-
export declare namespace LiquidityRebalancedEvent {
|
|
611
|
-
type InputTuple = [
|
|
612
|
-
bufferAmount: BigNumberish,
|
|
613
|
-
vaultAmount: BigNumberish
|
|
614
|
-
];
|
|
615
|
-
type OutputTuple = [bufferAmount: bigint, vaultAmount: bigint];
|
|
616
|
-
interface OutputObject {
|
|
617
|
-
bufferAmount: bigint;
|
|
618
|
-
vaultAmount: bigint;
|
|
619
|
-
}
|
|
620
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
621
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
622
|
-
type Log = TypedEventLog<Event>;
|
|
623
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
624
|
-
}
|
|
625
|
-
export declare namespace NFTDepositedEvent {
|
|
626
|
-
type InputTuple = [user: AddressLike, tokenId: BigNumberish];
|
|
627
|
-
type OutputTuple = [user: string, tokenId: bigint];
|
|
628
|
-
interface OutputObject {
|
|
629
|
-
user: string;
|
|
630
|
-
tokenId: bigint;
|
|
631
|
-
}
|
|
632
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
633
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
634
|
-
type Log = TypedEventLog<Event>;
|
|
635
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
636
|
-
}
|
|
637
|
-
export declare namespace NFTWithdrawnEvent {
|
|
638
|
-
type InputTuple = [user: AddressLike, tokenId: BigNumberish];
|
|
639
|
-
type OutputTuple = [user: string, tokenId: bigint];
|
|
640
|
-
interface OutputObject {
|
|
641
|
-
user: string;
|
|
642
|
-
tokenId: bigint;
|
|
643
|
-
}
|
|
644
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
645
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
646
|
-
type Log = TypedEventLog<Event>;
|
|
647
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
648
|
-
}
|
|
649
|
-
export declare namespace NotFeeCollectorEvent {
|
|
650
|
-
type InputTuple = [];
|
|
651
|
-
type OutputTuple = [];
|
|
652
|
-
interface OutputObject {
|
|
653
|
-
}
|
|
654
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
655
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
656
|
-
type Log = TypedEventLog<Event>;
|
|
657
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
658
|
-
}
|
|
659
|
-
export declare namespace OwnershipTransferredEvent {
|
|
660
|
-
type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
661
|
-
type OutputTuple = [previousOwner: string, newOwner: string];
|
|
662
|
-
interface OutputObject {
|
|
663
|
-
previousOwner: string;
|
|
664
|
-
newOwner: string;
|
|
665
|
-
}
|
|
666
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
667
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
668
|
-
type Log = TypedEventLog<Event>;
|
|
669
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
670
|
-
}
|
|
671
|
-
export declare namespace ParameterChangedEvent {
|
|
672
|
-
type InputTuple = [
|
|
673
|
-
parameter: BigNumberish,
|
|
674
|
-
oldalue: BigNumberish,
|
|
675
|
-
newValue: BigNumberish
|
|
676
|
-
];
|
|
677
|
-
type OutputTuple = [
|
|
678
|
-
parameter: bigint,
|
|
679
|
-
oldalue: bigint,
|
|
680
|
-
newValue: bigint
|
|
681
|
-
];
|
|
682
|
-
interface OutputObject {
|
|
683
|
-
parameter: bigint;
|
|
684
|
-
oldalue: bigint;
|
|
685
|
-
newValue: bigint;
|
|
686
|
-
}
|
|
687
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
688
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
689
|
-
type Log = TypedEventLog<Event>;
|
|
690
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
691
|
-
}
|
|
692
|
-
export declare namespace PausedEvent {
|
|
693
|
-
type InputTuple = [account: AddressLike];
|
|
694
|
-
type OutputTuple = [account: string];
|
|
695
|
-
interface OutputObject {
|
|
696
|
-
account: string;
|
|
697
|
-
}
|
|
698
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
699
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
700
|
-
type Log = TypedEventLog<Event>;
|
|
701
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
702
|
-
}
|
|
703
|
-
export declare namespace PrimeRateOracleUpdatedEvent {
|
|
704
|
-
type InputTuple = [newOracle: AddressLike];
|
|
705
|
-
type OutputTuple = [newOracle: string];
|
|
706
|
-
interface OutputObject {
|
|
707
|
-
newOracle: string;
|
|
708
|
-
}
|
|
709
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
710
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
711
|
-
type Log = TypedEventLog<Event>;
|
|
712
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
713
|
-
}
|
|
714
|
-
export declare namespace PrimeRateUpdatedEvent {
|
|
715
|
-
type InputTuple = [
|
|
716
|
-
oldPrimeRate: BigNumberish,
|
|
717
|
-
newPrimeRate: BigNumberish
|
|
718
|
-
];
|
|
719
|
-
type OutputTuple = [oldPrimeRate: bigint, newPrimeRate: bigint];
|
|
720
|
-
interface OutputObject {
|
|
721
|
-
oldPrimeRate: bigint;
|
|
722
|
-
newPrimeRate: bigint;
|
|
723
|
-
}
|
|
724
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
725
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
726
|
-
type Log = TypedEventLog<Event>;
|
|
727
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
728
|
-
}
|
|
729
|
-
export declare namespace ProtocolFeeRateUpdatedEvent {
|
|
730
|
-
type InputTuple = [oldValue: BigNumberish, newValue: BigNumberish];
|
|
731
|
-
type OutputTuple = [oldValue: bigint, newValue: bigint];
|
|
732
|
-
interface OutputObject {
|
|
733
|
-
oldValue: bigint;
|
|
734
|
-
newValue: bigint;
|
|
735
|
-
}
|
|
736
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
737
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
738
|
-
type Log = TypedEventLog<Event>;
|
|
739
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
740
|
-
}
|
|
741
|
-
export declare namespace ProtocolFeesCollectedEvent {
|
|
742
|
-
type InputTuple = [
|
|
743
|
-
protocolFee: BigNumberish,
|
|
744
|
-
accumulatedProtocolFees: BigNumberish
|
|
745
|
-
];
|
|
746
|
-
type OutputTuple = [
|
|
747
|
-
protocolFee: bigint,
|
|
748
|
-
accumulatedProtocolFees: bigint
|
|
749
|
-
];
|
|
750
|
-
interface OutputObject {
|
|
751
|
-
protocolFee: bigint;
|
|
752
|
-
accumulatedProtocolFees: bigint;
|
|
753
|
-
}
|
|
754
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
755
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
756
|
-
type Log = TypedEventLog<Event>;
|
|
757
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
758
|
-
}
|
|
759
|
-
export declare namespace ProtocolFeesWithdrawnEvent {
|
|
760
|
-
type InputTuple = [feeCollector: AddressLike, amount: BigNumberish];
|
|
761
|
-
type OutputTuple = [feeCollector: string, amount: bigint];
|
|
762
|
-
interface OutputObject {
|
|
763
|
-
feeCollector: string;
|
|
764
|
-
amount: bigint;
|
|
765
|
-
}
|
|
766
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
767
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
768
|
-
type Log = TypedEventLog<Event>;
|
|
769
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
770
|
-
}
|
|
771
|
-
export declare namespace RepayEvent {
|
|
772
|
-
type InputTuple = [
|
|
773
|
-
user: AddressLike,
|
|
774
|
-
onBehalfOf: AddressLike,
|
|
775
|
-
amount: BigNumberish
|
|
776
|
-
];
|
|
777
|
-
type OutputTuple = [user: string, onBehalfOf: string, amount: bigint];
|
|
778
|
-
interface OutputObject {
|
|
779
|
-
user: string;
|
|
780
|
-
onBehalfOf: string;
|
|
781
|
-
amount: bigint;
|
|
782
|
-
}
|
|
783
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
784
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
785
|
-
type Log = TypedEventLog<Event>;
|
|
786
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
787
|
-
}
|
|
788
|
-
export declare namespace ReserveInterestsUpdatedEvent {
|
|
789
|
-
type InputTuple = [
|
|
790
|
-
liquidityIndex: BigNumberish,
|
|
791
|
-
usageIndex: BigNumberish
|
|
792
|
-
];
|
|
793
|
-
type OutputTuple = [liquidityIndex: bigint, usageIndex: bigint];
|
|
794
|
-
interface OutputObject {
|
|
795
|
-
liquidityIndex: bigint;
|
|
796
|
-
usageIndex: bigint;
|
|
797
|
-
}
|
|
798
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
799
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
800
|
-
type Log = TypedEventLog<Event>;
|
|
801
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
802
|
-
}
|
|
803
|
-
export declare namespace RewardClaimedEvent {
|
|
804
|
-
type InputTuple = [
|
|
805
|
-
user: AddressLike,
|
|
806
|
-
token: AddressLike,
|
|
807
|
-
amount: BigNumberish
|
|
808
|
-
];
|
|
809
|
-
type OutputTuple = [user: string, token: string, amount: bigint];
|
|
810
|
-
interface OutputObject {
|
|
811
|
-
user: string;
|
|
812
|
-
token: string;
|
|
813
|
-
amount: bigint;
|
|
814
|
-
}
|
|
815
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
816
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
817
|
-
type Log = TypedEventLog<Event>;
|
|
818
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
819
|
-
}
|
|
820
|
-
export declare namespace RewardDistributedEvent {
|
|
821
|
-
type InputTuple = [user: AddressLike, amount: BigNumberish];
|
|
822
|
-
type OutputTuple = [user: string, amount: bigint];
|
|
823
|
-
interface OutputObject {
|
|
824
|
-
user: string;
|
|
825
|
-
amount: bigint;
|
|
826
|
-
}
|
|
827
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
828
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
829
|
-
type Log = TypedEventLog<Event>;
|
|
830
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
831
|
-
}
|
|
832
|
-
export declare namespace RewardParametersUpdatedEvent {
|
|
833
|
-
type InputTuple = [
|
|
834
|
-
token: AddressLike,
|
|
835
|
-
rewardRate: BigNumberish,
|
|
836
|
-
duration: BigNumberish
|
|
837
|
-
];
|
|
838
|
-
type OutputTuple = [
|
|
839
|
-
token: string,
|
|
840
|
-
rewardRate: bigint,
|
|
841
|
-
duration: bigint
|
|
842
|
-
];
|
|
843
|
-
interface OutputObject {
|
|
844
|
-
token: string;
|
|
845
|
-
rewardRate: bigint;
|
|
846
|
-
duration: bigint;
|
|
847
|
-
}
|
|
848
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
849
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
850
|
-
type Log = TypedEventLog<Event>;
|
|
851
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
852
|
-
}
|
|
853
|
-
export declare namespace RewardTokenAddedEvent {
|
|
854
|
-
type InputTuple = [
|
|
855
|
-
token: AddressLike,
|
|
856
|
-
rewardRate: BigNumberish,
|
|
857
|
-
duration: BigNumberish
|
|
858
|
-
];
|
|
859
|
-
type OutputTuple = [
|
|
860
|
-
token: string,
|
|
861
|
-
rewardRate: bigint,
|
|
862
|
-
duration: bigint
|
|
863
|
-
];
|
|
864
|
-
interface OutputObject {
|
|
865
|
-
token: string;
|
|
866
|
-
rewardRate: bigint;
|
|
867
|
-
duration: bigint;
|
|
868
|
-
}
|
|
869
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
870
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
871
|
-
type Log = TypedEventLog<Event>;
|
|
872
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
873
|
-
}
|
|
874
|
-
export declare namespace RewardTokensDepositedEvent {
|
|
875
|
-
type InputTuple = [user: AddressLike, amount: BigNumberish];
|
|
876
|
-
type OutputTuple = [user: string, amount: bigint];
|
|
877
|
-
interface OutputObject {
|
|
878
|
-
user: string;
|
|
879
|
-
amount: bigint;
|
|
880
|
-
}
|
|
881
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
882
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
883
|
-
type Log = TypedEventLog<Event>;
|
|
884
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
885
|
-
}
|
|
886
|
-
export declare namespace RoleAdminChangedEvent {
|
|
887
|
-
type InputTuple = [
|
|
888
|
-
role: BytesLike,
|
|
889
|
-
previousAdminRole: BytesLike,
|
|
890
|
-
newAdminRole: BytesLike
|
|
891
|
-
];
|
|
892
|
-
type OutputTuple = [
|
|
893
|
-
role: string,
|
|
894
|
-
previousAdminRole: string,
|
|
895
|
-
newAdminRole: string
|
|
896
|
-
];
|
|
897
|
-
interface OutputObject {
|
|
898
|
-
role: string;
|
|
899
|
-
previousAdminRole: string;
|
|
900
|
-
newAdminRole: string;
|
|
901
|
-
}
|
|
902
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
903
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
904
|
-
type Log = TypedEventLog<Event>;
|
|
905
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
906
|
-
}
|
|
907
|
-
export declare namespace RoleGrantedEvent {
|
|
908
|
-
type InputTuple = [
|
|
909
|
-
role: BytesLike,
|
|
910
|
-
account: AddressLike,
|
|
911
|
-
sender: AddressLike
|
|
912
|
-
];
|
|
913
|
-
type OutputTuple = [role: string, account: string, sender: string];
|
|
914
|
-
interface OutputObject {
|
|
915
|
-
role: string;
|
|
916
|
-
account: string;
|
|
917
|
-
sender: string;
|
|
918
|
-
}
|
|
919
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
920
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
921
|
-
type Log = TypedEventLog<Event>;
|
|
922
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
923
|
-
}
|
|
924
|
-
export declare namespace RoleRevokedEvent {
|
|
925
|
-
type InputTuple = [
|
|
926
|
-
role: BytesLike,
|
|
927
|
-
account: AddressLike,
|
|
928
|
-
sender: AddressLike
|
|
929
|
-
];
|
|
930
|
-
type OutputTuple = [role: string, account: string, sender: string];
|
|
931
|
-
interface OutputObject {
|
|
932
|
-
role: string;
|
|
933
|
-
account: string;
|
|
934
|
-
sender: string;
|
|
935
|
-
}
|
|
936
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
937
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
938
|
-
type Log = TypedEventLog<Event>;
|
|
939
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
940
|
-
}
|
|
941
|
-
export declare namespace StabilityPoolUpdatedEvent {
|
|
942
|
-
type InputTuple = [
|
|
943
|
-
oldStabilityPool: AddressLike,
|
|
944
|
-
newStabilityPool: AddressLike
|
|
945
|
-
];
|
|
946
|
-
type OutputTuple = [
|
|
947
|
-
oldStabilityPool: string,
|
|
948
|
-
newStabilityPool: string
|
|
949
|
-
];
|
|
950
|
-
interface OutputObject {
|
|
951
|
-
oldStabilityPool: string;
|
|
952
|
-
newStabilityPool: string;
|
|
953
|
-
}
|
|
954
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
955
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
956
|
-
type Log = TypedEventLog<Event>;
|
|
957
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
958
|
-
}
|
|
959
|
-
export declare namespace SupplyCapUpdatedEvent {
|
|
960
|
-
type InputTuple = [oldalue: BigNumberish, newValue: BigNumberish];
|
|
961
|
-
type OutputTuple = [oldalue: bigint, newValue: bigint];
|
|
962
|
-
interface OutputObject {
|
|
963
|
-
oldalue: bigint;
|
|
964
|
-
newValue: bigint;
|
|
965
|
-
}
|
|
966
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
967
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
968
|
-
type Log = TypedEventLog<Event>;
|
|
969
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
970
|
-
}
|
|
971
|
-
export declare namespace UnpausedEvent {
|
|
972
|
-
type InputTuple = [account: AddressLike];
|
|
973
|
-
type OutputTuple = [account: string];
|
|
974
|
-
interface OutputObject {
|
|
975
|
-
account: string;
|
|
976
|
-
}
|
|
977
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
978
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
979
|
-
type Log = TypedEventLog<Event>;
|
|
980
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
981
|
-
}
|
|
982
|
-
export declare namespace VaultOpeningFeePaidEvent {
|
|
983
|
-
type InputTuple = [user: AddressLike, fee: BigNumberish];
|
|
984
|
-
type OutputTuple = [user: string, fee: bigint];
|
|
985
|
-
interface OutputObject {
|
|
986
|
-
user: string;
|
|
987
|
-
fee: bigint;
|
|
988
|
-
}
|
|
989
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
990
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
991
|
-
type Log = TypedEventLog<Event>;
|
|
992
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
993
|
-
}
|
|
994
|
-
export declare namespace VaultOpeningFeeUpdatedEvent {
|
|
995
|
-
type InputTuple = [oldalue: BigNumberish, newValue: BigNumberish];
|
|
996
|
-
type OutputTuple = [oldalue: bigint, newValue: bigint];
|
|
997
|
-
interface OutputObject {
|
|
998
|
-
oldalue: bigint;
|
|
999
|
-
newValue: bigint;
|
|
1000
|
-
}
|
|
1001
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1002
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1003
|
-
type Log = TypedEventLog<Event>;
|
|
1004
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1005
|
-
}
|
|
1006
|
-
export declare namespace VaultRewardsClaimedEvent {
|
|
1007
|
-
type InputTuple = [amount: BigNumberish];
|
|
1008
|
-
type OutputTuple = [amount: bigint];
|
|
1009
|
-
interface OutputObject {
|
|
1010
|
-
amount: bigint;
|
|
1011
|
-
}
|
|
1012
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1013
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1014
|
-
type Log = TypedEventLog<Event>;
|
|
1015
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1016
|
-
}
|
|
1017
|
-
export declare namespace VaultUpdatedEvent {
|
|
1018
|
-
type InputTuple = [oldVault: AddressLike, newVault: AddressLike];
|
|
1019
|
-
type OutputTuple = [oldVault: string, newVault: string];
|
|
1020
|
-
interface OutputObject {
|
|
1021
|
-
oldVault: string;
|
|
1022
|
-
newVault: string;
|
|
1023
|
-
}
|
|
1024
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1025
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1026
|
-
type Log = TypedEventLog<Event>;
|
|
1027
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1028
|
-
}
|
|
1029
|
-
export declare namespace VaultWithdrawalFailedEvent {
|
|
1030
|
-
type InputTuple = [vault: AddressLike];
|
|
1031
|
-
type OutputTuple = [vault: string];
|
|
1032
|
-
interface OutputObject {
|
|
1033
|
-
vault: string;
|
|
1034
|
-
}
|
|
1035
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1036
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1037
|
-
type Log = TypedEventLog<Event>;
|
|
1038
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1039
|
-
}
|
|
1040
|
-
export declare namespace Withdraw_address_uint256_Event {
|
|
1041
|
-
type InputTuple = [user: AddressLike, amount: BigNumberish];
|
|
1042
|
-
type OutputTuple = [user: string, amount: bigint];
|
|
1043
|
-
interface OutputObject {
|
|
1044
|
-
user: string;
|
|
1045
|
-
amount: bigint;
|
|
1046
|
-
}
|
|
1047
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1048
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1049
|
-
type Log = TypedEventLog<Event>;
|
|
1050
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1051
|
-
}
|
|
1052
|
-
export declare namespace Withdraw_address_uint256_uint256_Event {
|
|
1053
|
-
type InputTuple = [
|
|
1054
|
-
user: AddressLike,
|
|
1055
|
-
amount: BigNumberish,
|
|
1056
|
-
liquidityBurned: BigNumberish
|
|
1057
|
-
];
|
|
1058
|
-
type OutputTuple = [
|
|
1059
|
-
user: string,
|
|
1060
|
-
amount: bigint,
|
|
1061
|
-
liquidityBurned: bigint
|
|
1062
|
-
];
|
|
1063
|
-
interface OutputObject {
|
|
1064
|
-
user: string;
|
|
1065
|
-
amount: bigint;
|
|
1066
|
-
liquidityBurned: bigint;
|
|
1067
|
-
}
|
|
1068
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1069
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1070
|
-
type Log = TypedEventLog<Event>;
|
|
1071
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1072
|
-
}
|
|
1073
|
-
export declare namespace WithdrawCancelledEvent {
|
|
1074
|
-
type InputTuple = [user: AddressLike];
|
|
1075
|
-
type OutputTuple = [user: string];
|
|
1076
|
-
interface OutputObject {
|
|
1077
|
-
user: string;
|
|
1078
|
-
}
|
|
1079
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1080
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1081
|
-
type Log = TypedEventLog<Event>;
|
|
1082
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1083
|
-
}
|
|
1084
|
-
export declare namespace WithdrawFeeUpdatedEvent {
|
|
1085
|
-
type InputTuple = [
|
|
1086
|
-
oldWithdrawalFee: BigNumberish,
|
|
1087
|
-
newWithdrawalFee: BigNumberish
|
|
1088
|
-
];
|
|
1089
|
-
type OutputTuple = [
|
|
1090
|
-
oldWithdrawalFee: bigint,
|
|
1091
|
-
newWithdrawalFee: bigint
|
|
1092
|
-
];
|
|
1093
|
-
interface OutputObject {
|
|
1094
|
-
oldWithdrawalFee: bigint;
|
|
1095
|
-
newWithdrawalFee: bigint;
|
|
1096
|
-
}
|
|
1097
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1098
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1099
|
-
type Log = TypedEventLog<Event>;
|
|
1100
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1101
|
-
}
|
|
1102
|
-
export declare namespace WithdrawQueuedEvent {
|
|
1103
|
-
type InputTuple = [
|
|
1104
|
-
user: AddressLike,
|
|
1105
|
-
amount: BigNumberish,
|
|
1106
|
-
readyAt: BigNumberish
|
|
1107
|
-
];
|
|
1108
|
-
type OutputTuple = [user: string, amount: bigint, readyAt: bigint];
|
|
1109
|
-
interface OutputObject {
|
|
1110
|
-
user: string;
|
|
1111
|
-
amount: bigint;
|
|
1112
|
-
readyAt: bigint;
|
|
1113
|
-
}
|
|
1114
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1115
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1116
|
-
type Log = TypedEventLog<Event>;
|
|
1117
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1118
|
-
}
|
|
1119
|
-
export declare namespace WithdrawTimelockDurationUpdatedEvent {
|
|
1120
|
-
type InputTuple = [oldValue: BigNumberish, newValue: BigNumberish];
|
|
1121
|
-
type OutputTuple = [oldValue: bigint, newValue: bigint];
|
|
1122
|
-
interface OutputObject {
|
|
1123
|
-
oldValue: bigint;
|
|
1124
|
-
newValue: bigint;
|
|
1125
|
-
}
|
|
1126
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1127
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1128
|
-
type Log = TypedEventLog<Event>;
|
|
1129
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1130
|
-
}
|
|
1131
|
-
export declare namespace WithdrawalsPauseStatusChangedEvent {
|
|
1132
|
-
type InputTuple = [isPaused: boolean];
|
|
1133
|
-
type OutputTuple = [isPaused: boolean];
|
|
1134
|
-
interface OutputObject {
|
|
1135
|
-
isPaused: boolean;
|
|
1136
|
-
}
|
|
1137
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1138
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1139
|
-
type Log = TypedEventLog<Event>;
|
|
1140
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1141
|
-
}
|
|
1142
|
-
export interface LendingPool extends BaseContract {
|
|
1143
|
-
connect(runner?: ContractRunner | null): LendingPool;
|
|
1144
|
-
waitForDeployment(): Promise<this>;
|
|
1145
|
-
interface: LendingPoolInterface;
|
|
1146
|
-
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
1147
|
-
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
1148
|
-
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
1149
|
-
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
1150
|
-
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
1151
|
-
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
1152
|
-
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
1153
|
-
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
1154
|
-
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
1155
|
-
BASE_BORROW_THRESHOLD: TypedContractMethod<[], [bigint], "view">;
|
|
1156
|
-
BASE_LIQUIDATION_GRACE_PERIOD: TypedContractMethod<[], [bigint], "view">;
|
|
1157
|
-
BASE_LIQUIDATION_THRESHOLD: TypedContractMethod<[], [bigint], "view">;
|
|
1158
|
-
DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
|
|
1159
|
-
GOVERNANCE_ROLE: TypedContractMethod<[], [string], "view">;
|
|
1160
|
-
HEALTH_FACTOR_LIQUIDATION_THRESHOLD: TypedContractMethod<[
|
|
1161
|
-
], [
|
|
1162
|
-
bigint
|
|
1163
|
-
], "view">;
|
|
1164
|
-
PROTOCOL_ROLE: TypedContractMethod<[], [string], "view">;
|
|
1165
|
-
adapters: TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
1166
|
-
borrow: TypedContractMethod<[
|
|
1167
|
-
adapter: AddressLike,
|
|
1168
|
-
data: BytesLike,
|
|
1169
|
-
amount: BigNumberish
|
|
1170
|
-
], [
|
|
1171
|
-
void
|
|
1172
|
-
], "nonpayable">;
|
|
1173
|
-
borrowWithInsurance: TypedContractMethod<[
|
|
1174
|
-
adapter: AddressLike,
|
|
1175
|
-
data: BytesLike,
|
|
1176
|
-
amount: BigNumberish
|
|
1177
|
-
], [
|
|
1178
|
-
void
|
|
1179
|
-
], "nonpayable">;
|
|
1180
|
-
calculateHealthFactor: TypedContractMethod<[
|
|
1181
|
-
adapter: AddressLike,
|
|
1182
|
-
user: AddressLike,
|
|
1183
|
-
data: BytesLike
|
|
1184
|
-
], [
|
|
1185
|
-
bigint
|
|
1186
|
-
], "view">;
|
|
1187
|
-
calculateInsuranceFee: TypedContractMethod<[
|
|
1188
|
-
adapter: AddressLike,
|
|
1189
|
-
user: AddressLike,
|
|
1190
|
-
data: BytesLike,
|
|
1191
|
-
amount: BigNumberish
|
|
1192
|
-
], [
|
|
1193
|
-
bigint
|
|
1194
|
-
], "view">;
|
|
1195
|
-
claimCollectorRewards: TypedContractMethod<[], [bigint], "nonpayable">;
|
|
1196
|
-
closeLiquidation: TypedContractMethod<[
|
|
1197
|
-
adapter: AddressLike,
|
|
1198
|
-
data: BytesLike
|
|
1199
|
-
], [
|
|
1200
|
-
void
|
|
1201
|
-
], "nonpayable">;
|
|
1202
|
-
complianceRegistry: TypedContractMethod<[], [string], "view">;
|
|
1203
|
-
deposit: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
1204
|
-
depositAsset: TypedContractMethod<[
|
|
1205
|
-
adapter: AddressLike,
|
|
1206
|
-
data: BytesLike
|
|
1207
|
-
], [
|
|
1208
|
-
void
|
|
1209
|
-
], "nonpayable">;
|
|
1210
|
-
depositBlock: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
1211
|
-
feeCollector: TypedContractMethod<[], [string], "view">;
|
|
1212
|
-
finalizeLiquidation: TypedContractMethod<[
|
|
1213
|
-
adapter: AddressLike,
|
|
1214
|
-
user: AddressLike,
|
|
1215
|
-
data: BytesLike
|
|
1216
|
-
], [
|
|
1217
|
-
void
|
|
1218
|
-
], "nonpayable">;
|
|
1219
|
-
getAdapters: TypedContractMethod<[], [string[]], "view">;
|
|
1220
|
-
getAssetValue: TypedContractMethod<[
|
|
1221
|
-
adapter: AddressLike,
|
|
1222
|
-
user: AddressLike,
|
|
1223
|
-
data: BytesLike
|
|
1224
|
-
], [
|
|
1225
|
-
bigint
|
|
1226
|
-
], "view">;
|
|
1227
|
-
getEligibleUserDeposits: TypedContractMethod<[
|
|
1228
|
-
user: AddressLike
|
|
1229
|
-
], [
|
|
1230
|
-
bigint
|
|
1231
|
-
], "view">;
|
|
1232
|
-
getNormalizedDebt: TypedContractMethod<[], [bigint], "view">;
|
|
1233
|
-
getNormalizedIncome: TypedContractMethod<[], [bigint], "view">;
|
|
1234
|
-
getPosition: TypedContractMethod<[
|
|
1235
|
-
adapter: AddressLike,
|
|
1236
|
-
user: AddressLike,
|
|
1237
|
-
data: BytesLike
|
|
1238
|
-
], [
|
|
1239
|
-
ILendingPoolStorage.CollateralPositionStructOutput
|
|
1240
|
-
], "view">;
|
|
1241
|
-
getPositionData: TypedContractMethod<[
|
|
1242
|
-
adapter: AddressLike,
|
|
1243
|
-
user: AddressLike,
|
|
1244
|
-
data: BytesLike
|
|
1245
|
-
], [
|
|
1246
|
-
[bigint, bigint]
|
|
1247
|
-
], "view">;
|
|
1248
|
-
getPositionDebt: TypedContractMethod<[
|
|
1249
|
-
adapter: AddressLike,
|
|
1250
|
-
user: AddressLike,
|
|
1251
|
-
data: BytesLike
|
|
1252
|
-
], [
|
|
1253
|
-
bigint
|
|
1254
|
-
], "view">;
|
|
1255
|
-
getPositionScaledDebt: TypedContractMethod<[
|
|
1256
|
-
adapter: AddressLike,
|
|
1257
|
-
user: AddressLike,
|
|
1258
|
-
data: BytesLike
|
|
1259
|
-
], [
|
|
1260
|
-
bigint
|
|
1261
|
-
], "view">;
|
|
1262
|
-
getPositionView: TypedContractMethod<[
|
|
1263
|
-
adapter: AddressLike,
|
|
1264
|
-
user: AddressLike,
|
|
1265
|
-
data: BytesLike
|
|
1266
|
-
], [
|
|
1267
|
-
ILendingPoolStorage.CollateralPositionViewStructOutput
|
|
1268
|
-
], "view">;
|
|
1269
|
-
getPositionsScaledDebt: TypedContractMethod<[
|
|
1270
|
-
user: AddressLike
|
|
1271
|
-
], [
|
|
1272
|
-
bigint
|
|
1273
|
-
], "view">;
|
|
1274
|
-
getPrimeRate: TypedContractMethod<[], [bigint], "view">;
|
|
1275
|
-
getReserveRateData: TypedContractMethod<[
|
|
1276
|
-
], [
|
|
1277
|
-
ReserveLibrary.ReserveRateDataStructOutput
|
|
1278
|
-
], "view">;
|
|
1279
|
-
getReserveState: TypedContractMethod<[
|
|
1280
|
-
], [
|
|
1281
|
-
ReserveLibrary.ReserveDataStructOutput
|
|
1282
|
-
], "view">;
|
|
1283
|
-
getRoleAdmin: TypedContractMethod<[role: BytesLike], [string], "view">;
|
|
1284
|
-
getUninsuredBalance: TypedContractMethod<[
|
|
1285
|
-
adapter: AddressLike,
|
|
1286
|
-
user: AddressLike,
|
|
1287
|
-
data: BytesLike
|
|
1288
|
-
], [
|
|
1289
|
-
bigint
|
|
1290
|
-
], "view">;
|
|
1291
|
-
getUserCollateralValue: TypedContractMethod<[
|
|
1292
|
-
user: AddressLike
|
|
1293
|
-
], [
|
|
1294
|
-
bigint
|
|
1295
|
-
], "view">;
|
|
1296
|
-
getUserDeposits: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
1297
|
-
getUserDepositsInStabilityPool: TypedContractMethod<[
|
|
1298
|
-
user: AddressLike
|
|
1299
|
-
], [
|
|
1300
|
-
bigint
|
|
1301
|
-
], "view">;
|
|
1302
|
-
grantRole: TypedContractMethod<[
|
|
1303
|
-
role: BytesLike,
|
|
1304
|
-
account: AddressLike
|
|
1305
|
-
], [
|
|
1306
|
-
void
|
|
1307
|
-
], "nonpayable">;
|
|
1308
|
-
hasRole: TypedContractMethod<[
|
|
1309
|
-
role: BytesLike,
|
|
1310
|
-
account: AddressLike
|
|
1311
|
-
], [
|
|
1312
|
-
boolean
|
|
1313
|
-
], "view">;
|
|
1314
|
-
initiateLiquidation: TypedContractMethod<[
|
|
1315
|
-
adapter: AddressLike,
|
|
1316
|
-
user: AddressLike,
|
|
1317
|
-
data: BytesLike
|
|
1318
|
-
], [
|
|
1319
|
-
void
|
|
1320
|
-
], "nonpayable">;
|
|
1321
|
-
liquidationProxy: TypedContractMethod<[], [string], "view">;
|
|
1322
|
-
onERC721Received: TypedContractMethod<[
|
|
1323
|
-
arg0: AddressLike,
|
|
1324
|
-
arg1: AddressLike,
|
|
1325
|
-
arg2: BigNumberish,
|
|
1326
|
-
arg3: BytesLike
|
|
1327
|
-
], [
|
|
1328
|
-
string
|
|
1329
|
-
], "nonpayable">;
|
|
1330
|
-
openVaultPosition: TypedContractMethod<[], [void], "nonpayable">;
|
|
1331
|
-
owner: TypedContractMethod<[], [string], "view">;
|
|
1332
|
-
parameters: TypedContractMethod<[
|
|
1333
|
-
], [
|
|
1334
|
-
[
|
|
1335
|
-
boolean,
|
|
1336
|
-
boolean,
|
|
1337
|
-
bigint,
|
|
1338
|
-
bigint,
|
|
1339
|
-
bigint,
|
|
1340
|
-
bigint,
|
|
1341
|
-
bigint,
|
|
1342
|
-
bigint,
|
|
1343
|
-
bigint,
|
|
1344
|
-
bigint,
|
|
1345
|
-
bigint,
|
|
1346
|
-
bigint,
|
|
1347
|
-
bigint
|
|
1348
|
-
] & {
|
|
1349
|
-
canPaybackDebt: boolean;
|
|
1350
|
-
withdrawalsPaused: boolean;
|
|
1351
|
-
liquidationThreshold: bigint;
|
|
1352
|
-
liquidationGracePeriod: bigint;
|
|
1353
|
-
insuranceFee: bigint;
|
|
1354
|
-
depositFee: bigint;
|
|
1355
|
-
liquidityBufferRatio: bigint;
|
|
1356
|
-
supplyCap: bigint;
|
|
1357
|
-
borrowCap: bigint;
|
|
1358
|
-
withdrawTimelockDuration: bigint;
|
|
1359
|
-
vaultOpeningFee: bigint;
|
|
1360
|
-
borrowThreshold: bigint;
|
|
1361
|
-
withdrawTimelockDelay: bigint;
|
|
1362
|
-
}
|
|
1363
|
-
], "view">;
|
|
1364
|
-
pause: TypedContractMethod<[], [void], "nonpayable">;
|
|
1365
|
-
paused: TypedContractMethod<[], [boolean], "view">;
|
|
1366
|
-
positions: TypedContractMethod<[
|
|
1367
|
-
arg0: AddressLike,
|
|
1368
|
-
arg1: BytesLike
|
|
1369
|
-
], [
|
|
1370
|
-
[
|
|
1371
|
-
bigint,
|
|
1372
|
-
boolean,
|
|
1373
|
-
bigint,
|
|
1374
|
-
bigint,
|
|
1375
|
-
boolean,
|
|
1376
|
-
bigint
|
|
1377
|
-
] & {
|
|
1378
|
-
rawDebtBalance: bigint;
|
|
1379
|
-
isUnderLiquidation: boolean;
|
|
1380
|
-
liquidationStartTime: bigint;
|
|
1381
|
-
positionIndex: bigint;
|
|
1382
|
-
isInsured: boolean;
|
|
1383
|
-
rawInsuredBalance: bigint;
|
|
1384
|
-
}
|
|
1385
|
-
], "view">;
|
|
1386
|
-
primeRateOracle: TypedContractMethod<[], [string], "view">;
|
|
1387
|
-
rateData: TypedContractMethod<[
|
|
1388
|
-
], [
|
|
1389
|
-
[
|
|
1390
|
-
bigint,
|
|
1391
|
-
bigint,
|
|
1392
|
-
bigint,
|
|
1393
|
-
bigint,
|
|
1394
|
-
bigint,
|
|
1395
|
-
bigint,
|
|
1396
|
-
bigint,
|
|
1397
|
-
bigint
|
|
1398
|
-
] & {
|
|
1399
|
-
currentLiquidityRate: bigint;
|
|
1400
|
-
currentUsageRate: bigint;
|
|
1401
|
-
primeRate: bigint;
|
|
1402
|
-
baseRate: bigint;
|
|
1403
|
-
optimalRate: bigint;
|
|
1404
|
-
maxRate: bigint;
|
|
1405
|
-
optimalUtilizationRate: bigint;
|
|
1406
|
-
protocolFeeRate: bigint;
|
|
1407
|
-
}
|
|
1408
|
-
], "view">;
|
|
1409
|
-
registerAdapter: TypedContractMethod<[
|
|
1410
|
-
adapter: AddressLike
|
|
1411
|
-
], [
|
|
1412
|
-
void
|
|
1413
|
-
], "nonpayable">;
|
|
1414
|
-
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
1415
|
-
renounceRole: TypedContractMethod<[
|
|
1416
|
-
role: BytesLike,
|
|
1417
|
-
callerConfirmation: AddressLike
|
|
1418
|
-
], [
|
|
1419
|
-
void
|
|
1420
|
-
], "nonpayable">;
|
|
1421
|
-
repay: TypedContractMethod<[
|
|
1422
|
-
adapter: AddressLike,
|
|
1423
|
-
data: BytesLike,
|
|
1424
|
-
amount: BigNumberish
|
|
1425
|
-
], [
|
|
1426
|
-
void
|
|
1427
|
-
], "nonpayable">;
|
|
1428
|
-
repayOnBehalf: TypedContractMethod<[
|
|
1429
|
-
adapter: AddressLike,
|
|
1430
|
-
data: BytesLike,
|
|
1431
|
-
amount: BigNumberish,
|
|
1432
|
-
onBehalfOf: AddressLike
|
|
1433
|
-
], [
|
|
1434
|
-
void
|
|
1435
|
-
], "nonpayable">;
|
|
1436
|
-
requestWithdraw: TypedContractMethod<[
|
|
1437
|
-
amount: BigNumberish
|
|
1438
|
-
], [
|
|
1439
|
-
void
|
|
1440
|
-
], "nonpayable">;
|
|
1441
|
-
rescueToken: TypedContractMethod<[
|
|
1442
|
-
tokenAddress: AddressLike,
|
|
1443
|
-
recipient: AddressLike,
|
|
1444
|
-
amount: BigNumberish
|
|
1445
|
-
], [
|
|
1446
|
-
void
|
|
1447
|
-
], "nonpayable">;
|
|
1448
|
-
reserve: TypedContractMethod<[
|
|
1449
|
-
], [
|
|
1450
|
-
[
|
|
1451
|
-
string,
|
|
1452
|
-
string,
|
|
1453
|
-
string,
|
|
1454
|
-
bigint,
|
|
1455
|
-
bigint,
|
|
1456
|
-
bigint,
|
|
1457
|
-
bigint,
|
|
1458
|
-
bigint
|
|
1459
|
-
] & {
|
|
1460
|
-
reserveRTokenAddress: string;
|
|
1461
|
-
reserveAssetAddress: string;
|
|
1462
|
-
reserveDebtTokenAddress: string;
|
|
1463
|
-
totalLiquidity: bigint;
|
|
1464
|
-
totalUsage: bigint;
|
|
1465
|
-
liquidityIndex: bigint;
|
|
1466
|
-
usageIndex: bigint;
|
|
1467
|
-
lastUpdateTimestamp: bigint;
|
|
1468
|
-
}
|
|
1469
|
-
], "view">;
|
|
1470
|
-
revokeRole: TypedContractMethod<[
|
|
1471
|
-
role: BytesLike,
|
|
1472
|
-
account: AddressLike
|
|
1473
|
-
], [
|
|
1474
|
-
void
|
|
1475
|
-
], "nonpayable">;
|
|
1476
|
-
setFeeCollector: TypedContractMethod<[
|
|
1477
|
-
newFeeCollector: AddressLike
|
|
1478
|
-
], [
|
|
1479
|
-
void
|
|
1480
|
-
], "nonpayable">;
|
|
1481
|
-
setLiquidationProxy: TypedContractMethod<[
|
|
1482
|
-
_liquidationProxy: AddressLike
|
|
1483
|
-
], [
|
|
1484
|
-
void
|
|
1485
|
-
], "nonpayable">;
|
|
1486
|
-
setParameter: TypedContractMethod<[
|
|
1487
|
-
param: BigNumberish,
|
|
1488
|
-
newValue: BigNumberish
|
|
1489
|
-
], [
|
|
1490
|
-
void
|
|
1491
|
-
], "nonpayable">;
|
|
1492
|
-
setPrimeRate: TypedContractMethod<[
|
|
1493
|
-
newPrimeRate: BigNumberish
|
|
1494
|
-
], [
|
|
1495
|
-
void
|
|
1496
|
-
], "nonpayable">;
|
|
1497
|
-
setPrimeRateOracle: TypedContractMethod<[
|
|
1498
|
-
newOracle: AddressLike
|
|
1499
|
-
], [
|
|
1500
|
-
void
|
|
1501
|
-
], "nonpayable">;
|
|
1502
|
-
setStabilityPool: TypedContractMethod<[
|
|
1503
|
-
newStabilityPool: AddressLike
|
|
1504
|
-
], [
|
|
1505
|
-
void
|
|
1506
|
-
], "nonpayable">;
|
|
1507
|
-
setVault: TypedContractMethod<[newVault: AddressLike], [void], "nonpayable">;
|
|
1508
|
-
stabilityPool: TypedContractMethod<[], [string], "view">;
|
|
1509
|
-
supportedAdapter: TypedContractMethod<[
|
|
1510
|
-
adapter: AddressLike
|
|
1511
|
-
], [
|
|
1512
|
-
boolean
|
|
1513
|
-
], "view">;
|
|
1514
|
-
supportedAdapters: TypedContractMethod<[
|
|
1515
|
-
arg0: AddressLike
|
|
1516
|
-
], [
|
|
1517
|
-
boolean
|
|
1518
|
-
], "view">;
|
|
1519
|
-
supportsInterface: TypedContractMethod<[
|
|
1520
|
-
interfaceId: BytesLike
|
|
1521
|
-
], [
|
|
1522
|
-
boolean
|
|
1523
|
-
], "view">;
|
|
1524
|
-
transferAccruedDust: TypedContractMethod<[
|
|
1525
|
-
recipient: AddressLike,
|
|
1526
|
-
amount: BigNumberish
|
|
1527
|
-
], [
|
|
1528
|
-
void
|
|
1529
|
-
], "nonpayable">;
|
|
1530
|
-
transferOwnership: TypedContractMethod<[
|
|
1531
|
-
newOwner: AddressLike
|
|
1532
|
-
], [
|
|
1533
|
-
void
|
|
1534
|
-
], "nonpayable">;
|
|
1535
|
-
unpause: TypedContractMethod<[], [void], "nonpayable">;
|
|
1536
|
-
unregisterAdapter: TypedContractMethod<[
|
|
1537
|
-
adapter: AddressLike
|
|
1538
|
-
], [
|
|
1539
|
-
void
|
|
1540
|
-
], "nonpayable">;
|
|
1541
|
-
updateState: TypedContractMethod<[], [void], "nonpayable">;
|
|
1542
|
-
vault: TypedContractMethod<[], [string], "view">;
|
|
1543
|
-
vaultOpened: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
1544
|
-
vaultProxy: TypedContractMethod<[], [string], "view">;
|
|
1545
|
-
vaultRewards: TypedContractMethod<[
|
|
1546
|
-
], [
|
|
1547
|
-
[
|
|
1548
|
-
bigint,
|
|
1549
|
-
bigint,
|
|
1550
|
-
bigint,
|
|
1551
|
-
bigint,
|
|
1552
|
-
bigint,
|
|
1553
|
-
bigint
|
|
1554
|
-
] & {
|
|
1555
|
-
totalDeposits: bigint;
|
|
1556
|
-
unclaimedRewards: bigint;
|
|
1557
|
-
lastClaimTime: bigint;
|
|
1558
|
-
lastSharePrice: bigint;
|
|
1559
|
-
lastWithdrawalTime: bigint;
|
|
1560
|
-
lastDepositTime: bigint;
|
|
1561
|
-
}
|
|
1562
|
-
], "view">;
|
|
1563
|
-
withdraw: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
1564
|
-
withdrawAsset: TypedContractMethod<[
|
|
1565
|
-
adapter: AddressLike,
|
|
1566
|
-
data: BytesLike
|
|
1567
|
-
], [
|
|
1568
|
-
void
|
|
1569
|
-
], "nonpayable">;
|
|
1570
|
-
withdrawTimelock: TypedContractMethod<[
|
|
1571
|
-
arg0: AddressLike
|
|
1572
|
-
], [
|
|
1573
|
-
[
|
|
1574
|
-
bigint,
|
|
1575
|
-
bigint,
|
|
1576
|
-
bigint
|
|
1577
|
-
] & {
|
|
1578
|
-
amount: bigint;
|
|
1579
|
-
readyAt: bigint;
|
|
1580
|
-
expireAt: bigint;
|
|
1581
|
-
}
|
|
1582
|
-
], "view">;
|
|
1583
|
-
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
1584
|
-
getFunction(nameOrSignature: "BASE_BORROW_THRESHOLD"): TypedContractMethod<[], [bigint], "view">;
|
|
1585
|
-
getFunction(nameOrSignature: "BASE_LIQUIDATION_GRACE_PERIOD"): TypedContractMethod<[], [bigint], "view">;
|
|
1586
|
-
getFunction(nameOrSignature: "BASE_LIQUIDATION_THRESHOLD"): TypedContractMethod<[], [bigint], "view">;
|
|
1587
|
-
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
1588
|
-
getFunction(nameOrSignature: "GOVERNANCE_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
1589
|
-
getFunction(nameOrSignature: "HEALTH_FACTOR_LIQUIDATION_THRESHOLD"): TypedContractMethod<[], [bigint], "view">;
|
|
1590
|
-
getFunction(nameOrSignature: "PROTOCOL_ROLE"): TypedContractMethod<[], [string], "view">;
|
|
1591
|
-
getFunction(nameOrSignature: "adapters"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
1592
|
-
getFunction(nameOrSignature: "borrow"): TypedContractMethod<[
|
|
1593
|
-
adapter: AddressLike,
|
|
1594
|
-
data: BytesLike,
|
|
1595
|
-
amount: BigNumberish
|
|
1596
|
-
], [
|
|
1597
|
-
void
|
|
1598
|
-
], "nonpayable">;
|
|
1599
|
-
getFunction(nameOrSignature: "borrowWithInsurance"): TypedContractMethod<[
|
|
1600
|
-
adapter: AddressLike,
|
|
1601
|
-
data: BytesLike,
|
|
1602
|
-
amount: BigNumberish
|
|
1603
|
-
], [
|
|
1604
|
-
void
|
|
1605
|
-
], "nonpayable">;
|
|
1606
|
-
getFunction(nameOrSignature: "calculateHealthFactor"): TypedContractMethod<[
|
|
1607
|
-
adapter: AddressLike,
|
|
1608
|
-
user: AddressLike,
|
|
1609
|
-
data: BytesLike
|
|
1610
|
-
], [
|
|
1611
|
-
bigint
|
|
1612
|
-
], "view">;
|
|
1613
|
-
getFunction(nameOrSignature: "calculateInsuranceFee"): TypedContractMethod<[
|
|
1614
|
-
adapter: AddressLike,
|
|
1615
|
-
user: AddressLike,
|
|
1616
|
-
data: BytesLike,
|
|
1617
|
-
amount: BigNumberish
|
|
1618
|
-
], [
|
|
1619
|
-
bigint
|
|
1620
|
-
], "view">;
|
|
1621
|
-
getFunction(nameOrSignature: "claimCollectorRewards"): TypedContractMethod<[], [bigint], "nonpayable">;
|
|
1622
|
-
getFunction(nameOrSignature: "closeLiquidation"): TypedContractMethod<[
|
|
1623
|
-
adapter: AddressLike,
|
|
1624
|
-
data: BytesLike
|
|
1625
|
-
], [
|
|
1626
|
-
void
|
|
1627
|
-
], "nonpayable">;
|
|
1628
|
-
getFunction(nameOrSignature: "complianceRegistry"): TypedContractMethod<[], [string], "view">;
|
|
1629
|
-
getFunction(nameOrSignature: "deposit"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
1630
|
-
getFunction(nameOrSignature: "depositAsset"): TypedContractMethod<[
|
|
1631
|
-
adapter: AddressLike,
|
|
1632
|
-
data: BytesLike
|
|
1633
|
-
], [
|
|
1634
|
-
void
|
|
1635
|
-
], "nonpayable">;
|
|
1636
|
-
getFunction(nameOrSignature: "depositBlock"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
1637
|
-
getFunction(nameOrSignature: "feeCollector"): TypedContractMethod<[], [string], "view">;
|
|
1638
|
-
getFunction(nameOrSignature: "finalizeLiquidation"): TypedContractMethod<[
|
|
1639
|
-
adapter: AddressLike,
|
|
1640
|
-
user: AddressLike,
|
|
1641
|
-
data: BytesLike
|
|
1642
|
-
], [
|
|
1643
|
-
void
|
|
1644
|
-
], "nonpayable">;
|
|
1645
|
-
getFunction(nameOrSignature: "getAdapters"): TypedContractMethod<[], [string[]], "view">;
|
|
1646
|
-
getFunction(nameOrSignature: "getAssetValue"): TypedContractMethod<[
|
|
1647
|
-
adapter: AddressLike,
|
|
1648
|
-
user: AddressLike,
|
|
1649
|
-
data: BytesLike
|
|
1650
|
-
], [
|
|
1651
|
-
bigint
|
|
1652
|
-
], "view">;
|
|
1653
|
-
getFunction(nameOrSignature: "getEligibleUserDeposits"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
1654
|
-
getFunction(nameOrSignature: "getNormalizedDebt"): TypedContractMethod<[], [bigint], "view">;
|
|
1655
|
-
getFunction(nameOrSignature: "getNormalizedIncome"): TypedContractMethod<[], [bigint], "view">;
|
|
1656
|
-
getFunction(nameOrSignature: "getPosition"): TypedContractMethod<[
|
|
1657
|
-
adapter: AddressLike,
|
|
1658
|
-
user: AddressLike,
|
|
1659
|
-
data: BytesLike
|
|
1660
|
-
], [
|
|
1661
|
-
ILendingPoolStorage.CollateralPositionStructOutput
|
|
1662
|
-
], "view">;
|
|
1663
|
-
getFunction(nameOrSignature: "getPositionData"): TypedContractMethod<[
|
|
1664
|
-
adapter: AddressLike,
|
|
1665
|
-
user: AddressLike,
|
|
1666
|
-
data: BytesLike
|
|
1667
|
-
], [
|
|
1668
|
-
[bigint, bigint]
|
|
1669
|
-
], "view">;
|
|
1670
|
-
getFunction(nameOrSignature: "getPositionDebt"): TypedContractMethod<[
|
|
1671
|
-
adapter: AddressLike,
|
|
1672
|
-
user: AddressLike,
|
|
1673
|
-
data: BytesLike
|
|
1674
|
-
], [
|
|
1675
|
-
bigint
|
|
1676
|
-
], "view">;
|
|
1677
|
-
getFunction(nameOrSignature: "getPositionScaledDebt"): TypedContractMethod<[
|
|
1678
|
-
adapter: AddressLike,
|
|
1679
|
-
user: AddressLike,
|
|
1680
|
-
data: BytesLike
|
|
1681
|
-
], [
|
|
1682
|
-
bigint
|
|
1683
|
-
], "view">;
|
|
1684
|
-
getFunction(nameOrSignature: "getPositionView"): TypedContractMethod<[
|
|
1685
|
-
adapter: AddressLike,
|
|
1686
|
-
user: AddressLike,
|
|
1687
|
-
data: BytesLike
|
|
1688
|
-
], [
|
|
1689
|
-
ILendingPoolStorage.CollateralPositionViewStructOutput
|
|
1690
|
-
], "view">;
|
|
1691
|
-
getFunction(nameOrSignature: "getPositionsScaledDebt"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
1692
|
-
getFunction(nameOrSignature: "getPrimeRate"): TypedContractMethod<[], [bigint], "view">;
|
|
1693
|
-
getFunction(nameOrSignature: "getReserveRateData"): TypedContractMethod<[
|
|
1694
|
-
], [
|
|
1695
|
-
ReserveLibrary.ReserveRateDataStructOutput
|
|
1696
|
-
], "view">;
|
|
1697
|
-
getFunction(nameOrSignature: "getReserveState"): TypedContractMethod<[], [ReserveLibrary.ReserveDataStructOutput], "view">;
|
|
1698
|
-
getFunction(nameOrSignature: "getRoleAdmin"): TypedContractMethod<[role: BytesLike], [string], "view">;
|
|
1699
|
-
getFunction(nameOrSignature: "getUninsuredBalance"): TypedContractMethod<[
|
|
1700
|
-
adapter: AddressLike,
|
|
1701
|
-
user: AddressLike,
|
|
1702
|
-
data: BytesLike
|
|
1703
|
-
], [
|
|
1704
|
-
bigint
|
|
1705
|
-
], "view">;
|
|
1706
|
-
getFunction(nameOrSignature: "getUserCollateralValue"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
1707
|
-
getFunction(nameOrSignature: "getUserDeposits"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
1708
|
-
getFunction(nameOrSignature: "getUserDepositsInStabilityPool"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
1709
|
-
getFunction(nameOrSignature: "grantRole"): TypedContractMethod<[
|
|
1710
|
-
role: BytesLike,
|
|
1711
|
-
account: AddressLike
|
|
1712
|
-
], [
|
|
1713
|
-
void
|
|
1714
|
-
], "nonpayable">;
|
|
1715
|
-
getFunction(nameOrSignature: "hasRole"): TypedContractMethod<[
|
|
1716
|
-
role: BytesLike,
|
|
1717
|
-
account: AddressLike
|
|
1718
|
-
], [
|
|
1719
|
-
boolean
|
|
1720
|
-
], "view">;
|
|
1721
|
-
getFunction(nameOrSignature: "initiateLiquidation"): TypedContractMethod<[
|
|
1722
|
-
adapter: AddressLike,
|
|
1723
|
-
user: AddressLike,
|
|
1724
|
-
data: BytesLike
|
|
1725
|
-
], [
|
|
1726
|
-
void
|
|
1727
|
-
], "nonpayable">;
|
|
1728
|
-
getFunction(nameOrSignature: "liquidationProxy"): TypedContractMethod<[], [string], "view">;
|
|
1729
|
-
getFunction(nameOrSignature: "onERC721Received"): TypedContractMethod<[
|
|
1730
|
-
arg0: AddressLike,
|
|
1731
|
-
arg1: AddressLike,
|
|
1732
|
-
arg2: BigNumberish,
|
|
1733
|
-
arg3: BytesLike
|
|
1734
|
-
], [
|
|
1735
|
-
string
|
|
1736
|
-
], "nonpayable">;
|
|
1737
|
-
getFunction(nameOrSignature: "openVaultPosition"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1738
|
-
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
1739
|
-
getFunction(nameOrSignature: "parameters"): TypedContractMethod<[
|
|
1740
|
-
], [
|
|
1741
|
-
[
|
|
1742
|
-
boolean,
|
|
1743
|
-
boolean,
|
|
1744
|
-
bigint,
|
|
1745
|
-
bigint,
|
|
1746
|
-
bigint,
|
|
1747
|
-
bigint,
|
|
1748
|
-
bigint,
|
|
1749
|
-
bigint,
|
|
1750
|
-
bigint,
|
|
1751
|
-
bigint,
|
|
1752
|
-
bigint,
|
|
1753
|
-
bigint,
|
|
1754
|
-
bigint
|
|
1755
|
-
] & {
|
|
1756
|
-
canPaybackDebt: boolean;
|
|
1757
|
-
withdrawalsPaused: boolean;
|
|
1758
|
-
liquidationThreshold: bigint;
|
|
1759
|
-
liquidationGracePeriod: bigint;
|
|
1760
|
-
insuranceFee: bigint;
|
|
1761
|
-
depositFee: bigint;
|
|
1762
|
-
liquidityBufferRatio: bigint;
|
|
1763
|
-
supplyCap: bigint;
|
|
1764
|
-
borrowCap: bigint;
|
|
1765
|
-
withdrawTimelockDuration: bigint;
|
|
1766
|
-
vaultOpeningFee: bigint;
|
|
1767
|
-
borrowThreshold: bigint;
|
|
1768
|
-
withdrawTimelockDelay: bigint;
|
|
1769
|
-
}
|
|
1770
|
-
], "view">;
|
|
1771
|
-
getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1772
|
-
getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
|
|
1773
|
-
getFunction(nameOrSignature: "positions"): TypedContractMethod<[
|
|
1774
|
-
arg0: AddressLike,
|
|
1775
|
-
arg1: BytesLike
|
|
1776
|
-
], [
|
|
1777
|
-
[
|
|
1778
|
-
bigint,
|
|
1779
|
-
boolean,
|
|
1780
|
-
bigint,
|
|
1781
|
-
bigint,
|
|
1782
|
-
boolean,
|
|
1783
|
-
bigint
|
|
1784
|
-
] & {
|
|
1785
|
-
rawDebtBalance: bigint;
|
|
1786
|
-
isUnderLiquidation: boolean;
|
|
1787
|
-
liquidationStartTime: bigint;
|
|
1788
|
-
positionIndex: bigint;
|
|
1789
|
-
isInsured: boolean;
|
|
1790
|
-
rawInsuredBalance: bigint;
|
|
1791
|
-
}
|
|
1792
|
-
], "view">;
|
|
1793
|
-
getFunction(nameOrSignature: "primeRateOracle"): TypedContractMethod<[], [string], "view">;
|
|
1794
|
-
getFunction(nameOrSignature: "rateData"): TypedContractMethod<[
|
|
1795
|
-
], [
|
|
1796
|
-
[
|
|
1797
|
-
bigint,
|
|
1798
|
-
bigint,
|
|
1799
|
-
bigint,
|
|
1800
|
-
bigint,
|
|
1801
|
-
bigint,
|
|
1802
|
-
bigint,
|
|
1803
|
-
bigint,
|
|
1804
|
-
bigint
|
|
1805
|
-
] & {
|
|
1806
|
-
currentLiquidityRate: bigint;
|
|
1807
|
-
currentUsageRate: bigint;
|
|
1808
|
-
primeRate: bigint;
|
|
1809
|
-
baseRate: bigint;
|
|
1810
|
-
optimalRate: bigint;
|
|
1811
|
-
maxRate: bigint;
|
|
1812
|
-
optimalUtilizationRate: bigint;
|
|
1813
|
-
protocolFeeRate: bigint;
|
|
1814
|
-
}
|
|
1815
|
-
], "view">;
|
|
1816
|
-
getFunction(nameOrSignature: "registerAdapter"): TypedContractMethod<[adapter: AddressLike], [void], "nonpayable">;
|
|
1817
|
-
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1818
|
-
getFunction(nameOrSignature: "renounceRole"): TypedContractMethod<[
|
|
1819
|
-
role: BytesLike,
|
|
1820
|
-
callerConfirmation: AddressLike
|
|
1821
|
-
], [
|
|
1822
|
-
void
|
|
1823
|
-
], "nonpayable">;
|
|
1824
|
-
getFunction(nameOrSignature: "repay"): TypedContractMethod<[
|
|
1825
|
-
adapter: AddressLike,
|
|
1826
|
-
data: BytesLike,
|
|
1827
|
-
amount: BigNumberish
|
|
1828
|
-
], [
|
|
1829
|
-
void
|
|
1830
|
-
], "nonpayable">;
|
|
1831
|
-
getFunction(nameOrSignature: "repayOnBehalf"): TypedContractMethod<[
|
|
1832
|
-
adapter: AddressLike,
|
|
1833
|
-
data: BytesLike,
|
|
1834
|
-
amount: BigNumberish,
|
|
1835
|
-
onBehalfOf: AddressLike
|
|
1836
|
-
], [
|
|
1837
|
-
void
|
|
1838
|
-
], "nonpayable">;
|
|
1839
|
-
getFunction(nameOrSignature: "requestWithdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
1840
|
-
getFunction(nameOrSignature: "rescueToken"): TypedContractMethod<[
|
|
1841
|
-
tokenAddress: AddressLike,
|
|
1842
|
-
recipient: AddressLike,
|
|
1843
|
-
amount: BigNumberish
|
|
1844
|
-
], [
|
|
1845
|
-
void
|
|
1846
|
-
], "nonpayable">;
|
|
1847
|
-
getFunction(nameOrSignature: "reserve"): TypedContractMethod<[
|
|
1848
|
-
], [
|
|
1849
|
-
[
|
|
1850
|
-
string,
|
|
1851
|
-
string,
|
|
1852
|
-
string,
|
|
1853
|
-
bigint,
|
|
1854
|
-
bigint,
|
|
1855
|
-
bigint,
|
|
1856
|
-
bigint,
|
|
1857
|
-
bigint
|
|
1858
|
-
] & {
|
|
1859
|
-
reserveRTokenAddress: string;
|
|
1860
|
-
reserveAssetAddress: string;
|
|
1861
|
-
reserveDebtTokenAddress: string;
|
|
1862
|
-
totalLiquidity: bigint;
|
|
1863
|
-
totalUsage: bigint;
|
|
1864
|
-
liquidityIndex: bigint;
|
|
1865
|
-
usageIndex: bigint;
|
|
1866
|
-
lastUpdateTimestamp: bigint;
|
|
1867
|
-
}
|
|
1868
|
-
], "view">;
|
|
1869
|
-
getFunction(nameOrSignature: "revokeRole"): TypedContractMethod<[
|
|
1870
|
-
role: BytesLike,
|
|
1871
|
-
account: AddressLike
|
|
1872
|
-
], [
|
|
1873
|
-
void
|
|
1874
|
-
], "nonpayable">;
|
|
1875
|
-
getFunction(nameOrSignature: "setFeeCollector"): TypedContractMethod<[newFeeCollector: AddressLike], [void], "nonpayable">;
|
|
1876
|
-
getFunction(nameOrSignature: "setLiquidationProxy"): TypedContractMethod<[
|
|
1877
|
-
_liquidationProxy: AddressLike
|
|
1878
|
-
], [
|
|
1879
|
-
void
|
|
1880
|
-
], "nonpayable">;
|
|
1881
|
-
getFunction(nameOrSignature: "setParameter"): TypedContractMethod<[
|
|
1882
|
-
param: BigNumberish,
|
|
1883
|
-
newValue: BigNumberish
|
|
1884
|
-
], [
|
|
1885
|
-
void
|
|
1886
|
-
], "nonpayable">;
|
|
1887
|
-
getFunction(nameOrSignature: "setPrimeRate"): TypedContractMethod<[newPrimeRate: BigNumberish], [void], "nonpayable">;
|
|
1888
|
-
getFunction(nameOrSignature: "setPrimeRateOracle"): TypedContractMethod<[newOracle: AddressLike], [void], "nonpayable">;
|
|
1889
|
-
getFunction(nameOrSignature: "setStabilityPool"): TypedContractMethod<[newStabilityPool: AddressLike], [void], "nonpayable">;
|
|
1890
|
-
getFunction(nameOrSignature: "setVault"): TypedContractMethod<[newVault: AddressLike], [void], "nonpayable">;
|
|
1891
|
-
getFunction(nameOrSignature: "stabilityPool"): TypedContractMethod<[], [string], "view">;
|
|
1892
|
-
getFunction(nameOrSignature: "supportedAdapter"): TypedContractMethod<[adapter: AddressLike], [boolean], "view">;
|
|
1893
|
-
getFunction(nameOrSignature: "supportedAdapters"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
1894
|
-
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
1895
|
-
getFunction(nameOrSignature: "transferAccruedDust"): TypedContractMethod<[
|
|
1896
|
-
recipient: AddressLike,
|
|
1897
|
-
amount: BigNumberish
|
|
1898
|
-
], [
|
|
1899
|
-
void
|
|
1900
|
-
], "nonpayable">;
|
|
1901
|
-
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
1902
|
-
getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1903
|
-
getFunction(nameOrSignature: "unregisterAdapter"): TypedContractMethod<[adapter: AddressLike], [void], "nonpayable">;
|
|
1904
|
-
getFunction(nameOrSignature: "updateState"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1905
|
-
getFunction(nameOrSignature: "vault"): TypedContractMethod<[], [string], "view">;
|
|
1906
|
-
getFunction(nameOrSignature: "vaultOpened"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
1907
|
-
getFunction(nameOrSignature: "vaultProxy"): TypedContractMethod<[], [string], "view">;
|
|
1908
|
-
getFunction(nameOrSignature: "vaultRewards"): TypedContractMethod<[
|
|
1909
|
-
], [
|
|
1910
|
-
[
|
|
1911
|
-
bigint,
|
|
1912
|
-
bigint,
|
|
1913
|
-
bigint,
|
|
1914
|
-
bigint,
|
|
1915
|
-
bigint,
|
|
1916
|
-
bigint
|
|
1917
|
-
] & {
|
|
1918
|
-
totalDeposits: bigint;
|
|
1919
|
-
unclaimedRewards: bigint;
|
|
1920
|
-
lastClaimTime: bigint;
|
|
1921
|
-
lastSharePrice: bigint;
|
|
1922
|
-
lastWithdrawalTime: bigint;
|
|
1923
|
-
lastDepositTime: bigint;
|
|
1924
|
-
}
|
|
1925
|
-
], "view">;
|
|
1926
|
-
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
1927
|
-
getFunction(nameOrSignature: "withdrawAsset"): TypedContractMethod<[
|
|
1928
|
-
adapter: AddressLike,
|
|
1929
|
-
data: BytesLike
|
|
1930
|
-
], [
|
|
1931
|
-
void
|
|
1932
|
-
], "nonpayable">;
|
|
1933
|
-
getFunction(nameOrSignature: "withdrawTimelock"): TypedContractMethod<[
|
|
1934
|
-
arg0: AddressLike
|
|
1935
|
-
], [
|
|
1936
|
-
[
|
|
1937
|
-
bigint,
|
|
1938
|
-
bigint,
|
|
1939
|
-
bigint
|
|
1940
|
-
] & {
|
|
1941
|
-
amount: bigint;
|
|
1942
|
-
readyAt: bigint;
|
|
1943
|
-
expireAt: bigint;
|
|
1944
|
-
}
|
|
1945
|
-
], "view">;
|
|
1946
|
-
getEvent(key: "AdapterRegistered"): TypedContractEvent<AdapterRegisteredEvent.InputTuple, AdapterRegisteredEvent.OutputTuple, AdapterRegisteredEvent.OutputObject>;
|
|
1947
|
-
getEvent(key: "AdapterRemoved"): TypedContractEvent<AdapterRemovedEvent.InputTuple, AdapterRemovedEvent.OutputTuple, AdapterRemovedEvent.OutputObject>;
|
|
1948
|
-
getEvent(key: "Borrow"): TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
|
|
1949
|
-
getEvent(key: "BorrowCapUpdated"): TypedContractEvent<BorrowCapUpdatedEvent.InputTuple, BorrowCapUpdatedEvent.OutputTuple, BorrowCapUpdatedEvent.OutputObject>;
|
|
1950
|
-
getEvent(key: "CanPaybackDebtChanged"): TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
|
|
1951
|
-
getEvent(key: "Deposit(address,uint256,uint256)"): TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
|
|
1952
|
-
getEvent(key: "Deposit(address,uint256,uint256)"): TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
|
|
1953
|
-
getEvent(key: "DepositFeeUpdated"): TypedContractEvent<DepositFeeUpdatedEvent.InputTuple, DepositFeeUpdatedEvent.OutputTuple, DepositFeeUpdatedEvent.OutputObject>;
|
|
1954
|
-
getEvent(key: "FeeCollectorUpdated"): TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
|
|
1955
|
-
getEvent(key: "InsufficientFees"): TypedContractEvent<InsufficientFeesEvent.InputTuple, InsufficientFeesEvent.OutputTuple, InsufficientFeesEvent.OutputObject>;
|
|
1956
|
-
getEvent(key: "InsuranceFeeUpdated"): TypedContractEvent<InsuranceFeeUpdatedEvent.InputTuple, InsuranceFeeUpdatedEvent.OutputTuple, InsuranceFeeUpdatedEvent.OutputObject>;
|
|
1957
|
-
getEvent(key: "InsuredAsset"): TypedContractEvent<InsuredAssetEvent.InputTuple, InsuredAssetEvent.OutputTuple, InsuredAssetEvent.OutputObject>;
|
|
1958
|
-
getEvent(key: "InterestRatesUpdated"): TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
|
|
1959
|
-
getEvent(key: "Liquidation"): TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
|
|
1960
|
-
getEvent(key: "LiquidationClosed"): TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
|
|
1961
|
-
getEvent(key: "LiquidationFinalized"): TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
|
|
1962
|
-
getEvent(key: "LiquidationInitiated"): TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
|
|
1963
|
-
getEvent(key: "LiquidationProxyUpdated"): TypedContractEvent<LiquidationProxyUpdatedEvent.InputTuple, LiquidationProxyUpdatedEvent.OutputTuple, LiquidationProxyUpdatedEvent.OutputObject>;
|
|
1964
|
-
getEvent(key: "LiquidityBufferRatioUpdated"): TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
|
|
1965
|
-
getEvent(key: "LiquidityRebalanced"): TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
|
|
1966
|
-
getEvent(key: "NFTDeposited"): TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
1967
|
-
getEvent(key: "NFTWithdrawn"): TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
|
|
1968
|
-
getEvent(key: "NotFeeCollector"): TypedContractEvent<NotFeeCollectorEvent.InputTuple, NotFeeCollectorEvent.OutputTuple, NotFeeCollectorEvent.OutputObject>;
|
|
1969
|
-
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
1970
|
-
getEvent(key: "ParameterChanged"): TypedContractEvent<ParameterChangedEvent.InputTuple, ParameterChangedEvent.OutputTuple, ParameterChangedEvent.OutputObject>;
|
|
1971
|
-
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
1972
|
-
getEvent(key: "PrimeRateOracleUpdated"): TypedContractEvent<PrimeRateOracleUpdatedEvent.InputTuple, PrimeRateOracleUpdatedEvent.OutputTuple, PrimeRateOracleUpdatedEvent.OutputObject>;
|
|
1973
|
-
getEvent(key: "PrimeRateUpdated"): TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
|
|
1974
|
-
getEvent(key: "ProtocolFeeRateUpdated"): TypedContractEvent<ProtocolFeeRateUpdatedEvent.InputTuple, ProtocolFeeRateUpdatedEvent.OutputTuple, ProtocolFeeRateUpdatedEvent.OutputObject>;
|
|
1975
|
-
getEvent(key: "ProtocolFeesCollected"): TypedContractEvent<ProtocolFeesCollectedEvent.InputTuple, ProtocolFeesCollectedEvent.OutputTuple, ProtocolFeesCollectedEvent.OutputObject>;
|
|
1976
|
-
getEvent(key: "ProtocolFeesWithdrawn"): TypedContractEvent<ProtocolFeesWithdrawnEvent.InputTuple, ProtocolFeesWithdrawnEvent.OutputTuple, ProtocolFeesWithdrawnEvent.OutputObject>;
|
|
1977
|
-
getEvent(key: "Repay"): TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
1978
|
-
getEvent(key: "ReserveInterestsUpdated"): TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
|
|
1979
|
-
getEvent(key: "RewardClaimed"): TypedContractEvent<RewardClaimedEvent.InputTuple, RewardClaimedEvent.OutputTuple, RewardClaimedEvent.OutputObject>;
|
|
1980
|
-
getEvent(key: "RewardDistributed"): TypedContractEvent<RewardDistributedEvent.InputTuple, RewardDistributedEvent.OutputTuple, RewardDistributedEvent.OutputObject>;
|
|
1981
|
-
getEvent(key: "RewardParametersUpdated"): TypedContractEvent<RewardParametersUpdatedEvent.InputTuple, RewardParametersUpdatedEvent.OutputTuple, RewardParametersUpdatedEvent.OutputObject>;
|
|
1982
|
-
getEvent(key: "RewardTokenAdded"): TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
1983
|
-
getEvent(key: "RewardTokensDeposited"): TypedContractEvent<RewardTokensDepositedEvent.InputTuple, RewardTokensDepositedEvent.OutputTuple, RewardTokensDepositedEvent.OutputObject>;
|
|
1984
|
-
getEvent(key: "RoleAdminChanged"): TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
1985
|
-
getEvent(key: "RoleGranted"): TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
1986
|
-
getEvent(key: "RoleRevoked"): TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
1987
|
-
getEvent(key: "StabilityPoolUpdated"): TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
|
|
1988
|
-
getEvent(key: "SupplyCapUpdated"): TypedContractEvent<SupplyCapUpdatedEvent.InputTuple, SupplyCapUpdatedEvent.OutputTuple, SupplyCapUpdatedEvent.OutputObject>;
|
|
1989
|
-
getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
1990
|
-
getEvent(key: "VaultOpeningFeePaid"): TypedContractEvent<VaultOpeningFeePaidEvent.InputTuple, VaultOpeningFeePaidEvent.OutputTuple, VaultOpeningFeePaidEvent.OutputObject>;
|
|
1991
|
-
getEvent(key: "VaultOpeningFeeUpdated"): TypedContractEvent<VaultOpeningFeeUpdatedEvent.InputTuple, VaultOpeningFeeUpdatedEvent.OutputTuple, VaultOpeningFeeUpdatedEvent.OutputObject>;
|
|
1992
|
-
getEvent(key: "VaultRewardsClaimed"): TypedContractEvent<VaultRewardsClaimedEvent.InputTuple, VaultRewardsClaimedEvent.OutputTuple, VaultRewardsClaimedEvent.OutputObject>;
|
|
1993
|
-
getEvent(key: "VaultUpdated"): TypedContractEvent<VaultUpdatedEvent.InputTuple, VaultUpdatedEvent.OutputTuple, VaultUpdatedEvent.OutputObject>;
|
|
1994
|
-
getEvent(key: "VaultWithdrawalFailed"): TypedContractEvent<VaultWithdrawalFailedEvent.InputTuple, VaultWithdrawalFailedEvent.OutputTuple, VaultWithdrawalFailedEvent.OutputObject>;
|
|
1995
|
-
getEvent(key: "Withdraw(address,uint256)"): TypedContractEvent<Withdraw_address_uint256_Event.InputTuple, Withdraw_address_uint256_Event.OutputTuple, Withdraw_address_uint256_Event.OutputObject>;
|
|
1996
|
-
getEvent(key: "Withdraw(address,uint256,uint256)"): TypedContractEvent<Withdraw_address_uint256_uint256_Event.InputTuple, Withdraw_address_uint256_uint256_Event.OutputTuple, Withdraw_address_uint256_uint256_Event.OutputObject>;
|
|
1997
|
-
getEvent(key: "WithdrawCancelled"): TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
1998
|
-
getEvent(key: "WithdrawFeeUpdated"): TypedContractEvent<WithdrawFeeUpdatedEvent.InputTuple, WithdrawFeeUpdatedEvent.OutputTuple, WithdrawFeeUpdatedEvent.OutputObject>;
|
|
1999
|
-
getEvent(key: "WithdrawQueued"): TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
2000
|
-
getEvent(key: "WithdrawTimelockDurationUpdated"): TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
2001
|
-
getEvent(key: "WithdrawalsPauseStatusChanged"): TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
|
|
2002
|
-
filters: {
|
|
2003
|
-
"AdapterRegistered(address)": TypedContractEvent<AdapterRegisteredEvent.InputTuple, AdapterRegisteredEvent.OutputTuple, AdapterRegisteredEvent.OutputObject>;
|
|
2004
|
-
AdapterRegistered: TypedContractEvent<AdapterRegisteredEvent.InputTuple, AdapterRegisteredEvent.OutputTuple, AdapterRegisteredEvent.OutputObject>;
|
|
2005
|
-
"AdapterRemoved(address)": TypedContractEvent<AdapterRemovedEvent.InputTuple, AdapterRemovedEvent.OutputTuple, AdapterRemovedEvent.OutputObject>;
|
|
2006
|
-
AdapterRemoved: TypedContractEvent<AdapterRemovedEvent.InputTuple, AdapterRemovedEvent.OutputTuple, AdapterRemovedEvent.OutputObject>;
|
|
2007
|
-
"Borrow(address,uint256)": TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
|
|
2008
|
-
Borrow: TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
|
|
2009
|
-
"BorrowCapUpdated(uint256,uint256)": TypedContractEvent<BorrowCapUpdatedEvent.InputTuple, BorrowCapUpdatedEvent.OutputTuple, BorrowCapUpdatedEvent.OutputObject>;
|
|
2010
|
-
BorrowCapUpdated: TypedContractEvent<BorrowCapUpdatedEvent.InputTuple, BorrowCapUpdatedEvent.OutputTuple, BorrowCapUpdatedEvent.OutputObject>;
|
|
2011
|
-
"CanPaybackDebtChanged(bool)": TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
|
|
2012
|
-
CanPaybackDebtChanged: TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
|
|
2013
|
-
"Deposit(address,uint256,uint256)": TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
|
|
2014
|
-
"Deposit(address,uint256,uint256)": TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
|
|
2015
|
-
"DepositFeeUpdated(uint256,uint256)": TypedContractEvent<DepositFeeUpdatedEvent.InputTuple, DepositFeeUpdatedEvent.OutputTuple, DepositFeeUpdatedEvent.OutputObject>;
|
|
2016
|
-
DepositFeeUpdated: TypedContractEvent<DepositFeeUpdatedEvent.InputTuple, DepositFeeUpdatedEvent.OutputTuple, DepositFeeUpdatedEvent.OutputObject>;
|
|
2017
|
-
"FeeCollectorUpdated(address,address)": TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
|
|
2018
|
-
FeeCollectorUpdated: TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
|
|
2019
|
-
"InsufficientFees()": TypedContractEvent<InsufficientFeesEvent.InputTuple, InsufficientFeesEvent.OutputTuple, InsufficientFeesEvent.OutputObject>;
|
|
2020
|
-
InsufficientFees: TypedContractEvent<InsufficientFeesEvent.InputTuple, InsufficientFeesEvent.OutputTuple, InsufficientFeesEvent.OutputObject>;
|
|
2021
|
-
"InsuranceFeeUpdated(uint256,uint256)": TypedContractEvent<InsuranceFeeUpdatedEvent.InputTuple, InsuranceFeeUpdatedEvent.OutputTuple, InsuranceFeeUpdatedEvent.OutputObject>;
|
|
2022
|
-
InsuranceFeeUpdated: TypedContractEvent<InsuranceFeeUpdatedEvent.InputTuple, InsuranceFeeUpdatedEvent.OutputTuple, InsuranceFeeUpdatedEvent.OutputObject>;
|
|
2023
|
-
"InsuredAsset(address,address,bytes,uint256)": TypedContractEvent<InsuredAssetEvent.InputTuple, InsuredAssetEvent.OutputTuple, InsuredAssetEvent.OutputObject>;
|
|
2024
|
-
InsuredAsset: TypedContractEvent<InsuredAssetEvent.InputTuple, InsuredAssetEvent.OutputTuple, InsuredAssetEvent.OutputObject>;
|
|
2025
|
-
"InterestRatesUpdated(uint256,uint256)": TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
|
|
2026
|
-
InterestRatesUpdated: TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
|
|
2027
|
-
"Liquidation(address,address,uint256,uint256)": TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
|
|
2028
|
-
Liquidation: TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
|
|
2029
|
-
"LiquidationClosed(address,address,bytes)": TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
|
|
2030
|
-
LiquidationClosed: TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
|
|
2031
|
-
"LiquidationFinalized(address,address,address,bytes,uint256,uint256)": TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
|
|
2032
|
-
LiquidationFinalized: TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
|
|
2033
|
-
"LiquidationInitiated(address,address,address,bytes)": TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
|
|
2034
|
-
LiquidationInitiated: TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
|
|
2035
|
-
"LiquidationProxyUpdated(address,address)": TypedContractEvent<LiquidationProxyUpdatedEvent.InputTuple, LiquidationProxyUpdatedEvent.OutputTuple, LiquidationProxyUpdatedEvent.OutputObject>;
|
|
2036
|
-
LiquidationProxyUpdated: TypedContractEvent<LiquidationProxyUpdatedEvent.InputTuple, LiquidationProxyUpdatedEvent.OutputTuple, LiquidationProxyUpdatedEvent.OutputObject>;
|
|
2037
|
-
"LiquidityBufferRatioUpdated(uint256,uint256)": TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
|
|
2038
|
-
LiquidityBufferRatioUpdated: TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
|
|
2039
|
-
"LiquidityRebalanced(uint256,uint256)": TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
|
|
2040
|
-
LiquidityRebalanced: TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
|
|
2041
|
-
"NFTDeposited(address,uint256)": TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
2042
|
-
NFTDeposited: TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
2043
|
-
"NFTWithdrawn(address,uint256)": TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
|
|
2044
|
-
NFTWithdrawn: TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
|
|
2045
|
-
"NotFeeCollector()": TypedContractEvent<NotFeeCollectorEvent.InputTuple, NotFeeCollectorEvent.OutputTuple, NotFeeCollectorEvent.OutputObject>;
|
|
2046
|
-
NotFeeCollector: TypedContractEvent<NotFeeCollectorEvent.InputTuple, NotFeeCollectorEvent.OutputTuple, NotFeeCollectorEvent.OutputObject>;
|
|
2047
|
-
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
2048
|
-
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
2049
|
-
"ParameterChanged(uint8,uint256,uint256)": TypedContractEvent<ParameterChangedEvent.InputTuple, ParameterChangedEvent.OutputTuple, ParameterChangedEvent.OutputObject>;
|
|
2050
|
-
ParameterChanged: TypedContractEvent<ParameterChangedEvent.InputTuple, ParameterChangedEvent.OutputTuple, ParameterChangedEvent.OutputObject>;
|
|
2051
|
-
"Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
2052
|
-
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
2053
|
-
"PrimeRateOracleUpdated(address)": TypedContractEvent<PrimeRateOracleUpdatedEvent.InputTuple, PrimeRateOracleUpdatedEvent.OutputTuple, PrimeRateOracleUpdatedEvent.OutputObject>;
|
|
2054
|
-
PrimeRateOracleUpdated: TypedContractEvent<PrimeRateOracleUpdatedEvent.InputTuple, PrimeRateOracleUpdatedEvent.OutputTuple, PrimeRateOracleUpdatedEvent.OutputObject>;
|
|
2055
|
-
"PrimeRateUpdated(uint256,uint256)": TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
|
|
2056
|
-
PrimeRateUpdated: TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
|
|
2057
|
-
"ProtocolFeeRateUpdated(uint256,uint256)": TypedContractEvent<ProtocolFeeRateUpdatedEvent.InputTuple, ProtocolFeeRateUpdatedEvent.OutputTuple, ProtocolFeeRateUpdatedEvent.OutputObject>;
|
|
2058
|
-
ProtocolFeeRateUpdated: TypedContractEvent<ProtocolFeeRateUpdatedEvent.InputTuple, ProtocolFeeRateUpdatedEvent.OutputTuple, ProtocolFeeRateUpdatedEvent.OutputObject>;
|
|
2059
|
-
"ProtocolFeesCollected(uint256,uint256)": TypedContractEvent<ProtocolFeesCollectedEvent.InputTuple, ProtocolFeesCollectedEvent.OutputTuple, ProtocolFeesCollectedEvent.OutputObject>;
|
|
2060
|
-
ProtocolFeesCollected: TypedContractEvent<ProtocolFeesCollectedEvent.InputTuple, ProtocolFeesCollectedEvent.OutputTuple, ProtocolFeesCollectedEvent.OutputObject>;
|
|
2061
|
-
"ProtocolFeesWithdrawn(address,uint256)": TypedContractEvent<ProtocolFeesWithdrawnEvent.InputTuple, ProtocolFeesWithdrawnEvent.OutputTuple, ProtocolFeesWithdrawnEvent.OutputObject>;
|
|
2062
|
-
ProtocolFeesWithdrawn: TypedContractEvent<ProtocolFeesWithdrawnEvent.InputTuple, ProtocolFeesWithdrawnEvent.OutputTuple, ProtocolFeesWithdrawnEvent.OutputObject>;
|
|
2063
|
-
"Repay(address,address,uint256)": TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
2064
|
-
Repay: TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
2065
|
-
"ReserveInterestsUpdated(uint256,uint256)": TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
|
|
2066
|
-
ReserveInterestsUpdated: TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
|
|
2067
|
-
"RewardClaimed(address,address,uint256)": TypedContractEvent<RewardClaimedEvent.InputTuple, RewardClaimedEvent.OutputTuple, RewardClaimedEvent.OutputObject>;
|
|
2068
|
-
RewardClaimed: TypedContractEvent<RewardClaimedEvent.InputTuple, RewardClaimedEvent.OutputTuple, RewardClaimedEvent.OutputObject>;
|
|
2069
|
-
"RewardDistributed(address,uint256)": TypedContractEvent<RewardDistributedEvent.InputTuple, RewardDistributedEvent.OutputTuple, RewardDistributedEvent.OutputObject>;
|
|
2070
|
-
RewardDistributed: TypedContractEvent<RewardDistributedEvent.InputTuple, RewardDistributedEvent.OutputTuple, RewardDistributedEvent.OutputObject>;
|
|
2071
|
-
"RewardParametersUpdated(address,uint256,uint256)": TypedContractEvent<RewardParametersUpdatedEvent.InputTuple, RewardParametersUpdatedEvent.OutputTuple, RewardParametersUpdatedEvent.OutputObject>;
|
|
2072
|
-
RewardParametersUpdated: TypedContractEvent<RewardParametersUpdatedEvent.InputTuple, RewardParametersUpdatedEvent.OutputTuple, RewardParametersUpdatedEvent.OutputObject>;
|
|
2073
|
-
"RewardTokenAdded(address,uint256,uint256)": TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
2074
|
-
RewardTokenAdded: TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
|
|
2075
|
-
"RewardTokensDeposited(address,uint256)": TypedContractEvent<RewardTokensDepositedEvent.InputTuple, RewardTokensDepositedEvent.OutputTuple, RewardTokensDepositedEvent.OutputObject>;
|
|
2076
|
-
RewardTokensDeposited: TypedContractEvent<RewardTokensDepositedEvent.InputTuple, RewardTokensDepositedEvent.OutputTuple, RewardTokensDepositedEvent.OutputObject>;
|
|
2077
|
-
"RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
2078
|
-
RoleAdminChanged: TypedContractEvent<RoleAdminChangedEvent.InputTuple, RoleAdminChangedEvent.OutputTuple, RoleAdminChangedEvent.OutputObject>;
|
|
2079
|
-
"RoleGranted(bytes32,address,address)": TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
2080
|
-
RoleGranted: TypedContractEvent<RoleGrantedEvent.InputTuple, RoleGrantedEvent.OutputTuple, RoleGrantedEvent.OutputObject>;
|
|
2081
|
-
"RoleRevoked(bytes32,address,address)": TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
2082
|
-
RoleRevoked: TypedContractEvent<RoleRevokedEvent.InputTuple, RoleRevokedEvent.OutputTuple, RoleRevokedEvent.OutputObject>;
|
|
2083
|
-
"StabilityPoolUpdated(address,address)": TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
|
|
2084
|
-
StabilityPoolUpdated: TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
|
|
2085
|
-
"SupplyCapUpdated(uint256,uint256)": TypedContractEvent<SupplyCapUpdatedEvent.InputTuple, SupplyCapUpdatedEvent.OutputTuple, SupplyCapUpdatedEvent.OutputObject>;
|
|
2086
|
-
SupplyCapUpdated: TypedContractEvent<SupplyCapUpdatedEvent.InputTuple, SupplyCapUpdatedEvent.OutputTuple, SupplyCapUpdatedEvent.OutputObject>;
|
|
2087
|
-
"Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
2088
|
-
Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
2089
|
-
"VaultOpeningFeePaid(address,uint256)": TypedContractEvent<VaultOpeningFeePaidEvent.InputTuple, VaultOpeningFeePaidEvent.OutputTuple, VaultOpeningFeePaidEvent.OutputObject>;
|
|
2090
|
-
VaultOpeningFeePaid: TypedContractEvent<VaultOpeningFeePaidEvent.InputTuple, VaultOpeningFeePaidEvent.OutputTuple, VaultOpeningFeePaidEvent.OutputObject>;
|
|
2091
|
-
"VaultOpeningFeeUpdated(uint256,uint256)": TypedContractEvent<VaultOpeningFeeUpdatedEvent.InputTuple, VaultOpeningFeeUpdatedEvent.OutputTuple, VaultOpeningFeeUpdatedEvent.OutputObject>;
|
|
2092
|
-
VaultOpeningFeeUpdated: TypedContractEvent<VaultOpeningFeeUpdatedEvent.InputTuple, VaultOpeningFeeUpdatedEvent.OutputTuple, VaultOpeningFeeUpdatedEvent.OutputObject>;
|
|
2093
|
-
"VaultRewardsClaimed(uint256)": TypedContractEvent<VaultRewardsClaimedEvent.InputTuple, VaultRewardsClaimedEvent.OutputTuple, VaultRewardsClaimedEvent.OutputObject>;
|
|
2094
|
-
VaultRewardsClaimed: TypedContractEvent<VaultRewardsClaimedEvent.InputTuple, VaultRewardsClaimedEvent.OutputTuple, VaultRewardsClaimedEvent.OutputObject>;
|
|
2095
|
-
"VaultUpdated(address,address)": TypedContractEvent<VaultUpdatedEvent.InputTuple, VaultUpdatedEvent.OutputTuple, VaultUpdatedEvent.OutputObject>;
|
|
2096
|
-
VaultUpdated: TypedContractEvent<VaultUpdatedEvent.InputTuple, VaultUpdatedEvent.OutputTuple, VaultUpdatedEvent.OutputObject>;
|
|
2097
|
-
"VaultWithdrawalFailed(address)": TypedContractEvent<VaultWithdrawalFailedEvent.InputTuple, VaultWithdrawalFailedEvent.OutputTuple, VaultWithdrawalFailedEvent.OutputObject>;
|
|
2098
|
-
VaultWithdrawalFailed: TypedContractEvent<VaultWithdrawalFailedEvent.InputTuple, VaultWithdrawalFailedEvent.OutputTuple, VaultWithdrawalFailedEvent.OutputObject>;
|
|
2099
|
-
"Withdraw(address,uint256)": TypedContractEvent<Withdraw_address_uint256_Event.InputTuple, Withdraw_address_uint256_Event.OutputTuple, Withdraw_address_uint256_Event.OutputObject>;
|
|
2100
|
-
"Withdraw(address,uint256,uint256)": TypedContractEvent<Withdraw_address_uint256_uint256_Event.InputTuple, Withdraw_address_uint256_uint256_Event.OutputTuple, Withdraw_address_uint256_uint256_Event.OutputObject>;
|
|
2101
|
-
"WithdrawCancelled(address)": TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
2102
|
-
WithdrawCancelled: TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
2103
|
-
"WithdrawFeeUpdated(uint256,uint256)": TypedContractEvent<WithdrawFeeUpdatedEvent.InputTuple, WithdrawFeeUpdatedEvent.OutputTuple, WithdrawFeeUpdatedEvent.OutputObject>;
|
|
2104
|
-
WithdrawFeeUpdated: TypedContractEvent<WithdrawFeeUpdatedEvent.InputTuple, WithdrawFeeUpdatedEvent.OutputTuple, WithdrawFeeUpdatedEvent.OutputObject>;
|
|
2105
|
-
"WithdrawQueued(address,uint256,uint256)": TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
2106
|
-
WithdrawQueued: TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
2107
|
-
"WithdrawTimelockDurationUpdated(uint256,uint256)": TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
2108
|
-
WithdrawTimelockDurationUpdated: TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
2109
|
-
"WithdrawalsPauseStatusChanged(bool)": TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
|
|
2110
|
-
WithdrawalsPauseStatusChanged: TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
|
|
2111
|
-
};
|
|
2112
|
-
}
|