@raac/rpc 1.1.0-beta.63 → 1.1.0-beta.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RPCLibrary.js +4 -8
- package/dist/oracles/houses/request.js +1 -1
- package/dist/oracles/prime-rate/request.js +1 -1
- package/dist/pools/rwaVault/depositToRWAVault.js +3 -10
- package/dist/pools/rwaVault/getRWAVaultInfo.js +1 -9
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +3 -4
- package/dist/scripts/index.js +1 -1
- package/dist/types/RPCLibrary.d.ts +0 -4
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +2 -2
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +0 -4
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +3 -2
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/{typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts → @openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.d.ts} +4 -4
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +65 -10
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +2 -2
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +316 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts} +33 -11
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts} +9 -9
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → contracts/core/pools/LendingPool}/ERC721AssetAdapter.d.ts +20 -2
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +86 -49
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +69 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +69 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +73 -38
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +22 -16
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +58 -44
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +17 -13
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +85 -87
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +9 -19
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +7 -3
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +76 -2
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol → contracts/core/vaults}/ERC721VaultAdapter.d.ts +24 -2
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts → contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts} +79 -35
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +270 -63
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +2 -4
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts → contracts/interfaces/core/collectors/IDistributionTarget.d.ts} +13 -5
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +53 -2
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/{typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → contracts/interfaces/core/oracles/IERC721PriceOracle.d.ts} +6 -6
- package/dist/types/typechain-types/{typechain-types/contracts/interfaces/IHousePrices.d.ts → contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts} +12 -12
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer.d.ts +71 -0
- package/dist/types/typechain-types/{typechain-types/contracts/interfaces/core/oracles → contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices.d.ts +20 -28
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +4 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +66 -4
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +52 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +34 -24
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +5 -19
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +7 -3
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +38 -2
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +258 -23
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +9 -1
- package/dist/types/typechain-types/{typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts → contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts} +9 -13
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA.d.ts +59 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/{typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts → contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool.d.ts} +138 -31
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +9 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +66 -4
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +5 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts → factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +94 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +6 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +124 -23
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts} +118 -116
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle__factory.d.ts} +22 -18
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts → factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts} +6 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +199 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +149 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol → factories/contracts/core/pools/LendingPool}/ERC721AssetAdapter__factory.d.ts +30 -4
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +62 -25
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +94 -41
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +62 -25
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +73 -30
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +27 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +17 -3
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +23 -31
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +78 -64
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +96 -78
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +26 -18
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +21 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +88 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +25 -3
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +22 -4
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +417 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +247 -68
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +2 -2
- package/dist/types/typechain-types/{typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts → factories/contracts/interfaces/core/collectors/IDistributionTarget__factory.d.ts} +13 -17
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/interfaces/core/oracles/IERC721PriceOracle__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer__factory.d.ts +59 -0
- package/dist/types/typechain-types/{typechain-types/factories/contracts/interfaces/core/oracles → factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol}/IRAACHousePrices__factory.d.ts +28 -14
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +3 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +26 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +67 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +45 -23
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +5 -15
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +38 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +210 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
- package/dist/types/typechain-types/{typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts → factories/contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts} +7 -7
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +98 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +199 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +149 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +958 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +68 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +27 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +9 -5
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
- package/dist/types/typechain-types/index.d.ts +28 -14
- package/package.json +1 -1
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +0 -23
- package/dist/pools/lendingPool/requestWithdraw.js +0 -28
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +0 -9
- package/dist/types/pools/lendingPool/requestWithdraw.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +0 -67
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +0 -205
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +0 -103
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +0 -143
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +0 -529
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +0 -109
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +0 -192
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +0 -731
- package/dist/types/typechain-types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@chainlink/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +0 -159
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +0 -54
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +0 -77
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/access/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +0 -231
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +0 -318
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +0 -141
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +0 -236
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +0 -318
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -141
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +0 -61
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +0 -211
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -199
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +0 -233
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +0 -221
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -211
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/token/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -12
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +0 -36
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/@openzeppelin/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/common.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +0 -909
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +0 -127
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/Treasury.d.ts +0 -298
- package/dist/types/typechain-types/typechain-types/contracts/core/collectors/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +0 -1367
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +0 -1103
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +0 -641
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +0 -1371
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +0 -1375
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/gauges/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +0 -586
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +0 -477
- package/dist/types/typechain-types/typechain-types/contracts/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/index.d.ts +0 -18
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +0 -721
- package/dist/types/typechain-types/typechain-types/contracts/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +0 -808
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +0 -509
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/core/minters/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +0 -183
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +0 -310
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +0 -221
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/oracles/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +0 -241
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +0 -2112
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +0 -432
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +0 -530
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +0 -485
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +0 -186
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +0 -810
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +0 -168
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/pools/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +0 -231
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +0 -284
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/primitives/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DEToken.d.ts +0 -424
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/DebtToken.d.ts +0 -326
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/IndexToken.d.ts +0 -340
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/LPToken.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +0 -897
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RAACToken.d.ts +0 -401
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RToken.d.ts +0 -543
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +0 -264
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +0 -1077
- package/dist/types/typechain-types/typechain-types/contracts/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +0 -176
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +0 -174
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +0 -47
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/RWAVault.d.ts +0 -560
- package/dist/types/typechain-types/typechain-types/contracts/core/vaults/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/index.d.ts +0 -10
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +0 -63
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IERC20.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +0 -240
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +0 -75
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IUSDC.d.ts +0 -129
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IBaseCollector.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +0 -537
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +0 -120
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +0 -623
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +0 -523
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +0 -351
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +0 -551
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +0 -309
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/index.d.ts +0 -16
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +0 -332
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +0 -302
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +0 -345
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +0 -238
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/minters/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IERC20PriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +0 -185
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +0 -152
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +0 -51
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +0 -1163
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +0 -102
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +0 -51
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +0 -443
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/pools/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +0 -270
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +0 -279
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IIndexToken.d.ts +0 -187
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +0 -630
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +0 -346
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +0 -385
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +0 -197
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +0 -621
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +0 -265
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IBaseVault.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +0 -87
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +0 -176
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +0 -357
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/index.d.ts +0 -11
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +0 -137
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +0 -216
- package/dist/types/typechain-types/typechain-types/contracts/interfaces/zeno/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/LockManager.d.ts +0 -94
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +0 -93
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
- package/dist/types/typechain-types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/libraries/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +0 -80
- package/dist/types/typechain-types/typechain-types/contracts/libraries/math/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +0 -124
- package/dist/types/typechain-types/typechain-types/contracts/libraries/pools/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +0 -20
- package/dist/types/typechain-types/typechain-types/contracts/libraries/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +0 -134
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +0 -225
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/collectors/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +0 -350
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +0 -56
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/curve/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +0 -76
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/index.d.ts +0 -18
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +0 -394
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +0 -151
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +0 -41
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +0 -43
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +0 -169
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +0 -731
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +0 -171
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +0 -237
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +0 -243
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/oracles/index.d.ts +0 -10
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +0 -121
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +0 -152
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +0 -1183
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +0 -55
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +0 -69
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/pools/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +0 -39
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +0 -47
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/primitives/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +0 -212
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/CrvUSDTokenLimited.d.ts +0 -234
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +0 -229
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +0 -292
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +0 -216
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +0 -187
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +0 -186
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/MockVault.d.ts +0 -290
- package/dist/types/typechain-types/typechain-types/contracts/mocks/core/vaults/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/contracts/mocks/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/MockStringUtils.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +0 -204
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +0 -173
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +0 -160
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +0 -41
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/index.d.ts +0 -7
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +0 -78
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +0 -229
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +0 -185
- package/dist/types/typechain-types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +0 -29
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/contracts/mocks/tests/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/contracts/zeno/Auction.d.ts +0 -275
- package/dist/types/typechain-types/typechain-types/contracts/zeno/AuctionFactory.d.ts +0 -209
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENO.d.ts +0 -293
- package/dist/types/typechain-types/typechain-types/contracts/zeno/ZENOFactory.d.ts +0 -151
- package/dist/types/typechain-types/typechain-types/contracts/zeno/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +0 -268
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +0 -48
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +0 -90
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +0 -86
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +0 -93
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +0 -191
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +0 -663
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +0 -139
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +0 -194
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +0 -27
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +0 -155
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +0 -32
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +0 -944
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@chainlink/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +0 -181
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +0 -157
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +0 -95
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +0 -64
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +0 -289
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +0 -472
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +0 -46
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +0 -83
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +0 -241
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +0 -402
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +0 -632
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -177
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +0 -46
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +0 -337
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +0 -395
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +0 -269
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -261
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +0 -45
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +0 -11
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +0 -34
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +0 -34
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +0 -58
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +0 -62
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +0 -82
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +0 -63
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/@openzeppelin/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +0 -393
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +0 -1329
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +0 -49
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +0 -223
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +0 -389
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +0 -389
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +0 -437
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/collectors/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -1815
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +0 -1448
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +0 -896
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +0 -1856
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +0 -1866
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +0 -950
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +0 -797
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +0 -1052
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +0 -1103
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +0 -717
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/minters/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +0 -245
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +0 -436
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +0 -334
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +0 -336
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +0 -74
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +0 -52
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/oracles/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +0 -403
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +0 -586
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +0 -2699
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +0 -744
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +0 -674
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +0 -303
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +0 -275
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +0 -277
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +0 -1166
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +0 -320
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +0 -276
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/primitives/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +0 -741
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +0 -576
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +0 -401
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +0 -1358
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +0 -652
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +0 -901
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +0 -465
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +0 -1544
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +0 -285
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +0 -311
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -307
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +0 -350
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +0 -861
- package/dist/types/typechain-types/typechain-types/factories/contracts/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +0 -71
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +0 -272
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +0 -77
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +0 -43
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +0 -147
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +0 -33
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +0 -718
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +0 -136
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +0 -775
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +0 -623
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +0 -425
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +0 -852
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +0 -492
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +0 -390
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +0 -35
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -397
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +0 -286
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +0 -143
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +0 -25
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +0 -233
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +0 -203
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +0 -191
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -1419
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +0 -61
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +0 -56
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +0 -567
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +0 -336
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +0 -372
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +0 -227
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +0 -764
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -436
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +0 -486
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +0 -223
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +0 -761
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +0 -329
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +0 -137
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -115
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +0 -258
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +0 -503
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/index.d.ts +0 -8
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +0 -173
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +0 -288
- package/dist/types/typechain-types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +0 -54
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +0 -120
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +0 -115
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +0 -97
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/math/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +0 -135
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/pools/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +0 -26
- package/dist/types/typechain-types/typechain-types/factories/contracts/libraries/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +0 -165
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +0 -353
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +0 -661
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +0 -36
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +0 -65
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +0 -100
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +0 -615
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +0 -168
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +0 -37
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +0 -66
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +0 -62
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -242
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +0 -944
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +0 -184
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +0 -352
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +0 -354
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +0 -1471
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +0 -195
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +0 -795
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +0 -84
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +0 -109
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +0 -6
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +0 -50
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +0 -21
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +0 -42
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +0 -68
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +0 -64
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +0 -5
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +0 -417
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +0 -379
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +0 -286
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +0 -388
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +0 -451
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +0 -393
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +0 -324
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +0 -278
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +0 -335
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +0 -9
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +0 -525
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/core/vaults/index.d.ts +0 -1
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +0 -40
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +0 -282
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +0 -206
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +0 -208
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +0 -247
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +0 -154
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +0 -224
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +0 -287
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +0 -53
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +0 -80
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/typechain-types/factories/contracts/mocks/tests/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +0 -287
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +0 -452
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +0 -235
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +0 -564
- package/dist/types/typechain-types/typechain-types/factories/contracts/zeno/index.d.ts +0 -4
- package/dist/types/typechain-types/typechain-types/factories/index.d.ts +0 -3
- package/dist/types/typechain-types/typechain-types/index.d.ts +0 -437
|
@@ -1,632 +0,0 @@
|
|
|
1
|
-
import { type ContractRunner } from "ethers";
|
|
2
|
-
import type { ERC4626, ERC4626Interface } from "../../../../../../@openzeppelin/contracts/token/ERC20/extensions/ERC4626";
|
|
3
|
-
export declare class ERC4626__factory {
|
|
4
|
-
static readonly abi: readonly [{
|
|
5
|
-
readonly inputs: readonly [{
|
|
6
|
-
readonly internalType: "address";
|
|
7
|
-
readonly name: "target";
|
|
8
|
-
readonly type: "address";
|
|
9
|
-
}];
|
|
10
|
-
readonly name: "AddressEmptyCode";
|
|
11
|
-
readonly type: "error";
|
|
12
|
-
}, {
|
|
13
|
-
readonly inputs: readonly [{
|
|
14
|
-
readonly internalType: "address";
|
|
15
|
-
readonly name: "account";
|
|
16
|
-
readonly type: "address";
|
|
17
|
-
}];
|
|
18
|
-
readonly name: "AddressInsufficientBalance";
|
|
19
|
-
readonly type: "error";
|
|
20
|
-
}, {
|
|
21
|
-
readonly inputs: readonly [{
|
|
22
|
-
readonly internalType: "address";
|
|
23
|
-
readonly name: "spender";
|
|
24
|
-
readonly type: "address";
|
|
25
|
-
}, {
|
|
26
|
-
readonly internalType: "uint256";
|
|
27
|
-
readonly name: "allowance";
|
|
28
|
-
readonly type: "uint256";
|
|
29
|
-
}, {
|
|
30
|
-
readonly internalType: "uint256";
|
|
31
|
-
readonly name: "needed";
|
|
32
|
-
readonly type: "uint256";
|
|
33
|
-
}];
|
|
34
|
-
readonly name: "ERC20InsufficientAllowance";
|
|
35
|
-
readonly type: "error";
|
|
36
|
-
}, {
|
|
37
|
-
readonly inputs: readonly [{
|
|
38
|
-
readonly internalType: "address";
|
|
39
|
-
readonly name: "sender";
|
|
40
|
-
readonly type: "address";
|
|
41
|
-
}, {
|
|
42
|
-
readonly internalType: "uint256";
|
|
43
|
-
readonly name: "balance";
|
|
44
|
-
readonly type: "uint256";
|
|
45
|
-
}, {
|
|
46
|
-
readonly internalType: "uint256";
|
|
47
|
-
readonly name: "needed";
|
|
48
|
-
readonly type: "uint256";
|
|
49
|
-
}];
|
|
50
|
-
readonly name: "ERC20InsufficientBalance";
|
|
51
|
-
readonly type: "error";
|
|
52
|
-
}, {
|
|
53
|
-
readonly inputs: readonly [{
|
|
54
|
-
readonly internalType: "address";
|
|
55
|
-
readonly name: "approver";
|
|
56
|
-
readonly type: "address";
|
|
57
|
-
}];
|
|
58
|
-
readonly name: "ERC20InvalidApprover";
|
|
59
|
-
readonly type: "error";
|
|
60
|
-
}, {
|
|
61
|
-
readonly inputs: readonly [{
|
|
62
|
-
readonly internalType: "address";
|
|
63
|
-
readonly name: "receiver";
|
|
64
|
-
readonly type: "address";
|
|
65
|
-
}];
|
|
66
|
-
readonly name: "ERC20InvalidReceiver";
|
|
67
|
-
readonly type: "error";
|
|
68
|
-
}, {
|
|
69
|
-
readonly inputs: readonly [{
|
|
70
|
-
readonly internalType: "address";
|
|
71
|
-
readonly name: "sender";
|
|
72
|
-
readonly type: "address";
|
|
73
|
-
}];
|
|
74
|
-
readonly name: "ERC20InvalidSender";
|
|
75
|
-
readonly type: "error";
|
|
76
|
-
}, {
|
|
77
|
-
readonly inputs: readonly [{
|
|
78
|
-
readonly internalType: "address";
|
|
79
|
-
readonly name: "spender";
|
|
80
|
-
readonly type: "address";
|
|
81
|
-
}];
|
|
82
|
-
readonly name: "ERC20InvalidSpender";
|
|
83
|
-
readonly type: "error";
|
|
84
|
-
}, {
|
|
85
|
-
readonly inputs: readonly [{
|
|
86
|
-
readonly internalType: "address";
|
|
87
|
-
readonly name: "receiver";
|
|
88
|
-
readonly type: "address";
|
|
89
|
-
}, {
|
|
90
|
-
readonly internalType: "uint256";
|
|
91
|
-
readonly name: "assets";
|
|
92
|
-
readonly type: "uint256";
|
|
93
|
-
}, {
|
|
94
|
-
readonly internalType: "uint256";
|
|
95
|
-
readonly name: "max";
|
|
96
|
-
readonly type: "uint256";
|
|
97
|
-
}];
|
|
98
|
-
readonly name: "ERC4626ExceededMaxDeposit";
|
|
99
|
-
readonly type: "error";
|
|
100
|
-
}, {
|
|
101
|
-
readonly inputs: readonly [{
|
|
102
|
-
readonly internalType: "address";
|
|
103
|
-
readonly name: "receiver";
|
|
104
|
-
readonly type: "address";
|
|
105
|
-
}, {
|
|
106
|
-
readonly internalType: "uint256";
|
|
107
|
-
readonly name: "shares";
|
|
108
|
-
readonly type: "uint256";
|
|
109
|
-
}, {
|
|
110
|
-
readonly internalType: "uint256";
|
|
111
|
-
readonly name: "max";
|
|
112
|
-
readonly type: "uint256";
|
|
113
|
-
}];
|
|
114
|
-
readonly name: "ERC4626ExceededMaxMint";
|
|
115
|
-
readonly type: "error";
|
|
116
|
-
}, {
|
|
117
|
-
readonly inputs: readonly [{
|
|
118
|
-
readonly internalType: "address";
|
|
119
|
-
readonly name: "owner";
|
|
120
|
-
readonly type: "address";
|
|
121
|
-
}, {
|
|
122
|
-
readonly internalType: "uint256";
|
|
123
|
-
readonly name: "shares";
|
|
124
|
-
readonly type: "uint256";
|
|
125
|
-
}, {
|
|
126
|
-
readonly internalType: "uint256";
|
|
127
|
-
readonly name: "max";
|
|
128
|
-
readonly type: "uint256";
|
|
129
|
-
}];
|
|
130
|
-
readonly name: "ERC4626ExceededMaxRedeem";
|
|
131
|
-
readonly type: "error";
|
|
132
|
-
}, {
|
|
133
|
-
readonly inputs: readonly [{
|
|
134
|
-
readonly internalType: "address";
|
|
135
|
-
readonly name: "owner";
|
|
136
|
-
readonly type: "address";
|
|
137
|
-
}, {
|
|
138
|
-
readonly internalType: "uint256";
|
|
139
|
-
readonly name: "assets";
|
|
140
|
-
readonly type: "uint256";
|
|
141
|
-
}, {
|
|
142
|
-
readonly internalType: "uint256";
|
|
143
|
-
readonly name: "max";
|
|
144
|
-
readonly type: "uint256";
|
|
145
|
-
}];
|
|
146
|
-
readonly name: "ERC4626ExceededMaxWithdraw";
|
|
147
|
-
readonly type: "error";
|
|
148
|
-
}, {
|
|
149
|
-
readonly inputs: readonly [];
|
|
150
|
-
readonly name: "FailedInnerCall";
|
|
151
|
-
readonly type: "error";
|
|
152
|
-
}, {
|
|
153
|
-
readonly inputs: readonly [];
|
|
154
|
-
readonly name: "MathOverflowedMulDiv";
|
|
155
|
-
readonly type: "error";
|
|
156
|
-
}, {
|
|
157
|
-
readonly inputs: readonly [{
|
|
158
|
-
readonly internalType: "address";
|
|
159
|
-
readonly name: "token";
|
|
160
|
-
readonly type: "address";
|
|
161
|
-
}];
|
|
162
|
-
readonly name: "SafeERC20FailedOperation";
|
|
163
|
-
readonly type: "error";
|
|
164
|
-
}, {
|
|
165
|
-
readonly anonymous: false;
|
|
166
|
-
readonly inputs: readonly [{
|
|
167
|
-
readonly indexed: true;
|
|
168
|
-
readonly internalType: "address";
|
|
169
|
-
readonly name: "owner";
|
|
170
|
-
readonly type: "address";
|
|
171
|
-
}, {
|
|
172
|
-
readonly indexed: true;
|
|
173
|
-
readonly internalType: "address";
|
|
174
|
-
readonly name: "spender";
|
|
175
|
-
readonly type: "address";
|
|
176
|
-
}, {
|
|
177
|
-
readonly indexed: false;
|
|
178
|
-
readonly internalType: "uint256";
|
|
179
|
-
readonly name: "value";
|
|
180
|
-
readonly type: "uint256";
|
|
181
|
-
}];
|
|
182
|
-
readonly name: "Approval";
|
|
183
|
-
readonly type: "event";
|
|
184
|
-
}, {
|
|
185
|
-
readonly anonymous: false;
|
|
186
|
-
readonly inputs: readonly [{
|
|
187
|
-
readonly indexed: true;
|
|
188
|
-
readonly internalType: "address";
|
|
189
|
-
readonly name: "sender";
|
|
190
|
-
readonly type: "address";
|
|
191
|
-
}, {
|
|
192
|
-
readonly indexed: true;
|
|
193
|
-
readonly internalType: "address";
|
|
194
|
-
readonly name: "owner";
|
|
195
|
-
readonly type: "address";
|
|
196
|
-
}, {
|
|
197
|
-
readonly indexed: false;
|
|
198
|
-
readonly internalType: "uint256";
|
|
199
|
-
readonly name: "assets";
|
|
200
|
-
readonly type: "uint256";
|
|
201
|
-
}, {
|
|
202
|
-
readonly indexed: false;
|
|
203
|
-
readonly internalType: "uint256";
|
|
204
|
-
readonly name: "shares";
|
|
205
|
-
readonly type: "uint256";
|
|
206
|
-
}];
|
|
207
|
-
readonly name: "Deposit";
|
|
208
|
-
readonly type: "event";
|
|
209
|
-
}, {
|
|
210
|
-
readonly anonymous: false;
|
|
211
|
-
readonly inputs: readonly [{
|
|
212
|
-
readonly indexed: true;
|
|
213
|
-
readonly internalType: "address";
|
|
214
|
-
readonly name: "from";
|
|
215
|
-
readonly type: "address";
|
|
216
|
-
}, {
|
|
217
|
-
readonly indexed: true;
|
|
218
|
-
readonly internalType: "address";
|
|
219
|
-
readonly name: "to";
|
|
220
|
-
readonly type: "address";
|
|
221
|
-
}, {
|
|
222
|
-
readonly indexed: false;
|
|
223
|
-
readonly internalType: "uint256";
|
|
224
|
-
readonly name: "value";
|
|
225
|
-
readonly type: "uint256";
|
|
226
|
-
}];
|
|
227
|
-
readonly name: "Transfer";
|
|
228
|
-
readonly type: "event";
|
|
229
|
-
}, {
|
|
230
|
-
readonly anonymous: false;
|
|
231
|
-
readonly inputs: readonly [{
|
|
232
|
-
readonly indexed: true;
|
|
233
|
-
readonly internalType: "address";
|
|
234
|
-
readonly name: "sender";
|
|
235
|
-
readonly type: "address";
|
|
236
|
-
}, {
|
|
237
|
-
readonly indexed: true;
|
|
238
|
-
readonly internalType: "address";
|
|
239
|
-
readonly name: "receiver";
|
|
240
|
-
readonly type: "address";
|
|
241
|
-
}, {
|
|
242
|
-
readonly indexed: true;
|
|
243
|
-
readonly internalType: "address";
|
|
244
|
-
readonly name: "owner";
|
|
245
|
-
readonly type: "address";
|
|
246
|
-
}, {
|
|
247
|
-
readonly indexed: false;
|
|
248
|
-
readonly internalType: "uint256";
|
|
249
|
-
readonly name: "assets";
|
|
250
|
-
readonly type: "uint256";
|
|
251
|
-
}, {
|
|
252
|
-
readonly indexed: false;
|
|
253
|
-
readonly internalType: "uint256";
|
|
254
|
-
readonly name: "shares";
|
|
255
|
-
readonly type: "uint256";
|
|
256
|
-
}];
|
|
257
|
-
readonly name: "Withdraw";
|
|
258
|
-
readonly type: "event";
|
|
259
|
-
}, {
|
|
260
|
-
readonly inputs: readonly [{
|
|
261
|
-
readonly internalType: "address";
|
|
262
|
-
readonly name: "owner";
|
|
263
|
-
readonly type: "address";
|
|
264
|
-
}, {
|
|
265
|
-
readonly internalType: "address";
|
|
266
|
-
readonly name: "spender";
|
|
267
|
-
readonly type: "address";
|
|
268
|
-
}];
|
|
269
|
-
readonly name: "allowance";
|
|
270
|
-
readonly outputs: readonly [{
|
|
271
|
-
readonly internalType: "uint256";
|
|
272
|
-
readonly name: "";
|
|
273
|
-
readonly type: "uint256";
|
|
274
|
-
}];
|
|
275
|
-
readonly stateMutability: "view";
|
|
276
|
-
readonly type: "function";
|
|
277
|
-
}, {
|
|
278
|
-
readonly inputs: readonly [{
|
|
279
|
-
readonly internalType: "address";
|
|
280
|
-
readonly name: "spender";
|
|
281
|
-
readonly type: "address";
|
|
282
|
-
}, {
|
|
283
|
-
readonly internalType: "uint256";
|
|
284
|
-
readonly name: "value";
|
|
285
|
-
readonly type: "uint256";
|
|
286
|
-
}];
|
|
287
|
-
readonly name: "approve";
|
|
288
|
-
readonly outputs: readonly [{
|
|
289
|
-
readonly internalType: "bool";
|
|
290
|
-
readonly name: "";
|
|
291
|
-
readonly type: "bool";
|
|
292
|
-
}];
|
|
293
|
-
readonly stateMutability: "nonpayable";
|
|
294
|
-
readonly type: "function";
|
|
295
|
-
}, {
|
|
296
|
-
readonly inputs: readonly [];
|
|
297
|
-
readonly name: "asset";
|
|
298
|
-
readonly outputs: readonly [{
|
|
299
|
-
readonly internalType: "address";
|
|
300
|
-
readonly name: "";
|
|
301
|
-
readonly type: "address";
|
|
302
|
-
}];
|
|
303
|
-
readonly stateMutability: "view";
|
|
304
|
-
readonly type: "function";
|
|
305
|
-
}, {
|
|
306
|
-
readonly inputs: readonly [{
|
|
307
|
-
readonly internalType: "address";
|
|
308
|
-
readonly name: "account";
|
|
309
|
-
readonly type: "address";
|
|
310
|
-
}];
|
|
311
|
-
readonly name: "balanceOf";
|
|
312
|
-
readonly outputs: readonly [{
|
|
313
|
-
readonly internalType: "uint256";
|
|
314
|
-
readonly name: "";
|
|
315
|
-
readonly type: "uint256";
|
|
316
|
-
}];
|
|
317
|
-
readonly stateMutability: "view";
|
|
318
|
-
readonly type: "function";
|
|
319
|
-
}, {
|
|
320
|
-
readonly inputs: readonly [{
|
|
321
|
-
readonly internalType: "uint256";
|
|
322
|
-
readonly name: "shares";
|
|
323
|
-
readonly type: "uint256";
|
|
324
|
-
}];
|
|
325
|
-
readonly name: "convertToAssets";
|
|
326
|
-
readonly outputs: readonly [{
|
|
327
|
-
readonly internalType: "uint256";
|
|
328
|
-
readonly name: "";
|
|
329
|
-
readonly type: "uint256";
|
|
330
|
-
}];
|
|
331
|
-
readonly stateMutability: "view";
|
|
332
|
-
readonly type: "function";
|
|
333
|
-
}, {
|
|
334
|
-
readonly inputs: readonly [{
|
|
335
|
-
readonly internalType: "uint256";
|
|
336
|
-
readonly name: "assets";
|
|
337
|
-
readonly type: "uint256";
|
|
338
|
-
}];
|
|
339
|
-
readonly name: "convertToShares";
|
|
340
|
-
readonly outputs: readonly [{
|
|
341
|
-
readonly internalType: "uint256";
|
|
342
|
-
readonly name: "";
|
|
343
|
-
readonly type: "uint256";
|
|
344
|
-
}];
|
|
345
|
-
readonly stateMutability: "view";
|
|
346
|
-
readonly type: "function";
|
|
347
|
-
}, {
|
|
348
|
-
readonly inputs: readonly [];
|
|
349
|
-
readonly name: "decimals";
|
|
350
|
-
readonly outputs: readonly [{
|
|
351
|
-
readonly internalType: "uint8";
|
|
352
|
-
readonly name: "";
|
|
353
|
-
readonly type: "uint8";
|
|
354
|
-
}];
|
|
355
|
-
readonly stateMutability: "view";
|
|
356
|
-
readonly type: "function";
|
|
357
|
-
}, {
|
|
358
|
-
readonly inputs: readonly [{
|
|
359
|
-
readonly internalType: "uint256";
|
|
360
|
-
readonly name: "assets";
|
|
361
|
-
readonly type: "uint256";
|
|
362
|
-
}, {
|
|
363
|
-
readonly internalType: "address";
|
|
364
|
-
readonly name: "receiver";
|
|
365
|
-
readonly type: "address";
|
|
366
|
-
}];
|
|
367
|
-
readonly name: "deposit";
|
|
368
|
-
readonly outputs: readonly [{
|
|
369
|
-
readonly internalType: "uint256";
|
|
370
|
-
readonly name: "";
|
|
371
|
-
readonly type: "uint256";
|
|
372
|
-
}];
|
|
373
|
-
readonly stateMutability: "nonpayable";
|
|
374
|
-
readonly type: "function";
|
|
375
|
-
}, {
|
|
376
|
-
readonly inputs: readonly [{
|
|
377
|
-
readonly internalType: "address";
|
|
378
|
-
readonly name: "";
|
|
379
|
-
readonly type: "address";
|
|
380
|
-
}];
|
|
381
|
-
readonly name: "maxDeposit";
|
|
382
|
-
readonly outputs: readonly [{
|
|
383
|
-
readonly internalType: "uint256";
|
|
384
|
-
readonly name: "";
|
|
385
|
-
readonly type: "uint256";
|
|
386
|
-
}];
|
|
387
|
-
readonly stateMutability: "view";
|
|
388
|
-
readonly type: "function";
|
|
389
|
-
}, {
|
|
390
|
-
readonly inputs: readonly [{
|
|
391
|
-
readonly internalType: "address";
|
|
392
|
-
readonly name: "";
|
|
393
|
-
readonly type: "address";
|
|
394
|
-
}];
|
|
395
|
-
readonly name: "maxMint";
|
|
396
|
-
readonly outputs: readonly [{
|
|
397
|
-
readonly internalType: "uint256";
|
|
398
|
-
readonly name: "";
|
|
399
|
-
readonly type: "uint256";
|
|
400
|
-
}];
|
|
401
|
-
readonly stateMutability: "view";
|
|
402
|
-
readonly type: "function";
|
|
403
|
-
}, {
|
|
404
|
-
readonly inputs: readonly [{
|
|
405
|
-
readonly internalType: "address";
|
|
406
|
-
readonly name: "owner";
|
|
407
|
-
readonly type: "address";
|
|
408
|
-
}];
|
|
409
|
-
readonly name: "maxRedeem";
|
|
410
|
-
readonly outputs: readonly [{
|
|
411
|
-
readonly internalType: "uint256";
|
|
412
|
-
readonly name: "";
|
|
413
|
-
readonly type: "uint256";
|
|
414
|
-
}];
|
|
415
|
-
readonly stateMutability: "view";
|
|
416
|
-
readonly type: "function";
|
|
417
|
-
}, {
|
|
418
|
-
readonly inputs: readonly [{
|
|
419
|
-
readonly internalType: "address";
|
|
420
|
-
readonly name: "owner";
|
|
421
|
-
readonly type: "address";
|
|
422
|
-
}];
|
|
423
|
-
readonly name: "maxWithdraw";
|
|
424
|
-
readonly outputs: readonly [{
|
|
425
|
-
readonly internalType: "uint256";
|
|
426
|
-
readonly name: "";
|
|
427
|
-
readonly type: "uint256";
|
|
428
|
-
}];
|
|
429
|
-
readonly stateMutability: "view";
|
|
430
|
-
readonly type: "function";
|
|
431
|
-
}, {
|
|
432
|
-
readonly inputs: readonly [{
|
|
433
|
-
readonly internalType: "uint256";
|
|
434
|
-
readonly name: "shares";
|
|
435
|
-
readonly type: "uint256";
|
|
436
|
-
}, {
|
|
437
|
-
readonly internalType: "address";
|
|
438
|
-
readonly name: "receiver";
|
|
439
|
-
readonly type: "address";
|
|
440
|
-
}];
|
|
441
|
-
readonly name: "mint";
|
|
442
|
-
readonly outputs: readonly [{
|
|
443
|
-
readonly internalType: "uint256";
|
|
444
|
-
readonly name: "";
|
|
445
|
-
readonly type: "uint256";
|
|
446
|
-
}];
|
|
447
|
-
readonly stateMutability: "nonpayable";
|
|
448
|
-
readonly type: "function";
|
|
449
|
-
}, {
|
|
450
|
-
readonly inputs: readonly [];
|
|
451
|
-
readonly name: "name";
|
|
452
|
-
readonly outputs: readonly [{
|
|
453
|
-
readonly internalType: "string";
|
|
454
|
-
readonly name: "";
|
|
455
|
-
readonly type: "string";
|
|
456
|
-
}];
|
|
457
|
-
readonly stateMutability: "view";
|
|
458
|
-
readonly type: "function";
|
|
459
|
-
}, {
|
|
460
|
-
readonly inputs: readonly [{
|
|
461
|
-
readonly internalType: "uint256";
|
|
462
|
-
readonly name: "assets";
|
|
463
|
-
readonly type: "uint256";
|
|
464
|
-
}];
|
|
465
|
-
readonly name: "previewDeposit";
|
|
466
|
-
readonly outputs: readonly [{
|
|
467
|
-
readonly internalType: "uint256";
|
|
468
|
-
readonly name: "";
|
|
469
|
-
readonly type: "uint256";
|
|
470
|
-
}];
|
|
471
|
-
readonly stateMutability: "view";
|
|
472
|
-
readonly type: "function";
|
|
473
|
-
}, {
|
|
474
|
-
readonly inputs: readonly [{
|
|
475
|
-
readonly internalType: "uint256";
|
|
476
|
-
readonly name: "shares";
|
|
477
|
-
readonly type: "uint256";
|
|
478
|
-
}];
|
|
479
|
-
readonly name: "previewMint";
|
|
480
|
-
readonly outputs: readonly [{
|
|
481
|
-
readonly internalType: "uint256";
|
|
482
|
-
readonly name: "";
|
|
483
|
-
readonly type: "uint256";
|
|
484
|
-
}];
|
|
485
|
-
readonly stateMutability: "view";
|
|
486
|
-
readonly type: "function";
|
|
487
|
-
}, {
|
|
488
|
-
readonly inputs: readonly [{
|
|
489
|
-
readonly internalType: "uint256";
|
|
490
|
-
readonly name: "shares";
|
|
491
|
-
readonly type: "uint256";
|
|
492
|
-
}];
|
|
493
|
-
readonly name: "previewRedeem";
|
|
494
|
-
readonly outputs: readonly [{
|
|
495
|
-
readonly internalType: "uint256";
|
|
496
|
-
readonly name: "";
|
|
497
|
-
readonly type: "uint256";
|
|
498
|
-
}];
|
|
499
|
-
readonly stateMutability: "view";
|
|
500
|
-
readonly type: "function";
|
|
501
|
-
}, {
|
|
502
|
-
readonly inputs: readonly [{
|
|
503
|
-
readonly internalType: "uint256";
|
|
504
|
-
readonly name: "assets";
|
|
505
|
-
readonly type: "uint256";
|
|
506
|
-
}];
|
|
507
|
-
readonly name: "previewWithdraw";
|
|
508
|
-
readonly outputs: readonly [{
|
|
509
|
-
readonly internalType: "uint256";
|
|
510
|
-
readonly name: "";
|
|
511
|
-
readonly type: "uint256";
|
|
512
|
-
}];
|
|
513
|
-
readonly stateMutability: "view";
|
|
514
|
-
readonly type: "function";
|
|
515
|
-
}, {
|
|
516
|
-
readonly inputs: readonly [{
|
|
517
|
-
readonly internalType: "uint256";
|
|
518
|
-
readonly name: "shares";
|
|
519
|
-
readonly type: "uint256";
|
|
520
|
-
}, {
|
|
521
|
-
readonly internalType: "address";
|
|
522
|
-
readonly name: "receiver";
|
|
523
|
-
readonly type: "address";
|
|
524
|
-
}, {
|
|
525
|
-
readonly internalType: "address";
|
|
526
|
-
readonly name: "owner";
|
|
527
|
-
readonly type: "address";
|
|
528
|
-
}];
|
|
529
|
-
readonly name: "redeem";
|
|
530
|
-
readonly outputs: readonly [{
|
|
531
|
-
readonly internalType: "uint256";
|
|
532
|
-
readonly name: "";
|
|
533
|
-
readonly type: "uint256";
|
|
534
|
-
}];
|
|
535
|
-
readonly stateMutability: "nonpayable";
|
|
536
|
-
readonly type: "function";
|
|
537
|
-
}, {
|
|
538
|
-
readonly inputs: readonly [];
|
|
539
|
-
readonly name: "symbol";
|
|
540
|
-
readonly outputs: readonly [{
|
|
541
|
-
readonly internalType: "string";
|
|
542
|
-
readonly name: "";
|
|
543
|
-
readonly type: "string";
|
|
544
|
-
}];
|
|
545
|
-
readonly stateMutability: "view";
|
|
546
|
-
readonly type: "function";
|
|
547
|
-
}, {
|
|
548
|
-
readonly inputs: readonly [];
|
|
549
|
-
readonly name: "totalAssets";
|
|
550
|
-
readonly outputs: readonly [{
|
|
551
|
-
readonly internalType: "uint256";
|
|
552
|
-
readonly name: "";
|
|
553
|
-
readonly type: "uint256";
|
|
554
|
-
}];
|
|
555
|
-
readonly stateMutability: "view";
|
|
556
|
-
readonly type: "function";
|
|
557
|
-
}, {
|
|
558
|
-
readonly inputs: readonly [];
|
|
559
|
-
readonly name: "totalSupply";
|
|
560
|
-
readonly outputs: readonly [{
|
|
561
|
-
readonly internalType: "uint256";
|
|
562
|
-
readonly name: "";
|
|
563
|
-
readonly type: "uint256";
|
|
564
|
-
}];
|
|
565
|
-
readonly stateMutability: "view";
|
|
566
|
-
readonly type: "function";
|
|
567
|
-
}, {
|
|
568
|
-
readonly inputs: readonly [{
|
|
569
|
-
readonly internalType: "address";
|
|
570
|
-
readonly name: "to";
|
|
571
|
-
readonly type: "address";
|
|
572
|
-
}, {
|
|
573
|
-
readonly internalType: "uint256";
|
|
574
|
-
readonly name: "value";
|
|
575
|
-
readonly type: "uint256";
|
|
576
|
-
}];
|
|
577
|
-
readonly name: "transfer";
|
|
578
|
-
readonly outputs: readonly [{
|
|
579
|
-
readonly internalType: "bool";
|
|
580
|
-
readonly name: "";
|
|
581
|
-
readonly type: "bool";
|
|
582
|
-
}];
|
|
583
|
-
readonly stateMutability: "nonpayable";
|
|
584
|
-
readonly type: "function";
|
|
585
|
-
}, {
|
|
586
|
-
readonly inputs: readonly [{
|
|
587
|
-
readonly internalType: "address";
|
|
588
|
-
readonly name: "from";
|
|
589
|
-
readonly type: "address";
|
|
590
|
-
}, {
|
|
591
|
-
readonly internalType: "address";
|
|
592
|
-
readonly name: "to";
|
|
593
|
-
readonly type: "address";
|
|
594
|
-
}, {
|
|
595
|
-
readonly internalType: "uint256";
|
|
596
|
-
readonly name: "value";
|
|
597
|
-
readonly type: "uint256";
|
|
598
|
-
}];
|
|
599
|
-
readonly name: "transferFrom";
|
|
600
|
-
readonly outputs: readonly [{
|
|
601
|
-
readonly internalType: "bool";
|
|
602
|
-
readonly name: "";
|
|
603
|
-
readonly type: "bool";
|
|
604
|
-
}];
|
|
605
|
-
readonly stateMutability: "nonpayable";
|
|
606
|
-
readonly type: "function";
|
|
607
|
-
}, {
|
|
608
|
-
readonly inputs: readonly [{
|
|
609
|
-
readonly internalType: "uint256";
|
|
610
|
-
readonly name: "assets";
|
|
611
|
-
readonly type: "uint256";
|
|
612
|
-
}, {
|
|
613
|
-
readonly internalType: "address";
|
|
614
|
-
readonly name: "receiver";
|
|
615
|
-
readonly type: "address";
|
|
616
|
-
}, {
|
|
617
|
-
readonly internalType: "address";
|
|
618
|
-
readonly name: "owner";
|
|
619
|
-
readonly type: "address";
|
|
620
|
-
}];
|
|
621
|
-
readonly name: "withdraw";
|
|
622
|
-
readonly outputs: readonly [{
|
|
623
|
-
readonly internalType: "uint256";
|
|
624
|
-
readonly name: "";
|
|
625
|
-
readonly type: "uint256";
|
|
626
|
-
}];
|
|
627
|
-
readonly stateMutability: "nonpayable";
|
|
628
|
-
readonly type: "function";
|
|
629
|
-
}];
|
|
630
|
-
static createInterface(): ERC4626Interface;
|
|
631
|
-
static connect(address: string, runner?: ContractRunner | null): ERC4626;
|
|
632
|
-
}
|