@raac/rpc 1.1.0-beta.62 → 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/lendingPool/getParameters.js +1 -3
- 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 +9 -5
- package/dist/types/RPCLibrary.d.ts +0 -4
- package/dist/types/pools/lendingPool/getParameters.d.ts +0 -2
- 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,861 +0,0 @@
|
|
|
1
|
-
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
-
import type { Signer, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
-
import type { NonPayableOverrides } from "../../../../common";
|
|
4
|
-
import type { RWAVault, RWAVaultInterface } from "../../../../contracts/core/vaults/RWAVault";
|
|
5
|
-
type RWAVaultConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
-
export declare class RWAVault__factory extends ContractFactory {
|
|
7
|
-
constructor(...args: RWAVaultConstructorParams);
|
|
8
|
-
getDeployTransaction(_vaultToken: AddressLike, _underlyingAssetToken: AddressLike, _complianceRegistry: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
|
-
from?: string;
|
|
10
|
-
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(_vaultToken: AddressLike, _underlyingAssetToken: AddressLike, _complianceRegistry: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
|
-
from?: string;
|
|
13
|
-
}): Promise<RWAVault & {
|
|
14
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
-
}>;
|
|
16
|
-
connect(runner: ContractRunner | null): RWAVault__factory;
|
|
17
|
-
static readonly bytecode = "0x60a034620001a757601f6200332038819003918201601f191683019291906001600160401b03841183851017620001ac578160609284926040968752833981010312620001a7576200005181620001c2565b906200006d836200006560208401620001c2565b9201620001c2565b9033156200018f576000549260018060a01b031993338582161760005585519060018060a01b03948591823391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a360018055169081156200015d575060805260c8600c556203f480600f556109c46011556002601255821680158062000152575b62000141578360045416176004551690600e541617600e5560ff1960105416601055516131489081620001d8823960805181818161084e01528181610b23015281816112920152611f830152f35b845163e6c4247b60e01b8152600490fd5b5082821615620000f3565b62461bcd60e51b815260206004820152600d60248201526c5a65726f20726567697374727960981b6044820152606490fd5b8351631e4fbdf760e01b815260006004820152602490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b0382168203620001a75756fe6040608081526004908136101561001557600080fd5b600091823560e01c90816301e1d114146125e7578163048c661d146125be57816307a2d13a1461259e57816315513bee1461253b5781631ef4d1fd1461251257816322f2caf11461240e57816329bd56a8146123e15781632a0ef88c14611f365781632b03712b14611eec5781632d06177a14611e795781632f17682b1461118857816335026cb314611e4e578163382ddce114611d6d5781633a150b1214611cc6578163435f2e9014611bac5781634681cbdb14611ac75781634b84da9314611aa85781634ef501ac14611a7d5781634fb0b29114611a5e57816352f9d26814611934578163618295df146117c9578163703bafd5146102b5578163715018a61461178157816372c3edcf1461160d57816377262d38146112535781637def383214611212578163861829ee146111ee5781638da5cb5b146111c65781638f7e84981461118857816398d721e01461113c57816399530b061461111f5781639c846536146110f0578163a42dce8014611097578163a7f626ec14611078578163a928c1391461103a578163ac18de4314610fc4578163ad071f0014610f9b578163af3ce6df14610f5d578163b1886e5114610f26578163b83bbbe414610cd6578163be1f6a5b14610ba2578163c415b95c14610b79578163c6e6f59214610b52578163cac89c5c14610b0e578163cad6d30314610aef578163cfd6aa9014610a3a578163d6afd04c14610a1b578163e1da26c614610817578163f2fde38b146107a0578163f3ae241514610775578163f713890f14610347578163f9d6cc74146102e1578163fdd048ae146102b5575063fdff9b4d1461027557600080fd5b346102b15760203660031901126102b15760209160ff9082906001600160a01b0361029e612604565b1681526003855220541690519015158152f35b5080fd5b9050346102dd57826003193601126102dd575490516001600160a01b03909116815260209150f35b8280fd5b919050346102dd5760603660031901126102dd576024356044359161030461271c565b612710808311908115610334575b5061032557506011556012553560135580f35b51631f3b85d360e01b81528390fd5b905061034084846127af565b1138610312565b919050346102dd5761035836612647565b929060018060a01b038092169283885261037d60ff8760209a60068c522054166127f4565b610385612890565b82600254163303610726576000938386161561071657908792916103a7612fc3565b928a868654168a51968780926318160ddd60e01b82525afa92831561070c57918a91888d9481966106ca575b6103f498508c519889958694859363967803fb60e01b8552339285016129a0565b03925af19283156105f357859361069b575b5080158015610693575b1561067b575050945b851561066d5781815416803b156106695783865180926340c10f1960e01b82528183816104498d308a8401612701565b03925af1801561065f57908893929161064c575b50839482600d541680151580610645575b610501575b50846104826104a1978a6127e7565b938354169288519788958694859363a9059cbb60e01b85528401612701565b03925af180156104f5576104bc575b50506001805551908152f35b8482813d83116104ee575b6104d1818361278c565b810103126104eb57506104e390612863565b5038806104b0565b80fd5b503d6104c7565b508251903d90823e3d90fd5b955090919261053a90612710610517878b6127af565b0480978686541690888b5180968195829463095ea7b360e01b84528b8401612701565b03925af19081156105f357859161060c575b50156105fd57838884600d54166084868654168a519485938492636033e31560e01b8452898401523060248401528b60448401526000805160206130d383398151915260648401525af180156105f357908994939291156104735790929495919381813d83116105ec575b6105c1818361278c565b810103126105e85791856104828a95936105df6104a1999896612863565b50975050610473565b8580fd5b503d6105b7565b87513d87823e3d90fd5b5084516340b27c2160e11b8152fd5b90508881813d831161063e575b610623818361278c565b8101031261063a5761063490612863565b3861054c565b8480fd5b503d610619565b508561046e565b61065890949194612748565b923861045d565b86513d86823e3d90fd5b8380fd5b8451636edcc52360e01b8152fd5b6106889061068d936127af565b612870565b94610419565b508115610410565b9092508881813d83116106c3575b6106b3818361278c565b8101031261063a57519138610406565b503d6106a9565b96979350509290935081813d8311610705575b6106e7818361278c565b81010312610701576103f49493928b92888c9351956103d3565b8680fd5b503d6106dd565b89513d89823e3d90fd5b865163e6c4247b60e01b81528890fd5b855162461bcd60e51b81528088018990526024808201527f5257415661756c743a206f6e6c792073746162696c69747920706f6f6c206361604482015263363632b960e11b6064820152608490fd5b5050346102b15760203660031901126102b15760209160ff9082906001600160a01b0361029e612604565b9050346102dd5760203660031901126102dd576107bb612604565b906107c461271c565b6001600160a01b039182169283156108015750506000548260018060a01b0319821617600055166000805160206130f3833981519152600080a380f35b51631e4fbdf760e01b8152908101849052602490fd5b8383346102b157816003193601126102b157805163fe575a8760e01b81523384820152602091906001600160a01b039083816024817f000000000000000000000000000000000000000000000000000000000000000086165afa90811561098e5785916109e6575b506109d65760ff6010541615610998576005541693815163113c212560e11b815283818381895afa801561098e57859061095f575b6108bf9150426127e7565b600f541161092457815163e0c8628960e01b81529190839083908187895af190811561091b57506108ee578280f35b813d8311610914575b610901818361278c565b8101031261090f5781808280f35b600080fd5b503d6108f7565b513d85823e3d90fd5b82606492519162461bcd60e51b835282015260176024820152761e5bdd4818d85b9b9bdd081cd95b99081c995c5d595cdd604a1b6044820152fd5b508381813d8311610987575b610975818361278c565b8101031261090f576108bf90516108b4565b503d61096b565b83513d87823e3d90fd5b815162461bcd60e51b815280860184905260186024820152771c1d589b1a58c81c995c5d595cdd1cc8191a5cd8589b195960421b6044820152606490fd5b8151632652747360e21b81528590fd5b90508381813d8311610a14575b6109fd818361278c565b8101031261063a57610a0e90612863565b8661087f565b503d6109f3565b5050346102b157816003193601126102b1576020906013549051908152f35b919050346102dd5760203660031901126102dd57610a56612604565b610a5e61271c565b6001600160a01b0316918215610ae157600580546001600160a01b031981168517909155825163e0c8628960e01b8152936020928592909183918891908216175af1908115610ad85750610ab0575080f35b602090813d8111610ad1575b610ac6818361278c565b8101031261090f5780f35b503d610abc565b513d84823e3d90fd5b905163e6c4247b60e01b8152fd5b5050346102b157816003193601126102b157602090600f549051908152f35b5050346102b157816003193601126102b157517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b8284346104eb5760203660031901126104eb5750610b7260209235612dc9565b9051908152f35b5050346102b157816003193601126102b157600d5490516001600160a01b039091168152602090f35b919050346102dd57806003193601126102dd57610bbd612604565b6024356001600160401b03811161063a57610bdb903690850161261a565b9190923386526020916003835260ff828820541615610cc05782610c3b9160018060a01b03169687895260068252610c1860ff858b2054166127f4565b610c20612890565b83518093819263967803fb60e01b8352888a339285016129a0565b03818a8a5af18015610cb657610c8c575b507f7aefc3b06f6dfff2fc89921df2661821179705d1b52806c337827054cdf2bd6993610c82915193838594855284019161297f565b0390a26001805580f35b8290813d8311610caf575b610ca1818361278c565b8101031261090f5738610c4c565b503d610c97565b82513d89823e3d90fd5b8151632a19e83360e01b81523381880152602490fd5b9050346102dd576020918260031936011261066957610cf3612604565b92610cfc61271c565b6001600160a01b0384168086526006825282862054610d1d9060ff166127f4565b8086526008825260ff8387205416610ed457825163112c62f760e31b815286818681855afa908115610eca578791610e2c575b508281519101206006838551610d6581612771565b828152016545524337323160d01b81522003610dea578552600890528320805460ff1916600117905560095490600160401b821015610dd5575090610db3826001610dd2940160095561269a565b90919082549060031b9160018060a01b03809116831b921b1916179055565b80f35b604190634e487b7160e01b6000525260246000fd5b50905162461bcd60e51b815291820152601f60248201527f5257415661756c743a2061646170746572206973206e6f7420455243373231006044820152606490fd5b90503d8088833e610e3d818361278c565b8101908381830312610ec65780516001600160401b0391828211610ec257019082601f83011215610ea9578151908111610ead57855192610e87601f8301601f191687018561278c565b818452858284010111610ea957610ea391858085019101612840565b38610d50565b8880fd5b604187634e487b7160e01b6000525260246000fd5b8980fd5b8780fd5b84513d89823e3d90fd5b50905162461bcd60e51b815291820152602760248201527f5257415661756c743a2072656465656d616c626c6520616c72656164792073756044820152661c1c1bdc9d195960ca1b6064820152608490fd5b8390346102b15760203660031901126102b157358015158091036102b157610f4c61271c565b60ff80196010541691161760105580f35b5050346102b15760203660031901126102b15760209160ff9082906001600160a01b03610f88612604565b1681526008855220541690519015158152f35b5050346102b157816003193601126102b157600e5490516001600160a01b039091168152602090f35b5050346102b15760203660031901126102b1576110347f3e902a6ee93dd5b2d48bd1009c7701a481be512b1ef73dbed2f95ea44c59ea8891611004612604565b9061100d61271c565b6001600160a01b03821685526003602052808520805460ff19169055519182913383613078565b0390a180f35b5050346102b15760203660031901126102b15760209160ff9082906001600160a01b03611065612604565b168152600a855220541690519015158152f35b5050346102b157816003193601126102b1576020906012549051908152f35b9050346102dd5760203660031901126102dd576110b2612604565b6110ba61271c565b6001600160a01b03169182156110e3575050600d80546001600160a01b03191691909117905580f35b5163e6c4247b60e01b8152fd5b5050346102b157816003193601126102b15761111b9061110e612a05565b9290915192839283612701565b0390f35b5050346102b157816003193601126102b157602090610b72612e7c565b9050346102dd5760203660031901126102dd57611157612604565b61115f61271c565b6001600160a01b03169182156110e3575050600280546001600160a01b03191691909117905580f35b5050346102b15760203660031901126102b15760209160ff9082906001600160a01b036111b3612604565b1681526006855220541690519015158152f35b5050346102b157816003193601126102b157905490516001600160a01b039091168152602090f35b5050346102b157816003193601126102b15760209060ff6010541690519015158152f35b9050346102dd5760203660031901126102dd573591600b548310156104eb575061123d6020926126e6565b905491519160018060a01b039160031b1c168152f35b9050346102dd57826003193601126102dd5761126d612890565b815163fe575a8760e01b81523382820152602091906001600160a01b039083816024817f000000000000000000000000000000000000000000000000000000000000000086165afa9081156116035786916115ce575b506115bf578060055416156115b0576112da612a05565b93908286519186848401528383526112f183612771565b16865163c12ca8bd60e01b8152838682015283818061131360248201876129c9565b0381855afa9081156114d2578991611583575b5080156115735761133690612dc9565b918486541688516370a0823160e01b815233888201528581602481855afa80156115695785918c91611538575b50106115285789813b156104eb578085611394938a838e51809781958294632770a7eb60e21b845233908401612701565b03925af191821561151c578692611505575b50506113cb9189518093819263c8f98d9160e01b83528c8b84015260448301906129c9565b33602483015203818c865af19081156114d25784916114dc575b5088908560055416878a518094819363e0c8628960e01b83525af19081156114d25784916114a9575b509087519586809263f8eef10f60e01b82525afa91821561149f578792611455575b6000805160206130938339815191529450865195865285015216923392a36001805580f35b80925084819592953d8311611498575b61146f818361278c565b810103126107015751928284168403610701576000805160206130938339815191529391611430565b503d611465565b86513d89823e3d90fd5b813d83116114cb575b6114bc818361278c565b8101031261090f57823861140e565b503d6114b2565b88513d8b823e3d90fd5b813d83116114fe575b6114ef818361278c565b8101031261090f5782386113e5565b503d6114e5565b611510919250612748565b610ea9578389386113a6565b508951903d90823e3d90fd5b8851631e9acf1760e31b81528790fd5b809250878092503d8311611562575b611551818361278c565b8101031261090f5784905138611363565b503d611547565b8a513d8d823e3d90fd5b875163079f151f60e11b81528690fd5b90508381813d83116115a9575b61159a818361278c565b8101031261090f575138611326565b503d611590565b50825163902732e760e01b8152fd5b508251632652747360e21b8152fd5b90508381813d83116115fc575b6115e5818361278c565b810103126105e8576115f690612863565b386112c3565b503d6115db565b85513d88823e3d90fd5b919050346102dd5760203660031901126102dd57611629612604565b9061163261271c565b6001600160a01b03918216808552600a6020528185205490919060ff161561173357818552600a6020528420805460ff19169055835b600b80548083101561172a57848461167f856126e6565b929054600393841b1c161461169f5750505061169a906127d8565b611668565b909491959350600019948581019081116117175791610db3916116c56116d195946126e6565b9054911b1c16916126e6565b8254908115611702575001906116fe6116e9836126e6565b81549060018060a01b039060031b1b19169055565b5580f35b603190634e487b7160e01b6000525260246000fd5b634e487b7160e01b885260118552602488fd5b50505050505080f35b5162461bcd60e51b8152602081850152602360248201527f5257415661756c743a206465706f73697461626c65206e6f7420737570706f726044820152621d195960ea1b6064820152608490fd5b83346104eb57806003193601126104eb5761179a61271c565b600080546001600160a01b0319811682556001600160a01b03166000805160206130f38339815191528280a380f35b9050346102dd5760203660031901126102dd576117e4612604565b916117ed61271c565b6001600160a01b0392831680855260066020528185205490929060ff16156118f8578285526006602052818520805460ff19169055845b60078054808310156118da57868661183b856126cb565b929054600393841b1c161461185b57505050611856906127d8565b611824565b6000979194939295969719948581019081116118c75791610db39161188361188f95946126cb565b9054911b1c16916126cb565b8254908115611702575091602093916000805160206130b3833981519152959301906118bd6116e9836126cb565b555b51908152a180f35b634e487b7160e01b8a526011855260248afd5b505050506000805160206130b38339815191529250906020916118bf565b6020606492519162461bcd60e51b835282015260176024820152761495d055905d5b1d0e881b9bdd081cdd5c1c1bdc9d1959604a1b6044820152fd5b919050346102dd5760203660031901126102dd57611950612604565b9061195961271c565b6001600160a01b0391821680855260086020528185205490919060ff1615611a105781855260086020528420805460ff19169055835b600980548083101561172a5784846119a68561269a565b929054600393841b1c16146119c6575050506119c1906127d8565b61198f565b909491959350600019948581019081116117175791610db3916119ec6119f8959461269a565b9054911b1c169161269a565b8254908115611702575001906116fe6116e98361269a565b5162461bcd60e51b8152602081850152602360248201527f5257415661756c743a2072656465656d616c626c65206e6f7420737570706f726044820152621d195960ea1b6064820152608490fd5b5050346102b157816003193601126102b157602090600c549051908152f35b9050346102dd5760203660031901126102dd5735916007548310156104eb575061123d6020926126cb565b5050346102b157816003193601126102b1576020906011549051908152f35b9050346102dd5760203660031901126102dd57611ae2612604565b91611aeb61271c565b6001600160a01b038316808552600660205281852054611b0d9060ff166127f4565b808552600a60205260ff8286205416611b59578452600a6020528320805460ff19166001179055600b5490600160401b821015610dd5575090610db3826001610dd29401600b556126e6565b815162461bcd60e51b8152602081850152602760248201527f5257415661756c743a206465706f73697461626c6520616c72656164792073756044820152661c1c1bdc9d195960ca1b6064820152608490fd5b919050346102dd57611bbd36612647565b939092943387526020906003825260ff838920541615611caf576001600160a01b039687168089526006835283892054909790611bfc9060ff166127f4565b611c04612890565b861615611ca15781848692611c2b898751958694859463c8f98d9160e01b865285016129a0565b03818b8b5af18015611c9757611c6e575b50507fea3af3f7581d6981c715c36c2ef1fe21b1b63c3ef5509e678fa8df301f90867993610c829151938493846129a0565b813d8311611c90575b611c81818361278c565b8101031261090f573880611c3c565b503d611c77565b83513d8a823e3d90fd5b825163e6c4247b60e01b8152fd5b602490835190632a19e83360e01b82523390820152fd5b919050346102dd5760203660031901126102dd57813591611ce561271c565b6127108311611d205750816020917ff76e6c712945ce0f07c68bfa2e6e01d55304c715f7872a855b93cc3fc6bb10be93600c5551908152a180f35b6020608492519162461bcd60e51b8352820152602260248201527f5257415661756c743a20496e76616c69642070657263656e746167652076616c604482015261756560f01b6064820152fd5b919050346102dd57806003193601126102dd57611d88612604565b91338452600360205260ff82852054161580611e39575b611df75780548491906001600160a01b0316803b156102dd57611dda94838551809781958294632770a7eb60e21b8452602435918401612701565b03925af1908115610ad85750611dee575080f35b610dd290612748565b6020606492519162461bcd60e51b8352820152601e60248201527f6f6e6c79206d616e61676572206f722073746162696c69747920706f6f6c00006044820152fd5b506002546001600160a01b0316331415611d9f565b9050346102dd5760203660031901126102dd5735916009548310156104eb575061123d60209261269a565b5050346102b15760203660031901126102b1576110347f05a4006f300442cf8b7fdb885f5ee958812020bffb5c5a8e655fde64e5f987ed91611eb9612604565b90611ec261271c565b6001600160a01b03821685526003602052808520805460ff19166001179055519182913383613078565b83346104eb5760203660031901126104eb57611f06612604565b611f0e61271c565b60108054610100600160a81b03191660089290921b610100600160a81b031691909117905580f35b8383346102b157611f4636612647565b9192909560018060a01b0380921692838752602097600a895260ff87892054161561238a57865163fe575a8760e01b8152338482015289816024817f000000000000000000000000000000000000000000000000000000000000000089165afa9081156114d2578991612355575b5061234557611fc1612890565b879584831695863314612334575b600c5461271098890390898211612321578991611feb916127af565b04928a971561231157908591611fff612fc3565b938d898554168d51958680926318160ddd60e01b82525afa93841561230757928e928e8a938f98979682976122c1575b5061204f98519889958694859363967803fb60e01b8552339285016129a0565b03925af1928315611569578b9361228e575b5080158015612286575b15612273575050975b88156122635784845416803b156102b157816120a781928c8c519485809481936340c10f1960e01b8352308d8401612701565b03925af1801561225957908b969594939291612245575b5050859684600d5416918215158061223c575b612137575b505050846104826120e7978a6127e7565b03925af180156104f5576121015750506001805551908152f35b8482813d8311612130575b612116818361278c565b810103126104eb575061212890612863565b5083806104b0565b503d61210c565b61214b93949596929850610517908b6127af565b03925af19081156105f3578591612207575b50156105fd57838884600d54166084868654168a519485938492636033e31560e01b8452898401523060248401528b60448401526000805160206130d383398151915260648401525af180156105f3579089949392916121bf575b80806120d6565b90929495919381813d8311612200575b6121d9818361278c565b810103126105e85791856104828a95936121f76120e7999896612863565b509750506121b8565b503d6121cf565b90508881813d8311612235575b61221e818361278c565b8101031261063a5761222f90612863565b8961215d565b503d612214565b508015156120d1565b61225191929750612748565b948a806120be565b89513d84823e3d90fd5b8751636edcc52360e01b81528490fd5b61068890612280936127af565b97612074565b50811561206b565b9092508b81813d83116122ba575b6122a6818361278c565b810103126122b65751918c612061565b8a80fd5b503d61229c565b9450949296975050935081813d8311612300575b6122df818361278c565b810103126122fc5761204f94938c938f938f908b9451969861202f565b8c80fd5b503d6122d5565b8c513d8f823e3d90fd5b895163e6c4247b60e01b81528690fd5b634e487b7160e01b8c526011875260248cfd5b965061233f336128b3565b96611fcf565b8651632652747360e21b81528390fd5b90508981813d8311612383575b61236c818361278c565b81010312610ea95761237d90612863565b8a611fb4565b503d612362565b865162461bcd60e51b81528084018a9052602b60248201527f5257415661756c743a206465706f73697461626c652061646170746572206e6f60448201526a1d081cdd5c1c1bdc9d195960aa1b6064820152608490fd5b5050346102b157816003193601126102b157601054905160089190911c6001600160a01b03168152602090f35b8383346102b15760203660031901126102b157612429612604565b9061243261271c565b6001600160a01b03821680845260066020528184205490929060ff166124c3578284526006602052818420805460ff19166001179055600754600160401b8110156124b057916118bf7fa77e7c594c11a0d5d9d8e6a9132ac0db912dc0f34f5fb7d94860fe38d16410bd9492610db3856001602097016007556126cb565b634e487b7160e01b855260418652602485fd5b815162461bcd60e51b8152602081870152602360248201527f5257415661756c743a206164617074657220616c726561647920737570706f726044820152621d195960ea1b6064820152608490fd5b5050346102b157816003193601126102b15760055490516001600160a01b039091168152602090f35b9050346102dd5760203660031901126102dd5780359161255961271c565b8215612567575050600f5580f35b906020606492519162461bcd60e51b83528201526011602482015270064656c61792063616e6e6f79206265203607c1b6044820152fd5b8284346104eb5760203660031901126104eb5750610b7260209235612f2d565b5050346102b157816003193601126102b15760025490516001600160a01b039091168152602090f35b5050346102b157816003193601126102b157602090610b72612fc3565b600435906001600160a01b038216820361090f57565b9181601f8401121561090f578235916001600160401b03831161090f576020838186019501011161090f57565b90606060031983011261090f576001600160a01b03600435818116810361090f5792602435906001600160401b03821161090f576126879160040161261a565b92909291604435908116810361090f5790565b6009548110156126b557600960005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b6007548110156126b557600760005260206000200190600090565b600b548110156126b557600b60005260206000200190600090565b6001600160a01b039091168152602081019190915260400190565b6000546001600160a01b0316330361273057565b60405163118cdaa760e01b8152336004820152602490fd5b6001600160401b03811161275b57604052565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b0382111761275b57604052565b601f909101601f19168101906001600160401b0382119082101761275b57604052565b818102929181159184041417156127c257565b634e487b7160e01b600052601160045260246000fd5b60001981146127c25760010190565b919082039182116127c257565b156127fb57565b60405162461bcd60e51b815260206004820152601f60248201527f5257415661756c743a2061646170746572206e6f7420737570706f72746564006044820152606490fd5b60005b8381106128535750506000910152565b8181015183820152602001612843565b5190811515820361090f57565b811561287a570490565b634e487b7160e01b600052601260045260246000fd5b6002600154146128a1576002600155565b604051633ee5aeb560e01b8152600490fd5b60105460081c6001600160a01b03908116919082158015612975575b61296d576044602092601354946040519586948593635615438960e01b855216600484015260248301525afa80156129615760009061292e575b6012546129249250908181111561292757505b6011546127af565b90565b905061291c565b6020823d8211612959575b816129466020938361278c565b810103126104eb57506129249051612909565b3d9150612939565b6040513d6000823e3d90fd5b505050600090565b50601354156128cf565b908060209392818452848401376000828201840152601f01601f1916010190565b916020916129b99195949560408552604085019161297f565b6001600160a01b03909416910152565b906020916129e281518092818552858086019101612840565b601f01601f1916010190565b811561287a570690565b919082018092116127c257565b6005546001600160a01b03908116908115612db75760408051637253575d60e01b815260009460049486908390879082905afa918215612dad578692612cac575b50815115612c9c57600954918215612c595783015193845115612c465790602080950151612a7484826129ee565b928360019485805b612ac2575b885162461bcd60e51b8152808c018b9052601b60248201527a5257415661756c743a206e6f204e46547320617661696c61626c6560281b6044820152606490fd5b15612c39575b8a9083612ad48261269a565b90549060031b1c168c8c8c8c5180926336c1688f60e01b825281865afa918215612c2e5791612bfd575b5080612b3d575050868101809111612b2a5790612b20888897969594936129ee565b9192939495612a7c565b634e487b7160e01b8c5260118b5260248cfd5b969b999c985099965092505050885190848201928352898201528881526060810181811060018060401b03821117612bea578952519020612b7e91906129ee565b86516313261e7d60e11b8152938401528083602481875afa958615612bdf57508195612bac575b5050509190565b909180939550813d8311612bd8575b612bc5818361278c565b810103126104eb57505191388080612ba5565b503d612bbb565b51913d9150823e3d90fd5b634e487b7160e01b865260418752602486fd5b90508b81813d8311612c27575b612c14818361278c565b81010312612c23575138612afe565b8d80fd5b503d612c0a565b8c51903d90823e3d90fd5b818103612ac85780612a81565b634e487b7160e01b875260328652602487fd5b835162461bcd60e51b8152602081880181905260248201527f5257415661756c743a206e6f2072656465656d61626c652061646170746572736044820152606490fd5b82516344b3cf6360e11b81528590fd5b9091503d8087833e612cbe818361278c565b81019060208082840312610ec65781516001600160401b0392838211610ec2570192606084820312610ea9578551936060850185811085821117612d9a578752612d0781612863565b8552612d14838201612863565b8386015286810151908482116122b6570181601f82011215610ec2578051938411612d87578360051b90875194612d4d8584018761278c565b855283808601928201019283116122b6578301905b828210612d785750505050838201529038612a46565b81518152908301908301612d62565b634e487b7160e01b8a526041895260248afd5b634e487b7160e01b8b5260418a5260248bfd5b83513d88823e3d90fd5b60405163902732e760e01b8152600490fd5b600480546040516318160ddd60e01b81529160209183919082906001600160a01b03165afa90811561296157600091612e4b575b50612e06612fc3565b9181158015612e43575b612e3d57612e22612e279284926127af565b6129f8565b6000198101919082116127c25761292491612870565b91505090565b508215612e10565b906020823d8211612e74575b81612e646020938361278c565b810103126104eb57505138612dfd565b3d9150612e57565b600480546040516318160ddd60e01b81529160209183919082906001600160a01b03165afa90811561296157600091612efc575b50612eb9612fc3565b9081158015612ef4575b15612ed6575050670de0b6b3a764000090565b670de0b6b3a764000091808302928304036127c25761292491612870565b508015612ec3565b906020823d8211612f25575b81612f156020938361278c565b810103126104eb57505138612eb0565b3d9150612f08565b600480546040516318160ddd60e01b81529160209183919082906001600160a01b03165afa90811561296157600091612f92575b50612f6a612fc3565b80158015612f8a575b15612f7d57505090565b61068890612924936127af565b508115612f73565b906020823d8211612fbb575b81612fab6020938361278c565b810103126104eb57505138612f61565b3d9150612f9e565b60008080600754905b818310612fd95750505090565b909192612fe5846126cb565b9054604080516306a61f7560e51b81529092909160209182918491600491839160031b1c6001600160a01b03165afa92831561306f5750849261303f575b505061303290613038926129f8565b936127d8565b9190612fcc565b90809250813d8311613068575b613056818361278c565b810103126102dd575181613032613023565b503d61304c565b513d86823e3d90fd5b6001600160a01b039182168152911660208201526040019056fed83545ac6756a16d64a8499dee8a50cb08c2541e3f606f5648279bf915dbbea0df980d21d8c7bb34800e668dbe003299093bac8e693614151d3c57f73f98a93d7da96612e6d2354c2264e236b93bba777b43a745691cc351f1be3e1be17c0d538be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a264697066735822122056b918d0f65f10d57553f85d2fdd3fb2e395d1bb77d99a91eed4a7468f47b39a64736f6c63430008140033";
|
|
18
|
-
static readonly abi: readonly [{
|
|
19
|
-
readonly inputs: readonly [{
|
|
20
|
-
readonly internalType: "address";
|
|
21
|
-
readonly name: "_vaultToken";
|
|
22
|
-
readonly type: "address";
|
|
23
|
-
}, {
|
|
24
|
-
readonly internalType: "address";
|
|
25
|
-
readonly name: "_underlyingAssetToken";
|
|
26
|
-
readonly type: "address";
|
|
27
|
-
}, {
|
|
28
|
-
readonly internalType: "address";
|
|
29
|
-
readonly name: "_complianceRegistry";
|
|
30
|
-
readonly type: "address";
|
|
31
|
-
}];
|
|
32
|
-
readonly stateMutability: "nonpayable";
|
|
33
|
-
readonly type: "constructor";
|
|
34
|
-
}, {
|
|
35
|
-
readonly inputs: readonly [];
|
|
36
|
-
readonly name: "ApprovalFailed";
|
|
37
|
-
readonly type: "error";
|
|
38
|
-
}, {
|
|
39
|
-
readonly inputs: readonly [];
|
|
40
|
-
readonly name: "BlacklistedAddress";
|
|
41
|
-
readonly type: "error";
|
|
42
|
-
}, {
|
|
43
|
-
readonly inputs: readonly [];
|
|
44
|
-
readonly name: "InsufficientBalance";
|
|
45
|
-
readonly type: "error";
|
|
46
|
-
}, {
|
|
47
|
-
readonly inputs: readonly [];
|
|
48
|
-
readonly name: "InvalidAddress";
|
|
49
|
-
readonly type: "error";
|
|
50
|
-
}, {
|
|
51
|
-
readonly inputs: readonly [];
|
|
52
|
-
readonly name: "InvalidNFT";
|
|
53
|
-
readonly type: "error";
|
|
54
|
-
}, {
|
|
55
|
-
readonly inputs: readonly [];
|
|
56
|
-
readonly name: "InvalidPercentage";
|
|
57
|
-
readonly type: "error";
|
|
58
|
-
}, {
|
|
59
|
-
readonly inputs: readonly [];
|
|
60
|
-
readonly name: "InvalidShares";
|
|
61
|
-
readonly type: "error";
|
|
62
|
-
}, {
|
|
63
|
-
readonly inputs: readonly [];
|
|
64
|
-
readonly name: "InvalidVRFAddress";
|
|
65
|
-
readonly type: "error";
|
|
66
|
-
}, {
|
|
67
|
-
readonly inputs: readonly [{
|
|
68
|
-
readonly internalType: "address";
|
|
69
|
-
readonly name: "";
|
|
70
|
-
readonly type: "address";
|
|
71
|
-
}];
|
|
72
|
-
readonly name: "NotManager";
|
|
73
|
-
readonly type: "error";
|
|
74
|
-
}, {
|
|
75
|
-
readonly inputs: readonly [{
|
|
76
|
-
readonly internalType: "address";
|
|
77
|
-
readonly name: "owner";
|
|
78
|
-
readonly type: "address";
|
|
79
|
-
}];
|
|
80
|
-
readonly name: "OwnableInvalidOwner";
|
|
81
|
-
readonly type: "error";
|
|
82
|
-
}, {
|
|
83
|
-
readonly inputs: readonly [{
|
|
84
|
-
readonly internalType: "address";
|
|
85
|
-
readonly name: "account";
|
|
86
|
-
readonly type: "address";
|
|
87
|
-
}];
|
|
88
|
-
readonly name: "OwnableUnauthorizedAccount";
|
|
89
|
-
readonly type: "error";
|
|
90
|
-
}, {
|
|
91
|
-
readonly inputs: readonly [];
|
|
92
|
-
readonly name: "ReentrancyGuardReentrantCall";
|
|
93
|
-
readonly type: "error";
|
|
94
|
-
}, {
|
|
95
|
-
readonly inputs: readonly [];
|
|
96
|
-
readonly name: "RequestNotFulfilled";
|
|
97
|
-
readonly type: "error";
|
|
98
|
-
}, {
|
|
99
|
-
readonly anonymous: false;
|
|
100
|
-
readonly inputs: readonly [{
|
|
101
|
-
readonly indexed: false;
|
|
102
|
-
readonly internalType: "address";
|
|
103
|
-
readonly name: "adapter";
|
|
104
|
-
readonly type: "address";
|
|
105
|
-
}];
|
|
106
|
-
readonly name: "AdapterRegistered";
|
|
107
|
-
readonly type: "event";
|
|
108
|
-
}, {
|
|
109
|
-
readonly anonymous: false;
|
|
110
|
-
readonly inputs: readonly [{
|
|
111
|
-
readonly indexed: false;
|
|
112
|
-
readonly internalType: "address";
|
|
113
|
-
readonly name: "adapter";
|
|
114
|
-
readonly type: "address";
|
|
115
|
-
}];
|
|
116
|
-
readonly name: "AdapterRemoved";
|
|
117
|
-
readonly type: "event";
|
|
118
|
-
}, {
|
|
119
|
-
readonly anonymous: false;
|
|
120
|
-
readonly inputs: readonly [{
|
|
121
|
-
readonly indexed: true;
|
|
122
|
-
readonly internalType: "address";
|
|
123
|
-
readonly name: "adapter";
|
|
124
|
-
readonly type: "address";
|
|
125
|
-
}, {
|
|
126
|
-
readonly indexed: false;
|
|
127
|
-
readonly internalType: "bytes";
|
|
128
|
-
readonly name: "data";
|
|
129
|
-
readonly type: "bytes";
|
|
130
|
-
}];
|
|
131
|
-
readonly name: "AdminDeposit";
|
|
132
|
-
readonly type: "event";
|
|
133
|
-
}, {
|
|
134
|
-
readonly anonymous: false;
|
|
135
|
-
readonly inputs: readonly [{
|
|
136
|
-
readonly indexed: true;
|
|
137
|
-
readonly internalType: "address";
|
|
138
|
-
readonly name: "adapter";
|
|
139
|
-
readonly type: "address";
|
|
140
|
-
}, {
|
|
141
|
-
readonly indexed: false;
|
|
142
|
-
readonly internalType: "bytes";
|
|
143
|
-
readonly name: "data";
|
|
144
|
-
readonly type: "bytes";
|
|
145
|
-
}, {
|
|
146
|
-
readonly indexed: false;
|
|
147
|
-
readonly internalType: "address";
|
|
148
|
-
readonly name: "receiver";
|
|
149
|
-
readonly type: "address";
|
|
150
|
-
}];
|
|
151
|
-
readonly name: "AdminWithdraw";
|
|
152
|
-
readonly type: "event";
|
|
153
|
-
}, {
|
|
154
|
-
readonly anonymous: false;
|
|
155
|
-
readonly inputs: readonly [{
|
|
156
|
-
readonly indexed: false;
|
|
157
|
-
readonly internalType: "uint256";
|
|
158
|
-
readonly name: "indexTokenMintingFee";
|
|
159
|
-
readonly type: "uint256";
|
|
160
|
-
}];
|
|
161
|
-
readonly name: "IndexTokenMintingFeeSet";
|
|
162
|
-
readonly type: "event";
|
|
163
|
-
}, {
|
|
164
|
-
readonly anonymous: false;
|
|
165
|
-
readonly inputs: readonly [{
|
|
166
|
-
readonly indexed: false;
|
|
167
|
-
readonly internalType: "address";
|
|
168
|
-
readonly name: "actor";
|
|
169
|
-
readonly type: "address";
|
|
170
|
-
}, {
|
|
171
|
-
readonly indexed: false;
|
|
172
|
-
readonly internalType: "address";
|
|
173
|
-
readonly name: "receiver";
|
|
174
|
-
readonly type: "address";
|
|
175
|
-
}];
|
|
176
|
-
readonly name: "ManagerAdded";
|
|
177
|
-
readonly type: "event";
|
|
178
|
-
}, {
|
|
179
|
-
readonly anonymous: false;
|
|
180
|
-
readonly inputs: readonly [{
|
|
181
|
-
readonly indexed: false;
|
|
182
|
-
readonly internalType: "address";
|
|
183
|
-
readonly name: "actor";
|
|
184
|
-
readonly type: "address";
|
|
185
|
-
}, {
|
|
186
|
-
readonly indexed: false;
|
|
187
|
-
readonly internalType: "address";
|
|
188
|
-
readonly name: "receiver";
|
|
189
|
-
readonly type: "address";
|
|
190
|
-
}];
|
|
191
|
-
readonly name: "ManagerRemoved";
|
|
192
|
-
readonly type: "event";
|
|
193
|
-
}, {
|
|
194
|
-
readonly anonymous: false;
|
|
195
|
-
readonly inputs: readonly [{
|
|
196
|
-
readonly indexed: true;
|
|
197
|
-
readonly internalType: "address";
|
|
198
|
-
readonly name: "previousOwner";
|
|
199
|
-
readonly type: "address";
|
|
200
|
-
}, {
|
|
201
|
-
readonly indexed: true;
|
|
202
|
-
readonly internalType: "address";
|
|
203
|
-
readonly name: "newOwner";
|
|
204
|
-
readonly type: "address";
|
|
205
|
-
}];
|
|
206
|
-
readonly name: "OwnershipTransferred";
|
|
207
|
-
readonly type: "event";
|
|
208
|
-
}, {
|
|
209
|
-
readonly anonymous: false;
|
|
210
|
-
readonly inputs: readonly [{
|
|
211
|
-
readonly indexed: true;
|
|
212
|
-
readonly internalType: "address";
|
|
213
|
-
readonly name: "receiver";
|
|
214
|
-
readonly type: "address";
|
|
215
|
-
}, {
|
|
216
|
-
readonly indexed: true;
|
|
217
|
-
readonly internalType: "address";
|
|
218
|
-
readonly name: "nftAddress";
|
|
219
|
-
readonly type: "address";
|
|
220
|
-
}, {
|
|
221
|
-
readonly indexed: false;
|
|
222
|
-
readonly internalType: "uint256";
|
|
223
|
-
readonly name: "tokenId";
|
|
224
|
-
readonly type: "uint256";
|
|
225
|
-
}, {
|
|
226
|
-
readonly indexed: false;
|
|
227
|
-
readonly internalType: "uint256";
|
|
228
|
-
readonly name: "sharesBurned";
|
|
229
|
-
readonly type: "uint256";
|
|
230
|
-
}];
|
|
231
|
-
readonly name: "RedeemNFT";
|
|
232
|
-
readonly type: "event";
|
|
233
|
-
}, {
|
|
234
|
-
readonly inputs: readonly [{
|
|
235
|
-
readonly internalType: "uint256";
|
|
236
|
-
readonly name: "";
|
|
237
|
-
readonly type: "uint256";
|
|
238
|
-
}];
|
|
239
|
-
readonly name: "adapters";
|
|
240
|
-
readonly outputs: readonly [{
|
|
241
|
-
readonly internalType: "address";
|
|
242
|
-
readonly name: "";
|
|
243
|
-
readonly type: "address";
|
|
244
|
-
}];
|
|
245
|
-
readonly stateMutability: "view";
|
|
246
|
-
readonly type: "function";
|
|
247
|
-
}, {
|
|
248
|
-
readonly inputs: readonly [{
|
|
249
|
-
readonly internalType: "address";
|
|
250
|
-
readonly name: "user";
|
|
251
|
-
readonly type: "address";
|
|
252
|
-
}];
|
|
253
|
-
readonly name: "addManager";
|
|
254
|
-
readonly outputs: readonly [];
|
|
255
|
-
readonly stateMutability: "nonpayable";
|
|
256
|
-
readonly type: "function";
|
|
257
|
-
}, {
|
|
258
|
-
readonly inputs: readonly [{
|
|
259
|
-
readonly internalType: "address";
|
|
260
|
-
readonly name: "adapter";
|
|
261
|
-
readonly type: "address";
|
|
262
|
-
}, {
|
|
263
|
-
readonly internalType: "bytes";
|
|
264
|
-
readonly name: "data";
|
|
265
|
-
readonly type: "bytes";
|
|
266
|
-
}];
|
|
267
|
-
readonly name: "adminDepositAsset";
|
|
268
|
-
readonly outputs: readonly [];
|
|
269
|
-
readonly stateMutability: "nonpayable";
|
|
270
|
-
readonly type: "function";
|
|
271
|
-
}, {
|
|
272
|
-
readonly inputs: readonly [{
|
|
273
|
-
readonly internalType: "address";
|
|
274
|
-
readonly name: "adapter";
|
|
275
|
-
readonly type: "address";
|
|
276
|
-
}, {
|
|
277
|
-
readonly internalType: "bytes";
|
|
278
|
-
readonly name: "data";
|
|
279
|
-
readonly type: "bytes";
|
|
280
|
-
}, {
|
|
281
|
-
readonly internalType: "address";
|
|
282
|
-
readonly name: "receiver";
|
|
283
|
-
readonly type: "address";
|
|
284
|
-
}];
|
|
285
|
-
readonly name: "adminWithdrawAsset";
|
|
286
|
-
readonly outputs: readonly [];
|
|
287
|
-
readonly stateMutability: "nonpayable";
|
|
288
|
-
readonly type: "function";
|
|
289
|
-
}, {
|
|
290
|
-
readonly inputs: readonly [];
|
|
291
|
-
readonly name: "allowVRFRequest";
|
|
292
|
-
readonly outputs: readonly [{
|
|
293
|
-
readonly internalType: "bool";
|
|
294
|
-
readonly name: "";
|
|
295
|
-
readonly type: "bool";
|
|
296
|
-
}];
|
|
297
|
-
readonly stateMutability: "view";
|
|
298
|
-
readonly type: "function";
|
|
299
|
-
}, {
|
|
300
|
-
readonly inputs: readonly [{
|
|
301
|
-
readonly internalType: "address";
|
|
302
|
-
readonly name: "from";
|
|
303
|
-
readonly type: "address";
|
|
304
|
-
}, {
|
|
305
|
-
readonly internalType: "uint256";
|
|
306
|
-
readonly name: "amount";
|
|
307
|
-
readonly type: "uint256";
|
|
308
|
-
}];
|
|
309
|
-
readonly name: "burnVaultToken";
|
|
310
|
-
readonly outputs: readonly [];
|
|
311
|
-
readonly stateMutability: "nonpayable";
|
|
312
|
-
readonly type: "function";
|
|
313
|
-
}, {
|
|
314
|
-
readonly inputs: readonly [];
|
|
315
|
-
readonly name: "complianceRegistry";
|
|
316
|
-
readonly outputs: readonly [{
|
|
317
|
-
readonly internalType: "contract IComplianceRegistry";
|
|
318
|
-
readonly name: "";
|
|
319
|
-
readonly type: "address";
|
|
320
|
-
}];
|
|
321
|
-
readonly stateMutability: "view";
|
|
322
|
-
readonly type: "function";
|
|
323
|
-
}, {
|
|
324
|
-
readonly inputs: readonly [{
|
|
325
|
-
readonly internalType: "uint256";
|
|
326
|
-
readonly name: "shares";
|
|
327
|
-
readonly type: "uint256";
|
|
328
|
-
}];
|
|
329
|
-
readonly name: "convertToAssets";
|
|
330
|
-
readonly outputs: readonly [{
|
|
331
|
-
readonly internalType: "uint256";
|
|
332
|
-
readonly name: "";
|
|
333
|
-
readonly type: "uint256";
|
|
334
|
-
}];
|
|
335
|
-
readonly stateMutability: "view";
|
|
336
|
-
readonly type: "function";
|
|
337
|
-
}, {
|
|
338
|
-
readonly inputs: readonly [{
|
|
339
|
-
readonly internalType: "uint256";
|
|
340
|
-
readonly name: "assetAmount";
|
|
341
|
-
readonly type: "uint256";
|
|
342
|
-
}];
|
|
343
|
-
readonly name: "convertToShares";
|
|
344
|
-
readonly outputs: readonly [{
|
|
345
|
-
readonly internalType: "uint256";
|
|
346
|
-
readonly name: "";
|
|
347
|
-
readonly type: "uint256";
|
|
348
|
-
}];
|
|
349
|
-
readonly stateMutability: "view";
|
|
350
|
-
readonly type: "function";
|
|
351
|
-
}, {
|
|
352
|
-
readonly inputs: readonly [{
|
|
353
|
-
readonly internalType: "address";
|
|
354
|
-
readonly name: "adapter";
|
|
355
|
-
readonly type: "address";
|
|
356
|
-
}, {
|
|
357
|
-
readonly internalType: "bytes";
|
|
358
|
-
readonly name: "data";
|
|
359
|
-
readonly type: "bytes";
|
|
360
|
-
}, {
|
|
361
|
-
readonly internalType: "address";
|
|
362
|
-
readonly name: "receiver";
|
|
363
|
-
readonly type: "address";
|
|
364
|
-
}];
|
|
365
|
-
readonly name: "depositAsset";
|
|
366
|
-
readonly outputs: readonly [{
|
|
367
|
-
readonly internalType: "uint256";
|
|
368
|
-
readonly name: "sharesMinted";
|
|
369
|
-
readonly type: "uint256";
|
|
370
|
-
}];
|
|
371
|
-
readonly stateMutability: "nonpayable";
|
|
372
|
-
readonly type: "function";
|
|
373
|
-
}, {
|
|
374
|
-
readonly inputs: readonly [{
|
|
375
|
-
readonly internalType: "uint256";
|
|
376
|
-
readonly name: "";
|
|
377
|
-
readonly type: "uint256";
|
|
378
|
-
}];
|
|
379
|
-
readonly name: "depositableAdapters";
|
|
380
|
-
readonly outputs: readonly [{
|
|
381
|
-
readonly internalType: "address";
|
|
382
|
-
readonly name: "";
|
|
383
|
-
readonly type: "address";
|
|
384
|
-
}];
|
|
385
|
-
readonly stateMutability: "view";
|
|
386
|
-
readonly type: "function";
|
|
387
|
-
}, {
|
|
388
|
-
readonly inputs: readonly [];
|
|
389
|
-
readonly name: "feeCollector";
|
|
390
|
-
readonly outputs: readonly [{
|
|
391
|
-
readonly internalType: "address";
|
|
392
|
-
readonly name: "";
|
|
393
|
-
readonly type: "address";
|
|
394
|
-
}];
|
|
395
|
-
readonly stateMutability: "view";
|
|
396
|
-
readonly type: "function";
|
|
397
|
-
}, {
|
|
398
|
-
readonly inputs: readonly [];
|
|
399
|
-
readonly name: "getNextRandomNFT";
|
|
400
|
-
readonly outputs: readonly [{
|
|
401
|
-
readonly internalType: "address";
|
|
402
|
-
readonly name: "adapter";
|
|
403
|
-
readonly type: "address";
|
|
404
|
-
}, {
|
|
405
|
-
readonly internalType: "uint256";
|
|
406
|
-
readonly name: "tokenId";
|
|
407
|
-
readonly type: "uint256";
|
|
408
|
-
}];
|
|
409
|
-
readonly stateMutability: "view";
|
|
410
|
-
readonly type: "function";
|
|
411
|
-
}, {
|
|
412
|
-
readonly inputs: readonly [];
|
|
413
|
-
readonly name: "indexTokenMintingFee";
|
|
414
|
-
readonly outputs: readonly [{
|
|
415
|
-
readonly internalType: "uint256";
|
|
416
|
-
readonly name: "";
|
|
417
|
-
readonly type: "uint256";
|
|
418
|
-
}];
|
|
419
|
-
readonly stateMutability: "view";
|
|
420
|
-
readonly type: "function";
|
|
421
|
-
}, {
|
|
422
|
-
readonly inputs: readonly [{
|
|
423
|
-
readonly internalType: "address";
|
|
424
|
-
readonly name: "user";
|
|
425
|
-
readonly type: "address";
|
|
426
|
-
}];
|
|
427
|
-
readonly name: "isManager";
|
|
428
|
-
readonly outputs: readonly [{
|
|
429
|
-
readonly internalType: "bool";
|
|
430
|
-
readonly name: "";
|
|
431
|
-
readonly type: "bool";
|
|
432
|
-
}];
|
|
433
|
-
readonly stateMutability: "view";
|
|
434
|
-
readonly type: "function";
|
|
435
|
-
}, {
|
|
436
|
-
readonly inputs: readonly [];
|
|
437
|
-
readonly name: "llamaPerkClassName";
|
|
438
|
-
readonly outputs: readonly [{
|
|
439
|
-
readonly internalType: "bytes32";
|
|
440
|
-
readonly name: "";
|
|
441
|
-
readonly type: "bytes32";
|
|
442
|
-
}];
|
|
443
|
-
readonly stateMutability: "view";
|
|
444
|
-
readonly type: "function";
|
|
445
|
-
}, {
|
|
446
|
-
readonly inputs: readonly [];
|
|
447
|
-
readonly name: "llamaPerkDiscount";
|
|
448
|
-
readonly outputs: readonly [{
|
|
449
|
-
readonly internalType: "uint256";
|
|
450
|
-
readonly name: "";
|
|
451
|
-
readonly type: "uint256";
|
|
452
|
-
}];
|
|
453
|
-
readonly stateMutability: "view";
|
|
454
|
-
readonly type: "function";
|
|
455
|
-
}, {
|
|
456
|
-
readonly inputs: readonly [];
|
|
457
|
-
readonly name: "llamaPerkMultiplier";
|
|
458
|
-
readonly outputs: readonly [{
|
|
459
|
-
readonly internalType: "uint256";
|
|
460
|
-
readonly name: "";
|
|
461
|
-
readonly type: "uint256";
|
|
462
|
-
}];
|
|
463
|
-
readonly stateMutability: "view";
|
|
464
|
-
readonly type: "function";
|
|
465
|
-
}, {
|
|
466
|
-
readonly inputs: readonly [];
|
|
467
|
-
readonly name: "llamaTemple";
|
|
468
|
-
readonly outputs: readonly [{
|
|
469
|
-
readonly internalType: "address";
|
|
470
|
-
readonly name: "";
|
|
471
|
-
readonly type: "address";
|
|
472
|
-
}];
|
|
473
|
-
readonly stateMutability: "view";
|
|
474
|
-
readonly type: "function";
|
|
475
|
-
}, {
|
|
476
|
-
readonly inputs: readonly [{
|
|
477
|
-
readonly internalType: "address";
|
|
478
|
-
readonly name: "";
|
|
479
|
-
readonly type: "address";
|
|
480
|
-
}];
|
|
481
|
-
readonly name: "managers";
|
|
482
|
-
readonly outputs: readonly [{
|
|
483
|
-
readonly internalType: "bool";
|
|
484
|
-
readonly name: "";
|
|
485
|
-
readonly type: "bool";
|
|
486
|
-
}];
|
|
487
|
-
readonly stateMutability: "view";
|
|
488
|
-
readonly type: "function";
|
|
489
|
-
}, {
|
|
490
|
-
readonly inputs: readonly [];
|
|
491
|
-
readonly name: "owner";
|
|
492
|
-
readonly outputs: readonly [{
|
|
493
|
-
readonly internalType: "address";
|
|
494
|
-
readonly name: "";
|
|
495
|
-
readonly type: "address";
|
|
496
|
-
}];
|
|
497
|
-
readonly stateMutability: "view";
|
|
498
|
-
readonly type: "function";
|
|
499
|
-
}, {
|
|
500
|
-
readonly inputs: readonly [{
|
|
501
|
-
readonly internalType: "address";
|
|
502
|
-
readonly name: "adapter";
|
|
503
|
-
readonly type: "address";
|
|
504
|
-
}, {
|
|
505
|
-
readonly internalType: "bytes";
|
|
506
|
-
readonly name: "data";
|
|
507
|
-
readonly type: "bytes";
|
|
508
|
-
}, {
|
|
509
|
-
readonly internalType: "address";
|
|
510
|
-
readonly name: "receiver";
|
|
511
|
-
readonly type: "address";
|
|
512
|
-
}];
|
|
513
|
-
readonly name: "poolDepositAsset";
|
|
514
|
-
readonly outputs: readonly [{
|
|
515
|
-
readonly internalType: "uint256";
|
|
516
|
-
readonly name: "sharesMinted";
|
|
517
|
-
readonly type: "uint256";
|
|
518
|
-
}];
|
|
519
|
-
readonly stateMutability: "nonpayable";
|
|
520
|
-
readonly type: "function";
|
|
521
|
-
}, {
|
|
522
|
-
readonly inputs: readonly [];
|
|
523
|
-
readonly name: "pricePerShare";
|
|
524
|
-
readonly outputs: readonly [{
|
|
525
|
-
readonly internalType: "uint256";
|
|
526
|
-
readonly name: "";
|
|
527
|
-
readonly type: "uint256";
|
|
528
|
-
}];
|
|
529
|
-
readonly stateMutability: "view";
|
|
530
|
-
readonly type: "function";
|
|
531
|
-
}, {
|
|
532
|
-
readonly inputs: readonly [];
|
|
533
|
-
readonly name: "redeemNFT";
|
|
534
|
-
readonly outputs: readonly [];
|
|
535
|
-
readonly stateMutability: "nonpayable";
|
|
536
|
-
readonly type: "function";
|
|
537
|
-
}, {
|
|
538
|
-
readonly inputs: readonly [{
|
|
539
|
-
readonly internalType: "uint256";
|
|
540
|
-
readonly name: "";
|
|
541
|
-
readonly type: "uint256";
|
|
542
|
-
}];
|
|
543
|
-
readonly name: "redeemableERC721Adapters";
|
|
544
|
-
readonly outputs: readonly [{
|
|
545
|
-
readonly internalType: "address";
|
|
546
|
-
readonly name: "";
|
|
547
|
-
readonly type: "address";
|
|
548
|
-
}];
|
|
549
|
-
readonly stateMutability: "view";
|
|
550
|
-
readonly type: "function";
|
|
551
|
-
}, {
|
|
552
|
-
readonly inputs: readonly [{
|
|
553
|
-
readonly internalType: "address";
|
|
554
|
-
readonly name: "adapter";
|
|
555
|
-
readonly type: "address";
|
|
556
|
-
}];
|
|
557
|
-
readonly name: "registerAdapter";
|
|
558
|
-
readonly outputs: readonly [];
|
|
559
|
-
readonly stateMutability: "nonpayable";
|
|
560
|
-
readonly type: "function";
|
|
561
|
-
}, {
|
|
562
|
-
readonly inputs: readonly [{
|
|
563
|
-
readonly internalType: "address";
|
|
564
|
-
readonly name: "adapter";
|
|
565
|
-
readonly type: "address";
|
|
566
|
-
}];
|
|
567
|
-
readonly name: "registerDepositableAdapter";
|
|
568
|
-
readonly outputs: readonly [];
|
|
569
|
-
readonly stateMutability: "nonpayable";
|
|
570
|
-
readonly type: "function";
|
|
571
|
-
}, {
|
|
572
|
-
readonly inputs: readonly [{
|
|
573
|
-
readonly internalType: "address";
|
|
574
|
-
readonly name: "adapter";
|
|
575
|
-
readonly type: "address";
|
|
576
|
-
}];
|
|
577
|
-
readonly name: "registerRedeemableERC721Adapter";
|
|
578
|
-
readonly outputs: readonly [];
|
|
579
|
-
readonly stateMutability: "nonpayable";
|
|
580
|
-
readonly type: "function";
|
|
581
|
-
}, {
|
|
582
|
-
readonly inputs: readonly [{
|
|
583
|
-
readonly internalType: "address";
|
|
584
|
-
readonly name: "user";
|
|
585
|
-
readonly type: "address";
|
|
586
|
-
}];
|
|
587
|
-
readonly name: "removeManager";
|
|
588
|
-
readonly outputs: readonly [];
|
|
589
|
-
readonly stateMutability: "nonpayable";
|
|
590
|
-
readonly type: "function";
|
|
591
|
-
}, {
|
|
592
|
-
readonly inputs: readonly [];
|
|
593
|
-
readonly name: "renounceOwnership";
|
|
594
|
-
readonly outputs: readonly [];
|
|
595
|
-
readonly stateMutability: "nonpayable";
|
|
596
|
-
readonly type: "function";
|
|
597
|
-
}, {
|
|
598
|
-
readonly inputs: readonly [];
|
|
599
|
-
readonly name: "requestRandomSeed";
|
|
600
|
-
readonly outputs: readonly [];
|
|
601
|
-
readonly stateMutability: "nonpayable";
|
|
602
|
-
readonly type: "function";
|
|
603
|
-
}, {
|
|
604
|
-
readonly inputs: readonly [{
|
|
605
|
-
readonly internalType: "bool";
|
|
606
|
-
readonly name: "_value";
|
|
607
|
-
readonly type: "bool";
|
|
608
|
-
}];
|
|
609
|
-
readonly name: "setAllowVRFRequest";
|
|
610
|
-
readonly outputs: readonly [];
|
|
611
|
-
readonly stateMutability: "nonpayable";
|
|
612
|
-
readonly type: "function";
|
|
613
|
-
}, {
|
|
614
|
-
readonly inputs: readonly [{
|
|
615
|
-
readonly internalType: "address";
|
|
616
|
-
readonly name: "_feeCollector";
|
|
617
|
-
readonly type: "address";
|
|
618
|
-
}];
|
|
619
|
-
readonly name: "setFeeCollector";
|
|
620
|
-
readonly outputs: readonly [];
|
|
621
|
-
readonly stateMutability: "nonpayable";
|
|
622
|
-
readonly type: "function";
|
|
623
|
-
}, {
|
|
624
|
-
readonly inputs: readonly [{
|
|
625
|
-
readonly internalType: "uint256";
|
|
626
|
-
readonly name: "_indexTokenMintingFee";
|
|
627
|
-
readonly type: "uint256";
|
|
628
|
-
}];
|
|
629
|
-
readonly name: "setIndexTokenMintingFee";
|
|
630
|
-
readonly outputs: readonly [];
|
|
631
|
-
readonly stateMutability: "nonpayable";
|
|
632
|
-
readonly type: "function";
|
|
633
|
-
}, {
|
|
634
|
-
readonly inputs: readonly [{
|
|
635
|
-
readonly internalType: "bytes32";
|
|
636
|
-
readonly name: "className";
|
|
637
|
-
readonly type: "bytes32";
|
|
638
|
-
}, {
|
|
639
|
-
readonly internalType: "uint256";
|
|
640
|
-
readonly name: "discount";
|
|
641
|
-
readonly type: "uint256";
|
|
642
|
-
}, {
|
|
643
|
-
readonly internalType: "uint256";
|
|
644
|
-
readonly name: "multiplier";
|
|
645
|
-
readonly type: "uint256";
|
|
646
|
-
}];
|
|
647
|
-
readonly name: "setLlamaPerkDiscount";
|
|
648
|
-
readonly outputs: readonly [];
|
|
649
|
-
readonly stateMutability: "nonpayable";
|
|
650
|
-
readonly type: "function";
|
|
651
|
-
}, {
|
|
652
|
-
readonly inputs: readonly [{
|
|
653
|
-
readonly internalType: "address";
|
|
654
|
-
readonly name: "_address";
|
|
655
|
-
readonly type: "address";
|
|
656
|
-
}];
|
|
657
|
-
readonly name: "setLlamaTemple";
|
|
658
|
-
readonly outputs: readonly [];
|
|
659
|
-
readonly stateMutability: "nonpayable";
|
|
660
|
-
readonly type: "function";
|
|
661
|
-
}, {
|
|
662
|
-
readonly inputs: readonly [{
|
|
663
|
-
readonly internalType: "address";
|
|
664
|
-
readonly name: "_stabilityPool";
|
|
665
|
-
readonly type: "address";
|
|
666
|
-
}];
|
|
667
|
-
readonly name: "setStabilityPool";
|
|
668
|
-
readonly outputs: readonly [];
|
|
669
|
-
readonly stateMutability: "nonpayable";
|
|
670
|
-
readonly type: "function";
|
|
671
|
-
}, {
|
|
672
|
-
readonly inputs: readonly [{
|
|
673
|
-
readonly internalType: "address";
|
|
674
|
-
readonly name: "_vrfConsumer";
|
|
675
|
-
readonly type: "address";
|
|
676
|
-
}];
|
|
677
|
-
readonly name: "setVRFConsumer";
|
|
678
|
-
readonly outputs: readonly [];
|
|
679
|
-
readonly stateMutability: "nonpayable";
|
|
680
|
-
readonly type: "function";
|
|
681
|
-
}, {
|
|
682
|
-
readonly inputs: readonly [{
|
|
683
|
-
readonly internalType: "uint256";
|
|
684
|
-
readonly name: "_newDelay";
|
|
685
|
-
readonly type: "uint256";
|
|
686
|
-
}];
|
|
687
|
-
readonly name: "setVRFRequestDelay";
|
|
688
|
-
readonly outputs: readonly [];
|
|
689
|
-
readonly stateMutability: "nonpayable";
|
|
690
|
-
readonly type: "function";
|
|
691
|
-
}, {
|
|
692
|
-
readonly inputs: readonly [];
|
|
693
|
-
readonly name: "stabilityPool";
|
|
694
|
-
readonly outputs: readonly [{
|
|
695
|
-
readonly internalType: "address";
|
|
696
|
-
readonly name: "";
|
|
697
|
-
readonly type: "address";
|
|
698
|
-
}];
|
|
699
|
-
readonly stateMutability: "view";
|
|
700
|
-
readonly type: "function";
|
|
701
|
-
}, {
|
|
702
|
-
readonly inputs: readonly [{
|
|
703
|
-
readonly internalType: "address";
|
|
704
|
-
readonly name: "adapter";
|
|
705
|
-
readonly type: "address";
|
|
706
|
-
}];
|
|
707
|
-
readonly name: "supportedAdapter";
|
|
708
|
-
readonly outputs: readonly [{
|
|
709
|
-
readonly internalType: "bool";
|
|
710
|
-
readonly name: "";
|
|
711
|
-
readonly type: "bool";
|
|
712
|
-
}];
|
|
713
|
-
readonly stateMutability: "view";
|
|
714
|
-
readonly type: "function";
|
|
715
|
-
}, {
|
|
716
|
-
readonly inputs: readonly [{
|
|
717
|
-
readonly internalType: "address";
|
|
718
|
-
readonly name: "";
|
|
719
|
-
readonly type: "address";
|
|
720
|
-
}];
|
|
721
|
-
readonly name: "supportedAdapters";
|
|
722
|
-
readonly outputs: readonly [{
|
|
723
|
-
readonly internalType: "bool";
|
|
724
|
-
readonly name: "";
|
|
725
|
-
readonly type: "bool";
|
|
726
|
-
}];
|
|
727
|
-
readonly stateMutability: "view";
|
|
728
|
-
readonly type: "function";
|
|
729
|
-
}, {
|
|
730
|
-
readonly inputs: readonly [{
|
|
731
|
-
readonly internalType: "address";
|
|
732
|
-
readonly name: "";
|
|
733
|
-
readonly type: "address";
|
|
734
|
-
}];
|
|
735
|
-
readonly name: "supportedDepositableAdapters";
|
|
736
|
-
readonly outputs: readonly [{
|
|
737
|
-
readonly internalType: "bool";
|
|
738
|
-
readonly name: "";
|
|
739
|
-
readonly type: "bool";
|
|
740
|
-
}];
|
|
741
|
-
readonly stateMutability: "view";
|
|
742
|
-
readonly type: "function";
|
|
743
|
-
}, {
|
|
744
|
-
readonly inputs: readonly [{
|
|
745
|
-
readonly internalType: "address";
|
|
746
|
-
readonly name: "";
|
|
747
|
-
readonly type: "address";
|
|
748
|
-
}];
|
|
749
|
-
readonly name: "supportedRedeemableERC721Adapters";
|
|
750
|
-
readonly outputs: readonly [{
|
|
751
|
-
readonly internalType: "bool";
|
|
752
|
-
readonly name: "";
|
|
753
|
-
readonly type: "bool";
|
|
754
|
-
}];
|
|
755
|
-
readonly stateMutability: "view";
|
|
756
|
-
readonly type: "function";
|
|
757
|
-
}, {
|
|
758
|
-
readonly inputs: readonly [];
|
|
759
|
-
readonly name: "totalAssets";
|
|
760
|
-
readonly outputs: readonly [{
|
|
761
|
-
readonly internalType: "uint256";
|
|
762
|
-
readonly name: "totalValue";
|
|
763
|
-
readonly type: "uint256";
|
|
764
|
-
}];
|
|
765
|
-
readonly stateMutability: "view";
|
|
766
|
-
readonly type: "function";
|
|
767
|
-
}, {
|
|
768
|
-
readonly inputs: readonly [{
|
|
769
|
-
readonly internalType: "address";
|
|
770
|
-
readonly name: "newOwner";
|
|
771
|
-
readonly type: "address";
|
|
772
|
-
}];
|
|
773
|
-
readonly name: "transferOwnership";
|
|
774
|
-
readonly outputs: readonly [];
|
|
775
|
-
readonly stateMutability: "nonpayable";
|
|
776
|
-
readonly type: "function";
|
|
777
|
-
}, {
|
|
778
|
-
readonly inputs: readonly [];
|
|
779
|
-
readonly name: "underlyingAssetToken";
|
|
780
|
-
readonly outputs: readonly [{
|
|
781
|
-
readonly internalType: "address";
|
|
782
|
-
readonly name: "";
|
|
783
|
-
readonly type: "address";
|
|
784
|
-
}];
|
|
785
|
-
readonly stateMutability: "view";
|
|
786
|
-
readonly type: "function";
|
|
787
|
-
}, {
|
|
788
|
-
readonly inputs: readonly [];
|
|
789
|
-
readonly name: "underlyingVaultToken";
|
|
790
|
-
readonly outputs: readonly [{
|
|
791
|
-
readonly internalType: "address";
|
|
792
|
-
readonly name: "";
|
|
793
|
-
readonly type: "address";
|
|
794
|
-
}];
|
|
795
|
-
readonly stateMutability: "view";
|
|
796
|
-
readonly type: "function";
|
|
797
|
-
}, {
|
|
798
|
-
readonly inputs: readonly [{
|
|
799
|
-
readonly internalType: "address";
|
|
800
|
-
readonly name: "adapter";
|
|
801
|
-
readonly type: "address";
|
|
802
|
-
}];
|
|
803
|
-
readonly name: "unregisterAdapter";
|
|
804
|
-
readonly outputs: readonly [];
|
|
805
|
-
readonly stateMutability: "nonpayable";
|
|
806
|
-
readonly type: "function";
|
|
807
|
-
}, {
|
|
808
|
-
readonly inputs: readonly [{
|
|
809
|
-
readonly internalType: "address";
|
|
810
|
-
readonly name: "adapter";
|
|
811
|
-
readonly type: "address";
|
|
812
|
-
}];
|
|
813
|
-
readonly name: "unregisterDepositableAdapter";
|
|
814
|
-
readonly outputs: readonly [];
|
|
815
|
-
readonly stateMutability: "nonpayable";
|
|
816
|
-
readonly type: "function";
|
|
817
|
-
}, {
|
|
818
|
-
readonly inputs: readonly [{
|
|
819
|
-
readonly internalType: "address";
|
|
820
|
-
readonly name: "adapter";
|
|
821
|
-
readonly type: "address";
|
|
822
|
-
}];
|
|
823
|
-
readonly name: "unregisterRedeemableERC721Adapter";
|
|
824
|
-
readonly outputs: readonly [];
|
|
825
|
-
readonly stateMutability: "nonpayable";
|
|
826
|
-
readonly type: "function";
|
|
827
|
-
}, {
|
|
828
|
-
readonly inputs: readonly [];
|
|
829
|
-
readonly name: "vaultToken";
|
|
830
|
-
readonly outputs: readonly [{
|
|
831
|
-
readonly internalType: "address";
|
|
832
|
-
readonly name: "";
|
|
833
|
-
readonly type: "address";
|
|
834
|
-
}];
|
|
835
|
-
readonly stateMutability: "view";
|
|
836
|
-
readonly type: "function";
|
|
837
|
-
}, {
|
|
838
|
-
readonly inputs: readonly [];
|
|
839
|
-
readonly name: "vrfConsumer";
|
|
840
|
-
readonly outputs: readonly [{
|
|
841
|
-
readonly internalType: "contract IBaseVRFv2Consumer";
|
|
842
|
-
readonly name: "";
|
|
843
|
-
readonly type: "address";
|
|
844
|
-
}];
|
|
845
|
-
readonly stateMutability: "view";
|
|
846
|
-
readonly type: "function";
|
|
847
|
-
}, {
|
|
848
|
-
readonly inputs: readonly [];
|
|
849
|
-
readonly name: "vrfRequestDelay";
|
|
850
|
-
readonly outputs: readonly [{
|
|
851
|
-
readonly internalType: "uint256";
|
|
852
|
-
readonly name: "";
|
|
853
|
-
readonly type: "uint256";
|
|
854
|
-
}];
|
|
855
|
-
readonly stateMutability: "view";
|
|
856
|
-
readonly type: "function";
|
|
857
|
-
}];
|
|
858
|
-
static createInterface(): RWAVaultInterface;
|
|
859
|
-
static connect(address: string, runner?: ContractRunner | null): RWAVault;
|
|
860
|
-
}
|
|
861
|
-
export {};
|