@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
|
@@ -1,1471 +0,0 @@
|
|
|
1
|
-
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
-
import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
-
import type { NonPayableOverrides } from "../../../../../common";
|
|
4
|
-
import type { MockLendingPoolDebtToken, MockLendingPoolDebtTokenInterface } from "../../../../../contracts/mocks/core/pools/MockLendingPoolDebtToken";
|
|
5
|
-
type MockLendingPoolDebtTokenConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
-
export declare class MockLendingPoolDebtToken__factory extends ContractFactory {
|
|
7
|
-
constructor(...args: MockLendingPoolDebtTokenConstructorParams);
|
|
8
|
-
getDeployTransaction(overrides?: NonPayableOverrides & {
|
|
9
|
-
from?: string;
|
|
10
|
-
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(overrides?: NonPayableOverrides & {
|
|
12
|
-
from?: string;
|
|
13
|
-
}): Promise<MockLendingPoolDebtToken & {
|
|
14
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
-
}>;
|
|
16
|
-
connect(runner: ContractRunner | null): MockLendingPoolDebtToken__factory;
|
|
17
|
-
static readonly bytecode = "0x60808060405234610026576b033b2e3c9fd0803ce8000000600055610652908161002c8239f35b600080fdfe604060808152600436101561001d575b50361561001b57600080fd5b005b6000803560e01c918263086c33e11461018c5782630ab30d8a1461046c578263150b7a021461040e5782631d8557d7146102a05782632445eee5146103bd5782632a7e7849146102fe5782632ab414fc146103a05782632e1a7d4d146101ae5782632f17682b1461037c57826332128b03146102fe578263325972661461036257826353f357701461019157826375417da61461033e578263768bab4514610327578263883c6b24146103035782638bc2ff5b146102875782639632b92a146102fe57826398c2b108146102ef57826398d721e0146102d15782639daa54b4146102a5578263a51e8963146102a0578263a90d728f14610287578263aaf637991461018c578263b21cfc7114610267578263b6b55f25146101ae578263b88a802f1461024d578263ba746694146101b357508163c4f8911c146101ae578163c939ad611461019657508063d017e9781461018c578063de597d5b146101915763fe64cc0b1461018c573861000f565b610520565b6105a5565b346101ab576101a4366104cf565b5050505080f35b80fd5b610592565b34610249579060c0916101c5366104cf565b505050508160a06101d46105e7565b828152826020820152828482015282606082015282608082015201526101f86105e7565b828152602081019183835280820190848252606083019185835260a06080850194878652019486865282519687525115156020870152519085015251606084015251151560808301525160a0820152f35b5080fd5b346102495781600319360112610249576020905160018152f35b90346101ab57610276366104cf565b505050508151908082526020820152f35b3461024957816003193601126102495751908152602090f35b61053d565b34610249576020366003190112610249576020906102c1610487565b50516805f68e8131ecf800008152f35b50346101ab5760203660031901126101ab576102eb610487565b5080f35b50346101ab576101a4366104cf565b610550565b3461024957816003193601126102495751676765c793fa10079d601b1b8152602090f35b34610249573660031901126101ab576102eb610487565b34610249576020366003190112610249579060209161035b610487565b5051908152f35b50346101ab5760203660031901126101ab57600435815580f35b3461024957602036600319011261024957602090610398610487565b505160018152f35b34610249573660031901126101ab57600f60043510156101ab5780f35b50346101ab5760803660031901126101ab576103d7610487565b506024356001600160401b038111610249576103f79036906004016104a2565b50506064356001600160a01b038116036101ab5780f35b3461024957608036600319011261024957610427610487565b506024356001600160a01b0381160361024957606435916001600160401b0383116101ab575061045d60209236906004016104a2565b505051630a85bd0160e11b8152f35b34610249578160031936011261024957602091549051908152f35b600435906001600160a01b038216820361049d57565b600080fd5b9181601f8401121561049d578235916001600160401b03831161049d576020838186019501011161049d57565b606060031982011261049d576001600160a01b0391600435838116810361049d5792602435908116810361049d5791604435906001600160401b03821161049d5761051c916004016104a2565b9091565b3461049d5761052e366104cf565b50505050602060405160008152f35b3461049d57600036600319011261049d57005b3461049d57604036600319011261049d576004356001600160a01b0381160361049d576024356001600160401b03811161049d5761001b9036906004016104a2565b3461049d57602036600319011261049d57005b3461049d57606036600319011261049d576004356001600160a01b0381160361049d576024356001600160401b03811161049d5761001b9036906004016104a2565b6040519060c082016001600160401b0381118382101761060657604052565b634e487b7160e01b600052604160045260246000fdfea2646970667358221220bc03c273c430e32c705df86fc0ef8228e79833f355f4088aa6f6d3bdce268f0464736f6c63430008140033";
|
|
18
|
-
static readonly abi: readonly [{
|
|
19
|
-
readonly inputs: readonly [];
|
|
20
|
-
readonly stateMutability: "nonpayable";
|
|
21
|
-
readonly type: "constructor";
|
|
22
|
-
}, {
|
|
23
|
-
readonly inputs: readonly [];
|
|
24
|
-
readonly name: "AccessDenied";
|
|
25
|
-
readonly type: "error";
|
|
26
|
-
}, {
|
|
27
|
-
readonly inputs: readonly [];
|
|
28
|
-
readonly name: "AdapterAlreadySupported";
|
|
29
|
-
readonly type: "error";
|
|
30
|
-
}, {
|
|
31
|
-
readonly inputs: readonly [];
|
|
32
|
-
readonly name: "AdapterNotSupported";
|
|
33
|
-
readonly type: "error";
|
|
34
|
-
}, {
|
|
35
|
-
readonly inputs: readonly [];
|
|
36
|
-
readonly name: "AddressCannotBeZero";
|
|
37
|
-
readonly type: "error";
|
|
38
|
-
}, {
|
|
39
|
-
readonly inputs: readonly [];
|
|
40
|
-
readonly name: "AmountDifferentThanRequested";
|
|
41
|
-
readonly type: "error";
|
|
42
|
-
}, {
|
|
43
|
-
readonly inputs: readonly [];
|
|
44
|
-
readonly name: "ApprovalFailed";
|
|
45
|
-
readonly type: "error";
|
|
46
|
-
}, {
|
|
47
|
-
readonly inputs: readonly [];
|
|
48
|
-
readonly name: "BorrowCapReached";
|
|
49
|
-
readonly type: "error";
|
|
50
|
-
}, {
|
|
51
|
-
readonly inputs: readonly [];
|
|
52
|
-
readonly name: "BorrowThresholdTooHigh";
|
|
53
|
-
readonly type: "error";
|
|
54
|
-
}, {
|
|
55
|
-
readonly inputs: readonly [];
|
|
56
|
-
readonly name: "CannotBorrowUnderLiquidation";
|
|
57
|
-
readonly type: "error";
|
|
58
|
-
}, {
|
|
59
|
-
readonly inputs: readonly [];
|
|
60
|
-
readonly name: "CannotDepositWhenUnderLiquidation";
|
|
61
|
-
readonly type: "error";
|
|
62
|
-
}, {
|
|
63
|
-
readonly inputs: readonly [];
|
|
64
|
-
readonly name: "CannotRepayUnderLiquidationWithoutInsurance";
|
|
65
|
-
readonly type: "error";
|
|
66
|
-
}, {
|
|
67
|
-
readonly inputs: readonly [];
|
|
68
|
-
readonly name: "CannotWithdrawInSameBlock";
|
|
69
|
-
readonly type: "error";
|
|
70
|
-
}, {
|
|
71
|
-
readonly inputs: readonly [];
|
|
72
|
-
readonly name: "CannotWithdrawUnderLiquidation";
|
|
73
|
-
readonly type: "error";
|
|
74
|
-
}, {
|
|
75
|
-
readonly inputs: readonly [];
|
|
76
|
-
readonly name: "CapExceedSupply";
|
|
77
|
-
readonly type: "error";
|
|
78
|
-
}, {
|
|
79
|
-
readonly inputs: readonly [];
|
|
80
|
-
readonly name: "CapZero";
|
|
81
|
-
readonly type: "error";
|
|
82
|
-
}, {
|
|
83
|
-
readonly inputs: readonly [];
|
|
84
|
-
readonly name: "DebtNotZero";
|
|
85
|
-
readonly type: "error";
|
|
86
|
-
}, {
|
|
87
|
-
readonly inputs: readonly [];
|
|
88
|
-
readonly name: "GracePeriodExpired";
|
|
89
|
-
readonly type: "error";
|
|
90
|
-
}, {
|
|
91
|
-
readonly inputs: readonly [];
|
|
92
|
-
readonly name: "GracePeriodNotExpired";
|
|
93
|
-
readonly type: "error";
|
|
94
|
-
}, {
|
|
95
|
-
readonly inputs: readonly [];
|
|
96
|
-
readonly name: "HealthFactorTooHigh";
|
|
97
|
-
readonly type: "error";
|
|
98
|
-
}, {
|
|
99
|
-
readonly inputs: readonly [];
|
|
100
|
-
readonly name: "HealthFactorTooLow";
|
|
101
|
-
readonly type: "error";
|
|
102
|
-
}, {
|
|
103
|
-
readonly inputs: readonly [];
|
|
104
|
-
readonly name: "InsufficientAllowanceForFees";
|
|
105
|
-
readonly type: "error";
|
|
106
|
-
}, {
|
|
107
|
-
readonly inputs: readonly [];
|
|
108
|
-
readonly name: "InsufficientBalance";
|
|
109
|
-
readonly type: "error";
|
|
110
|
-
}, {
|
|
111
|
-
readonly inputs: readonly [];
|
|
112
|
-
readonly name: "InsufficientLiquidityAfterWithdrawal";
|
|
113
|
-
readonly type: "error";
|
|
114
|
-
}, {
|
|
115
|
-
readonly inputs: readonly [];
|
|
116
|
-
readonly name: "InvalidAmount";
|
|
117
|
-
readonly type: "error";
|
|
118
|
-
}, {
|
|
119
|
-
readonly inputs: readonly [];
|
|
120
|
-
readonly name: "InvalidBoolean";
|
|
121
|
-
readonly type: "error";
|
|
122
|
-
}, {
|
|
123
|
-
readonly inputs: readonly [];
|
|
124
|
-
readonly name: "InvalidGracePeriod";
|
|
125
|
-
readonly type: "error";
|
|
126
|
-
}, {
|
|
127
|
-
readonly inputs: readonly [];
|
|
128
|
-
readonly name: "InvalidInterestRateMode";
|
|
129
|
-
readonly type: "error";
|
|
130
|
-
}, {
|
|
131
|
-
readonly inputs: readonly [];
|
|
132
|
-
readonly name: "InvalidNFTPrice";
|
|
133
|
-
readonly type: "error";
|
|
134
|
-
}, {
|
|
135
|
-
readonly inputs: readonly [];
|
|
136
|
-
readonly name: "InvalidParameter";
|
|
137
|
-
readonly type: "error";
|
|
138
|
-
}, {
|
|
139
|
-
readonly inputs: readonly [];
|
|
140
|
-
readonly name: "InvalidPercentage";
|
|
141
|
-
readonly type: "error";
|
|
142
|
-
}, {
|
|
143
|
-
readonly inputs: readonly [];
|
|
144
|
-
readonly name: "InvalidVaultAsset";
|
|
145
|
-
readonly type: "error";
|
|
146
|
-
}, {
|
|
147
|
-
readonly inputs: readonly [];
|
|
148
|
-
readonly name: "LiquidationThresholdTooLow";
|
|
149
|
-
readonly type: "error";
|
|
150
|
-
}, {
|
|
151
|
-
readonly inputs: readonly [];
|
|
152
|
-
readonly name: "NFTAlreadyDeposited";
|
|
153
|
-
readonly type: "error";
|
|
154
|
-
}, {
|
|
155
|
-
readonly inputs: readonly [];
|
|
156
|
-
readonly name: "NFTNotDeposited";
|
|
157
|
-
readonly type: "error";
|
|
158
|
-
}, {
|
|
159
|
-
readonly inputs: readonly [];
|
|
160
|
-
readonly name: "NoActiveRewardToken";
|
|
161
|
-
readonly type: "error";
|
|
162
|
-
}, {
|
|
163
|
-
readonly inputs: readonly [];
|
|
164
|
-
readonly name: "NoCollateral";
|
|
165
|
-
readonly type: "error";
|
|
166
|
-
}, {
|
|
167
|
-
readonly inputs: readonly [];
|
|
168
|
-
readonly name: "NoDeposits";
|
|
169
|
-
readonly type: "error";
|
|
170
|
-
}, {
|
|
171
|
-
readonly inputs: readonly [];
|
|
172
|
-
readonly name: "NoPendingWithdraw";
|
|
173
|
-
readonly type: "error";
|
|
174
|
-
}, {
|
|
175
|
-
readonly inputs: readonly [];
|
|
176
|
-
readonly name: "NoRewardsToClaim";
|
|
177
|
-
readonly type: "error";
|
|
178
|
-
}, {
|
|
179
|
-
readonly inputs: readonly [];
|
|
180
|
-
readonly name: "NoVaultSet";
|
|
181
|
-
readonly type: "error";
|
|
182
|
-
}, {
|
|
183
|
-
readonly inputs: readonly [];
|
|
184
|
-
readonly name: "NotEnoughCollateralToBorrow";
|
|
185
|
-
readonly type: "error";
|
|
186
|
-
}, {
|
|
187
|
-
readonly inputs: readonly [];
|
|
188
|
-
readonly name: "NotEnoughLiquidity";
|
|
189
|
-
readonly type: "error";
|
|
190
|
-
}, {
|
|
191
|
-
readonly inputs: readonly [];
|
|
192
|
-
readonly name: "NotInsured";
|
|
193
|
-
readonly type: "error";
|
|
194
|
-
}, {
|
|
195
|
-
readonly inputs: readonly [];
|
|
196
|
-
readonly name: "NotOwnerOfNFT";
|
|
197
|
-
readonly type: "error";
|
|
198
|
-
}, {
|
|
199
|
-
readonly inputs: readonly [];
|
|
200
|
-
readonly name: "NotUnderLiquidation";
|
|
201
|
-
readonly type: "error";
|
|
202
|
-
}, {
|
|
203
|
-
readonly inputs: readonly [];
|
|
204
|
-
readonly name: "PaybackDebtDisabled";
|
|
205
|
-
readonly type: "error";
|
|
206
|
-
}, {
|
|
207
|
-
readonly inputs: readonly [];
|
|
208
|
-
readonly name: "RepayAmountTooHigh";
|
|
209
|
-
readonly type: "error";
|
|
210
|
-
}, {
|
|
211
|
-
readonly inputs: readonly [];
|
|
212
|
-
readonly name: "RepaymentBelowMinimumThreshold";
|
|
213
|
-
readonly type: "error";
|
|
214
|
-
}, {
|
|
215
|
-
readonly inputs: readonly [];
|
|
216
|
-
readonly name: "RewardTokenAlreadySet";
|
|
217
|
-
readonly type: "error";
|
|
218
|
-
}, {
|
|
219
|
-
readonly inputs: readonly [];
|
|
220
|
-
readonly name: "SameAddressNotAllowed";
|
|
221
|
-
readonly type: "error";
|
|
222
|
-
}, {
|
|
223
|
-
readonly inputs: readonly [];
|
|
224
|
-
readonly name: "StalePrice";
|
|
225
|
-
readonly type: "error";
|
|
226
|
-
}, {
|
|
227
|
-
readonly inputs: readonly [];
|
|
228
|
-
readonly name: "SupplyCapBelowBorrowCap";
|
|
229
|
-
readonly type: "error";
|
|
230
|
-
}, {
|
|
231
|
-
readonly inputs: readonly [];
|
|
232
|
-
readonly name: "SupplyCapReached";
|
|
233
|
-
readonly type: "error";
|
|
234
|
-
}, {
|
|
235
|
-
readonly inputs: readonly [];
|
|
236
|
-
readonly name: "TimelockDisabled";
|
|
237
|
-
readonly type: "error";
|
|
238
|
-
}, {
|
|
239
|
-
readonly inputs: readonly [];
|
|
240
|
-
readonly name: "TimelockExpired";
|
|
241
|
-
readonly type: "error";
|
|
242
|
-
}, {
|
|
243
|
-
readonly inputs: readonly [];
|
|
244
|
-
readonly name: "TimelockNotExpired";
|
|
245
|
-
readonly type: "error";
|
|
246
|
-
}, {
|
|
247
|
-
readonly inputs: readonly [];
|
|
248
|
-
readonly name: "TransferFailed";
|
|
249
|
-
readonly type: "error";
|
|
250
|
-
}, {
|
|
251
|
-
readonly inputs: readonly [];
|
|
252
|
-
readonly name: "Unauthorized";
|
|
253
|
-
readonly type: "error";
|
|
254
|
-
}, {
|
|
255
|
-
readonly inputs: readonly [];
|
|
256
|
-
readonly name: "UserAlreadyUnderLiquidation";
|
|
257
|
-
readonly type: "error";
|
|
258
|
-
}, {
|
|
259
|
-
readonly inputs: readonly [];
|
|
260
|
-
readonly name: "VaultPositionAlreadyOpened";
|
|
261
|
-
readonly type: "error";
|
|
262
|
-
}, {
|
|
263
|
-
readonly inputs: readonly [];
|
|
264
|
-
readonly name: "VaultPositionNotOpened";
|
|
265
|
-
readonly type: "error";
|
|
266
|
-
}, {
|
|
267
|
-
readonly inputs: readonly [];
|
|
268
|
-
readonly name: "WithdrawalWouldLeaveUserUnderCollateralized";
|
|
269
|
-
readonly type: "error";
|
|
270
|
-
}, {
|
|
271
|
-
readonly inputs: readonly [];
|
|
272
|
-
readonly name: "WithdrawalsArePaused";
|
|
273
|
-
readonly type: "error";
|
|
274
|
-
}, {
|
|
275
|
-
readonly anonymous: false;
|
|
276
|
-
readonly inputs: readonly [{
|
|
277
|
-
readonly indexed: true;
|
|
278
|
-
readonly internalType: "address";
|
|
279
|
-
readonly name: "user";
|
|
280
|
-
readonly type: "address";
|
|
281
|
-
}, {
|
|
282
|
-
readonly indexed: false;
|
|
283
|
-
readonly internalType: "uint256";
|
|
284
|
-
readonly name: "amount";
|
|
285
|
-
readonly type: "uint256";
|
|
286
|
-
}];
|
|
287
|
-
readonly name: "Borrow";
|
|
288
|
-
readonly type: "event";
|
|
289
|
-
}, {
|
|
290
|
-
readonly anonymous: false;
|
|
291
|
-
readonly inputs: readonly [{
|
|
292
|
-
readonly indexed: false;
|
|
293
|
-
readonly internalType: "uint256";
|
|
294
|
-
readonly name: "oldalue";
|
|
295
|
-
readonly type: "uint256";
|
|
296
|
-
}, {
|
|
297
|
-
readonly indexed: false;
|
|
298
|
-
readonly internalType: "uint256";
|
|
299
|
-
readonly name: "newValue";
|
|
300
|
-
readonly type: "uint256";
|
|
301
|
-
}];
|
|
302
|
-
readonly name: "BorrowCapUpdated";
|
|
303
|
-
readonly type: "event";
|
|
304
|
-
}, {
|
|
305
|
-
readonly anonymous: false;
|
|
306
|
-
readonly inputs: readonly [{
|
|
307
|
-
readonly indexed: false;
|
|
308
|
-
readonly internalType: "bool";
|
|
309
|
-
readonly name: "enabled";
|
|
310
|
-
readonly type: "bool";
|
|
311
|
-
}];
|
|
312
|
-
readonly name: "CanPaybackDebtChanged";
|
|
313
|
-
readonly type: "event";
|
|
314
|
-
}, {
|
|
315
|
-
readonly anonymous: false;
|
|
316
|
-
readonly inputs: readonly [{
|
|
317
|
-
readonly indexed: true;
|
|
318
|
-
readonly internalType: "address";
|
|
319
|
-
readonly name: "user";
|
|
320
|
-
readonly type: "address";
|
|
321
|
-
}, {
|
|
322
|
-
readonly indexed: false;
|
|
323
|
-
readonly internalType: "uint256";
|
|
324
|
-
readonly name: "amount";
|
|
325
|
-
readonly type: "uint256";
|
|
326
|
-
}, {
|
|
327
|
-
readonly indexed: false;
|
|
328
|
-
readonly internalType: "uint256";
|
|
329
|
-
readonly name: "mintedAmount";
|
|
330
|
-
readonly type: "uint256";
|
|
331
|
-
}];
|
|
332
|
-
readonly name: "Deposit";
|
|
333
|
-
readonly type: "event";
|
|
334
|
-
}, {
|
|
335
|
-
readonly anonymous: false;
|
|
336
|
-
readonly inputs: readonly [{
|
|
337
|
-
readonly indexed: false;
|
|
338
|
-
readonly internalType: "uint256";
|
|
339
|
-
readonly name: "oldDepositFee";
|
|
340
|
-
readonly type: "uint256";
|
|
341
|
-
}, {
|
|
342
|
-
readonly indexed: false;
|
|
343
|
-
readonly internalType: "uint256";
|
|
344
|
-
readonly name: "newDepositFee";
|
|
345
|
-
readonly type: "uint256";
|
|
346
|
-
}];
|
|
347
|
-
readonly name: "DepositFeeUpdated";
|
|
348
|
-
readonly type: "event";
|
|
349
|
-
}, {
|
|
350
|
-
readonly anonymous: false;
|
|
351
|
-
readonly inputs: readonly [{
|
|
352
|
-
readonly indexed: true;
|
|
353
|
-
readonly internalType: "address";
|
|
354
|
-
readonly name: "oldFeeCollector";
|
|
355
|
-
readonly type: "address";
|
|
356
|
-
}, {
|
|
357
|
-
readonly indexed: true;
|
|
358
|
-
readonly internalType: "address";
|
|
359
|
-
readonly name: "newFeeCollector";
|
|
360
|
-
readonly type: "address";
|
|
361
|
-
}];
|
|
362
|
-
readonly name: "FeeCollectorUpdated";
|
|
363
|
-
readonly type: "event";
|
|
364
|
-
}, {
|
|
365
|
-
readonly anonymous: false;
|
|
366
|
-
readonly inputs: readonly [];
|
|
367
|
-
readonly name: "InsufficientFees";
|
|
368
|
-
readonly type: "event";
|
|
369
|
-
}, {
|
|
370
|
-
readonly anonymous: false;
|
|
371
|
-
readonly inputs: readonly [{
|
|
372
|
-
readonly indexed: false;
|
|
373
|
-
readonly internalType: "uint256";
|
|
374
|
-
readonly name: "oldInsuranceFee";
|
|
375
|
-
readonly type: "uint256";
|
|
376
|
-
}, {
|
|
377
|
-
readonly indexed: false;
|
|
378
|
-
readonly internalType: "uint256";
|
|
379
|
-
readonly name: "newInsuranceFee";
|
|
380
|
-
readonly type: "uint256";
|
|
381
|
-
}];
|
|
382
|
-
readonly name: "InsuranceFeeUpdated";
|
|
383
|
-
readonly type: "event";
|
|
384
|
-
}, {
|
|
385
|
-
readonly anonymous: false;
|
|
386
|
-
readonly inputs: readonly [{
|
|
387
|
-
readonly indexed: true;
|
|
388
|
-
readonly internalType: "address";
|
|
389
|
-
readonly name: "asset";
|
|
390
|
-
readonly type: "address";
|
|
391
|
-
}, {
|
|
392
|
-
readonly indexed: false;
|
|
393
|
-
readonly internalType: "address";
|
|
394
|
-
readonly name: "user";
|
|
395
|
-
readonly type: "address";
|
|
396
|
-
}, {
|
|
397
|
-
readonly indexed: false;
|
|
398
|
-
readonly internalType: "bytes";
|
|
399
|
-
readonly name: "data";
|
|
400
|
-
readonly type: "bytes";
|
|
401
|
-
}, {
|
|
402
|
-
readonly indexed: false;
|
|
403
|
-
readonly internalType: "uint256";
|
|
404
|
-
readonly name: "amount";
|
|
405
|
-
readonly type: "uint256";
|
|
406
|
-
}];
|
|
407
|
-
readonly name: "InsuredAsset";
|
|
408
|
-
readonly type: "event";
|
|
409
|
-
}, {
|
|
410
|
-
readonly anonymous: false;
|
|
411
|
-
readonly inputs: readonly [{
|
|
412
|
-
readonly indexed: true;
|
|
413
|
-
readonly internalType: "address";
|
|
414
|
-
readonly name: "liquidator";
|
|
415
|
-
readonly type: "address";
|
|
416
|
-
}, {
|
|
417
|
-
readonly indexed: true;
|
|
418
|
-
readonly internalType: "address";
|
|
419
|
-
readonly name: "user";
|
|
420
|
-
readonly type: "address";
|
|
421
|
-
}, {
|
|
422
|
-
readonly indexed: false;
|
|
423
|
-
readonly internalType: "uint256";
|
|
424
|
-
readonly name: "debtRepaid";
|
|
425
|
-
readonly type: "uint256";
|
|
426
|
-
}, {
|
|
427
|
-
readonly indexed: false;
|
|
428
|
-
readonly internalType: "uint256";
|
|
429
|
-
readonly name: "collateralLiquidated";
|
|
430
|
-
readonly type: "uint256";
|
|
431
|
-
}];
|
|
432
|
-
readonly name: "Liquidation";
|
|
433
|
-
readonly type: "event";
|
|
434
|
-
}, {
|
|
435
|
-
readonly anonymous: false;
|
|
436
|
-
readonly inputs: readonly [{
|
|
437
|
-
readonly indexed: true;
|
|
438
|
-
readonly internalType: "address";
|
|
439
|
-
readonly name: "user";
|
|
440
|
-
readonly type: "address";
|
|
441
|
-
}, {
|
|
442
|
-
readonly indexed: false;
|
|
443
|
-
readonly internalType: "address";
|
|
444
|
-
readonly name: "adapter";
|
|
445
|
-
readonly type: "address";
|
|
446
|
-
}, {
|
|
447
|
-
readonly indexed: false;
|
|
448
|
-
readonly internalType: "bytes";
|
|
449
|
-
readonly name: "data";
|
|
450
|
-
readonly type: "bytes";
|
|
451
|
-
}];
|
|
452
|
-
readonly name: "LiquidationClosed";
|
|
453
|
-
readonly type: "event";
|
|
454
|
-
}, {
|
|
455
|
-
readonly anonymous: false;
|
|
456
|
-
readonly inputs: readonly [{
|
|
457
|
-
readonly indexed: true;
|
|
458
|
-
readonly internalType: "address";
|
|
459
|
-
readonly name: "liquidator";
|
|
460
|
-
readonly type: "address";
|
|
461
|
-
}, {
|
|
462
|
-
readonly indexed: true;
|
|
463
|
-
readonly internalType: "address";
|
|
464
|
-
readonly name: "user";
|
|
465
|
-
readonly type: "address";
|
|
466
|
-
}, {
|
|
467
|
-
readonly indexed: false;
|
|
468
|
-
readonly internalType: "address";
|
|
469
|
-
readonly name: "adapter";
|
|
470
|
-
readonly type: "address";
|
|
471
|
-
}, {
|
|
472
|
-
readonly indexed: false;
|
|
473
|
-
readonly internalType: "bytes";
|
|
474
|
-
readonly name: "data";
|
|
475
|
-
readonly type: "bytes";
|
|
476
|
-
}, {
|
|
477
|
-
readonly indexed: false;
|
|
478
|
-
readonly internalType: "uint256";
|
|
479
|
-
readonly name: "debtRepaid";
|
|
480
|
-
readonly type: "uint256";
|
|
481
|
-
}, {
|
|
482
|
-
readonly indexed: false;
|
|
483
|
-
readonly internalType: "uint256";
|
|
484
|
-
readonly name: "collateralLiquidated";
|
|
485
|
-
readonly type: "uint256";
|
|
486
|
-
}];
|
|
487
|
-
readonly name: "LiquidationFinalized";
|
|
488
|
-
readonly type: "event";
|
|
489
|
-
}, {
|
|
490
|
-
readonly anonymous: false;
|
|
491
|
-
readonly inputs: readonly [{
|
|
492
|
-
readonly indexed: true;
|
|
493
|
-
readonly internalType: "address";
|
|
494
|
-
readonly name: "liquidator";
|
|
495
|
-
readonly type: "address";
|
|
496
|
-
}, {
|
|
497
|
-
readonly indexed: true;
|
|
498
|
-
readonly internalType: "address";
|
|
499
|
-
readonly name: "user";
|
|
500
|
-
readonly type: "address";
|
|
501
|
-
}, {
|
|
502
|
-
readonly indexed: false;
|
|
503
|
-
readonly internalType: "address";
|
|
504
|
-
readonly name: "adapter";
|
|
505
|
-
readonly type: "address";
|
|
506
|
-
}, {
|
|
507
|
-
readonly indexed: false;
|
|
508
|
-
readonly internalType: "bytes";
|
|
509
|
-
readonly name: "data";
|
|
510
|
-
readonly type: "bytes";
|
|
511
|
-
}];
|
|
512
|
-
readonly name: "LiquidationInitiated";
|
|
513
|
-
readonly type: "event";
|
|
514
|
-
}, {
|
|
515
|
-
readonly anonymous: false;
|
|
516
|
-
readonly inputs: readonly [{
|
|
517
|
-
readonly indexed: true;
|
|
518
|
-
readonly internalType: "address";
|
|
519
|
-
readonly name: "oldLiquidationProxy";
|
|
520
|
-
readonly type: "address";
|
|
521
|
-
}, {
|
|
522
|
-
readonly indexed: true;
|
|
523
|
-
readonly internalType: "address";
|
|
524
|
-
readonly name: "newLiquidationProxy";
|
|
525
|
-
readonly type: "address";
|
|
526
|
-
}];
|
|
527
|
-
readonly name: "LiquidationProxyUpdated";
|
|
528
|
-
readonly type: "event";
|
|
529
|
-
}, {
|
|
530
|
-
readonly anonymous: false;
|
|
531
|
-
readonly inputs: readonly [{
|
|
532
|
-
readonly indexed: false;
|
|
533
|
-
readonly internalType: "uint256";
|
|
534
|
-
readonly name: "oldRatio";
|
|
535
|
-
readonly type: "uint256";
|
|
536
|
-
}, {
|
|
537
|
-
readonly indexed: false;
|
|
538
|
-
readonly internalType: "uint256";
|
|
539
|
-
readonly name: "newRatio";
|
|
540
|
-
readonly type: "uint256";
|
|
541
|
-
}];
|
|
542
|
-
readonly name: "LiquidityBufferRatioUpdated";
|
|
543
|
-
readonly type: "event";
|
|
544
|
-
}, {
|
|
545
|
-
readonly anonymous: false;
|
|
546
|
-
readonly inputs: readonly [{
|
|
547
|
-
readonly indexed: false;
|
|
548
|
-
readonly internalType: "uint256";
|
|
549
|
-
readonly name: "bufferAmount";
|
|
550
|
-
readonly type: "uint256";
|
|
551
|
-
}, {
|
|
552
|
-
readonly indexed: false;
|
|
553
|
-
readonly internalType: "uint256";
|
|
554
|
-
readonly name: "vaultAmount";
|
|
555
|
-
readonly type: "uint256";
|
|
556
|
-
}];
|
|
557
|
-
readonly name: "LiquidityRebalanced";
|
|
558
|
-
readonly type: "event";
|
|
559
|
-
}, {
|
|
560
|
-
readonly anonymous: false;
|
|
561
|
-
readonly inputs: readonly [{
|
|
562
|
-
readonly indexed: true;
|
|
563
|
-
readonly internalType: "address";
|
|
564
|
-
readonly name: "user";
|
|
565
|
-
readonly type: "address";
|
|
566
|
-
}, {
|
|
567
|
-
readonly indexed: false;
|
|
568
|
-
readonly internalType: "uint256";
|
|
569
|
-
readonly name: "tokenId";
|
|
570
|
-
readonly type: "uint256";
|
|
571
|
-
}];
|
|
572
|
-
readonly name: "NFTDeposited";
|
|
573
|
-
readonly type: "event";
|
|
574
|
-
}, {
|
|
575
|
-
readonly anonymous: false;
|
|
576
|
-
readonly inputs: readonly [{
|
|
577
|
-
readonly indexed: true;
|
|
578
|
-
readonly internalType: "address";
|
|
579
|
-
readonly name: "user";
|
|
580
|
-
readonly type: "address";
|
|
581
|
-
}, {
|
|
582
|
-
readonly indexed: false;
|
|
583
|
-
readonly internalType: "uint256";
|
|
584
|
-
readonly name: "tokenId";
|
|
585
|
-
readonly type: "uint256";
|
|
586
|
-
}];
|
|
587
|
-
readonly name: "NFTWithdrawn";
|
|
588
|
-
readonly type: "event";
|
|
589
|
-
}, {
|
|
590
|
-
readonly anonymous: false;
|
|
591
|
-
readonly inputs: readonly [];
|
|
592
|
-
readonly name: "NotFeeCollector";
|
|
593
|
-
readonly type: "event";
|
|
594
|
-
}, {
|
|
595
|
-
readonly anonymous: false;
|
|
596
|
-
readonly inputs: readonly [{
|
|
597
|
-
readonly indexed: false;
|
|
598
|
-
readonly internalType: "enum ILendingPool.OwnerParameter";
|
|
599
|
-
readonly name: "parameter";
|
|
600
|
-
readonly type: "uint8";
|
|
601
|
-
}, {
|
|
602
|
-
readonly indexed: false;
|
|
603
|
-
readonly internalType: "uint256";
|
|
604
|
-
readonly name: "oldalue";
|
|
605
|
-
readonly type: "uint256";
|
|
606
|
-
}, {
|
|
607
|
-
readonly indexed: false;
|
|
608
|
-
readonly internalType: "uint256";
|
|
609
|
-
readonly name: "newValue";
|
|
610
|
-
readonly type: "uint256";
|
|
611
|
-
}];
|
|
612
|
-
readonly name: "ParameterChanged";
|
|
613
|
-
readonly type: "event";
|
|
614
|
-
}, {
|
|
615
|
-
readonly anonymous: false;
|
|
616
|
-
readonly inputs: readonly [{
|
|
617
|
-
readonly indexed: true;
|
|
618
|
-
readonly internalType: "address";
|
|
619
|
-
readonly name: "newOracle";
|
|
620
|
-
readonly type: "address";
|
|
621
|
-
}];
|
|
622
|
-
readonly name: "PrimeRateOracleUpdated";
|
|
623
|
-
readonly type: "event";
|
|
624
|
-
}, {
|
|
625
|
-
readonly anonymous: false;
|
|
626
|
-
readonly inputs: readonly [{
|
|
627
|
-
readonly indexed: false;
|
|
628
|
-
readonly internalType: "uint256";
|
|
629
|
-
readonly name: "oldValue";
|
|
630
|
-
readonly type: "uint256";
|
|
631
|
-
}, {
|
|
632
|
-
readonly indexed: false;
|
|
633
|
-
readonly internalType: "uint256";
|
|
634
|
-
readonly name: "newValue";
|
|
635
|
-
readonly type: "uint256";
|
|
636
|
-
}];
|
|
637
|
-
readonly name: "ProtocolFeeRateUpdated";
|
|
638
|
-
readonly type: "event";
|
|
639
|
-
}, {
|
|
640
|
-
readonly anonymous: false;
|
|
641
|
-
readonly inputs: readonly [{
|
|
642
|
-
readonly indexed: false;
|
|
643
|
-
readonly internalType: "uint256";
|
|
644
|
-
readonly name: "protocolFee";
|
|
645
|
-
readonly type: "uint256";
|
|
646
|
-
}, {
|
|
647
|
-
readonly indexed: false;
|
|
648
|
-
readonly internalType: "uint256";
|
|
649
|
-
readonly name: "accumulatedProtocolFees";
|
|
650
|
-
readonly type: "uint256";
|
|
651
|
-
}];
|
|
652
|
-
readonly name: "ProtocolFeesCollected";
|
|
653
|
-
readonly type: "event";
|
|
654
|
-
}, {
|
|
655
|
-
readonly anonymous: false;
|
|
656
|
-
readonly inputs: readonly [{
|
|
657
|
-
readonly indexed: true;
|
|
658
|
-
readonly internalType: "address";
|
|
659
|
-
readonly name: "feeCollector";
|
|
660
|
-
readonly type: "address";
|
|
661
|
-
}, {
|
|
662
|
-
readonly indexed: false;
|
|
663
|
-
readonly internalType: "uint256";
|
|
664
|
-
readonly name: "amount";
|
|
665
|
-
readonly type: "uint256";
|
|
666
|
-
}];
|
|
667
|
-
readonly name: "ProtocolFeesWithdrawn";
|
|
668
|
-
readonly type: "event";
|
|
669
|
-
}, {
|
|
670
|
-
readonly anonymous: false;
|
|
671
|
-
readonly inputs: readonly [{
|
|
672
|
-
readonly indexed: true;
|
|
673
|
-
readonly internalType: "address";
|
|
674
|
-
readonly name: "user";
|
|
675
|
-
readonly type: "address";
|
|
676
|
-
}, {
|
|
677
|
-
readonly indexed: true;
|
|
678
|
-
readonly internalType: "address";
|
|
679
|
-
readonly name: "onBehalfOf";
|
|
680
|
-
readonly type: "address";
|
|
681
|
-
}, {
|
|
682
|
-
readonly indexed: false;
|
|
683
|
-
readonly internalType: "uint256";
|
|
684
|
-
readonly name: "amount";
|
|
685
|
-
readonly type: "uint256";
|
|
686
|
-
}];
|
|
687
|
-
readonly name: "Repay";
|
|
688
|
-
readonly type: "event";
|
|
689
|
-
}, {
|
|
690
|
-
readonly anonymous: false;
|
|
691
|
-
readonly inputs: readonly [{
|
|
692
|
-
readonly indexed: true;
|
|
693
|
-
readonly internalType: "address";
|
|
694
|
-
readonly name: "user";
|
|
695
|
-
readonly type: "address";
|
|
696
|
-
}, {
|
|
697
|
-
readonly indexed: true;
|
|
698
|
-
readonly internalType: "address";
|
|
699
|
-
readonly name: "token";
|
|
700
|
-
readonly type: "address";
|
|
701
|
-
}, {
|
|
702
|
-
readonly indexed: false;
|
|
703
|
-
readonly internalType: "uint256";
|
|
704
|
-
readonly name: "amount";
|
|
705
|
-
readonly type: "uint256";
|
|
706
|
-
}];
|
|
707
|
-
readonly name: "RewardClaimed";
|
|
708
|
-
readonly type: "event";
|
|
709
|
-
}, {
|
|
710
|
-
readonly anonymous: false;
|
|
711
|
-
readonly inputs: readonly [{
|
|
712
|
-
readonly indexed: true;
|
|
713
|
-
readonly internalType: "address";
|
|
714
|
-
readonly name: "user";
|
|
715
|
-
readonly type: "address";
|
|
716
|
-
}, {
|
|
717
|
-
readonly indexed: false;
|
|
718
|
-
readonly internalType: "uint256";
|
|
719
|
-
readonly name: "amount";
|
|
720
|
-
readonly type: "uint256";
|
|
721
|
-
}];
|
|
722
|
-
readonly name: "RewardDistributed";
|
|
723
|
-
readonly type: "event";
|
|
724
|
-
}, {
|
|
725
|
-
readonly anonymous: false;
|
|
726
|
-
readonly inputs: readonly [{
|
|
727
|
-
readonly indexed: true;
|
|
728
|
-
readonly internalType: "address";
|
|
729
|
-
readonly name: "token";
|
|
730
|
-
readonly type: "address";
|
|
731
|
-
}, {
|
|
732
|
-
readonly indexed: false;
|
|
733
|
-
readonly internalType: "uint256";
|
|
734
|
-
readonly name: "rewardRate";
|
|
735
|
-
readonly type: "uint256";
|
|
736
|
-
}, {
|
|
737
|
-
readonly indexed: false;
|
|
738
|
-
readonly internalType: "uint256";
|
|
739
|
-
readonly name: "duration";
|
|
740
|
-
readonly type: "uint256";
|
|
741
|
-
}];
|
|
742
|
-
readonly name: "RewardParametersUpdated";
|
|
743
|
-
readonly type: "event";
|
|
744
|
-
}, {
|
|
745
|
-
readonly anonymous: false;
|
|
746
|
-
readonly inputs: readonly [{
|
|
747
|
-
readonly indexed: true;
|
|
748
|
-
readonly internalType: "address";
|
|
749
|
-
readonly name: "token";
|
|
750
|
-
readonly type: "address";
|
|
751
|
-
}, {
|
|
752
|
-
readonly indexed: false;
|
|
753
|
-
readonly internalType: "uint256";
|
|
754
|
-
readonly name: "rewardRate";
|
|
755
|
-
readonly type: "uint256";
|
|
756
|
-
}, {
|
|
757
|
-
readonly indexed: false;
|
|
758
|
-
readonly internalType: "uint256";
|
|
759
|
-
readonly name: "duration";
|
|
760
|
-
readonly type: "uint256";
|
|
761
|
-
}];
|
|
762
|
-
readonly name: "RewardTokenAdded";
|
|
763
|
-
readonly type: "event";
|
|
764
|
-
}, {
|
|
765
|
-
readonly anonymous: false;
|
|
766
|
-
readonly inputs: readonly [{
|
|
767
|
-
readonly indexed: true;
|
|
768
|
-
readonly internalType: "address";
|
|
769
|
-
readonly name: "user";
|
|
770
|
-
readonly type: "address";
|
|
771
|
-
}, {
|
|
772
|
-
readonly indexed: false;
|
|
773
|
-
readonly internalType: "uint256";
|
|
774
|
-
readonly name: "amount";
|
|
775
|
-
readonly type: "uint256";
|
|
776
|
-
}];
|
|
777
|
-
readonly name: "RewardTokensDeposited";
|
|
778
|
-
readonly type: "event";
|
|
779
|
-
}, {
|
|
780
|
-
readonly anonymous: false;
|
|
781
|
-
readonly inputs: readonly [{
|
|
782
|
-
readonly indexed: true;
|
|
783
|
-
readonly internalType: "address";
|
|
784
|
-
readonly name: "oldStabilityPool";
|
|
785
|
-
readonly type: "address";
|
|
786
|
-
}, {
|
|
787
|
-
readonly indexed: true;
|
|
788
|
-
readonly internalType: "address";
|
|
789
|
-
readonly name: "newStabilityPool";
|
|
790
|
-
readonly type: "address";
|
|
791
|
-
}];
|
|
792
|
-
readonly name: "StabilityPoolUpdated";
|
|
793
|
-
readonly type: "event";
|
|
794
|
-
}, {
|
|
795
|
-
readonly anonymous: false;
|
|
796
|
-
readonly inputs: readonly [{
|
|
797
|
-
readonly indexed: false;
|
|
798
|
-
readonly internalType: "uint256";
|
|
799
|
-
readonly name: "oldalue";
|
|
800
|
-
readonly type: "uint256";
|
|
801
|
-
}, {
|
|
802
|
-
readonly indexed: false;
|
|
803
|
-
readonly internalType: "uint256";
|
|
804
|
-
readonly name: "newValue";
|
|
805
|
-
readonly type: "uint256";
|
|
806
|
-
}];
|
|
807
|
-
readonly name: "SupplyCapUpdated";
|
|
808
|
-
readonly type: "event";
|
|
809
|
-
}, {
|
|
810
|
-
readonly anonymous: false;
|
|
811
|
-
readonly inputs: readonly [{
|
|
812
|
-
readonly indexed: false;
|
|
813
|
-
readonly internalType: "address";
|
|
814
|
-
readonly name: "user";
|
|
815
|
-
readonly type: "address";
|
|
816
|
-
}, {
|
|
817
|
-
readonly indexed: false;
|
|
818
|
-
readonly internalType: "uint256";
|
|
819
|
-
readonly name: "fee";
|
|
820
|
-
readonly type: "uint256";
|
|
821
|
-
}];
|
|
822
|
-
readonly name: "VaultOpeningFeePaid";
|
|
823
|
-
readonly type: "event";
|
|
824
|
-
}, {
|
|
825
|
-
readonly anonymous: false;
|
|
826
|
-
readonly inputs: readonly [{
|
|
827
|
-
readonly indexed: false;
|
|
828
|
-
readonly internalType: "uint256";
|
|
829
|
-
readonly name: "oldalue";
|
|
830
|
-
readonly type: "uint256";
|
|
831
|
-
}, {
|
|
832
|
-
readonly indexed: false;
|
|
833
|
-
readonly internalType: "uint256";
|
|
834
|
-
readonly name: "newValue";
|
|
835
|
-
readonly type: "uint256";
|
|
836
|
-
}];
|
|
837
|
-
readonly name: "VaultOpeningFeeUpdated";
|
|
838
|
-
readonly type: "event";
|
|
839
|
-
}, {
|
|
840
|
-
readonly anonymous: false;
|
|
841
|
-
readonly inputs: readonly [{
|
|
842
|
-
readonly indexed: false;
|
|
843
|
-
readonly internalType: "uint256";
|
|
844
|
-
readonly name: "amount";
|
|
845
|
-
readonly type: "uint256";
|
|
846
|
-
}];
|
|
847
|
-
readonly name: "VaultRewardsClaimed";
|
|
848
|
-
readonly type: "event";
|
|
849
|
-
}, {
|
|
850
|
-
readonly anonymous: false;
|
|
851
|
-
readonly inputs: readonly [{
|
|
852
|
-
readonly indexed: true;
|
|
853
|
-
readonly internalType: "address";
|
|
854
|
-
readonly name: "oldVault";
|
|
855
|
-
readonly type: "address";
|
|
856
|
-
}, {
|
|
857
|
-
readonly indexed: true;
|
|
858
|
-
readonly internalType: "address";
|
|
859
|
-
readonly name: "newVault";
|
|
860
|
-
readonly type: "address";
|
|
861
|
-
}];
|
|
862
|
-
readonly name: "VaultUpdated";
|
|
863
|
-
readonly type: "event";
|
|
864
|
-
}, {
|
|
865
|
-
readonly anonymous: false;
|
|
866
|
-
readonly inputs: readonly [{
|
|
867
|
-
readonly indexed: true;
|
|
868
|
-
readonly internalType: "address";
|
|
869
|
-
readonly name: "vault";
|
|
870
|
-
readonly type: "address";
|
|
871
|
-
}];
|
|
872
|
-
readonly name: "VaultWithdrawalFailed";
|
|
873
|
-
readonly type: "event";
|
|
874
|
-
}, {
|
|
875
|
-
readonly anonymous: false;
|
|
876
|
-
readonly inputs: readonly [{
|
|
877
|
-
readonly indexed: true;
|
|
878
|
-
readonly internalType: "address";
|
|
879
|
-
readonly name: "user";
|
|
880
|
-
readonly type: "address";
|
|
881
|
-
}, {
|
|
882
|
-
readonly indexed: false;
|
|
883
|
-
readonly internalType: "uint256";
|
|
884
|
-
readonly name: "amount";
|
|
885
|
-
readonly type: "uint256";
|
|
886
|
-
}];
|
|
887
|
-
readonly name: "Withdraw";
|
|
888
|
-
readonly type: "event";
|
|
889
|
-
}, {
|
|
890
|
-
readonly anonymous: false;
|
|
891
|
-
readonly inputs: readonly [{
|
|
892
|
-
readonly indexed: true;
|
|
893
|
-
readonly internalType: "address";
|
|
894
|
-
readonly name: "user";
|
|
895
|
-
readonly type: "address";
|
|
896
|
-
}];
|
|
897
|
-
readonly name: "WithdrawCancelled";
|
|
898
|
-
readonly type: "event";
|
|
899
|
-
}, {
|
|
900
|
-
readonly anonymous: false;
|
|
901
|
-
readonly inputs: readonly [{
|
|
902
|
-
readonly indexed: false;
|
|
903
|
-
readonly internalType: "uint256";
|
|
904
|
-
readonly name: "oldWithdrawalFee";
|
|
905
|
-
readonly type: "uint256";
|
|
906
|
-
}, {
|
|
907
|
-
readonly indexed: false;
|
|
908
|
-
readonly internalType: "uint256";
|
|
909
|
-
readonly name: "newWithdrawalFee";
|
|
910
|
-
readonly type: "uint256";
|
|
911
|
-
}];
|
|
912
|
-
readonly name: "WithdrawFeeUpdated";
|
|
913
|
-
readonly type: "event";
|
|
914
|
-
}, {
|
|
915
|
-
readonly anonymous: false;
|
|
916
|
-
readonly inputs: readonly [{
|
|
917
|
-
readonly indexed: true;
|
|
918
|
-
readonly internalType: "address";
|
|
919
|
-
readonly name: "user";
|
|
920
|
-
readonly type: "address";
|
|
921
|
-
}, {
|
|
922
|
-
readonly indexed: false;
|
|
923
|
-
readonly internalType: "uint256";
|
|
924
|
-
readonly name: "amount";
|
|
925
|
-
readonly type: "uint256";
|
|
926
|
-
}, {
|
|
927
|
-
readonly indexed: false;
|
|
928
|
-
readonly internalType: "uint256";
|
|
929
|
-
readonly name: "readyAt";
|
|
930
|
-
readonly type: "uint256";
|
|
931
|
-
}];
|
|
932
|
-
readonly name: "WithdrawQueued";
|
|
933
|
-
readonly type: "event";
|
|
934
|
-
}, {
|
|
935
|
-
readonly anonymous: false;
|
|
936
|
-
readonly inputs: readonly [{
|
|
937
|
-
readonly indexed: false;
|
|
938
|
-
readonly internalType: "uint256";
|
|
939
|
-
readonly name: "oldValue";
|
|
940
|
-
readonly type: "uint256";
|
|
941
|
-
}, {
|
|
942
|
-
readonly indexed: false;
|
|
943
|
-
readonly internalType: "uint256";
|
|
944
|
-
readonly name: "newValue";
|
|
945
|
-
readonly type: "uint256";
|
|
946
|
-
}];
|
|
947
|
-
readonly name: "WithdrawTimelockDurationUpdated";
|
|
948
|
-
readonly type: "event";
|
|
949
|
-
}, {
|
|
950
|
-
readonly anonymous: false;
|
|
951
|
-
readonly inputs: readonly [{
|
|
952
|
-
readonly indexed: false;
|
|
953
|
-
readonly internalType: "bool";
|
|
954
|
-
readonly name: "isPaused";
|
|
955
|
-
readonly type: "bool";
|
|
956
|
-
}];
|
|
957
|
-
readonly name: "WithdrawalsPauseStatusChanged";
|
|
958
|
-
readonly type: "event";
|
|
959
|
-
}, {
|
|
960
|
-
readonly inputs: readonly [{
|
|
961
|
-
readonly internalType: "address";
|
|
962
|
-
readonly name: "adapter";
|
|
963
|
-
readonly type: "address";
|
|
964
|
-
}, {
|
|
965
|
-
readonly internalType: "bytes";
|
|
966
|
-
readonly name: "data";
|
|
967
|
-
readonly type: "bytes";
|
|
968
|
-
}, {
|
|
969
|
-
readonly internalType: "uint256";
|
|
970
|
-
readonly name: "amount";
|
|
971
|
-
readonly type: "uint256";
|
|
972
|
-
}];
|
|
973
|
-
readonly name: "borrow";
|
|
974
|
-
readonly outputs: readonly [];
|
|
975
|
-
readonly stateMutability: "nonpayable";
|
|
976
|
-
readonly type: "function";
|
|
977
|
-
}, {
|
|
978
|
-
readonly inputs: readonly [{
|
|
979
|
-
readonly internalType: "address";
|
|
980
|
-
readonly name: "adapter";
|
|
981
|
-
readonly type: "address";
|
|
982
|
-
}, {
|
|
983
|
-
readonly internalType: "address";
|
|
984
|
-
readonly name: "user";
|
|
985
|
-
readonly type: "address";
|
|
986
|
-
}, {
|
|
987
|
-
readonly internalType: "bytes";
|
|
988
|
-
readonly name: "data";
|
|
989
|
-
readonly type: "bytes";
|
|
990
|
-
}];
|
|
991
|
-
readonly name: "calculateHealthFactor";
|
|
992
|
-
readonly outputs: readonly [{
|
|
993
|
-
readonly internalType: "uint256";
|
|
994
|
-
readonly name: "";
|
|
995
|
-
readonly type: "uint256";
|
|
996
|
-
}];
|
|
997
|
-
readonly stateMutability: "pure";
|
|
998
|
-
readonly type: "function";
|
|
999
|
-
}, {
|
|
1000
|
-
readonly inputs: readonly [];
|
|
1001
|
-
readonly name: "claimCollectorRewards";
|
|
1002
|
-
readonly outputs: readonly [{
|
|
1003
|
-
readonly internalType: "uint256";
|
|
1004
|
-
readonly name: "";
|
|
1005
|
-
readonly type: "uint256";
|
|
1006
|
-
}];
|
|
1007
|
-
readonly stateMutability: "nonpayable";
|
|
1008
|
-
readonly type: "function";
|
|
1009
|
-
}, {
|
|
1010
|
-
readonly inputs: readonly [];
|
|
1011
|
-
readonly name: "claimReward";
|
|
1012
|
-
readonly outputs: readonly [{
|
|
1013
|
-
readonly internalType: "bool";
|
|
1014
|
-
readonly name: "";
|
|
1015
|
-
readonly type: "bool";
|
|
1016
|
-
}];
|
|
1017
|
-
readonly stateMutability: "nonpayable";
|
|
1018
|
-
readonly type: "function";
|
|
1019
|
-
}, {
|
|
1020
|
-
readonly inputs: readonly [{
|
|
1021
|
-
readonly internalType: "address";
|
|
1022
|
-
readonly name: "adapter";
|
|
1023
|
-
readonly type: "address";
|
|
1024
|
-
}, {
|
|
1025
|
-
readonly internalType: "bytes";
|
|
1026
|
-
readonly name: "data";
|
|
1027
|
-
readonly type: "bytes";
|
|
1028
|
-
}];
|
|
1029
|
-
readonly name: "closeLiquidation";
|
|
1030
|
-
readonly outputs: readonly [];
|
|
1031
|
-
readonly stateMutability: "nonpayable";
|
|
1032
|
-
readonly type: "function";
|
|
1033
|
-
}, {
|
|
1034
|
-
readonly inputs: readonly [{
|
|
1035
|
-
readonly internalType: "uint256";
|
|
1036
|
-
readonly name: "amount";
|
|
1037
|
-
readonly type: "uint256";
|
|
1038
|
-
}];
|
|
1039
|
-
readonly name: "deposit";
|
|
1040
|
-
readonly outputs: readonly [];
|
|
1041
|
-
readonly stateMutability: "nonpayable";
|
|
1042
|
-
readonly type: "function";
|
|
1043
|
-
}, {
|
|
1044
|
-
readonly inputs: readonly [{
|
|
1045
|
-
readonly internalType: "address";
|
|
1046
|
-
readonly name: "adapter";
|
|
1047
|
-
readonly type: "address";
|
|
1048
|
-
}, {
|
|
1049
|
-
readonly internalType: "bytes";
|
|
1050
|
-
readonly name: "data";
|
|
1051
|
-
readonly type: "bytes";
|
|
1052
|
-
}];
|
|
1053
|
-
readonly name: "depositAsset";
|
|
1054
|
-
readonly outputs: readonly [];
|
|
1055
|
-
readonly stateMutability: "nonpayable";
|
|
1056
|
-
readonly type: "function";
|
|
1057
|
-
}, {
|
|
1058
|
-
readonly inputs: readonly [{
|
|
1059
|
-
readonly internalType: "address";
|
|
1060
|
-
readonly name: "adapter";
|
|
1061
|
-
readonly type: "address";
|
|
1062
|
-
}, {
|
|
1063
|
-
readonly internalType: "address";
|
|
1064
|
-
readonly name: "user";
|
|
1065
|
-
readonly type: "address";
|
|
1066
|
-
}, {
|
|
1067
|
-
readonly internalType: "bytes";
|
|
1068
|
-
readonly name: "data";
|
|
1069
|
-
readonly type: "bytes";
|
|
1070
|
-
}];
|
|
1071
|
-
readonly name: "finalizeLiquidation";
|
|
1072
|
-
readonly outputs: readonly [];
|
|
1073
|
-
readonly stateMutability: "nonpayable";
|
|
1074
|
-
readonly type: "function";
|
|
1075
|
-
}, {
|
|
1076
|
-
readonly inputs: readonly [{
|
|
1077
|
-
readonly internalType: "address";
|
|
1078
|
-
readonly name: "";
|
|
1079
|
-
readonly type: "address";
|
|
1080
|
-
}, {
|
|
1081
|
-
readonly internalType: "address";
|
|
1082
|
-
readonly name: "";
|
|
1083
|
-
readonly type: "address";
|
|
1084
|
-
}, {
|
|
1085
|
-
readonly internalType: "bytes";
|
|
1086
|
-
readonly name: "";
|
|
1087
|
-
readonly type: "bytes";
|
|
1088
|
-
}];
|
|
1089
|
-
readonly name: "getAssetValue";
|
|
1090
|
-
readonly outputs: readonly [{
|
|
1091
|
-
readonly internalType: "uint256";
|
|
1092
|
-
readonly name: "";
|
|
1093
|
-
readonly type: "uint256";
|
|
1094
|
-
}];
|
|
1095
|
-
readonly stateMutability: "pure";
|
|
1096
|
-
readonly type: "function";
|
|
1097
|
-
}, {
|
|
1098
|
-
readonly inputs: readonly [];
|
|
1099
|
-
readonly name: "getNormalizedDebt";
|
|
1100
|
-
readonly outputs: readonly [{
|
|
1101
|
-
readonly internalType: "uint256";
|
|
1102
|
-
readonly name: "";
|
|
1103
|
-
readonly type: "uint256";
|
|
1104
|
-
}];
|
|
1105
|
-
readonly stateMutability: "view";
|
|
1106
|
-
readonly type: "function";
|
|
1107
|
-
}, {
|
|
1108
|
-
readonly inputs: readonly [];
|
|
1109
|
-
readonly name: "getNormalizedIncome";
|
|
1110
|
-
readonly outputs: readonly [{
|
|
1111
|
-
readonly internalType: "uint256";
|
|
1112
|
-
readonly name: "";
|
|
1113
|
-
readonly type: "uint256";
|
|
1114
|
-
}];
|
|
1115
|
-
readonly stateMutability: "pure";
|
|
1116
|
-
readonly type: "function";
|
|
1117
|
-
}, {
|
|
1118
|
-
readonly inputs: readonly [{
|
|
1119
|
-
readonly internalType: "address";
|
|
1120
|
-
readonly name: "adapter";
|
|
1121
|
-
readonly type: "address";
|
|
1122
|
-
}, {
|
|
1123
|
-
readonly internalType: "address";
|
|
1124
|
-
readonly name: "user";
|
|
1125
|
-
readonly type: "address";
|
|
1126
|
-
}, {
|
|
1127
|
-
readonly internalType: "bytes";
|
|
1128
|
-
readonly name: "data";
|
|
1129
|
-
readonly type: "bytes";
|
|
1130
|
-
}];
|
|
1131
|
-
readonly name: "getPosition";
|
|
1132
|
-
readonly outputs: readonly [{
|
|
1133
|
-
readonly components: readonly [{
|
|
1134
|
-
readonly internalType: "uint256";
|
|
1135
|
-
readonly name: "rawDebtBalance";
|
|
1136
|
-
readonly type: "uint256";
|
|
1137
|
-
}, {
|
|
1138
|
-
readonly internalType: "bool";
|
|
1139
|
-
readonly name: "isUnderLiquidation";
|
|
1140
|
-
readonly type: "bool";
|
|
1141
|
-
}, {
|
|
1142
|
-
readonly internalType: "uint256";
|
|
1143
|
-
readonly name: "liquidationStartTime";
|
|
1144
|
-
readonly type: "uint256";
|
|
1145
|
-
}, {
|
|
1146
|
-
readonly internalType: "uint256";
|
|
1147
|
-
readonly name: "positionIndex";
|
|
1148
|
-
readonly type: "uint256";
|
|
1149
|
-
}, {
|
|
1150
|
-
readonly internalType: "bool";
|
|
1151
|
-
readonly name: "isInsured";
|
|
1152
|
-
readonly type: "bool";
|
|
1153
|
-
}, {
|
|
1154
|
-
readonly internalType: "uint256";
|
|
1155
|
-
readonly name: "rawInsuredBalance";
|
|
1156
|
-
readonly type: "uint256";
|
|
1157
|
-
}];
|
|
1158
|
-
readonly internalType: "struct ILendingPoolStorage.CollateralPosition";
|
|
1159
|
-
readonly name: "";
|
|
1160
|
-
readonly type: "tuple";
|
|
1161
|
-
}];
|
|
1162
|
-
readonly stateMutability: "view";
|
|
1163
|
-
readonly type: "function";
|
|
1164
|
-
}, {
|
|
1165
|
-
readonly inputs: readonly [{
|
|
1166
|
-
readonly internalType: "address";
|
|
1167
|
-
readonly name: "adapter";
|
|
1168
|
-
readonly type: "address";
|
|
1169
|
-
}, {
|
|
1170
|
-
readonly internalType: "address";
|
|
1171
|
-
readonly name: "user";
|
|
1172
|
-
readonly type: "address";
|
|
1173
|
-
}, {
|
|
1174
|
-
readonly internalType: "bytes";
|
|
1175
|
-
readonly name: "data";
|
|
1176
|
-
readonly type: "bytes";
|
|
1177
|
-
}];
|
|
1178
|
-
readonly name: "getPositionData";
|
|
1179
|
-
readonly outputs: readonly [{
|
|
1180
|
-
readonly internalType: "uint256";
|
|
1181
|
-
readonly name: "";
|
|
1182
|
-
readonly type: "uint256";
|
|
1183
|
-
}, {
|
|
1184
|
-
readonly internalType: "uint256";
|
|
1185
|
-
readonly name: "";
|
|
1186
|
-
readonly type: "uint256";
|
|
1187
|
-
}];
|
|
1188
|
-
readonly stateMutability: "view";
|
|
1189
|
-
readonly type: "function";
|
|
1190
|
-
}, {
|
|
1191
|
-
readonly inputs: readonly [{
|
|
1192
|
-
readonly internalType: "address";
|
|
1193
|
-
readonly name: "adapter";
|
|
1194
|
-
readonly type: "address";
|
|
1195
|
-
}, {
|
|
1196
|
-
readonly internalType: "address";
|
|
1197
|
-
readonly name: "user";
|
|
1198
|
-
readonly type: "address";
|
|
1199
|
-
}, {
|
|
1200
|
-
readonly internalType: "bytes";
|
|
1201
|
-
readonly name: "data";
|
|
1202
|
-
readonly type: "bytes";
|
|
1203
|
-
}];
|
|
1204
|
-
readonly name: "getPositionDebt";
|
|
1205
|
-
readonly outputs: readonly [{
|
|
1206
|
-
readonly internalType: "uint256";
|
|
1207
|
-
readonly name: "";
|
|
1208
|
-
readonly type: "uint256";
|
|
1209
|
-
}];
|
|
1210
|
-
readonly stateMutability: "view";
|
|
1211
|
-
readonly type: "function";
|
|
1212
|
-
}, {
|
|
1213
|
-
readonly inputs: readonly [{
|
|
1214
|
-
readonly internalType: "address";
|
|
1215
|
-
readonly name: "adapter";
|
|
1216
|
-
readonly type: "address";
|
|
1217
|
-
}, {
|
|
1218
|
-
readonly internalType: "address";
|
|
1219
|
-
readonly name: "user";
|
|
1220
|
-
readonly type: "address";
|
|
1221
|
-
}, {
|
|
1222
|
-
readonly internalType: "bytes";
|
|
1223
|
-
readonly name: "data";
|
|
1224
|
-
readonly type: "bytes";
|
|
1225
|
-
}];
|
|
1226
|
-
readonly name: "getPositionScaledDebt";
|
|
1227
|
-
readonly outputs: readonly [{
|
|
1228
|
-
readonly internalType: "uint256";
|
|
1229
|
-
readonly name: "";
|
|
1230
|
-
readonly type: "uint256";
|
|
1231
|
-
}];
|
|
1232
|
-
readonly stateMutability: "view";
|
|
1233
|
-
readonly type: "function";
|
|
1234
|
-
}, {
|
|
1235
|
-
readonly inputs: readonly [{
|
|
1236
|
-
readonly internalType: "address";
|
|
1237
|
-
readonly name: "userAddress";
|
|
1238
|
-
readonly type: "address";
|
|
1239
|
-
}];
|
|
1240
|
-
readonly name: "getPositionsScaledDebt";
|
|
1241
|
-
readonly outputs: readonly [{
|
|
1242
|
-
readonly internalType: "uint256";
|
|
1243
|
-
readonly name: "";
|
|
1244
|
-
readonly type: "uint256";
|
|
1245
|
-
}];
|
|
1246
|
-
readonly stateMutability: "view";
|
|
1247
|
-
readonly type: "function";
|
|
1248
|
-
}, {
|
|
1249
|
-
readonly inputs: readonly [];
|
|
1250
|
-
readonly name: "getRAACNFTAddress";
|
|
1251
|
-
readonly outputs: readonly [{
|
|
1252
|
-
readonly internalType: "address";
|
|
1253
|
-
readonly name: "";
|
|
1254
|
-
readonly type: "address";
|
|
1255
|
-
}];
|
|
1256
|
-
readonly stateMutability: "view";
|
|
1257
|
-
readonly type: "function";
|
|
1258
|
-
}, {
|
|
1259
|
-
readonly inputs: readonly [{
|
|
1260
|
-
readonly internalType: "address";
|
|
1261
|
-
readonly name: "user";
|
|
1262
|
-
readonly type: "address";
|
|
1263
|
-
}];
|
|
1264
|
-
readonly name: "getUserCollateralValue";
|
|
1265
|
-
readonly outputs: readonly [{
|
|
1266
|
-
readonly internalType: "uint256";
|
|
1267
|
-
readonly name: "";
|
|
1268
|
-
readonly type: "uint256";
|
|
1269
|
-
}];
|
|
1270
|
-
readonly stateMutability: "pure";
|
|
1271
|
-
readonly type: "function";
|
|
1272
|
-
}, {
|
|
1273
|
-
readonly inputs: readonly [{
|
|
1274
|
-
readonly internalType: "address";
|
|
1275
|
-
readonly name: "adapter";
|
|
1276
|
-
readonly type: "address";
|
|
1277
|
-
}, {
|
|
1278
|
-
readonly internalType: "address";
|
|
1279
|
-
readonly name: "user";
|
|
1280
|
-
readonly type: "address";
|
|
1281
|
-
}, {
|
|
1282
|
-
readonly internalType: "bytes";
|
|
1283
|
-
readonly name: "data";
|
|
1284
|
-
readonly type: "bytes";
|
|
1285
|
-
}];
|
|
1286
|
-
readonly name: "initiateLiquidation";
|
|
1287
|
-
readonly outputs: readonly [];
|
|
1288
|
-
readonly stateMutability: "nonpayable";
|
|
1289
|
-
readonly type: "function";
|
|
1290
|
-
}, {
|
|
1291
|
-
readonly inputs: readonly [{
|
|
1292
|
-
readonly internalType: "address";
|
|
1293
|
-
readonly name: "";
|
|
1294
|
-
readonly type: "address";
|
|
1295
|
-
}, {
|
|
1296
|
-
readonly internalType: "address";
|
|
1297
|
-
readonly name: "";
|
|
1298
|
-
readonly type: "address";
|
|
1299
|
-
}, {
|
|
1300
|
-
readonly internalType: "uint256";
|
|
1301
|
-
readonly name: "";
|
|
1302
|
-
readonly type: "uint256";
|
|
1303
|
-
}, {
|
|
1304
|
-
readonly internalType: "bytes";
|
|
1305
|
-
readonly name: "";
|
|
1306
|
-
readonly type: "bytes";
|
|
1307
|
-
}];
|
|
1308
|
-
readonly name: "onERC721Received";
|
|
1309
|
-
readonly outputs: readonly [{
|
|
1310
|
-
readonly internalType: "bytes4";
|
|
1311
|
-
readonly name: "";
|
|
1312
|
-
readonly type: "bytes4";
|
|
1313
|
-
}];
|
|
1314
|
-
readonly stateMutability: "pure";
|
|
1315
|
-
readonly type: "function";
|
|
1316
|
-
}, {
|
|
1317
|
-
readonly inputs: readonly [];
|
|
1318
|
-
readonly name: "openVaultPosition";
|
|
1319
|
-
readonly outputs: readonly [];
|
|
1320
|
-
readonly stateMutability: "nonpayable";
|
|
1321
|
-
readonly type: "function";
|
|
1322
|
-
}, {
|
|
1323
|
-
readonly inputs: readonly [{
|
|
1324
|
-
readonly internalType: "address";
|
|
1325
|
-
readonly name: "adapter";
|
|
1326
|
-
readonly type: "address";
|
|
1327
|
-
}, {
|
|
1328
|
-
readonly internalType: "bytes";
|
|
1329
|
-
readonly name: "data";
|
|
1330
|
-
readonly type: "bytes";
|
|
1331
|
-
}, {
|
|
1332
|
-
readonly internalType: "uint256";
|
|
1333
|
-
readonly name: "amount";
|
|
1334
|
-
readonly type: "uint256";
|
|
1335
|
-
}];
|
|
1336
|
-
readonly name: "repay";
|
|
1337
|
-
readonly outputs: readonly [];
|
|
1338
|
-
readonly stateMutability: "nonpayable";
|
|
1339
|
-
readonly type: "function";
|
|
1340
|
-
}, {
|
|
1341
|
-
readonly inputs: readonly [{
|
|
1342
|
-
readonly internalType: "address";
|
|
1343
|
-
readonly name: "adapter";
|
|
1344
|
-
readonly type: "address";
|
|
1345
|
-
}, {
|
|
1346
|
-
readonly internalType: "bytes";
|
|
1347
|
-
readonly name: "data";
|
|
1348
|
-
readonly type: "bytes";
|
|
1349
|
-
}, {
|
|
1350
|
-
readonly internalType: "uint256";
|
|
1351
|
-
readonly name: "amount";
|
|
1352
|
-
readonly type: "uint256";
|
|
1353
|
-
}, {
|
|
1354
|
-
readonly internalType: "address";
|
|
1355
|
-
readonly name: "onBehalfOf";
|
|
1356
|
-
readonly type: "address";
|
|
1357
|
-
}];
|
|
1358
|
-
readonly name: "repayOnBehalf";
|
|
1359
|
-
readonly outputs: readonly [];
|
|
1360
|
-
readonly stateMutability: "nonpayable";
|
|
1361
|
-
readonly type: "function";
|
|
1362
|
-
}, {
|
|
1363
|
-
readonly inputs: readonly [{
|
|
1364
|
-
readonly internalType: "uint256";
|
|
1365
|
-
readonly name: "newNormalizedDebt";
|
|
1366
|
-
readonly type: "uint256";
|
|
1367
|
-
}];
|
|
1368
|
-
readonly name: "setNormalizedDebt";
|
|
1369
|
-
readonly outputs: readonly [];
|
|
1370
|
-
readonly stateMutability: "nonpayable";
|
|
1371
|
-
readonly type: "function";
|
|
1372
|
-
}, {
|
|
1373
|
-
readonly inputs: readonly [{
|
|
1374
|
-
readonly internalType: "enum ILendingPool.OwnerParameter";
|
|
1375
|
-
readonly name: "param";
|
|
1376
|
-
readonly type: "uint8";
|
|
1377
|
-
}, {
|
|
1378
|
-
readonly internalType: "uint256";
|
|
1379
|
-
readonly name: "newValue";
|
|
1380
|
-
readonly type: "uint256";
|
|
1381
|
-
}];
|
|
1382
|
-
readonly name: "setParameter";
|
|
1383
|
-
readonly outputs: readonly [];
|
|
1384
|
-
readonly stateMutability: "nonpayable";
|
|
1385
|
-
readonly type: "function";
|
|
1386
|
-
}, {
|
|
1387
|
-
readonly inputs: readonly [{
|
|
1388
|
-
readonly internalType: "uint256";
|
|
1389
|
-
readonly name: "newPrimeRate";
|
|
1390
|
-
readonly type: "uint256";
|
|
1391
|
-
}];
|
|
1392
|
-
readonly name: "setPrimeRate";
|
|
1393
|
-
readonly outputs: readonly [];
|
|
1394
|
-
readonly stateMutability: "nonpayable";
|
|
1395
|
-
readonly type: "function";
|
|
1396
|
-
}, {
|
|
1397
|
-
readonly inputs: readonly [{
|
|
1398
|
-
readonly internalType: "address";
|
|
1399
|
-
readonly name: "newStabilityPool";
|
|
1400
|
-
readonly type: "address";
|
|
1401
|
-
}];
|
|
1402
|
-
readonly name: "setStabilityPool";
|
|
1403
|
-
readonly outputs: readonly [];
|
|
1404
|
-
readonly stateMutability: "nonpayable";
|
|
1405
|
-
readonly type: "function";
|
|
1406
|
-
}, {
|
|
1407
|
-
readonly inputs: readonly [{
|
|
1408
|
-
readonly internalType: "address";
|
|
1409
|
-
readonly name: "_adapter";
|
|
1410
|
-
readonly type: "address";
|
|
1411
|
-
}];
|
|
1412
|
-
readonly name: "supportedAdapter";
|
|
1413
|
-
readonly outputs: readonly [{
|
|
1414
|
-
readonly internalType: "bool";
|
|
1415
|
-
readonly name: "";
|
|
1416
|
-
readonly type: "bool";
|
|
1417
|
-
}];
|
|
1418
|
-
readonly stateMutability: "nonpayable";
|
|
1419
|
-
readonly type: "function";
|
|
1420
|
-
}, {
|
|
1421
|
-
readonly inputs: readonly [{
|
|
1422
|
-
readonly internalType: "address";
|
|
1423
|
-
readonly name: "recipient";
|
|
1424
|
-
readonly type: "address";
|
|
1425
|
-
}, {
|
|
1426
|
-
readonly internalType: "uint256";
|
|
1427
|
-
readonly name: "amountUnderlying";
|
|
1428
|
-
readonly type: "uint256";
|
|
1429
|
-
}];
|
|
1430
|
-
readonly name: "transferAccruedDust";
|
|
1431
|
-
readonly outputs: readonly [];
|
|
1432
|
-
readonly stateMutability: "nonpayable";
|
|
1433
|
-
readonly type: "function";
|
|
1434
|
-
}, {
|
|
1435
|
-
readonly inputs: readonly [];
|
|
1436
|
-
readonly name: "updateState";
|
|
1437
|
-
readonly outputs: readonly [];
|
|
1438
|
-
readonly stateMutability: "nonpayable";
|
|
1439
|
-
readonly type: "function";
|
|
1440
|
-
}, {
|
|
1441
|
-
readonly inputs: readonly [{
|
|
1442
|
-
readonly internalType: "uint256";
|
|
1443
|
-
readonly name: "amount";
|
|
1444
|
-
readonly type: "uint256";
|
|
1445
|
-
}];
|
|
1446
|
-
readonly name: "withdraw";
|
|
1447
|
-
readonly outputs: readonly [];
|
|
1448
|
-
readonly stateMutability: "nonpayable";
|
|
1449
|
-
readonly type: "function";
|
|
1450
|
-
}, {
|
|
1451
|
-
readonly inputs: readonly [{
|
|
1452
|
-
readonly internalType: "address";
|
|
1453
|
-
readonly name: "adapter";
|
|
1454
|
-
readonly type: "address";
|
|
1455
|
-
}, {
|
|
1456
|
-
readonly internalType: "bytes";
|
|
1457
|
-
readonly name: "data";
|
|
1458
|
-
readonly type: "bytes";
|
|
1459
|
-
}];
|
|
1460
|
-
readonly name: "withdrawAsset";
|
|
1461
|
-
readonly outputs: readonly [];
|
|
1462
|
-
readonly stateMutability: "nonpayable";
|
|
1463
|
-
readonly type: "function";
|
|
1464
|
-
}, {
|
|
1465
|
-
readonly stateMutability: "payable";
|
|
1466
|
-
readonly type: "receive";
|
|
1467
|
-
}];
|
|
1468
|
-
static createInterface(): MockLendingPoolDebtTokenInterface;
|
|
1469
|
-
static connect(address: string, runner?: ContractRunner | null): MockLendingPoolDebtToken;
|
|
1470
|
-
}
|
|
1471
|
-
export {};
|