@raac/rpc 1.1.0-beta.63 → 1.1.0-beta.65
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 +8 -8
- package/dist/oracles/houses/request.js +1 -1
- package/dist/oracles/prime-rate/request.js +1 -1
- package/dist/pools/rwaVault/depositToRWAVault.js +3 -10
- package/dist/pools/rwaVault/getRWAVaultInfo.js +1 -9
- package/dist/pools/rwaVault/previewDeposit.js +16 -0
- package/dist/pools/rwaVault/previewWithdraw.js +16 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +3 -4
- package/dist/scripts/index.js +1 -1
- package/dist/types/RPCLibrary.d.ts +4 -4
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +2 -2
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +0 -4
- package/dist/types/pools/rwaVault/previewDeposit.d.ts +4 -0
- package/dist/types/pools/rwaVault/previewWithdraw.d.ts +4 -0
- 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,944 +0,0 @@
|
|
|
1
|
-
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
-
import type { Signer, BigNumberish, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
-
import type { NonPayableOverrides } from "../../../../../../../common";
|
|
4
|
-
import type { VRFCoordinatorV2_5Mock, VRFCoordinatorV2_5MockInterface } from "../../../../../../../@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock";
|
|
5
|
-
type VRFCoordinatorV2_5MockConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
-
export declare class VRFCoordinatorV2_5Mock__factory extends ContractFactory {
|
|
7
|
-
constructor(...args: VRFCoordinatorV2_5MockConstructorParams);
|
|
8
|
-
getDeployTransaction(_baseFee: BigNumberish, _gasPrice: BigNumberish, _weiPerUnitLink: BigNumberish, overrides?: NonPayableOverrides & {
|
|
9
|
-
from?: string;
|
|
10
|
-
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(_baseFee: BigNumberish, _gasPrice: BigNumberish, _weiPerUnitLink: BigNumberish, overrides?: NonPayableOverrides & {
|
|
12
|
-
from?: string;
|
|
13
|
-
}): Promise<VRFCoordinatorV2_5Mock & {
|
|
14
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
-
}>;
|
|
16
|
-
connect(runner: ContractRunner | null): VRFCoordinatorV2_5Mock__factory;
|
|
17
|
-
static readonly bytecode = "0x60e034620001a857601f62002ac638819003918201601f19168301916001600160401b039182841185851017620001ad578160609286926040968752833981010312620001a8576200005183620001c3565b92826200006160208301620001c3565b9101519033156200016457600080546001600160a01b031916331781556001600e556064600f5560809590955260a05260c0528151906101208201908111828210176200015057610100839285927f4b2974a542484cba2783812ff8033f7fc682cac2fe0905c28c5e27869b3155be955282815282602082015282848201528260608201528260808201528260a08201528260c08201528260e0820152015260018060c81b0319600c5416600c55519180a16128ed9081620001d982396080518181816117ef015261247f015260a0518181816104150152612444015260c05181818161188c015261262d0152f35b634e487b7160e01b84526041600452602484fd5b835162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420736574206f776e657220746f207a65726f00000000000000006044820152606490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160601b0382168203620001a85756fe608080604052600436101561001357600080fd5b60003560e01c908163088070f514611a265750806308e3898e146119935780630ae095401461191d578063115e3c0d146118af578063134783291461187457806318e3dd27146118475780631b6b6d231461181e5780631eebc117146117d95780632f622e6b1461173e57806341af6c871461171b57806351cff8d91461164157806364d51a2a1461162557806365982744146115b257806372e9d5651461158957806379ba5097146114e0578063808974ff146114a35780638402595e146113f057806386fe91c7146113c75780638b673e7a1461135e5780638da5cb5b14611335578063953e9c75146112e857806395b55cfc146112175780639b1c385e14610e465780639d40a6fd14610e1d578063a21a23e414610bf5578063a4c0ed3614610ab5578063aa433aff1461098d578063aefb212f146108a8578063b2a7cac5146107db578063bec4c08c146107a3578063cb631797146105a7578063dac83d2914610505578063dc311dd314610444578063dcab3dcf146103ff578063e72f6e301461025f5763f2fde38b146101ab57600080fd5b3461025a57602036600319011261025a576101c4611abc565b6101cc611ba7565b6001600160a01b039081169033821461021b578160018060a01b03196001541617600155600054167fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae1278600080a3005b60405162461bcd60e51b815260206004820152601760248201527621b0b73737ba103a3930b739b332b9103a379039b2b63360491b6044820152606490fd5b600080fd5b3461025a5760208060031936011261025a57610279611abc565b90610282611ba7565b6002546001600160a01b03169081156103ed576040516370a0823160e01b81523060048201528181602481865afa908115610397576000916103c0575b50600a546001600160601b03168181116103a3578181106102dc57005b6102e591611c09565b9181604051809263a9059cbb60e01b825281600081610308898b60048401611c2e565b03925af19182156103975760009261036a575b505015610358577f59bfc682b673f8cbf945f1e454df9334834abf7dfe7f92237ca29ecb9b4366009161035360405192839283611c2e565b0390a1005b604051631f01ff1360e21b8152600490fd5b6103899250803d10610390575b6103818183611b23565b810190611c16565b838061031b565b503d610377565b6040513d6000823e3d90fd5b604491604051916354ced18160e11b835260048301526024820152fd5b90508181813d83116103e6575b6103d78183611b23565b8101031261025a5751846102bf565b503d6103cd565b60405163c1f0c0a160e01b8152600490fd5b3461025a57600036600319011261025a576040517f00000000000000000000000000000000000000000000000000000000000000006001600160601b03168152602090f35b3461025a5760208060031936011261025a5760043560008181526005835260409020546001600160a01b03929083169161047d83611bf9565b60005260068152604060002054906005815261049f6002604060002001611d36565b916040519360a085019160018060601b0380821687528160601c168487015260c01c6040860152606085015260a0608085015282518091528160c0850193019160005b8281106104ef5785850386f35b83518716855293810193928101926001016104e2565b3461025a57604036600319011261025a57600435610521611aa6565b61052a826121eb565b610532611cad565b600082815260056020526040902060010180546001600160a01b0380841693919290831684900361055f57005b6001600160a01b031990921690921790556040517f21a4dad170a6bf476c31bbcf4a16628295b0e450672eec25d7c93308e05344a19181906105a2903383611eac565b0390a2005b3461025a57604036600319011261025a576004356105c3611aa6565b6105cc826121eb565b60018060a01b0390818116908160005260209060048252604060002085600052825260ff604060002054161561078157610604611cad565b8260005260048252604060002085600052825260ff604060002054161561078157508360005260059182825260029361064285604060002001611d36565b948551946000199586810190811161076b5760005b885181101561074d57858561066c838c611dd1565b5116146106815761067c90611dc2565b610657565b90846106996106af926106ce95969798999a9b611dd1565b5116918a60005284895285604060002001611e00565b90919082549060031b9160018060a01b03809116831b921b1916179055565b8660005284526040600020018054948515610737576000805160206128588339815191529501916106ff8383611e00565b909182549160031b1b19169055555b80600052600482526040600020846000528252604060002060ff198154169055604051908152a2005b634e487b7160e01b600052603160045260246000fd5b5050505050909150600080516020612858833981519152925061070e565b634e487b7160e01b600052601160045260246000fd5b6040516379bfd40160e01b815290819061079f90876004840161271f565b0390fd5b3461025a57604036600319011261025a576107d96004356107c2611aa6565b906107cc816121eb565b6107d4611cad565b611ec6565b005b3461025a57602036600319011261025a576004356107f7611cad565b6000818152600560205260409020546001600160a01b039081169061081b82611bf9565b8260005260056020526001604060002001541633810361089057506105a27fd4114ab6e9af9f597c52041f32d62dc57c5c4e4c0d4427006069635e216c93869183600052600560205260406000206001808060a01b031991338382541617815501908154169055604051918291339083611eac565b6024906040519063d084e97560e01b82526004820152fd5b3461025a576108b636611b5d565b906008918254908183101561097b57826108d08282611d29565b91838311908115610972575b5015610969576108ed915082611c09565b906108f782611d90565b9260005b83811061091c576040516020808252819061091890820188611b73565b0390f35b6109268282611d29565b90838210156109535761094e9187600052602060002001546109488288611dd1565b52611dc2565b6108fb565b634e487b7160e01b600052603260045260246000fd5b6108ed91611c09565b905015866108dc565b604051631390f2a160e01b8152600490fd5b3461025a57602036600319011261025a576004356109a9611ba7565b6000818152600560205260409020546001600160a01b03908116906109cd82611bf9565b6109d683611fbc565b9290916002541680151580610aa3575b610a1f575b50600080516020612878833981519152926105a290610a136001600160601b0382168461222e565b60405193849384611f92565b60405163a9059cbb60e01b81529390602090859081600081610a4e6001600160601b038a168960048401611c2e565b03925af190811561039757610a7e6105a29260008051602061287883398151915296600091610a85575b50611cce565b93506109eb565b610a9d915060203d8111610390576103818183611b23565b88610a78565b506001600160601b03831615156109e6565b3461025a57606036600319011261025a57610ace611abc565b506001600160401b0360243560443582811161025a573660238201121561025a57806004013592831161025a5782810136602482011161025a57610b10611cad565b6002546001600160a01b03949085163303610be357602003610bd15781602091031261025a5760008051602061289883398151915291610b656024604093013594856000526005602052836000205416611bf9565b6000848152600660205282902080546001600160601b0380821693610bc493909282841692909181610b978589611d10565b166001600160601b0319938416179055600a5492610bb790828516611d10565b16911617600a5582611d29565b82519182526020820152a2005b604051638129bbcd60e01b8152600490fd5b6040516344b0e3c360e01b8152600490fd5b3461025a57600036600319011261025a57610c0e611cad565b60075460001943019043821161076b57604051602092838201903360601b82524060348301523060601b605483015260018060c01b031991828460c01b16606882015260508152610c5e81611ad2565b519020916001916001600160401b0391828116840183811161076b576001600160401b03199091169083161760075560405190610c9a82611b08565b6000825260405190610cab82611aed565b6000808352878301818152604080850183815289845260068b529220935184546001600160601b0319166001600160601b039182161785559051610cf0911684611ce7565b5182546001600160c01b031660c09190911b909116179055604051610d1481611aed565b33815260028682016000815260408301938452866000526005885260406000209060018060a01b038094511660018060a01b0319908184541617835584888401925116908254161790550191518051938411610e0757600160401b8411610e075786908354858555808610610dea575b500191600052856000209060005b848110610dd7578787610da481611e2f565b50807f1d3015d7ba850fa198dc7b1a3f5d42779313a681035f77c8c03764c61005518d83604051338152a2604051908152f35b8351821683820155928701928501610d92565b610e01908560005286846000209182019101611e18565b88610d84565b634e487b7160e01b600052604160045260246000fd5b3461025a57600036600319011261025a576007546040516001600160401b039091168152602090f35b3461025a5760031960203682011261025a576001600160401b036004351161025a5760c0906004353603011261025a57610e7e611cad565b33600052600460205260406000206024600435013560005260205260ff60406000205416156111f557600435602401356000908152600560205260409020546001600160a01b0316156111e357600e54610ed781611dc2565b600e55600f5490610ee782611dc2565b600f5560a460043501610f08610f0282600435600401612738565b9061277b565b906040519163125fa26760e31b6020840152511515602483015260248252610f2f82611aed565b610f3d60646004350161276a565b9063ffffffff610f60610f5460846004350161276a565b92600435600401612738565b9190928160405195610f7187611ad2565b602460043501358752166020860152166040840152610f8f81611c49565b91610f9d6040519384611b23565b818352368282011161025a578160009260209283860137830101526060820190815283600052601060205260406000209180518355600183019063ffffffff602082015116825491604063ffffffff60201b91015160201b169160018060401b03191617179055519081519060018060401b038211610e07576002829101926110268454612247565b601f81116111a6575b50602090601f831160011461114057600092611135575b50508160011b916000199060031b1c19161790555b604460043501359261ffff841680940361025a5763ffffffff6020948161108660646004350161276a565b61109460846004350161276a565b926040519588875289870152604086015216606084015216608082015260c060a08201528151918260c083015260005b838110611121575050600060e0838301015233917feb0e3652e0f44f417695e6e90f2f42c99b65cd7169074c5a654b16b9748c3a4e602460043501359260e0816004356004013594601f80199101168101030190a4604051908152f35b81810186015183820160e0015285016110c4565b015190508680611046565b6000858152602081209350601f198516905b81811061118e5750908460019594939210611175575b505050811b01905561105b565b015160001960f88460031b161c19169055868080611168565b92936020600181928786015181550195019301611152565b6111d390856000526020600020601f850160051c810191602086106111d9575b601f0160051c0190611e18565b8761102f565b90915081906111c6565b604051630fb532db60e11b8152600490fd5b6040516379bfd40160e01b81528061079f33600480356024013590840161271f565b602036600319011261025a5760043561122e611cad565b60008181526005602052604090205461124f906001600160a01b0316611bf9565b8060005260066020527f7603b205d03651ee812f803fccde89f1012e545a9c99f0abfea9cedd0fd8e90260408060002060018060601b039081815460601c16916112a6813416926112a08486611d10565b90611ce7565b600a5491600160601b600160c01b03916112c69190606085901c16611d10565b60601b16600160601b600160c01b03199190911617600a55610bc43482611d29565b3461025a57604036600319011261025a576001600160a01b03611309611aa6565b1660005260046020526040600020600435600052602052602060ff604060002054166040519015158152f35b3461025a57600036600319011261025a576000546040516001600160a01b039091168152602090f35b3461025a57600036600319011261025a57611377611ba7565b60405161012081016001600160401b038111911117610e0757600c80546001600160c81b03191690557f4b2974a542484cba2783812ff8033f7fc682cac2fe0905c28c5e27869b3155be600080a1005b3461025a57600036600319011261025a57600a546040516001600160601b039091168152602090f35b3461025a57602036600319011261025a576004356001600160a01b0381169081900361025a5761141e611ba7565b600a54479060601c6001600160601b03168181116103a35781811061143f57005b61144891611c09565b600080808084865af1611459611c64565b5015611491577f4aed7c8eed0496c8c19ea2681fcca25741c1602342e38b045d9f1e8e905d2e9c9160409182519182526020820152a1005b60405163950b247960e01b8152600490fd5b3461025a57604036600319011261025a576107d96114bf611aa6565b6114c7611cad565b604051906114d482611b08565b60008252600435612281565b3461025a57600036600319011261025a576001546001600160a01b03808216330361154b57600080546001600160a01b0319808216339081178455941660015591909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3005b60405162461bcd60e51b815260206004820152601660248201527526bab9ba10313290383937b837b9b2b21037bbb732b960511b6044820152606490fd5b3461025a57600036600319011261025a576003546040516001600160a01b039091168152602090f35b3461025a57604036600319011261025a576115cb611abc565b6115d3611aa6565b906115dc611ba7565b6002546001600160a01b03929083811661161357839260018060a01b03199485911691161760025516906003541617600355600080f35b604051631688c53760e11b8152600490fd5b3461025a57600036600319011261025a57602060405160648152f35b3461025a57602036600319011261025a5761165a611abc565b611662611cad565b61166a611ba7565b6002546001600160a01b03908116919082156103ed5760446020926000600b549560018060601b03808816976116a1891515611cce565b6001600160601b0319908116600b55600a54916116c08a828516611c94565b16911617600a55604051968795869463a9059cbb60e01b865216600485015260248401525af18015610397576107d9916000916116fd5750611cce565b611715915060203d8111610390576103818183611b23565b82610a78565b3461025a57602036600319011261025a5760405163d623472560e01b8152600490fd5b3461025a57602036600319011261025a576004356001600160a01b0381169081900361025a576107d990611770611cad565b611778611ba7565b600b546001600160601b03606082901c81169291611797841515611cce565b600160601b600160c01b0319908116600b55600a5491600160601b600160c01b03906117ca908690606086901c16611c94565b60601b16911617600a5561222e565b3461025a57600036600319011261025a576040517f00000000000000000000000000000000000000000000000000000000000000006001600160601b03168152602090f35b3461025a57600036600319011261025a576002546040516001600160a01b039091168152602090f35b3461025a57600036600319011261025a57600a5460405160609190911c6001600160601b03168152602090f35b3461025a57600036600319011261025a5760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b3461025a576118bd36611b5d565b6000828152600560205260409020546001600160a01b0316156111e357600082815260066020526040908190208054600080516020612898833981519152936001600160601b0380831693610bc49382841692909181610b978589611d10565b3461025a57604036600319011261025a57600435611939611aa6565b611942826121eb565b61194a611cad565b61195382611fbc565b9160008080806001600160601b038716855af161196e611c64565b5015611491576105a26000805160206128788339815191529360405193849384611f92565b3461025a57606036600319011261025a576119ac611aa6565b6044356001600160401b03811161025a573660238201121561025a5780600401356119d681611b46565b916119e46040519384611b23565b81835260209160248385019160051b8301019136831161025a57602401905b828210611a17576107d98587600435612281565b81358152908301908301611a03565b3461025a57600036600319011261025a576101209060ff600c5461ffff8116835263ffffffff808260101c166020850152828260301c1615156040850152808260381c166060850152808260581c166080850152808260781c1660a08501528160981c1660c0840152818160b81c1660e084015260c01c16610100820152f35b602435906001600160a01b038216820361025a57565b600435906001600160a01b038216820361025a57565b608081019081106001600160401b03821117610e0757604052565b606081019081106001600160401b03821117610e0757604052565b602081019081106001600160401b03821117610e0757604052565b601f909101601f19168101906001600160401b03821190821017610e0757604052565b6001600160401b038111610e075760051b60200190565b604090600319011261025a576004359060243590565b90815180825260208080930193019160005b828110611b93575050505090565b835185529381019392810192600101611b85565b6000546001600160a01b03163303611bbb57565b60405162461bcd60e51b815260206004820152601660248201527527b7363c9031b0b63630b1363290313c9037bbb732b960511b6044820152606490fd5b6001600160a01b0316156111e357565b9190820391821161076b57565b9081602091031261025a5751801515810361025a5790565b6001600160a01b039091168152602081019190915260400190565b6001600160401b038111610e0757601f01601f191660200190565b3d15611c8f573d90611c7582611c49565b91611c836040519384611b23565b82523d6000602084013e565b606090565b6001600160601b03918216908216039190821161076b57565b60ff600c5460301c16611cbc57565b60405163769dd35360e11b8152600490fd5b15611cd557565b604051631e9acf1760e31b8152600490fd5b8054600160601b600160c01b03191660609290921b600160601b600160c01b0316919091179055565b6001600160601b03918216908216019190821161076b57565b9190820180921161076b57565b9060405191828154918282526020928383019160005283600020936000905b828210611d6d57505050611d6b92500383611b23565b565b85546001600160a01b031684526001958601958895509381019390910190611d55565b90611d9a82611b46565b611da76040519182611b23565b8281528092611db8601f1991611b46565b0190602036910137565b600019811461076b5760010190565b80518210156109535760209160051b010190565b60085481101561095357600860005260206000200190600090565b80548210156109535760005260206000200190600090565b818110611e23575050565b60008155600101611e18565b600081815260096020526040812054611ea757600854600160401b811015611e93579082611e7f611e6884600160409601600855611de5565b819391549060031b91821b91600019901b19161790565b905560085492815260096020522055600190565b634e487b7160e01b82526041600452602482fd5b905090565b6001600160a01b0391821681529116602082015260400190565b9060018060a01b0381169060008281526004602052604081208482526020526040812080549060ff8216611f8a57600560205260026040842001916064835414611f785760ff19166001179055805491600160401b831015611f6457506020926106af83611f5b9360017f1e980d04aa7648e205713e5e8ea3808672ac163d10936d36f91b2c88ac1575e19896018155611e00565b604051908152a2565b634e487b7160e01b81526041600452602490fd5b6040516305a48e0f60e01b8152600490fd5b505050505050565b6001600160a01b0390911681526001600160601b0391821660208201529116604082015260600190565b906000918083526020600581526040916002838620019460068352838120549360018060601b0393848087169660601c1697805490845b8281106120c357505050906006839285612035969552600581526002838520858155856001820155018054858255806120aa575b505084845252812055612101565b5081612083575b8361204657509190565b600a5490600160601b600160c01b0390612067908690606085901c16611c94565b60601b16600160601b600160c01b03199190911617600a559190565b600a548161209384828416611c94565b6001600160601b0319909216911617600a5561203c565b6120bc91865282862090810190611e18565b3880612027565b806120d16120fc9284611e00565b905460039190911b1c6001600160a01b03168752600485528587208888528552858720879055611dc2565b611ff3565b60008181526009602052604081205490919080156121e657600019908082018181116121d257600854908382019182116121be5780820361218a575b50505060085480156121765781019061215582611de5565b909182549160031b1b19169055600855815260096020526040812055600190565b634e487b7160e01b84526031600452602484fd5b6121a8612199611e6893611de5565b90549060031b1c928392611de5565b905584526009602052604084205538808061213d565b634e487b7160e01b86526011600452602486fd5b634e487b7160e01b85526011600452602485fd5b505090565b6000908152600560205260409020546001600160a01b031661220c81611bf9565b8033036122165750565b60249060405190636c51fda960e11b82526004820152fd5b600080809381935af161223f611c64565b501561149157565b90600182811c92168015612277575b602083101461226157565b634e487b7160e01b600052602260045260246000fd5b91607f1691612256565b9091925a8260005260106020526040600020541561270d57826000526010602052604060002093604051956122b587611ad2565b85548752600260018701549663ffffffff881660208a015263ffffffff60408a019860201c16885201604051908160008254926122f184612247565b80845293600181169081156126eb57506001146126a4575b5061231692500382611b23565b606088015280518061267057505061233463ffffffff865116611d90565b9560005b63ffffffff8751168110156123825761237b63ffffffff9160405160208101908982528260408201526040815261236e81611aed565b519020610948828c611dd1565b9050612338565b50919450919460006123bd6123cb82935b604051928391631fe543e360e01b6020840152896024840152604060448401526064830190611b73565b03601f198101835282611b23565b60ff60301b1994600160301b86600c541617600c558263ffffffff6020870151169160208451940192f1916123fe611c64565b50600c5416600c5560608101518051600019810181811161076b57825111156109535701601f015160f81c60011493612438905a90611c09565b6001600160601b0392907f00000000000000000000000000000000000000000000000000000000000000008416808202918015908304909114171561076b576124a48491827f000000000000000000000000000000000000000000000000000000000000000016611d29565b8615612616575b169082516000526006602052604060002092866000146125be5784845460601c1694838610611cd5576124f360a0956112a08660008051602061283883398151915299611c94565b600b5490600160601b600160c01b0390612514908690606085901c16611d10565b60601b16600160601b600160c01b03199190911617600b555b856000526010602052600260406000206000815560006001820155016125538154612247565b9081612580575b5050519560405192868452602084015260408301521515606082015260006080820152a3565b81601f600093116001146125985750555b388061255a565b9080839182526125b7601f60208420940160051c840160018501611e18565b5555612591565b8354939484811694848610611cd55760008051602061283883398151915296826125ea8760a099611c94565b166001600160601b0319928316179055600b549161260a86828516611d10565b16911617600b5561252d565b670de0b6b3a7640000808202925082040361076b577f0000000000000000000000000000000000000000000000000000000000000000801561265a578491046124ab565b634e487b7160e01b600052601260045260246000fd5b90919396929563ffffffff905116036126925760006123bd6123cb8293612393565b604051631f9efadb60e11b8152600490fd5b90506000929192526020600020906000915b8183106126cf5750509060206123169282010138612309565b60209193508060019154838588010152019101909183926126b6565b90506020925061231694915060ff191682840152151560051b82010138612309565b6040516341abc80160e01b8152600490fd5b9081526001600160a01b03909116602082015260400190565b903590601e198136030182121561025a57018035906001600160401b03821161025a5760200191813603831361025a57565b3563ffffffff8116810361025a5790565b906040519061278982611b08565b600080925280156128235782356001600160e01b0319818116916004841061280e575b5016630da05d9960e31b016127fc57806004116127f857602090830183900360031901126127f5576004604051926127e384611b08565b01359081151582036127f55750815290565b80fd5b5080fd5b604051632923fee760e11b8152600490fd5b818093508460040360031b1b161690386127ac565b50604051915061283282611b08565b81529056feaeb4b4786571e184246d39587f659abf0e26f41f6a3358692250382c0cdb47b732158c6058347c1601b2d12bc696ac6901d8a9a9aa3ba10c27ab0a983e8425a78c74ce8b8cf87f5eb001275c8be27eb34ea2b62bfab6814fcc62192bb63e81c41ced9348ff549fceab2ac57cd3a9de38edaaab274b725ee82c23e8fc8c4eec7aa2646970667358221220dc0c51c0a6ddac66aff1ef76d39f00d039a200113350af4ff6fd77e3afb069b964736f6c63430008140033";
|
|
18
|
-
static readonly abi: readonly [{
|
|
19
|
-
readonly inputs: readonly [{
|
|
20
|
-
readonly internalType: "uint96";
|
|
21
|
-
readonly name: "_baseFee";
|
|
22
|
-
readonly type: "uint96";
|
|
23
|
-
}, {
|
|
24
|
-
readonly internalType: "uint96";
|
|
25
|
-
readonly name: "_gasPrice";
|
|
26
|
-
readonly type: "uint96";
|
|
27
|
-
}, {
|
|
28
|
-
readonly internalType: "int256";
|
|
29
|
-
readonly name: "_weiPerUnitLink";
|
|
30
|
-
readonly type: "int256";
|
|
31
|
-
}];
|
|
32
|
-
readonly stateMutability: "nonpayable";
|
|
33
|
-
readonly type: "constructor";
|
|
34
|
-
}, {
|
|
35
|
-
readonly inputs: readonly [{
|
|
36
|
-
readonly internalType: "uint256";
|
|
37
|
-
readonly name: "internalBalance";
|
|
38
|
-
readonly type: "uint256";
|
|
39
|
-
}, {
|
|
40
|
-
readonly internalType: "uint256";
|
|
41
|
-
readonly name: "externalBalance";
|
|
42
|
-
readonly type: "uint256";
|
|
43
|
-
}];
|
|
44
|
-
readonly name: "BalanceInvariantViolated";
|
|
45
|
-
readonly type: "error";
|
|
46
|
-
}, {
|
|
47
|
-
readonly inputs: readonly [];
|
|
48
|
-
readonly name: "FailedToSendNative";
|
|
49
|
-
readonly type: "error";
|
|
50
|
-
}, {
|
|
51
|
-
readonly inputs: readonly [];
|
|
52
|
-
readonly name: "FailedToTransferLink";
|
|
53
|
-
readonly type: "error";
|
|
54
|
-
}, {
|
|
55
|
-
readonly inputs: readonly [];
|
|
56
|
-
readonly name: "IndexOutOfRange";
|
|
57
|
-
readonly type: "error";
|
|
58
|
-
}, {
|
|
59
|
-
readonly inputs: readonly [];
|
|
60
|
-
readonly name: "InsufficientBalance";
|
|
61
|
-
readonly type: "error";
|
|
62
|
-
}, {
|
|
63
|
-
readonly inputs: readonly [];
|
|
64
|
-
readonly name: "InvalidCalldata";
|
|
65
|
-
readonly type: "error";
|
|
66
|
-
}, {
|
|
67
|
-
readonly inputs: readonly [{
|
|
68
|
-
readonly internalType: "uint256";
|
|
69
|
-
readonly name: "subId";
|
|
70
|
-
readonly type: "uint256";
|
|
71
|
-
}, {
|
|
72
|
-
readonly internalType: "address";
|
|
73
|
-
readonly name: "consumer";
|
|
74
|
-
readonly type: "address";
|
|
75
|
-
}];
|
|
76
|
-
readonly name: "InvalidConsumer";
|
|
77
|
-
readonly type: "error";
|
|
78
|
-
}, {
|
|
79
|
-
readonly inputs: readonly [];
|
|
80
|
-
readonly name: "InvalidExtraArgsTag";
|
|
81
|
-
readonly type: "error";
|
|
82
|
-
}, {
|
|
83
|
-
readonly inputs: readonly [];
|
|
84
|
-
readonly name: "InvalidRandomWords";
|
|
85
|
-
readonly type: "error";
|
|
86
|
-
}, {
|
|
87
|
-
readonly inputs: readonly [];
|
|
88
|
-
readonly name: "InvalidRequest";
|
|
89
|
-
readonly type: "error";
|
|
90
|
-
}, {
|
|
91
|
-
readonly inputs: readonly [];
|
|
92
|
-
readonly name: "InvalidSubscription";
|
|
93
|
-
readonly type: "error";
|
|
94
|
-
}, {
|
|
95
|
-
readonly inputs: readonly [];
|
|
96
|
-
readonly name: "LinkAlreadySet";
|
|
97
|
-
readonly type: "error";
|
|
98
|
-
}, {
|
|
99
|
-
readonly inputs: readonly [];
|
|
100
|
-
readonly name: "LinkNotSet";
|
|
101
|
-
readonly type: "error";
|
|
102
|
-
}, {
|
|
103
|
-
readonly inputs: readonly [{
|
|
104
|
-
readonly internalType: "address";
|
|
105
|
-
readonly name: "proposedOwner";
|
|
106
|
-
readonly type: "address";
|
|
107
|
-
}];
|
|
108
|
-
readonly name: "MustBeRequestedOwner";
|
|
109
|
-
readonly type: "error";
|
|
110
|
-
}, {
|
|
111
|
-
readonly inputs: readonly [{
|
|
112
|
-
readonly internalType: "address";
|
|
113
|
-
readonly name: "owner";
|
|
114
|
-
readonly type: "address";
|
|
115
|
-
}];
|
|
116
|
-
readonly name: "MustBeSubOwner";
|
|
117
|
-
readonly type: "error";
|
|
118
|
-
}, {
|
|
119
|
-
readonly inputs: readonly [];
|
|
120
|
-
readonly name: "NotImplemented";
|
|
121
|
-
readonly type: "error";
|
|
122
|
-
}, {
|
|
123
|
-
readonly inputs: readonly [];
|
|
124
|
-
readonly name: "OnlyCallableFromLink";
|
|
125
|
-
readonly type: "error";
|
|
126
|
-
}, {
|
|
127
|
-
readonly inputs: readonly [];
|
|
128
|
-
readonly name: "PendingRequestExists";
|
|
129
|
-
readonly type: "error";
|
|
130
|
-
}, {
|
|
131
|
-
readonly inputs: readonly [];
|
|
132
|
-
readonly name: "Reentrant";
|
|
133
|
-
readonly type: "error";
|
|
134
|
-
}, {
|
|
135
|
-
readonly inputs: readonly [];
|
|
136
|
-
readonly name: "TooManyConsumers";
|
|
137
|
-
readonly type: "error";
|
|
138
|
-
}, {
|
|
139
|
-
readonly anonymous: false;
|
|
140
|
-
readonly inputs: readonly [];
|
|
141
|
-
readonly name: "ConfigSet";
|
|
142
|
-
readonly type: "event";
|
|
143
|
-
}, {
|
|
144
|
-
readonly anonymous: false;
|
|
145
|
-
readonly inputs: readonly [{
|
|
146
|
-
readonly indexed: false;
|
|
147
|
-
readonly internalType: "address";
|
|
148
|
-
readonly name: "to";
|
|
149
|
-
readonly type: "address";
|
|
150
|
-
}, {
|
|
151
|
-
readonly indexed: false;
|
|
152
|
-
readonly internalType: "uint256";
|
|
153
|
-
readonly name: "amount";
|
|
154
|
-
readonly type: "uint256";
|
|
155
|
-
}];
|
|
156
|
-
readonly name: "FundsRecovered";
|
|
157
|
-
readonly type: "event";
|
|
158
|
-
}, {
|
|
159
|
-
readonly anonymous: false;
|
|
160
|
-
readonly inputs: readonly [{
|
|
161
|
-
readonly indexed: false;
|
|
162
|
-
readonly internalType: "address";
|
|
163
|
-
readonly name: "to";
|
|
164
|
-
readonly type: "address";
|
|
165
|
-
}, {
|
|
166
|
-
readonly indexed: false;
|
|
167
|
-
readonly internalType: "uint256";
|
|
168
|
-
readonly name: "amount";
|
|
169
|
-
readonly type: "uint256";
|
|
170
|
-
}];
|
|
171
|
-
readonly name: "NativeFundsRecovered";
|
|
172
|
-
readonly type: "event";
|
|
173
|
-
}, {
|
|
174
|
-
readonly anonymous: false;
|
|
175
|
-
readonly inputs: readonly [{
|
|
176
|
-
readonly indexed: true;
|
|
177
|
-
readonly internalType: "address";
|
|
178
|
-
readonly name: "from";
|
|
179
|
-
readonly type: "address";
|
|
180
|
-
}, {
|
|
181
|
-
readonly indexed: true;
|
|
182
|
-
readonly internalType: "address";
|
|
183
|
-
readonly name: "to";
|
|
184
|
-
readonly type: "address";
|
|
185
|
-
}];
|
|
186
|
-
readonly name: "OwnershipTransferRequested";
|
|
187
|
-
readonly type: "event";
|
|
188
|
-
}, {
|
|
189
|
-
readonly anonymous: false;
|
|
190
|
-
readonly inputs: readonly [{
|
|
191
|
-
readonly indexed: true;
|
|
192
|
-
readonly internalType: "address";
|
|
193
|
-
readonly name: "from";
|
|
194
|
-
readonly type: "address";
|
|
195
|
-
}, {
|
|
196
|
-
readonly indexed: true;
|
|
197
|
-
readonly internalType: "address";
|
|
198
|
-
readonly name: "to";
|
|
199
|
-
readonly type: "address";
|
|
200
|
-
}];
|
|
201
|
-
readonly name: "OwnershipTransferred";
|
|
202
|
-
readonly type: "event";
|
|
203
|
-
}, {
|
|
204
|
-
readonly anonymous: false;
|
|
205
|
-
readonly inputs: readonly [{
|
|
206
|
-
readonly indexed: true;
|
|
207
|
-
readonly internalType: "uint256";
|
|
208
|
-
readonly name: "requestId";
|
|
209
|
-
readonly type: "uint256";
|
|
210
|
-
}, {
|
|
211
|
-
readonly indexed: false;
|
|
212
|
-
readonly internalType: "uint256";
|
|
213
|
-
readonly name: "outputSeed";
|
|
214
|
-
readonly type: "uint256";
|
|
215
|
-
}, {
|
|
216
|
-
readonly indexed: true;
|
|
217
|
-
readonly internalType: "uint256";
|
|
218
|
-
readonly name: "subId";
|
|
219
|
-
readonly type: "uint256";
|
|
220
|
-
}, {
|
|
221
|
-
readonly indexed: false;
|
|
222
|
-
readonly internalType: "uint96";
|
|
223
|
-
readonly name: "payment";
|
|
224
|
-
readonly type: "uint96";
|
|
225
|
-
}, {
|
|
226
|
-
readonly indexed: false;
|
|
227
|
-
readonly internalType: "bool";
|
|
228
|
-
readonly name: "nativePayment";
|
|
229
|
-
readonly type: "bool";
|
|
230
|
-
}, {
|
|
231
|
-
readonly indexed: false;
|
|
232
|
-
readonly internalType: "bool";
|
|
233
|
-
readonly name: "success";
|
|
234
|
-
readonly type: "bool";
|
|
235
|
-
}, {
|
|
236
|
-
readonly indexed: false;
|
|
237
|
-
readonly internalType: "bool";
|
|
238
|
-
readonly name: "onlyPremium";
|
|
239
|
-
readonly type: "bool";
|
|
240
|
-
}];
|
|
241
|
-
readonly name: "RandomWordsFulfilled";
|
|
242
|
-
readonly type: "event";
|
|
243
|
-
}, {
|
|
244
|
-
readonly anonymous: false;
|
|
245
|
-
readonly inputs: readonly [{
|
|
246
|
-
readonly indexed: true;
|
|
247
|
-
readonly internalType: "bytes32";
|
|
248
|
-
readonly name: "keyHash";
|
|
249
|
-
readonly type: "bytes32";
|
|
250
|
-
}, {
|
|
251
|
-
readonly indexed: false;
|
|
252
|
-
readonly internalType: "uint256";
|
|
253
|
-
readonly name: "requestId";
|
|
254
|
-
readonly type: "uint256";
|
|
255
|
-
}, {
|
|
256
|
-
readonly indexed: false;
|
|
257
|
-
readonly internalType: "uint256";
|
|
258
|
-
readonly name: "preSeed";
|
|
259
|
-
readonly type: "uint256";
|
|
260
|
-
}, {
|
|
261
|
-
readonly indexed: true;
|
|
262
|
-
readonly internalType: "uint256";
|
|
263
|
-
readonly name: "subId";
|
|
264
|
-
readonly type: "uint256";
|
|
265
|
-
}, {
|
|
266
|
-
readonly indexed: false;
|
|
267
|
-
readonly internalType: "uint16";
|
|
268
|
-
readonly name: "minimumRequestConfirmations";
|
|
269
|
-
readonly type: "uint16";
|
|
270
|
-
}, {
|
|
271
|
-
readonly indexed: false;
|
|
272
|
-
readonly internalType: "uint32";
|
|
273
|
-
readonly name: "callbackGasLimit";
|
|
274
|
-
readonly type: "uint32";
|
|
275
|
-
}, {
|
|
276
|
-
readonly indexed: false;
|
|
277
|
-
readonly internalType: "uint32";
|
|
278
|
-
readonly name: "numWords";
|
|
279
|
-
readonly type: "uint32";
|
|
280
|
-
}, {
|
|
281
|
-
readonly indexed: false;
|
|
282
|
-
readonly internalType: "bytes";
|
|
283
|
-
readonly name: "extraArgs";
|
|
284
|
-
readonly type: "bytes";
|
|
285
|
-
}, {
|
|
286
|
-
readonly indexed: true;
|
|
287
|
-
readonly internalType: "address";
|
|
288
|
-
readonly name: "sender";
|
|
289
|
-
readonly type: "address";
|
|
290
|
-
}];
|
|
291
|
-
readonly name: "RandomWordsRequested";
|
|
292
|
-
readonly type: "event";
|
|
293
|
-
}, {
|
|
294
|
-
readonly anonymous: false;
|
|
295
|
-
readonly inputs: readonly [{
|
|
296
|
-
readonly indexed: true;
|
|
297
|
-
readonly internalType: "uint256";
|
|
298
|
-
readonly name: "subId";
|
|
299
|
-
readonly type: "uint256";
|
|
300
|
-
}, {
|
|
301
|
-
readonly indexed: false;
|
|
302
|
-
readonly internalType: "address";
|
|
303
|
-
readonly name: "to";
|
|
304
|
-
readonly type: "address";
|
|
305
|
-
}, {
|
|
306
|
-
readonly indexed: false;
|
|
307
|
-
readonly internalType: "uint256";
|
|
308
|
-
readonly name: "amountLink";
|
|
309
|
-
readonly type: "uint256";
|
|
310
|
-
}, {
|
|
311
|
-
readonly indexed: false;
|
|
312
|
-
readonly internalType: "uint256";
|
|
313
|
-
readonly name: "amountNative";
|
|
314
|
-
readonly type: "uint256";
|
|
315
|
-
}];
|
|
316
|
-
readonly name: "SubscriptionCanceled";
|
|
317
|
-
readonly type: "event";
|
|
318
|
-
}, {
|
|
319
|
-
readonly anonymous: false;
|
|
320
|
-
readonly inputs: readonly [{
|
|
321
|
-
readonly indexed: true;
|
|
322
|
-
readonly internalType: "uint256";
|
|
323
|
-
readonly name: "subId";
|
|
324
|
-
readonly type: "uint256";
|
|
325
|
-
}, {
|
|
326
|
-
readonly indexed: false;
|
|
327
|
-
readonly internalType: "address";
|
|
328
|
-
readonly name: "consumer";
|
|
329
|
-
readonly type: "address";
|
|
330
|
-
}];
|
|
331
|
-
readonly name: "SubscriptionConsumerAdded";
|
|
332
|
-
readonly type: "event";
|
|
333
|
-
}, {
|
|
334
|
-
readonly anonymous: false;
|
|
335
|
-
readonly inputs: readonly [{
|
|
336
|
-
readonly indexed: true;
|
|
337
|
-
readonly internalType: "uint256";
|
|
338
|
-
readonly name: "subId";
|
|
339
|
-
readonly type: "uint256";
|
|
340
|
-
}, {
|
|
341
|
-
readonly indexed: false;
|
|
342
|
-
readonly internalType: "address";
|
|
343
|
-
readonly name: "consumer";
|
|
344
|
-
readonly type: "address";
|
|
345
|
-
}];
|
|
346
|
-
readonly name: "SubscriptionConsumerRemoved";
|
|
347
|
-
readonly type: "event";
|
|
348
|
-
}, {
|
|
349
|
-
readonly anonymous: false;
|
|
350
|
-
readonly inputs: readonly [{
|
|
351
|
-
readonly indexed: true;
|
|
352
|
-
readonly internalType: "uint256";
|
|
353
|
-
readonly name: "subId";
|
|
354
|
-
readonly type: "uint256";
|
|
355
|
-
}, {
|
|
356
|
-
readonly indexed: false;
|
|
357
|
-
readonly internalType: "address";
|
|
358
|
-
readonly name: "owner";
|
|
359
|
-
readonly type: "address";
|
|
360
|
-
}];
|
|
361
|
-
readonly name: "SubscriptionCreated";
|
|
362
|
-
readonly type: "event";
|
|
363
|
-
}, {
|
|
364
|
-
readonly anonymous: false;
|
|
365
|
-
readonly inputs: readonly [{
|
|
366
|
-
readonly indexed: true;
|
|
367
|
-
readonly internalType: "uint256";
|
|
368
|
-
readonly name: "subId";
|
|
369
|
-
readonly type: "uint256";
|
|
370
|
-
}, {
|
|
371
|
-
readonly indexed: false;
|
|
372
|
-
readonly internalType: "uint256";
|
|
373
|
-
readonly name: "oldBalance";
|
|
374
|
-
readonly type: "uint256";
|
|
375
|
-
}, {
|
|
376
|
-
readonly indexed: false;
|
|
377
|
-
readonly internalType: "uint256";
|
|
378
|
-
readonly name: "newBalance";
|
|
379
|
-
readonly type: "uint256";
|
|
380
|
-
}];
|
|
381
|
-
readonly name: "SubscriptionFunded";
|
|
382
|
-
readonly type: "event";
|
|
383
|
-
}, {
|
|
384
|
-
readonly anonymous: false;
|
|
385
|
-
readonly inputs: readonly [{
|
|
386
|
-
readonly indexed: true;
|
|
387
|
-
readonly internalType: "uint256";
|
|
388
|
-
readonly name: "subId";
|
|
389
|
-
readonly type: "uint256";
|
|
390
|
-
}, {
|
|
391
|
-
readonly indexed: false;
|
|
392
|
-
readonly internalType: "uint256";
|
|
393
|
-
readonly name: "oldNativeBalance";
|
|
394
|
-
readonly type: "uint256";
|
|
395
|
-
}, {
|
|
396
|
-
readonly indexed: false;
|
|
397
|
-
readonly internalType: "uint256";
|
|
398
|
-
readonly name: "newNativeBalance";
|
|
399
|
-
readonly type: "uint256";
|
|
400
|
-
}];
|
|
401
|
-
readonly name: "SubscriptionFundedWithNative";
|
|
402
|
-
readonly type: "event";
|
|
403
|
-
}, {
|
|
404
|
-
readonly anonymous: false;
|
|
405
|
-
readonly inputs: readonly [{
|
|
406
|
-
readonly indexed: true;
|
|
407
|
-
readonly internalType: "uint256";
|
|
408
|
-
readonly name: "subId";
|
|
409
|
-
readonly type: "uint256";
|
|
410
|
-
}, {
|
|
411
|
-
readonly indexed: false;
|
|
412
|
-
readonly internalType: "address";
|
|
413
|
-
readonly name: "from";
|
|
414
|
-
readonly type: "address";
|
|
415
|
-
}, {
|
|
416
|
-
readonly indexed: false;
|
|
417
|
-
readonly internalType: "address";
|
|
418
|
-
readonly name: "to";
|
|
419
|
-
readonly type: "address";
|
|
420
|
-
}];
|
|
421
|
-
readonly name: "SubscriptionOwnerTransferRequested";
|
|
422
|
-
readonly type: "event";
|
|
423
|
-
}, {
|
|
424
|
-
readonly anonymous: false;
|
|
425
|
-
readonly inputs: readonly [{
|
|
426
|
-
readonly indexed: true;
|
|
427
|
-
readonly internalType: "uint256";
|
|
428
|
-
readonly name: "subId";
|
|
429
|
-
readonly type: "uint256";
|
|
430
|
-
}, {
|
|
431
|
-
readonly indexed: false;
|
|
432
|
-
readonly internalType: "address";
|
|
433
|
-
readonly name: "from";
|
|
434
|
-
readonly type: "address";
|
|
435
|
-
}, {
|
|
436
|
-
readonly indexed: false;
|
|
437
|
-
readonly internalType: "address";
|
|
438
|
-
readonly name: "to";
|
|
439
|
-
readonly type: "address";
|
|
440
|
-
}];
|
|
441
|
-
readonly name: "SubscriptionOwnerTransferred";
|
|
442
|
-
readonly type: "event";
|
|
443
|
-
}, {
|
|
444
|
-
readonly inputs: readonly [];
|
|
445
|
-
readonly name: "LINK";
|
|
446
|
-
readonly outputs: readonly [{
|
|
447
|
-
readonly internalType: "contract LinkTokenInterface";
|
|
448
|
-
readonly name: "";
|
|
449
|
-
readonly type: "address";
|
|
450
|
-
}];
|
|
451
|
-
readonly stateMutability: "view";
|
|
452
|
-
readonly type: "function";
|
|
453
|
-
}, {
|
|
454
|
-
readonly inputs: readonly [];
|
|
455
|
-
readonly name: "LINK_NATIVE_FEED";
|
|
456
|
-
readonly outputs: readonly [{
|
|
457
|
-
readonly internalType: "contract AggregatorV3Interface";
|
|
458
|
-
readonly name: "";
|
|
459
|
-
readonly type: "address";
|
|
460
|
-
}];
|
|
461
|
-
readonly stateMutability: "view";
|
|
462
|
-
readonly type: "function";
|
|
463
|
-
}, {
|
|
464
|
-
readonly inputs: readonly [];
|
|
465
|
-
readonly name: "MAX_CONSUMERS";
|
|
466
|
-
readonly outputs: readonly [{
|
|
467
|
-
readonly internalType: "uint16";
|
|
468
|
-
readonly name: "";
|
|
469
|
-
readonly type: "uint16";
|
|
470
|
-
}];
|
|
471
|
-
readonly stateMutability: "view";
|
|
472
|
-
readonly type: "function";
|
|
473
|
-
}, {
|
|
474
|
-
readonly inputs: readonly [];
|
|
475
|
-
readonly name: "acceptOwnership";
|
|
476
|
-
readonly outputs: readonly [];
|
|
477
|
-
readonly stateMutability: "nonpayable";
|
|
478
|
-
readonly type: "function";
|
|
479
|
-
}, {
|
|
480
|
-
readonly inputs: readonly [{
|
|
481
|
-
readonly internalType: "uint256";
|
|
482
|
-
readonly name: "subId";
|
|
483
|
-
readonly type: "uint256";
|
|
484
|
-
}];
|
|
485
|
-
readonly name: "acceptSubscriptionOwnerTransfer";
|
|
486
|
-
readonly outputs: readonly [];
|
|
487
|
-
readonly stateMutability: "nonpayable";
|
|
488
|
-
readonly type: "function";
|
|
489
|
-
}, {
|
|
490
|
-
readonly inputs: readonly [{
|
|
491
|
-
readonly internalType: "uint256";
|
|
492
|
-
readonly name: "subId";
|
|
493
|
-
readonly type: "uint256";
|
|
494
|
-
}, {
|
|
495
|
-
readonly internalType: "address";
|
|
496
|
-
readonly name: "consumer";
|
|
497
|
-
readonly type: "address";
|
|
498
|
-
}];
|
|
499
|
-
readonly name: "addConsumer";
|
|
500
|
-
readonly outputs: readonly [];
|
|
501
|
-
readonly stateMutability: "nonpayable";
|
|
502
|
-
readonly type: "function";
|
|
503
|
-
}, {
|
|
504
|
-
readonly inputs: readonly [{
|
|
505
|
-
readonly internalType: "uint256";
|
|
506
|
-
readonly name: "_subId";
|
|
507
|
-
readonly type: "uint256";
|
|
508
|
-
}, {
|
|
509
|
-
readonly internalType: "address";
|
|
510
|
-
readonly name: "_to";
|
|
511
|
-
readonly type: "address";
|
|
512
|
-
}];
|
|
513
|
-
readonly name: "cancelSubscription";
|
|
514
|
-
readonly outputs: readonly [];
|
|
515
|
-
readonly stateMutability: "nonpayable";
|
|
516
|
-
readonly type: "function";
|
|
517
|
-
}, {
|
|
518
|
-
readonly inputs: readonly [{
|
|
519
|
-
readonly internalType: "uint256";
|
|
520
|
-
readonly name: "_subId";
|
|
521
|
-
readonly type: "uint256";
|
|
522
|
-
}, {
|
|
523
|
-
readonly internalType: "address";
|
|
524
|
-
readonly name: "_consumer";
|
|
525
|
-
readonly type: "address";
|
|
526
|
-
}];
|
|
527
|
-
readonly name: "consumerIsAdded";
|
|
528
|
-
readonly outputs: readonly [{
|
|
529
|
-
readonly internalType: "bool";
|
|
530
|
-
readonly name: "";
|
|
531
|
-
readonly type: "bool";
|
|
532
|
-
}];
|
|
533
|
-
readonly stateMutability: "view";
|
|
534
|
-
readonly type: "function";
|
|
535
|
-
}, {
|
|
536
|
-
readonly inputs: readonly [];
|
|
537
|
-
readonly name: "createSubscription";
|
|
538
|
-
readonly outputs: readonly [{
|
|
539
|
-
readonly internalType: "uint256";
|
|
540
|
-
readonly name: "subId";
|
|
541
|
-
readonly type: "uint256";
|
|
542
|
-
}];
|
|
543
|
-
readonly stateMutability: "nonpayable";
|
|
544
|
-
readonly type: "function";
|
|
545
|
-
}, {
|
|
546
|
-
readonly inputs: readonly [{
|
|
547
|
-
readonly internalType: "uint256";
|
|
548
|
-
readonly name: "_requestId";
|
|
549
|
-
readonly type: "uint256";
|
|
550
|
-
}, {
|
|
551
|
-
readonly internalType: "address";
|
|
552
|
-
readonly name: "_consumer";
|
|
553
|
-
readonly type: "address";
|
|
554
|
-
}];
|
|
555
|
-
readonly name: "fulfillRandomWords";
|
|
556
|
-
readonly outputs: readonly [];
|
|
557
|
-
readonly stateMutability: "nonpayable";
|
|
558
|
-
readonly type: "function";
|
|
559
|
-
}, {
|
|
560
|
-
readonly inputs: readonly [{
|
|
561
|
-
readonly internalType: "uint256";
|
|
562
|
-
readonly name: "_requestId";
|
|
563
|
-
readonly type: "uint256";
|
|
564
|
-
}, {
|
|
565
|
-
readonly internalType: "address";
|
|
566
|
-
readonly name: "_consumer";
|
|
567
|
-
readonly type: "address";
|
|
568
|
-
}, {
|
|
569
|
-
readonly internalType: "uint256[]";
|
|
570
|
-
readonly name: "_words";
|
|
571
|
-
readonly type: "uint256[]";
|
|
572
|
-
}];
|
|
573
|
-
readonly name: "fulfillRandomWordsWithOverride";
|
|
574
|
-
readonly outputs: readonly [];
|
|
575
|
-
readonly stateMutability: "nonpayable";
|
|
576
|
-
readonly type: "function";
|
|
577
|
-
}, {
|
|
578
|
-
readonly inputs: readonly [{
|
|
579
|
-
readonly internalType: "uint256";
|
|
580
|
-
readonly name: "_subId";
|
|
581
|
-
readonly type: "uint256";
|
|
582
|
-
}, {
|
|
583
|
-
readonly internalType: "uint256";
|
|
584
|
-
readonly name: "_amount";
|
|
585
|
-
readonly type: "uint256";
|
|
586
|
-
}];
|
|
587
|
-
readonly name: "fundSubscription";
|
|
588
|
-
readonly outputs: readonly [];
|
|
589
|
-
readonly stateMutability: "nonpayable";
|
|
590
|
-
readonly type: "function";
|
|
591
|
-
}, {
|
|
592
|
-
readonly inputs: readonly [{
|
|
593
|
-
readonly internalType: "uint256";
|
|
594
|
-
readonly name: "subId";
|
|
595
|
-
readonly type: "uint256";
|
|
596
|
-
}];
|
|
597
|
-
readonly name: "fundSubscriptionWithNative";
|
|
598
|
-
readonly outputs: readonly [];
|
|
599
|
-
readonly stateMutability: "payable";
|
|
600
|
-
readonly type: "function";
|
|
601
|
-
}, {
|
|
602
|
-
readonly inputs: readonly [{
|
|
603
|
-
readonly internalType: "uint256";
|
|
604
|
-
readonly name: "startIndex";
|
|
605
|
-
readonly type: "uint256";
|
|
606
|
-
}, {
|
|
607
|
-
readonly internalType: "uint256";
|
|
608
|
-
readonly name: "maxCount";
|
|
609
|
-
readonly type: "uint256";
|
|
610
|
-
}];
|
|
611
|
-
readonly name: "getActiveSubscriptionIds";
|
|
612
|
-
readonly outputs: readonly [{
|
|
613
|
-
readonly internalType: "uint256[]";
|
|
614
|
-
readonly name: "ids";
|
|
615
|
-
readonly type: "uint256[]";
|
|
616
|
-
}];
|
|
617
|
-
readonly stateMutability: "view";
|
|
618
|
-
readonly type: "function";
|
|
619
|
-
}, {
|
|
620
|
-
readonly inputs: readonly [{
|
|
621
|
-
readonly internalType: "uint256";
|
|
622
|
-
readonly name: "subId";
|
|
623
|
-
readonly type: "uint256";
|
|
624
|
-
}];
|
|
625
|
-
readonly name: "getSubscription";
|
|
626
|
-
readonly outputs: readonly [{
|
|
627
|
-
readonly internalType: "uint96";
|
|
628
|
-
readonly name: "balance";
|
|
629
|
-
readonly type: "uint96";
|
|
630
|
-
}, {
|
|
631
|
-
readonly internalType: "uint96";
|
|
632
|
-
readonly name: "nativeBalance";
|
|
633
|
-
readonly type: "uint96";
|
|
634
|
-
}, {
|
|
635
|
-
readonly internalType: "uint64";
|
|
636
|
-
readonly name: "reqCount";
|
|
637
|
-
readonly type: "uint64";
|
|
638
|
-
}, {
|
|
639
|
-
readonly internalType: "address";
|
|
640
|
-
readonly name: "subOwner";
|
|
641
|
-
readonly type: "address";
|
|
642
|
-
}, {
|
|
643
|
-
readonly internalType: "address[]";
|
|
644
|
-
readonly name: "consumers";
|
|
645
|
-
readonly type: "address[]";
|
|
646
|
-
}];
|
|
647
|
-
readonly stateMutability: "view";
|
|
648
|
-
readonly type: "function";
|
|
649
|
-
}, {
|
|
650
|
-
readonly inputs: readonly [];
|
|
651
|
-
readonly name: "i_base_fee";
|
|
652
|
-
readonly outputs: readonly [{
|
|
653
|
-
readonly internalType: "uint96";
|
|
654
|
-
readonly name: "";
|
|
655
|
-
readonly type: "uint96";
|
|
656
|
-
}];
|
|
657
|
-
readonly stateMutability: "view";
|
|
658
|
-
readonly type: "function";
|
|
659
|
-
}, {
|
|
660
|
-
readonly inputs: readonly [];
|
|
661
|
-
readonly name: "i_gas_price";
|
|
662
|
-
readonly outputs: readonly [{
|
|
663
|
-
readonly internalType: "uint96";
|
|
664
|
-
readonly name: "";
|
|
665
|
-
readonly type: "uint96";
|
|
666
|
-
}];
|
|
667
|
-
readonly stateMutability: "view";
|
|
668
|
-
readonly type: "function";
|
|
669
|
-
}, {
|
|
670
|
-
readonly inputs: readonly [];
|
|
671
|
-
readonly name: "i_wei_per_unit_link";
|
|
672
|
-
readonly outputs: readonly [{
|
|
673
|
-
readonly internalType: "int256";
|
|
674
|
-
readonly name: "";
|
|
675
|
-
readonly type: "int256";
|
|
676
|
-
}];
|
|
677
|
-
readonly stateMutability: "view";
|
|
678
|
-
readonly type: "function";
|
|
679
|
-
}, {
|
|
680
|
-
readonly inputs: readonly [{
|
|
681
|
-
readonly internalType: "address";
|
|
682
|
-
readonly name: "";
|
|
683
|
-
readonly type: "address";
|
|
684
|
-
}, {
|
|
685
|
-
readonly internalType: "uint256";
|
|
686
|
-
readonly name: "amount";
|
|
687
|
-
readonly type: "uint256";
|
|
688
|
-
}, {
|
|
689
|
-
readonly internalType: "bytes";
|
|
690
|
-
readonly name: "data";
|
|
691
|
-
readonly type: "bytes";
|
|
692
|
-
}];
|
|
693
|
-
readonly name: "onTokenTransfer";
|
|
694
|
-
readonly outputs: readonly [];
|
|
695
|
-
readonly stateMutability: "nonpayable";
|
|
696
|
-
readonly type: "function";
|
|
697
|
-
}, {
|
|
698
|
-
readonly inputs: readonly [];
|
|
699
|
-
readonly name: "owner";
|
|
700
|
-
readonly outputs: readonly [{
|
|
701
|
-
readonly internalType: "address";
|
|
702
|
-
readonly name: "";
|
|
703
|
-
readonly type: "address";
|
|
704
|
-
}];
|
|
705
|
-
readonly stateMutability: "view";
|
|
706
|
-
readonly type: "function";
|
|
707
|
-
}, {
|
|
708
|
-
readonly inputs: readonly [{
|
|
709
|
-
readonly internalType: "uint256";
|
|
710
|
-
readonly name: "subId";
|
|
711
|
-
readonly type: "uint256";
|
|
712
|
-
}];
|
|
713
|
-
readonly name: "ownerCancelSubscription";
|
|
714
|
-
readonly outputs: readonly [];
|
|
715
|
-
readonly stateMutability: "nonpayable";
|
|
716
|
-
readonly type: "function";
|
|
717
|
-
}, {
|
|
718
|
-
readonly inputs: readonly [{
|
|
719
|
-
readonly internalType: "uint256";
|
|
720
|
-
readonly name: "";
|
|
721
|
-
readonly type: "uint256";
|
|
722
|
-
}];
|
|
723
|
-
readonly name: "pendingRequestExists";
|
|
724
|
-
readonly outputs: readonly [{
|
|
725
|
-
readonly internalType: "bool";
|
|
726
|
-
readonly name: "";
|
|
727
|
-
readonly type: "bool";
|
|
728
|
-
}];
|
|
729
|
-
readonly stateMutability: "pure";
|
|
730
|
-
readonly type: "function";
|
|
731
|
-
}, {
|
|
732
|
-
readonly inputs: readonly [{
|
|
733
|
-
readonly internalType: "address";
|
|
734
|
-
readonly name: "to";
|
|
735
|
-
readonly type: "address";
|
|
736
|
-
}];
|
|
737
|
-
readonly name: "recoverFunds";
|
|
738
|
-
readonly outputs: readonly [];
|
|
739
|
-
readonly stateMutability: "nonpayable";
|
|
740
|
-
readonly type: "function";
|
|
741
|
-
}, {
|
|
742
|
-
readonly inputs: readonly [{
|
|
743
|
-
readonly internalType: "address payable";
|
|
744
|
-
readonly name: "to";
|
|
745
|
-
readonly type: "address";
|
|
746
|
-
}];
|
|
747
|
-
readonly name: "recoverNativeFunds";
|
|
748
|
-
readonly outputs: readonly [];
|
|
749
|
-
readonly stateMutability: "nonpayable";
|
|
750
|
-
readonly type: "function";
|
|
751
|
-
}, {
|
|
752
|
-
readonly inputs: readonly [{
|
|
753
|
-
readonly internalType: "uint256";
|
|
754
|
-
readonly name: "_subId";
|
|
755
|
-
readonly type: "uint256";
|
|
756
|
-
}, {
|
|
757
|
-
readonly internalType: "address";
|
|
758
|
-
readonly name: "_consumer";
|
|
759
|
-
readonly type: "address";
|
|
760
|
-
}];
|
|
761
|
-
readonly name: "removeConsumer";
|
|
762
|
-
readonly outputs: readonly [];
|
|
763
|
-
readonly stateMutability: "nonpayable";
|
|
764
|
-
readonly type: "function";
|
|
765
|
-
}, {
|
|
766
|
-
readonly inputs: readonly [{
|
|
767
|
-
readonly components: readonly [{
|
|
768
|
-
readonly internalType: "bytes32";
|
|
769
|
-
readonly name: "keyHash";
|
|
770
|
-
readonly type: "bytes32";
|
|
771
|
-
}, {
|
|
772
|
-
readonly internalType: "uint256";
|
|
773
|
-
readonly name: "subId";
|
|
774
|
-
readonly type: "uint256";
|
|
775
|
-
}, {
|
|
776
|
-
readonly internalType: "uint16";
|
|
777
|
-
readonly name: "requestConfirmations";
|
|
778
|
-
readonly type: "uint16";
|
|
779
|
-
}, {
|
|
780
|
-
readonly internalType: "uint32";
|
|
781
|
-
readonly name: "callbackGasLimit";
|
|
782
|
-
readonly type: "uint32";
|
|
783
|
-
}, {
|
|
784
|
-
readonly internalType: "uint32";
|
|
785
|
-
readonly name: "numWords";
|
|
786
|
-
readonly type: "uint32";
|
|
787
|
-
}, {
|
|
788
|
-
readonly internalType: "bytes";
|
|
789
|
-
readonly name: "extraArgs";
|
|
790
|
-
readonly type: "bytes";
|
|
791
|
-
}];
|
|
792
|
-
readonly internalType: "struct VRFV2PlusClient.RandomWordsRequest";
|
|
793
|
-
readonly name: "_req";
|
|
794
|
-
readonly type: "tuple";
|
|
795
|
-
}];
|
|
796
|
-
readonly name: "requestRandomWords";
|
|
797
|
-
readonly outputs: readonly [{
|
|
798
|
-
readonly internalType: "uint256";
|
|
799
|
-
readonly name: "";
|
|
800
|
-
readonly type: "uint256";
|
|
801
|
-
}];
|
|
802
|
-
readonly stateMutability: "nonpayable";
|
|
803
|
-
readonly type: "function";
|
|
804
|
-
}, {
|
|
805
|
-
readonly inputs: readonly [{
|
|
806
|
-
readonly internalType: "uint256";
|
|
807
|
-
readonly name: "subId";
|
|
808
|
-
readonly type: "uint256";
|
|
809
|
-
}, {
|
|
810
|
-
readonly internalType: "address";
|
|
811
|
-
readonly name: "newOwner";
|
|
812
|
-
readonly type: "address";
|
|
813
|
-
}];
|
|
814
|
-
readonly name: "requestSubscriptionOwnerTransfer";
|
|
815
|
-
readonly outputs: readonly [];
|
|
816
|
-
readonly stateMutability: "nonpayable";
|
|
817
|
-
readonly type: "function";
|
|
818
|
-
}, {
|
|
819
|
-
readonly inputs: readonly [];
|
|
820
|
-
readonly name: "s_config";
|
|
821
|
-
readonly outputs: readonly [{
|
|
822
|
-
readonly internalType: "uint16";
|
|
823
|
-
readonly name: "minimumRequestConfirmations";
|
|
824
|
-
readonly type: "uint16";
|
|
825
|
-
}, {
|
|
826
|
-
readonly internalType: "uint32";
|
|
827
|
-
readonly name: "maxGasLimit";
|
|
828
|
-
readonly type: "uint32";
|
|
829
|
-
}, {
|
|
830
|
-
readonly internalType: "bool";
|
|
831
|
-
readonly name: "reentrancyLock";
|
|
832
|
-
readonly type: "bool";
|
|
833
|
-
}, {
|
|
834
|
-
readonly internalType: "uint32";
|
|
835
|
-
readonly name: "stalenessSeconds";
|
|
836
|
-
readonly type: "uint32";
|
|
837
|
-
}, {
|
|
838
|
-
readonly internalType: "uint32";
|
|
839
|
-
readonly name: "gasAfterPaymentCalculation";
|
|
840
|
-
readonly type: "uint32";
|
|
841
|
-
}, {
|
|
842
|
-
readonly internalType: "uint32";
|
|
843
|
-
readonly name: "fulfillmentFlatFeeNativePPM";
|
|
844
|
-
readonly type: "uint32";
|
|
845
|
-
}, {
|
|
846
|
-
readonly internalType: "uint32";
|
|
847
|
-
readonly name: "fulfillmentFlatFeeLinkDiscountPPM";
|
|
848
|
-
readonly type: "uint32";
|
|
849
|
-
}, {
|
|
850
|
-
readonly internalType: "uint8";
|
|
851
|
-
readonly name: "nativePremiumPercentage";
|
|
852
|
-
readonly type: "uint8";
|
|
853
|
-
}, {
|
|
854
|
-
readonly internalType: "uint8";
|
|
855
|
-
readonly name: "linkPremiumPercentage";
|
|
856
|
-
readonly type: "uint8";
|
|
857
|
-
}];
|
|
858
|
-
readonly stateMutability: "view";
|
|
859
|
-
readonly type: "function";
|
|
860
|
-
}, {
|
|
861
|
-
readonly inputs: readonly [];
|
|
862
|
-
readonly name: "s_currentSubNonce";
|
|
863
|
-
readonly outputs: readonly [{
|
|
864
|
-
readonly internalType: "uint64";
|
|
865
|
-
readonly name: "";
|
|
866
|
-
readonly type: "uint64";
|
|
867
|
-
}];
|
|
868
|
-
readonly stateMutability: "view";
|
|
869
|
-
readonly type: "function";
|
|
870
|
-
}, {
|
|
871
|
-
readonly inputs: readonly [];
|
|
872
|
-
readonly name: "s_totalBalance";
|
|
873
|
-
readonly outputs: readonly [{
|
|
874
|
-
readonly internalType: "uint96";
|
|
875
|
-
readonly name: "";
|
|
876
|
-
readonly type: "uint96";
|
|
877
|
-
}];
|
|
878
|
-
readonly stateMutability: "view";
|
|
879
|
-
readonly type: "function";
|
|
880
|
-
}, {
|
|
881
|
-
readonly inputs: readonly [];
|
|
882
|
-
readonly name: "s_totalNativeBalance";
|
|
883
|
-
readonly outputs: readonly [{
|
|
884
|
-
readonly internalType: "uint96";
|
|
885
|
-
readonly name: "";
|
|
886
|
-
readonly type: "uint96";
|
|
887
|
-
}];
|
|
888
|
-
readonly stateMutability: "view";
|
|
889
|
-
readonly type: "function";
|
|
890
|
-
}, {
|
|
891
|
-
readonly inputs: readonly [];
|
|
892
|
-
readonly name: "setConfig";
|
|
893
|
-
readonly outputs: readonly [];
|
|
894
|
-
readonly stateMutability: "nonpayable";
|
|
895
|
-
readonly type: "function";
|
|
896
|
-
}, {
|
|
897
|
-
readonly inputs: readonly [{
|
|
898
|
-
readonly internalType: "address";
|
|
899
|
-
readonly name: "link";
|
|
900
|
-
readonly type: "address";
|
|
901
|
-
}, {
|
|
902
|
-
readonly internalType: "address";
|
|
903
|
-
readonly name: "linkNativeFeed";
|
|
904
|
-
readonly type: "address";
|
|
905
|
-
}];
|
|
906
|
-
readonly name: "setLINKAndLINKNativeFeed";
|
|
907
|
-
readonly outputs: readonly [];
|
|
908
|
-
readonly stateMutability: "nonpayable";
|
|
909
|
-
readonly type: "function";
|
|
910
|
-
}, {
|
|
911
|
-
readonly inputs: readonly [{
|
|
912
|
-
readonly internalType: "address";
|
|
913
|
-
readonly name: "to";
|
|
914
|
-
readonly type: "address";
|
|
915
|
-
}];
|
|
916
|
-
readonly name: "transferOwnership";
|
|
917
|
-
readonly outputs: readonly [];
|
|
918
|
-
readonly stateMutability: "nonpayable";
|
|
919
|
-
readonly type: "function";
|
|
920
|
-
}, {
|
|
921
|
-
readonly inputs: readonly [{
|
|
922
|
-
readonly internalType: "address";
|
|
923
|
-
readonly name: "recipient";
|
|
924
|
-
readonly type: "address";
|
|
925
|
-
}];
|
|
926
|
-
readonly name: "withdraw";
|
|
927
|
-
readonly outputs: readonly [];
|
|
928
|
-
readonly stateMutability: "nonpayable";
|
|
929
|
-
readonly type: "function";
|
|
930
|
-
}, {
|
|
931
|
-
readonly inputs: readonly [{
|
|
932
|
-
readonly internalType: "address payable";
|
|
933
|
-
readonly name: "recipient";
|
|
934
|
-
readonly type: "address";
|
|
935
|
-
}];
|
|
936
|
-
readonly name: "withdrawNative";
|
|
937
|
-
readonly outputs: readonly [];
|
|
938
|
-
readonly stateMutability: "nonpayable";
|
|
939
|
-
readonly type: "function";
|
|
940
|
-
}];
|
|
941
|
-
static createInterface(): VRFCoordinatorV2_5MockInterface;
|
|
942
|
-
static connect(address: string, runner?: ContractRunner | null): VRFCoordinatorV2_5Mock;
|
|
943
|
-
}
|
|
944
|
-
export {};
|