@raac/rpc 1.1.0-beta.42 → 1.1.0-beta.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +4 -0
- package/dist/minter/get.js +1 -3
- package/dist/minter/getApy.js +2 -2
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +2 -1
- package/dist/pools/stabilityPool/_helpers.js +11 -0
- package/dist/pools/stabilityPool/getStabilityPoolInfo.js +2 -18
- package/dist/pools/stabilityPool/getWithdrawRequestInfo.js +23 -0
- package/dist/pools/stabilityPool/requestWithdraw.js +23 -0
- package/dist/scripts/index.js +2 -4
- package/dist/types/RPCLibrary.d.ts +4 -0
- package/dist/types/pools/lendingPool/getParameters.d.ts +1 -1
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +1 -0
- package/dist/types/pools/stabilityPool/_helpers.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +0 -2
- package/dist/types/pools/stabilityPool/getWithdrawRequestInfo.d.ts +9 -0
- package/dist/types/pools/stabilityPool/requestWithdraw.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -3
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +1 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +117 -170
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +17 -5
- package/dist/types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +51 -50
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +19 -1
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +2 -6
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +1 -41
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +36 -20
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +116 -10
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +37 -0
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +49 -107
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +34 -42
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +34 -42
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +42 -42
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +41 -13
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +19 -7
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +237 -59
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +41 -13
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +231 -0
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +132 -8
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -1
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +49 -9
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +6 -109
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +117 -31
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +11 -19
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +176 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +17 -7
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts +218 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +47 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +64 -15
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +3 -2
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +85 -44
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +23 -42
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +101 -5
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +2 -6
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +1 -37
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +21 -20
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +47 -1
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +8 -68
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +35 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +16 -54
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +157 -40
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +45 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +1 -13
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +91 -29
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +7 -19
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +70 -13
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +37 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +1 -3
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +33 -1
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +23 -58
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +350 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +37 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +151 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +169 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +171 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +4 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +2 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +1 -5
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +16 -54
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +39 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +234 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +5 -1
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +185 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +33 -2
- package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +34 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +472 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +632 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -9
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +393 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +149 -226
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +97 -60
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +179 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +49 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +180 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +180 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +14 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -71
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +43 -10
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +135 -14
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +74 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +52 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +35 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +46 -38
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +95 -131
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +66 -38
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +76 -38
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +44 -22
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +56 -8
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +44 -22
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +276 -73
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +320 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +159 -11
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +97 -7
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +2 -173
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +146 -24
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +36 -16
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +21 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +311 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +26 -6
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +350 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +72 -19
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +2 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +66 -95
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +20 -49
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +133 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +24 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -60
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +19 -16
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +52 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +1 -89
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +42 -78
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +180 -45
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +80 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +0 -20
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +84 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +8 -18
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +91 -18
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts +41 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +21 -68
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +661 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +242 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +184 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +4 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +21 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +43 -69
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -5
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +21 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +21 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +417 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +21 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +21 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +224 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +34 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +64 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +21 -1
- package/dist/types/typechain-types/index.d.ts +52 -16
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +67 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +205 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +69 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +69 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +103 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +143 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +529 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +109 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +192 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +45 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +155 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +156 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +731 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@chainlink/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +77 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +231 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +318 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +318 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +12 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +68 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +36 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts +36 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +69 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/@openzeppelin/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/common.d.ts +50 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +264 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +909 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +127 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/Treasury.d.ts +298 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/index.d.ts +7 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +573 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +1367 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +1103 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +641 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +1371 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +1375 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +586 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +477 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/index.d.ts +18 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +721 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +808 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +509 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +183 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +310 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +221 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +227 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +241 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +263 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +2112 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +432 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +530 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +485 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +186 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +136 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +283 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +810 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +168 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +203 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +231 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +284 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DEToken.d.ts +424 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DebtToken.d.ts +326 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/IndexToken.d.ts +340 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/LPToken.d.ts +224 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +897 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACToken.d.ts +401 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RToken.d.ts +543 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +264 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +1077 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +176 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +174 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +188 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts +218 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +47 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RWAVault.d.ts +560 -0
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/contracts/index.d.ts +10 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +63 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IHousePrices.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +240 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +75 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IPoolManager.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +164 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IUSDC.d.ts +129 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +59 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +537 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +120 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +269 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +623 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +235 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +523 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +351 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +551 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +309 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/index.d.ts +16 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +332 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +302 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +345 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +238 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +136 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +57 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +185 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +152 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +51 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +1163 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +102 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +51 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +443 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +270 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +279 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +187 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +630 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +346 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +385 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +197 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +621 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +265 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +83 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +87 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +176 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +357 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/index.d.ts +11 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +137 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +216 -0
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +55 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/LockManager.d.ts +94 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +93 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +45 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +66 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +80 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +124 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +20 -0
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +134 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +225 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +350 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +56 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +845 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +76 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/index.d.ts +18 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +394 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +151 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +41 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +45 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +43 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +169 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +731 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +171 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +237 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +243 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/index.d.ts +10 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +121 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +152 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +1183 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +486 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +55 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +69 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +39 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +47 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +212 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +234 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +155 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +229 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +292 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +216 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +187 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +155 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +510 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +186 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +290 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +204 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +83 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +173 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +160 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +41 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +281 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/index.d.ts +7 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +203 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +78 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +229 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +185 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +29 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +71 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +100 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/Auction.d.ts +275 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/AuctionFactory.d.ts +209 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENO.d.ts +293 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENOFactory.d.ts +151 -0
- package/dist/types/typechain-types/typechain-types/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +268 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +48 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +90 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +86 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +93 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +191 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +663 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +139 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +194 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +27 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +155 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +32 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +171 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +944 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +95 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +289 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts +43 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +472 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +632 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +50 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +26 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +82 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +63 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +393 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1329 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +49 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +223 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +437 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +716 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +1815 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1448 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +896 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1856 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1866 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +950 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +797 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1052 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1103 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +717 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +245 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +436 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +334 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +336 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +74 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +52 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +403 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +407 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +586 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +2699 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +744 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +674 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +303 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +275 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +390 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +277 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +1166 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +320 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +276 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +407 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +741 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +576 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +602 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +401 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +1358 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +652 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +901 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +465 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1544 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +285 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +311 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +307 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +350 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +861 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +71 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +272 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +77 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +43 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +189 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +147 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +75 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +33 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +718 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +136 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +295 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +775 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +623 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +425 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +307 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +852 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +492 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +390 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +390 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +35 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +397 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +286 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +143 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +233 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +203 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +191 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +1419 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +61 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +56 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +567 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +336 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +372 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +227 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +764 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +436 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +486 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +223 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +761 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +329 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +137 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts +41 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +115 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +258 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +503 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/index.d.ts +8 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +173 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +288 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +54 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +68 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +120 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +115 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +92 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +74 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +97 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +135 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +26 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +165 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +353 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +661 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +65 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +1194 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +36 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +65 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +100 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +615 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +37 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +66 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +62 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +242 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +944 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +184 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +352 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +354 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +224 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +1471 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +195 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +795 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +84 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +109 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +6 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +50 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +42 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +68 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +64 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +5 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +417 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +379 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +286 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +388 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +451 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +393 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +324 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +278 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +714 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +335 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +9 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +525 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +40 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +282 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +124 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +206 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +208 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +70 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +341 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +247 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +154 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +224 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +287 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +53 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +80 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +17 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +113 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +287 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +452 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +235 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +564 -0
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/typechain-types/factories/index.d.ts +3 -0
- package/dist/types/typechain-types/typechain-types/index.d.ts +437 -0
- package/package.json +1 -1
|
@@ -0,0 +1,810 @@
|
|
|
1
|
+
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
|
+
export interface StabilityPoolInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "addManager" | "balanceOf" | "complianceRegistry" | "crvUSDToken" | "deToken" | "deTokenDecimals" | "deposit" | "depositBlock" | "getManagerList" | "getPoolIndex" | "getScaledDeposit" | "getScaledTotalSupply" | "getTotalDeposits" | "getUserDeposit" | "getUserIndex" | "initialize" | "isAddressManager" | "isManager" | "lendingPool" | "liquidateBorrower" | "liquidationSplit" | "liquidationStrategyProxy" | "liquidationSwap" | "liquidityGauge" | "managerList" | "onERC721Received" | "owner" | "pause" | "paused" | "rToken" | "rTokenDecimals" | "removeManager" | "renounceOwnership" | "requestWithdraw" | "rwaVault" | "setLiquidationStrategyProxy" | "setLiquidationSwap" | "setLiquidationVaultTokenSplit" | "setLiquidityGauge" | "setRWAVault" | "setWithdrawTimelockDelay" | "setWithdrawTimelockDuration" | "transferOwnership" | "treasury" | "unpause" | "withdraw" | "withdrawTimelock" | "withdrawTimelockDelay" | "withdrawTimelockDuration"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "AllocationUpdated" | "BorrowerLiquidated" | "Deposit" | "Initialized" | "LiquidationStrategyProxyUpdated" | "LiquidationSwapUpdated" | "LiquidationVaultTokenSplitUpdated" | "LiquidityGaugeUpdated" | "LiquidityPoolSet" | "ManagerAdded" | "ManagerRemoved" | "MarketAdded" | "MarketAllocationUpdated" | "MarketRemoved" | "NFTDeposited" | "OwnershipTransferred" | "Paused" | "RAACDepositedFromPool" | "RWAVaultUpdated" | "Unpaused" | "Withdraw" | "WithdrawCancelled" | "WithdrawQueued" | "WithdrawTimelockDelayUpdated" | "WithdrawTimelockDurationUpdated"): EventFragment;
|
|
6
|
+
encodeFunctionData(functionFragment: "addManager", values: [AddressLike]): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "complianceRegistry", values?: undefined): string;
|
|
9
|
+
encodeFunctionData(functionFragment: "crvUSDToken", values?: undefined): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "deToken", values?: undefined): string;
|
|
11
|
+
encodeFunctionData(functionFragment: "deTokenDecimals", values?: undefined): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "deposit", values: [BigNumberish]): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "depositBlock", values: [AddressLike]): string;
|
|
14
|
+
encodeFunctionData(functionFragment: "getManagerList", values?: undefined): string;
|
|
15
|
+
encodeFunctionData(functionFragment: "getPoolIndex", values?: undefined): string;
|
|
16
|
+
encodeFunctionData(functionFragment: "getScaledDeposit", values: [AddressLike]): string;
|
|
17
|
+
encodeFunctionData(functionFragment: "getScaledTotalSupply", values?: undefined): string;
|
|
18
|
+
encodeFunctionData(functionFragment: "getTotalDeposits", values?: undefined): string;
|
|
19
|
+
encodeFunctionData(functionFragment: "getUserDeposit", values: [AddressLike]): string;
|
|
20
|
+
encodeFunctionData(functionFragment: "getUserIndex", values: [AddressLike]): string;
|
|
21
|
+
encodeFunctionData(functionFragment: "initialize", values: [
|
|
22
|
+
AddressLike,
|
|
23
|
+
AddressLike,
|
|
24
|
+
AddressLike,
|
|
25
|
+
AddressLike,
|
|
26
|
+
AddressLike,
|
|
27
|
+
AddressLike
|
|
28
|
+
]): string;
|
|
29
|
+
encodeFunctionData(functionFragment: "isAddressManager", values: [AddressLike]): string;
|
|
30
|
+
encodeFunctionData(functionFragment: "isManager", values: [AddressLike]): string;
|
|
31
|
+
encodeFunctionData(functionFragment: "lendingPool", values?: undefined): string;
|
|
32
|
+
encodeFunctionData(functionFragment: "liquidateBorrower", values: [AddressLike, AddressLike, AddressLike, BytesLike]): string;
|
|
33
|
+
encodeFunctionData(functionFragment: "liquidationSplit", values?: undefined): string;
|
|
34
|
+
encodeFunctionData(functionFragment: "liquidationStrategyProxy", values?: undefined): string;
|
|
35
|
+
encodeFunctionData(functionFragment: "liquidationSwap", values?: undefined): string;
|
|
36
|
+
encodeFunctionData(functionFragment: "liquidityGauge", values?: undefined): string;
|
|
37
|
+
encodeFunctionData(functionFragment: "managerList", values: [BigNumberish]): string;
|
|
38
|
+
encodeFunctionData(functionFragment: "onERC721Received", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
|
|
39
|
+
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
40
|
+
encodeFunctionData(functionFragment: "pause", values?: undefined): string;
|
|
41
|
+
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
42
|
+
encodeFunctionData(functionFragment: "rToken", values?: undefined): string;
|
|
43
|
+
encodeFunctionData(functionFragment: "rTokenDecimals", values?: undefined): string;
|
|
44
|
+
encodeFunctionData(functionFragment: "removeManager", values: [AddressLike]): string;
|
|
45
|
+
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
46
|
+
encodeFunctionData(functionFragment: "requestWithdraw", values: [BigNumberish]): string;
|
|
47
|
+
encodeFunctionData(functionFragment: "rwaVault", values?: undefined): string;
|
|
48
|
+
encodeFunctionData(functionFragment: "setLiquidationStrategyProxy", values: [AddressLike]): string;
|
|
49
|
+
encodeFunctionData(functionFragment: "setLiquidationSwap", values: [AddressLike]): string;
|
|
50
|
+
encodeFunctionData(functionFragment: "setLiquidationVaultTokenSplit", values: [BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
|
|
51
|
+
encodeFunctionData(functionFragment: "setLiquidityGauge", values: [AddressLike]): string;
|
|
52
|
+
encodeFunctionData(functionFragment: "setRWAVault", values: [AddressLike]): string;
|
|
53
|
+
encodeFunctionData(functionFragment: "setWithdrawTimelockDelay", values: [BigNumberish]): string;
|
|
54
|
+
encodeFunctionData(functionFragment: "setWithdrawTimelockDuration", values: [BigNumberish]): string;
|
|
55
|
+
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
56
|
+
encodeFunctionData(functionFragment: "treasury", values?: undefined): string;
|
|
57
|
+
encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
|
|
58
|
+
encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string;
|
|
59
|
+
encodeFunctionData(functionFragment: "withdrawTimelock", values: [AddressLike]): string;
|
|
60
|
+
encodeFunctionData(functionFragment: "withdrawTimelockDelay", values?: undefined): string;
|
|
61
|
+
encodeFunctionData(functionFragment: "withdrawTimelockDuration", values?: undefined): string;
|
|
62
|
+
decodeFunctionResult(functionFragment: "addManager", data: BytesLike): Result;
|
|
63
|
+
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
64
|
+
decodeFunctionResult(functionFragment: "complianceRegistry", data: BytesLike): Result;
|
|
65
|
+
decodeFunctionResult(functionFragment: "crvUSDToken", data: BytesLike): Result;
|
|
66
|
+
decodeFunctionResult(functionFragment: "deToken", data: BytesLike): Result;
|
|
67
|
+
decodeFunctionResult(functionFragment: "deTokenDecimals", data: BytesLike): Result;
|
|
68
|
+
decodeFunctionResult(functionFragment: "deposit", data: BytesLike): Result;
|
|
69
|
+
decodeFunctionResult(functionFragment: "depositBlock", data: BytesLike): Result;
|
|
70
|
+
decodeFunctionResult(functionFragment: "getManagerList", data: BytesLike): Result;
|
|
71
|
+
decodeFunctionResult(functionFragment: "getPoolIndex", data: BytesLike): Result;
|
|
72
|
+
decodeFunctionResult(functionFragment: "getScaledDeposit", data: BytesLike): Result;
|
|
73
|
+
decodeFunctionResult(functionFragment: "getScaledTotalSupply", data: BytesLike): Result;
|
|
74
|
+
decodeFunctionResult(functionFragment: "getTotalDeposits", data: BytesLike): Result;
|
|
75
|
+
decodeFunctionResult(functionFragment: "getUserDeposit", data: BytesLike): Result;
|
|
76
|
+
decodeFunctionResult(functionFragment: "getUserIndex", data: BytesLike): Result;
|
|
77
|
+
decodeFunctionResult(functionFragment: "initialize", data: BytesLike): Result;
|
|
78
|
+
decodeFunctionResult(functionFragment: "isAddressManager", data: BytesLike): Result;
|
|
79
|
+
decodeFunctionResult(functionFragment: "isManager", data: BytesLike): Result;
|
|
80
|
+
decodeFunctionResult(functionFragment: "lendingPool", data: BytesLike): Result;
|
|
81
|
+
decodeFunctionResult(functionFragment: "liquidateBorrower", data: BytesLike): Result;
|
|
82
|
+
decodeFunctionResult(functionFragment: "liquidationSplit", data: BytesLike): Result;
|
|
83
|
+
decodeFunctionResult(functionFragment: "liquidationStrategyProxy", data: BytesLike): Result;
|
|
84
|
+
decodeFunctionResult(functionFragment: "liquidationSwap", data: BytesLike): Result;
|
|
85
|
+
decodeFunctionResult(functionFragment: "liquidityGauge", data: BytesLike): Result;
|
|
86
|
+
decodeFunctionResult(functionFragment: "managerList", data: BytesLike): Result;
|
|
87
|
+
decodeFunctionResult(functionFragment: "onERC721Received", data: BytesLike): Result;
|
|
88
|
+
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
89
|
+
decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
|
|
90
|
+
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
91
|
+
decodeFunctionResult(functionFragment: "rToken", data: BytesLike): Result;
|
|
92
|
+
decodeFunctionResult(functionFragment: "rTokenDecimals", data: BytesLike): Result;
|
|
93
|
+
decodeFunctionResult(functionFragment: "removeManager", data: BytesLike): Result;
|
|
94
|
+
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
95
|
+
decodeFunctionResult(functionFragment: "requestWithdraw", data: BytesLike): Result;
|
|
96
|
+
decodeFunctionResult(functionFragment: "rwaVault", data: BytesLike): Result;
|
|
97
|
+
decodeFunctionResult(functionFragment: "setLiquidationStrategyProxy", data: BytesLike): Result;
|
|
98
|
+
decodeFunctionResult(functionFragment: "setLiquidationSwap", data: BytesLike): Result;
|
|
99
|
+
decodeFunctionResult(functionFragment: "setLiquidationVaultTokenSplit", data: BytesLike): Result;
|
|
100
|
+
decodeFunctionResult(functionFragment: "setLiquidityGauge", data: BytesLike): Result;
|
|
101
|
+
decodeFunctionResult(functionFragment: "setRWAVault", data: BytesLike): Result;
|
|
102
|
+
decodeFunctionResult(functionFragment: "setWithdrawTimelockDelay", data: BytesLike): Result;
|
|
103
|
+
decodeFunctionResult(functionFragment: "setWithdrawTimelockDuration", data: BytesLike): Result;
|
|
104
|
+
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
105
|
+
decodeFunctionResult(functionFragment: "treasury", data: BytesLike): Result;
|
|
106
|
+
decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
|
|
107
|
+
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
|
|
108
|
+
decodeFunctionResult(functionFragment: "withdrawTimelock", data: BytesLike): Result;
|
|
109
|
+
decodeFunctionResult(functionFragment: "withdrawTimelockDelay", data: BytesLike): Result;
|
|
110
|
+
decodeFunctionResult(functionFragment: "withdrawTimelockDuration", data: BytesLike): Result;
|
|
111
|
+
}
|
|
112
|
+
export declare namespace AllocationUpdatedEvent {
|
|
113
|
+
type InputTuple = [manager: AddressLike, newAllocation: BigNumberish];
|
|
114
|
+
type OutputTuple = [manager: string, newAllocation: bigint];
|
|
115
|
+
interface OutputObject {
|
|
116
|
+
manager: string;
|
|
117
|
+
newAllocation: bigint;
|
|
118
|
+
}
|
|
119
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
120
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
121
|
+
type Log = TypedEventLog<Event>;
|
|
122
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
123
|
+
}
|
|
124
|
+
export declare namespace BorrowerLiquidatedEvent {
|
|
125
|
+
type InputTuple = [
|
|
126
|
+
user: AddressLike,
|
|
127
|
+
assetAddress: AddressLike,
|
|
128
|
+
data: BytesLike,
|
|
129
|
+
amount: BigNumberish
|
|
130
|
+
];
|
|
131
|
+
type OutputTuple = [
|
|
132
|
+
user: string,
|
|
133
|
+
assetAddress: string,
|
|
134
|
+
data: string,
|
|
135
|
+
amount: bigint
|
|
136
|
+
];
|
|
137
|
+
interface OutputObject {
|
|
138
|
+
user: string;
|
|
139
|
+
assetAddress: string;
|
|
140
|
+
data: string;
|
|
141
|
+
amount: bigint;
|
|
142
|
+
}
|
|
143
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
144
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
145
|
+
type Log = TypedEventLog<Event>;
|
|
146
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
147
|
+
}
|
|
148
|
+
export declare namespace DepositEvent {
|
|
149
|
+
type InputTuple = [
|
|
150
|
+
user: AddressLike,
|
|
151
|
+
rcrvUSDAmount: BigNumberish,
|
|
152
|
+
deCRVUSDAmount: BigNumberish
|
|
153
|
+
];
|
|
154
|
+
type OutputTuple = [
|
|
155
|
+
user: string,
|
|
156
|
+
rcrvUSDAmount: bigint,
|
|
157
|
+
deCRVUSDAmount: bigint
|
|
158
|
+
];
|
|
159
|
+
interface OutputObject {
|
|
160
|
+
user: string;
|
|
161
|
+
rcrvUSDAmount: bigint;
|
|
162
|
+
deCRVUSDAmount: bigint;
|
|
163
|
+
}
|
|
164
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
165
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
166
|
+
type Log = TypedEventLog<Event>;
|
|
167
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
168
|
+
}
|
|
169
|
+
export declare namespace InitializedEvent {
|
|
170
|
+
type InputTuple = [version: BigNumberish];
|
|
171
|
+
type OutputTuple = [version: bigint];
|
|
172
|
+
interface OutputObject {
|
|
173
|
+
version: bigint;
|
|
174
|
+
}
|
|
175
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
176
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
177
|
+
type Log = TypedEventLog<Event>;
|
|
178
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
179
|
+
}
|
|
180
|
+
export declare namespace LiquidationStrategyProxyUpdatedEvent {
|
|
181
|
+
type InputTuple = [previous: AddressLike, latest: AddressLike];
|
|
182
|
+
type OutputTuple = [previous: string, latest: string];
|
|
183
|
+
interface OutputObject {
|
|
184
|
+
previous: string;
|
|
185
|
+
latest: string;
|
|
186
|
+
}
|
|
187
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
188
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
189
|
+
type Log = TypedEventLog<Event>;
|
|
190
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
191
|
+
}
|
|
192
|
+
export declare namespace LiquidationSwapUpdatedEvent {
|
|
193
|
+
type InputTuple = [previous: AddressLike, latest: AddressLike];
|
|
194
|
+
type OutputTuple = [previous: string, latest: string];
|
|
195
|
+
interface OutputObject {
|
|
196
|
+
previous: string;
|
|
197
|
+
latest: string;
|
|
198
|
+
}
|
|
199
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
200
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
201
|
+
type Log = TypedEventLog<Event>;
|
|
202
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
203
|
+
}
|
|
204
|
+
export declare namespace LiquidationVaultTokenSplitUpdatedEvent {
|
|
205
|
+
type InputTuple = [
|
|
206
|
+
mintPercentage: BigNumberish,
|
|
207
|
+
burnPercentage: BigNumberish,
|
|
208
|
+
swapPercentage: BigNumberish,
|
|
209
|
+
liquidityPercentage: BigNumberish
|
|
210
|
+
];
|
|
211
|
+
type OutputTuple = [
|
|
212
|
+
mintPercentage: bigint,
|
|
213
|
+
burnPercentage: bigint,
|
|
214
|
+
swapPercentage: bigint,
|
|
215
|
+
liquidityPercentage: bigint
|
|
216
|
+
];
|
|
217
|
+
interface OutputObject {
|
|
218
|
+
mintPercentage: bigint;
|
|
219
|
+
burnPercentage: bigint;
|
|
220
|
+
swapPercentage: bigint;
|
|
221
|
+
liquidityPercentage: bigint;
|
|
222
|
+
}
|
|
223
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
224
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
225
|
+
type Log = TypedEventLog<Event>;
|
|
226
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
227
|
+
}
|
|
228
|
+
export declare namespace LiquidityGaugeUpdatedEvent {
|
|
229
|
+
type InputTuple = [previous: AddressLike, latest: AddressLike];
|
|
230
|
+
type OutputTuple = [previous: string, latest: string];
|
|
231
|
+
interface OutputObject {
|
|
232
|
+
previous: string;
|
|
233
|
+
latest: string;
|
|
234
|
+
}
|
|
235
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
236
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
237
|
+
type Log = TypedEventLog<Event>;
|
|
238
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
239
|
+
}
|
|
240
|
+
export declare namespace LiquidityPoolSetEvent {
|
|
241
|
+
type InputTuple = [liquidityPool: AddressLike];
|
|
242
|
+
type OutputTuple = [liquidityPool: string];
|
|
243
|
+
interface OutputObject {
|
|
244
|
+
liquidityPool: string;
|
|
245
|
+
}
|
|
246
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
247
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
248
|
+
type Log = TypedEventLog<Event>;
|
|
249
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
250
|
+
}
|
|
251
|
+
export declare namespace ManagerAddedEvent {
|
|
252
|
+
type InputTuple = [manager: AddressLike];
|
|
253
|
+
type OutputTuple = [manager: string];
|
|
254
|
+
interface OutputObject {
|
|
255
|
+
manager: string;
|
|
256
|
+
}
|
|
257
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
258
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
259
|
+
type Log = TypedEventLog<Event>;
|
|
260
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
261
|
+
}
|
|
262
|
+
export declare namespace ManagerRemovedEvent {
|
|
263
|
+
type InputTuple = [manager: AddressLike];
|
|
264
|
+
type OutputTuple = [manager: string];
|
|
265
|
+
interface OutputObject {
|
|
266
|
+
manager: string;
|
|
267
|
+
}
|
|
268
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
269
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
270
|
+
type Log = TypedEventLog<Event>;
|
|
271
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
272
|
+
}
|
|
273
|
+
export declare namespace MarketAddedEvent {
|
|
274
|
+
type InputTuple = [market: AddressLike, allocation: BigNumberish];
|
|
275
|
+
type OutputTuple = [market: string, allocation: bigint];
|
|
276
|
+
interface OutputObject {
|
|
277
|
+
market: string;
|
|
278
|
+
allocation: bigint;
|
|
279
|
+
}
|
|
280
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
281
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
282
|
+
type Log = TypedEventLog<Event>;
|
|
283
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
284
|
+
}
|
|
285
|
+
export declare namespace MarketAllocationUpdatedEvent {
|
|
286
|
+
type InputTuple = [market: AddressLike, newAllocation: BigNumberish];
|
|
287
|
+
type OutputTuple = [market: string, newAllocation: bigint];
|
|
288
|
+
interface OutputObject {
|
|
289
|
+
market: string;
|
|
290
|
+
newAllocation: bigint;
|
|
291
|
+
}
|
|
292
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
293
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
294
|
+
type Log = TypedEventLog<Event>;
|
|
295
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
296
|
+
}
|
|
297
|
+
export declare namespace MarketRemovedEvent {
|
|
298
|
+
type InputTuple = [market: AddressLike];
|
|
299
|
+
type OutputTuple = [market: string];
|
|
300
|
+
interface OutputObject {
|
|
301
|
+
market: string;
|
|
302
|
+
}
|
|
303
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
304
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
305
|
+
type Log = TypedEventLog<Event>;
|
|
306
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
307
|
+
}
|
|
308
|
+
export declare namespace NFTDepositedEvent {
|
|
309
|
+
type InputTuple = [nft: AddressLike, tokenId: BigNumberish];
|
|
310
|
+
type OutputTuple = [nft: string, tokenId: bigint];
|
|
311
|
+
interface OutputObject {
|
|
312
|
+
nft: string;
|
|
313
|
+
tokenId: bigint;
|
|
314
|
+
}
|
|
315
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
316
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
317
|
+
type Log = TypedEventLog<Event>;
|
|
318
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
319
|
+
}
|
|
320
|
+
export declare namespace OwnershipTransferredEvent {
|
|
321
|
+
type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
322
|
+
type OutputTuple = [previousOwner: string, newOwner: string];
|
|
323
|
+
interface OutputObject {
|
|
324
|
+
previousOwner: string;
|
|
325
|
+
newOwner: string;
|
|
326
|
+
}
|
|
327
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
328
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
329
|
+
type Log = TypedEventLog<Event>;
|
|
330
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
331
|
+
}
|
|
332
|
+
export declare namespace PausedEvent {
|
|
333
|
+
type InputTuple = [account: AddressLike];
|
|
334
|
+
type OutputTuple = [account: string];
|
|
335
|
+
interface OutputObject {
|
|
336
|
+
account: string;
|
|
337
|
+
}
|
|
338
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
339
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
340
|
+
type Log = TypedEventLog<Event>;
|
|
341
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
342
|
+
}
|
|
343
|
+
export declare namespace RAACDepositedFromPoolEvent {
|
|
344
|
+
type InputTuple = [liquidityPool: AddressLike, amount: BigNumberish];
|
|
345
|
+
type OutputTuple = [liquidityPool: string, amount: bigint];
|
|
346
|
+
interface OutputObject {
|
|
347
|
+
liquidityPool: string;
|
|
348
|
+
amount: bigint;
|
|
349
|
+
}
|
|
350
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
351
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
352
|
+
type Log = TypedEventLog<Event>;
|
|
353
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
354
|
+
}
|
|
355
|
+
export declare namespace RWAVaultUpdatedEvent {
|
|
356
|
+
type InputTuple = [previous: AddressLike, latest: AddressLike];
|
|
357
|
+
type OutputTuple = [previous: string, latest: string];
|
|
358
|
+
interface OutputObject {
|
|
359
|
+
previous: string;
|
|
360
|
+
latest: string;
|
|
361
|
+
}
|
|
362
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
363
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
364
|
+
type Log = TypedEventLog<Event>;
|
|
365
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
366
|
+
}
|
|
367
|
+
export declare namespace UnpausedEvent {
|
|
368
|
+
type InputTuple = [account: AddressLike];
|
|
369
|
+
type OutputTuple = [account: string];
|
|
370
|
+
interface OutputObject {
|
|
371
|
+
account: string;
|
|
372
|
+
}
|
|
373
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
374
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
375
|
+
type Log = TypedEventLog<Event>;
|
|
376
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
377
|
+
}
|
|
378
|
+
export declare namespace WithdrawEvent {
|
|
379
|
+
type InputTuple = [
|
|
380
|
+
user: AddressLike,
|
|
381
|
+
rcrvUSDAmount: BigNumberish,
|
|
382
|
+
deCRVUSDAmount: BigNumberish
|
|
383
|
+
];
|
|
384
|
+
type OutputTuple = [
|
|
385
|
+
user: string,
|
|
386
|
+
rcrvUSDAmount: bigint,
|
|
387
|
+
deCRVUSDAmount: bigint
|
|
388
|
+
];
|
|
389
|
+
interface OutputObject {
|
|
390
|
+
user: string;
|
|
391
|
+
rcrvUSDAmount: bigint;
|
|
392
|
+
deCRVUSDAmount: bigint;
|
|
393
|
+
}
|
|
394
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
395
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
396
|
+
type Log = TypedEventLog<Event>;
|
|
397
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
398
|
+
}
|
|
399
|
+
export declare namespace WithdrawCancelledEvent {
|
|
400
|
+
type InputTuple = [user: AddressLike];
|
|
401
|
+
type OutputTuple = [user: string];
|
|
402
|
+
interface OutputObject {
|
|
403
|
+
user: string;
|
|
404
|
+
}
|
|
405
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
406
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
407
|
+
type Log = TypedEventLog<Event>;
|
|
408
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
409
|
+
}
|
|
410
|
+
export declare namespace WithdrawQueuedEvent {
|
|
411
|
+
type InputTuple = [
|
|
412
|
+
user: AddressLike,
|
|
413
|
+
amount: BigNumberish,
|
|
414
|
+
readyAt: BigNumberish
|
|
415
|
+
];
|
|
416
|
+
type OutputTuple = [user: string, amount: bigint, readyAt: bigint];
|
|
417
|
+
interface OutputObject {
|
|
418
|
+
user: string;
|
|
419
|
+
amount: bigint;
|
|
420
|
+
readyAt: bigint;
|
|
421
|
+
}
|
|
422
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
423
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
424
|
+
type Log = TypedEventLog<Event>;
|
|
425
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
426
|
+
}
|
|
427
|
+
export declare namespace WithdrawTimelockDelayUpdatedEvent {
|
|
428
|
+
type InputTuple = [previous: BigNumberish, latest: BigNumberish];
|
|
429
|
+
type OutputTuple = [previous: bigint, latest: bigint];
|
|
430
|
+
interface OutputObject {
|
|
431
|
+
previous: bigint;
|
|
432
|
+
latest: bigint;
|
|
433
|
+
}
|
|
434
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
435
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
436
|
+
type Log = TypedEventLog<Event>;
|
|
437
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
438
|
+
}
|
|
439
|
+
export declare namespace WithdrawTimelockDurationUpdatedEvent {
|
|
440
|
+
type InputTuple = [previous: BigNumberish, latest: BigNumberish];
|
|
441
|
+
type OutputTuple = [previous: bigint, latest: bigint];
|
|
442
|
+
interface OutputObject {
|
|
443
|
+
previous: bigint;
|
|
444
|
+
latest: bigint;
|
|
445
|
+
}
|
|
446
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
447
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
448
|
+
type Log = TypedEventLog<Event>;
|
|
449
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
450
|
+
}
|
|
451
|
+
export interface StabilityPool extends BaseContract {
|
|
452
|
+
connect(runner?: ContractRunner | null): StabilityPool;
|
|
453
|
+
waitForDeployment(): Promise<this>;
|
|
454
|
+
interface: StabilityPoolInterface;
|
|
455
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
456
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
457
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
458
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
459
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
460
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
461
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
462
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
463
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
464
|
+
addManager: TypedContractMethod<[manager: AddressLike], [void], "nonpayable">;
|
|
465
|
+
balanceOf: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
466
|
+
complianceRegistry: TypedContractMethod<[], [string], "view">;
|
|
467
|
+
crvUSDToken: TypedContractMethod<[], [string], "view">;
|
|
468
|
+
deToken: TypedContractMethod<[], [string], "view">;
|
|
469
|
+
deTokenDecimals: TypedContractMethod<[], [bigint], "view">;
|
|
470
|
+
deposit: TypedContractMethod<[
|
|
471
|
+
scaledAmount: BigNumberish
|
|
472
|
+
], [
|
|
473
|
+
void
|
|
474
|
+
], "nonpayable">;
|
|
475
|
+
depositBlock: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
476
|
+
getManagerList: TypedContractMethod<[], [string[]], "view">;
|
|
477
|
+
getPoolIndex: TypedContractMethod<[], [bigint], "view">;
|
|
478
|
+
getScaledDeposit: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
479
|
+
getScaledTotalSupply: TypedContractMethod<[], [bigint], "view">;
|
|
480
|
+
getTotalDeposits: TypedContractMethod<[], [bigint], "view">;
|
|
481
|
+
getUserDeposit: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
482
|
+
getUserIndex: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
483
|
+
initialize: TypedContractMethod<[
|
|
484
|
+
_rToken: AddressLike,
|
|
485
|
+
_deToken: AddressLike,
|
|
486
|
+
_crvUSDToken: AddressLike,
|
|
487
|
+
_lendingPool: AddressLike,
|
|
488
|
+
_treasury: AddressLike,
|
|
489
|
+
_liquidationStrategyProxy: AddressLike
|
|
490
|
+
], [
|
|
491
|
+
void
|
|
492
|
+
], "nonpayable">;
|
|
493
|
+
isAddressManager: TypedContractMethod<[
|
|
494
|
+
manager: AddressLike
|
|
495
|
+
], [
|
|
496
|
+
boolean
|
|
497
|
+
], "view">;
|
|
498
|
+
isManager: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
499
|
+
lendingPool: TypedContractMethod<[], [string], "view">;
|
|
500
|
+
liquidateBorrower: TypedContractMethod<[
|
|
501
|
+
poolAdapter: AddressLike,
|
|
502
|
+
vaultAdapter: AddressLike,
|
|
503
|
+
user: AddressLike,
|
|
504
|
+
data: BytesLike
|
|
505
|
+
], [
|
|
506
|
+
void
|
|
507
|
+
], "nonpayable">;
|
|
508
|
+
liquidationSplit: TypedContractMethod<[
|
|
509
|
+
], [
|
|
510
|
+
[
|
|
511
|
+
bigint,
|
|
512
|
+
bigint,
|
|
513
|
+
bigint,
|
|
514
|
+
bigint
|
|
515
|
+
] & {
|
|
516
|
+
mintPercentage: bigint;
|
|
517
|
+
burnPercentage: bigint;
|
|
518
|
+
swapPercentage: bigint;
|
|
519
|
+
liquidityPercentage: bigint;
|
|
520
|
+
}
|
|
521
|
+
], "view">;
|
|
522
|
+
liquidationStrategyProxy: TypedContractMethod<[], [string], "view">;
|
|
523
|
+
liquidationSwap: TypedContractMethod<[], [string], "view">;
|
|
524
|
+
liquidityGauge: TypedContractMethod<[], [string], "view">;
|
|
525
|
+
managerList: TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
526
|
+
onERC721Received: TypedContractMethod<[
|
|
527
|
+
arg0: AddressLike,
|
|
528
|
+
arg1: AddressLike,
|
|
529
|
+
arg2: BigNumberish,
|
|
530
|
+
arg3: BytesLike
|
|
531
|
+
], [
|
|
532
|
+
string
|
|
533
|
+
], "nonpayable">;
|
|
534
|
+
owner: TypedContractMethod<[], [string], "view">;
|
|
535
|
+
pause: TypedContractMethod<[], [void], "nonpayable">;
|
|
536
|
+
paused: TypedContractMethod<[], [boolean], "view">;
|
|
537
|
+
rToken: TypedContractMethod<[], [string], "view">;
|
|
538
|
+
rTokenDecimals: TypedContractMethod<[], [bigint], "view">;
|
|
539
|
+
removeManager: TypedContractMethod<[
|
|
540
|
+
manager: AddressLike
|
|
541
|
+
], [
|
|
542
|
+
void
|
|
543
|
+
], "nonpayable">;
|
|
544
|
+
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
545
|
+
requestWithdraw: TypedContractMethod<[
|
|
546
|
+
amount: BigNumberish
|
|
547
|
+
], [
|
|
548
|
+
void
|
|
549
|
+
], "nonpayable">;
|
|
550
|
+
rwaVault: TypedContractMethod<[], [string], "view">;
|
|
551
|
+
setLiquidationStrategyProxy: TypedContractMethod<[
|
|
552
|
+
_liquidationProxy: AddressLike
|
|
553
|
+
], [
|
|
554
|
+
void
|
|
555
|
+
], "nonpayable">;
|
|
556
|
+
setLiquidationSwap: TypedContractMethod<[
|
|
557
|
+
_liquidationSwap: AddressLike
|
|
558
|
+
], [
|
|
559
|
+
void
|
|
560
|
+
], "nonpayable">;
|
|
561
|
+
setLiquidationVaultTokenSplit: TypedContractMethod<[
|
|
562
|
+
mintBps: BigNumberish,
|
|
563
|
+
burnBps: BigNumberish,
|
|
564
|
+
swapBps: BigNumberish,
|
|
565
|
+
liquidityBps: BigNumberish
|
|
566
|
+
], [
|
|
567
|
+
void
|
|
568
|
+
], "nonpayable">;
|
|
569
|
+
setLiquidityGauge: TypedContractMethod<[
|
|
570
|
+
_liquidityGauge: AddressLike
|
|
571
|
+
], [
|
|
572
|
+
void
|
|
573
|
+
], "nonpayable">;
|
|
574
|
+
setRWAVault: TypedContractMethod<[
|
|
575
|
+
_rwaVault: AddressLike
|
|
576
|
+
], [
|
|
577
|
+
void
|
|
578
|
+
], "nonpayable">;
|
|
579
|
+
setWithdrawTimelockDelay: TypedContractMethod<[
|
|
580
|
+
_withdrawTimelockDelay: BigNumberish
|
|
581
|
+
], [
|
|
582
|
+
void
|
|
583
|
+
], "nonpayable">;
|
|
584
|
+
setWithdrawTimelockDuration: TypedContractMethod<[
|
|
585
|
+
_withdrawTimelockDuration: BigNumberish
|
|
586
|
+
], [
|
|
587
|
+
void
|
|
588
|
+
], "nonpayable">;
|
|
589
|
+
transferOwnership: TypedContractMethod<[
|
|
590
|
+
newOwner: AddressLike
|
|
591
|
+
], [
|
|
592
|
+
void
|
|
593
|
+
], "nonpayable">;
|
|
594
|
+
treasury: TypedContractMethod<[], [string], "view">;
|
|
595
|
+
unpause: TypedContractMethod<[], [void], "nonpayable">;
|
|
596
|
+
withdraw: TypedContractMethod<[
|
|
597
|
+
deTokenAmount: BigNumberish
|
|
598
|
+
], [
|
|
599
|
+
void
|
|
600
|
+
], "nonpayable">;
|
|
601
|
+
withdrawTimelock: TypedContractMethod<[
|
|
602
|
+
arg0: AddressLike
|
|
603
|
+
], [
|
|
604
|
+
[
|
|
605
|
+
bigint,
|
|
606
|
+
bigint,
|
|
607
|
+
bigint
|
|
608
|
+
] & {
|
|
609
|
+
amount: bigint;
|
|
610
|
+
readyAt: bigint;
|
|
611
|
+
expireAt: bigint;
|
|
612
|
+
}
|
|
613
|
+
], "view">;
|
|
614
|
+
withdrawTimelockDelay: TypedContractMethod<[], [bigint], "view">;
|
|
615
|
+
withdrawTimelockDuration: TypedContractMethod<[], [bigint], "view">;
|
|
616
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
617
|
+
getFunction(nameOrSignature: "addManager"): TypedContractMethod<[manager: AddressLike], [void], "nonpayable">;
|
|
618
|
+
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
619
|
+
getFunction(nameOrSignature: "complianceRegistry"): TypedContractMethod<[], [string], "view">;
|
|
620
|
+
getFunction(nameOrSignature: "crvUSDToken"): TypedContractMethod<[], [string], "view">;
|
|
621
|
+
getFunction(nameOrSignature: "deToken"): TypedContractMethod<[], [string], "view">;
|
|
622
|
+
getFunction(nameOrSignature: "deTokenDecimals"): TypedContractMethod<[], [bigint], "view">;
|
|
623
|
+
getFunction(nameOrSignature: "deposit"): TypedContractMethod<[scaledAmount: BigNumberish], [void], "nonpayable">;
|
|
624
|
+
getFunction(nameOrSignature: "depositBlock"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
625
|
+
getFunction(nameOrSignature: "getManagerList"): TypedContractMethod<[], [string[]], "view">;
|
|
626
|
+
getFunction(nameOrSignature: "getPoolIndex"): TypedContractMethod<[], [bigint], "view">;
|
|
627
|
+
getFunction(nameOrSignature: "getScaledDeposit"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
628
|
+
getFunction(nameOrSignature: "getScaledTotalSupply"): TypedContractMethod<[], [bigint], "view">;
|
|
629
|
+
getFunction(nameOrSignature: "getTotalDeposits"): TypedContractMethod<[], [bigint], "view">;
|
|
630
|
+
getFunction(nameOrSignature: "getUserDeposit"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
631
|
+
getFunction(nameOrSignature: "getUserIndex"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
632
|
+
getFunction(nameOrSignature: "initialize"): TypedContractMethod<[
|
|
633
|
+
_rToken: AddressLike,
|
|
634
|
+
_deToken: AddressLike,
|
|
635
|
+
_crvUSDToken: AddressLike,
|
|
636
|
+
_lendingPool: AddressLike,
|
|
637
|
+
_treasury: AddressLike,
|
|
638
|
+
_liquidationStrategyProxy: AddressLike
|
|
639
|
+
], [
|
|
640
|
+
void
|
|
641
|
+
], "nonpayable">;
|
|
642
|
+
getFunction(nameOrSignature: "isAddressManager"): TypedContractMethod<[manager: AddressLike], [boolean], "view">;
|
|
643
|
+
getFunction(nameOrSignature: "isManager"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
644
|
+
getFunction(nameOrSignature: "lendingPool"): TypedContractMethod<[], [string], "view">;
|
|
645
|
+
getFunction(nameOrSignature: "liquidateBorrower"): TypedContractMethod<[
|
|
646
|
+
poolAdapter: AddressLike,
|
|
647
|
+
vaultAdapter: AddressLike,
|
|
648
|
+
user: AddressLike,
|
|
649
|
+
data: BytesLike
|
|
650
|
+
], [
|
|
651
|
+
void
|
|
652
|
+
], "nonpayable">;
|
|
653
|
+
getFunction(nameOrSignature: "liquidationSplit"): TypedContractMethod<[
|
|
654
|
+
], [
|
|
655
|
+
[
|
|
656
|
+
bigint,
|
|
657
|
+
bigint,
|
|
658
|
+
bigint,
|
|
659
|
+
bigint
|
|
660
|
+
] & {
|
|
661
|
+
mintPercentage: bigint;
|
|
662
|
+
burnPercentage: bigint;
|
|
663
|
+
swapPercentage: bigint;
|
|
664
|
+
liquidityPercentage: bigint;
|
|
665
|
+
}
|
|
666
|
+
], "view">;
|
|
667
|
+
getFunction(nameOrSignature: "liquidationStrategyProxy"): TypedContractMethod<[], [string], "view">;
|
|
668
|
+
getFunction(nameOrSignature: "liquidationSwap"): TypedContractMethod<[], [string], "view">;
|
|
669
|
+
getFunction(nameOrSignature: "liquidityGauge"): TypedContractMethod<[], [string], "view">;
|
|
670
|
+
getFunction(nameOrSignature: "managerList"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
671
|
+
getFunction(nameOrSignature: "onERC721Received"): TypedContractMethod<[
|
|
672
|
+
arg0: AddressLike,
|
|
673
|
+
arg1: AddressLike,
|
|
674
|
+
arg2: BigNumberish,
|
|
675
|
+
arg3: BytesLike
|
|
676
|
+
], [
|
|
677
|
+
string
|
|
678
|
+
], "nonpayable">;
|
|
679
|
+
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
680
|
+
getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
681
|
+
getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
|
|
682
|
+
getFunction(nameOrSignature: "rToken"): TypedContractMethod<[], [string], "view">;
|
|
683
|
+
getFunction(nameOrSignature: "rTokenDecimals"): TypedContractMethod<[], [bigint], "view">;
|
|
684
|
+
getFunction(nameOrSignature: "removeManager"): TypedContractMethod<[manager: AddressLike], [void], "nonpayable">;
|
|
685
|
+
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
686
|
+
getFunction(nameOrSignature: "requestWithdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
687
|
+
getFunction(nameOrSignature: "rwaVault"): TypedContractMethod<[], [string], "view">;
|
|
688
|
+
getFunction(nameOrSignature: "setLiquidationStrategyProxy"): TypedContractMethod<[
|
|
689
|
+
_liquidationProxy: AddressLike
|
|
690
|
+
], [
|
|
691
|
+
void
|
|
692
|
+
], "nonpayable">;
|
|
693
|
+
getFunction(nameOrSignature: "setLiquidationSwap"): TypedContractMethod<[_liquidationSwap: AddressLike], [void], "nonpayable">;
|
|
694
|
+
getFunction(nameOrSignature: "setLiquidationVaultTokenSplit"): TypedContractMethod<[
|
|
695
|
+
mintBps: BigNumberish,
|
|
696
|
+
burnBps: BigNumberish,
|
|
697
|
+
swapBps: BigNumberish,
|
|
698
|
+
liquidityBps: BigNumberish
|
|
699
|
+
], [
|
|
700
|
+
void
|
|
701
|
+
], "nonpayable">;
|
|
702
|
+
getFunction(nameOrSignature: "setLiquidityGauge"): TypedContractMethod<[_liquidityGauge: AddressLike], [void], "nonpayable">;
|
|
703
|
+
getFunction(nameOrSignature: "setRWAVault"): TypedContractMethod<[_rwaVault: AddressLike], [void], "nonpayable">;
|
|
704
|
+
getFunction(nameOrSignature: "setWithdrawTimelockDelay"): TypedContractMethod<[
|
|
705
|
+
_withdrawTimelockDelay: BigNumberish
|
|
706
|
+
], [
|
|
707
|
+
void
|
|
708
|
+
], "nonpayable">;
|
|
709
|
+
getFunction(nameOrSignature: "setWithdrawTimelockDuration"): TypedContractMethod<[
|
|
710
|
+
_withdrawTimelockDuration: BigNumberish
|
|
711
|
+
], [
|
|
712
|
+
void
|
|
713
|
+
], "nonpayable">;
|
|
714
|
+
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
715
|
+
getFunction(nameOrSignature: "treasury"): TypedContractMethod<[], [string], "view">;
|
|
716
|
+
getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
717
|
+
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[deTokenAmount: BigNumberish], [void], "nonpayable">;
|
|
718
|
+
getFunction(nameOrSignature: "withdrawTimelock"): TypedContractMethod<[
|
|
719
|
+
arg0: AddressLike
|
|
720
|
+
], [
|
|
721
|
+
[
|
|
722
|
+
bigint,
|
|
723
|
+
bigint,
|
|
724
|
+
bigint
|
|
725
|
+
] & {
|
|
726
|
+
amount: bigint;
|
|
727
|
+
readyAt: bigint;
|
|
728
|
+
expireAt: bigint;
|
|
729
|
+
}
|
|
730
|
+
], "view">;
|
|
731
|
+
getFunction(nameOrSignature: "withdrawTimelockDelay"): TypedContractMethod<[], [bigint], "view">;
|
|
732
|
+
getFunction(nameOrSignature: "withdrawTimelockDuration"): TypedContractMethod<[], [bigint], "view">;
|
|
733
|
+
getEvent(key: "AllocationUpdated"): TypedContractEvent<AllocationUpdatedEvent.InputTuple, AllocationUpdatedEvent.OutputTuple, AllocationUpdatedEvent.OutputObject>;
|
|
734
|
+
getEvent(key: "BorrowerLiquidated"): TypedContractEvent<BorrowerLiquidatedEvent.InputTuple, BorrowerLiquidatedEvent.OutputTuple, BorrowerLiquidatedEvent.OutputObject>;
|
|
735
|
+
getEvent(key: "Deposit"): TypedContractEvent<DepositEvent.InputTuple, DepositEvent.OutputTuple, DepositEvent.OutputObject>;
|
|
736
|
+
getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
737
|
+
getEvent(key: "LiquidationStrategyProxyUpdated"): TypedContractEvent<LiquidationStrategyProxyUpdatedEvent.InputTuple, LiquidationStrategyProxyUpdatedEvent.OutputTuple, LiquidationStrategyProxyUpdatedEvent.OutputObject>;
|
|
738
|
+
getEvent(key: "LiquidationSwapUpdated"): TypedContractEvent<LiquidationSwapUpdatedEvent.InputTuple, LiquidationSwapUpdatedEvent.OutputTuple, LiquidationSwapUpdatedEvent.OutputObject>;
|
|
739
|
+
getEvent(key: "LiquidationVaultTokenSplitUpdated"): TypedContractEvent<LiquidationVaultTokenSplitUpdatedEvent.InputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputObject>;
|
|
740
|
+
getEvent(key: "LiquidityGaugeUpdated"): TypedContractEvent<LiquidityGaugeUpdatedEvent.InputTuple, LiquidityGaugeUpdatedEvent.OutputTuple, LiquidityGaugeUpdatedEvent.OutputObject>;
|
|
741
|
+
getEvent(key: "LiquidityPoolSet"): TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
742
|
+
getEvent(key: "ManagerAdded"): TypedContractEvent<ManagerAddedEvent.InputTuple, ManagerAddedEvent.OutputTuple, ManagerAddedEvent.OutputObject>;
|
|
743
|
+
getEvent(key: "ManagerRemoved"): TypedContractEvent<ManagerRemovedEvent.InputTuple, ManagerRemovedEvent.OutputTuple, ManagerRemovedEvent.OutputObject>;
|
|
744
|
+
getEvent(key: "MarketAdded"): TypedContractEvent<MarketAddedEvent.InputTuple, MarketAddedEvent.OutputTuple, MarketAddedEvent.OutputObject>;
|
|
745
|
+
getEvent(key: "MarketAllocationUpdated"): TypedContractEvent<MarketAllocationUpdatedEvent.InputTuple, MarketAllocationUpdatedEvent.OutputTuple, MarketAllocationUpdatedEvent.OutputObject>;
|
|
746
|
+
getEvent(key: "MarketRemoved"): TypedContractEvent<MarketRemovedEvent.InputTuple, MarketRemovedEvent.OutputTuple, MarketRemovedEvent.OutputObject>;
|
|
747
|
+
getEvent(key: "NFTDeposited"): TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
748
|
+
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
749
|
+
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
750
|
+
getEvent(key: "RAACDepositedFromPool"): TypedContractEvent<RAACDepositedFromPoolEvent.InputTuple, RAACDepositedFromPoolEvent.OutputTuple, RAACDepositedFromPoolEvent.OutputObject>;
|
|
751
|
+
getEvent(key: "RWAVaultUpdated"): TypedContractEvent<RWAVaultUpdatedEvent.InputTuple, RWAVaultUpdatedEvent.OutputTuple, RWAVaultUpdatedEvent.OutputObject>;
|
|
752
|
+
getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
753
|
+
getEvent(key: "Withdraw"): TypedContractEvent<WithdrawEvent.InputTuple, WithdrawEvent.OutputTuple, WithdrawEvent.OutputObject>;
|
|
754
|
+
getEvent(key: "WithdrawCancelled"): TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
755
|
+
getEvent(key: "WithdrawQueued"): TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
756
|
+
getEvent(key: "WithdrawTimelockDelayUpdated"): TypedContractEvent<WithdrawTimelockDelayUpdatedEvent.InputTuple, WithdrawTimelockDelayUpdatedEvent.OutputTuple, WithdrawTimelockDelayUpdatedEvent.OutputObject>;
|
|
757
|
+
getEvent(key: "WithdrawTimelockDurationUpdated"): TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
758
|
+
filters: {
|
|
759
|
+
"AllocationUpdated(address,uint256)": TypedContractEvent<AllocationUpdatedEvent.InputTuple, AllocationUpdatedEvent.OutputTuple, AllocationUpdatedEvent.OutputObject>;
|
|
760
|
+
AllocationUpdated: TypedContractEvent<AllocationUpdatedEvent.InputTuple, AllocationUpdatedEvent.OutputTuple, AllocationUpdatedEvent.OutputObject>;
|
|
761
|
+
"BorrowerLiquidated(address,address,bytes,uint256)": TypedContractEvent<BorrowerLiquidatedEvent.InputTuple, BorrowerLiquidatedEvent.OutputTuple, BorrowerLiquidatedEvent.OutputObject>;
|
|
762
|
+
BorrowerLiquidated: TypedContractEvent<BorrowerLiquidatedEvent.InputTuple, BorrowerLiquidatedEvent.OutputTuple, BorrowerLiquidatedEvent.OutputObject>;
|
|
763
|
+
"Deposit(address,uint256,uint256)": TypedContractEvent<DepositEvent.InputTuple, DepositEvent.OutputTuple, DepositEvent.OutputObject>;
|
|
764
|
+
Deposit: TypedContractEvent<DepositEvent.InputTuple, DepositEvent.OutputTuple, DepositEvent.OutputObject>;
|
|
765
|
+
"Initialized(uint64)": TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
766
|
+
Initialized: TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
767
|
+
"LiquidationStrategyProxyUpdated(address,address)": TypedContractEvent<LiquidationStrategyProxyUpdatedEvent.InputTuple, LiquidationStrategyProxyUpdatedEvent.OutputTuple, LiquidationStrategyProxyUpdatedEvent.OutputObject>;
|
|
768
|
+
LiquidationStrategyProxyUpdated: TypedContractEvent<LiquidationStrategyProxyUpdatedEvent.InputTuple, LiquidationStrategyProxyUpdatedEvent.OutputTuple, LiquidationStrategyProxyUpdatedEvent.OutputObject>;
|
|
769
|
+
"LiquidationSwapUpdated(address,address)": TypedContractEvent<LiquidationSwapUpdatedEvent.InputTuple, LiquidationSwapUpdatedEvent.OutputTuple, LiquidationSwapUpdatedEvent.OutputObject>;
|
|
770
|
+
LiquidationSwapUpdated: TypedContractEvent<LiquidationSwapUpdatedEvent.InputTuple, LiquidationSwapUpdatedEvent.OutputTuple, LiquidationSwapUpdatedEvent.OutputObject>;
|
|
771
|
+
"LiquidationVaultTokenSplitUpdated(uint256,uint256,uint256,uint256)": TypedContractEvent<LiquidationVaultTokenSplitUpdatedEvent.InputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputObject>;
|
|
772
|
+
LiquidationVaultTokenSplitUpdated: TypedContractEvent<LiquidationVaultTokenSplitUpdatedEvent.InputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputObject>;
|
|
773
|
+
"LiquidityGaugeUpdated(address,address)": TypedContractEvent<LiquidityGaugeUpdatedEvent.InputTuple, LiquidityGaugeUpdatedEvent.OutputTuple, LiquidityGaugeUpdatedEvent.OutputObject>;
|
|
774
|
+
LiquidityGaugeUpdated: TypedContractEvent<LiquidityGaugeUpdatedEvent.InputTuple, LiquidityGaugeUpdatedEvent.OutputTuple, LiquidityGaugeUpdatedEvent.OutputObject>;
|
|
775
|
+
"LiquidityPoolSet(address)": TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
776
|
+
LiquidityPoolSet: TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
777
|
+
"ManagerAdded(address)": TypedContractEvent<ManagerAddedEvent.InputTuple, ManagerAddedEvent.OutputTuple, ManagerAddedEvent.OutputObject>;
|
|
778
|
+
ManagerAdded: TypedContractEvent<ManagerAddedEvent.InputTuple, ManagerAddedEvent.OutputTuple, ManagerAddedEvent.OutputObject>;
|
|
779
|
+
"ManagerRemoved(address)": TypedContractEvent<ManagerRemovedEvent.InputTuple, ManagerRemovedEvent.OutputTuple, ManagerRemovedEvent.OutputObject>;
|
|
780
|
+
ManagerRemoved: TypedContractEvent<ManagerRemovedEvent.InputTuple, ManagerRemovedEvent.OutputTuple, ManagerRemovedEvent.OutputObject>;
|
|
781
|
+
"MarketAdded(address,uint256)": TypedContractEvent<MarketAddedEvent.InputTuple, MarketAddedEvent.OutputTuple, MarketAddedEvent.OutputObject>;
|
|
782
|
+
MarketAdded: TypedContractEvent<MarketAddedEvent.InputTuple, MarketAddedEvent.OutputTuple, MarketAddedEvent.OutputObject>;
|
|
783
|
+
"MarketAllocationUpdated(address,uint256)": TypedContractEvent<MarketAllocationUpdatedEvent.InputTuple, MarketAllocationUpdatedEvent.OutputTuple, MarketAllocationUpdatedEvent.OutputObject>;
|
|
784
|
+
MarketAllocationUpdated: TypedContractEvent<MarketAllocationUpdatedEvent.InputTuple, MarketAllocationUpdatedEvent.OutputTuple, MarketAllocationUpdatedEvent.OutputObject>;
|
|
785
|
+
"MarketRemoved(address)": TypedContractEvent<MarketRemovedEvent.InputTuple, MarketRemovedEvent.OutputTuple, MarketRemovedEvent.OutputObject>;
|
|
786
|
+
MarketRemoved: TypedContractEvent<MarketRemovedEvent.InputTuple, MarketRemovedEvent.OutputTuple, MarketRemovedEvent.OutputObject>;
|
|
787
|
+
"NFTDeposited(address,uint256)": TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
788
|
+
NFTDeposited: TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
789
|
+
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
790
|
+
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
791
|
+
"Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
792
|
+
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
793
|
+
"RAACDepositedFromPool(address,uint256)": TypedContractEvent<RAACDepositedFromPoolEvent.InputTuple, RAACDepositedFromPoolEvent.OutputTuple, RAACDepositedFromPoolEvent.OutputObject>;
|
|
794
|
+
RAACDepositedFromPool: TypedContractEvent<RAACDepositedFromPoolEvent.InputTuple, RAACDepositedFromPoolEvent.OutputTuple, RAACDepositedFromPoolEvent.OutputObject>;
|
|
795
|
+
"RWAVaultUpdated(address,address)": TypedContractEvent<RWAVaultUpdatedEvent.InputTuple, RWAVaultUpdatedEvent.OutputTuple, RWAVaultUpdatedEvent.OutputObject>;
|
|
796
|
+
RWAVaultUpdated: TypedContractEvent<RWAVaultUpdatedEvent.InputTuple, RWAVaultUpdatedEvent.OutputTuple, RWAVaultUpdatedEvent.OutputObject>;
|
|
797
|
+
"Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
798
|
+
Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
799
|
+
"Withdraw(address,uint256,uint256)": TypedContractEvent<WithdrawEvent.InputTuple, WithdrawEvent.OutputTuple, WithdrawEvent.OutputObject>;
|
|
800
|
+
Withdraw: TypedContractEvent<WithdrawEvent.InputTuple, WithdrawEvent.OutputTuple, WithdrawEvent.OutputObject>;
|
|
801
|
+
"WithdrawCancelled(address)": TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
802
|
+
WithdrawCancelled: TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
803
|
+
"WithdrawQueued(address,uint256,uint256)": TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
804
|
+
WithdrawQueued: TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
805
|
+
"WithdrawTimelockDelayUpdated(uint256,uint256)": TypedContractEvent<WithdrawTimelockDelayUpdatedEvent.InputTuple, WithdrawTimelockDelayUpdatedEvent.OutputTuple, WithdrawTimelockDelayUpdatedEvent.OutputObject>;
|
|
806
|
+
WithdrawTimelockDelayUpdated: TypedContractEvent<WithdrawTimelockDelayUpdatedEvent.InputTuple, WithdrawTimelockDelayUpdatedEvent.OutputTuple, WithdrawTimelockDelayUpdatedEvent.OutputObject>;
|
|
807
|
+
"WithdrawTimelockDurationUpdated(uint256,uint256)": TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
808
|
+
WithdrawTimelockDurationUpdated: TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
809
|
+
};
|
|
810
|
+
}
|