@raac/rpc 1.1.0-beta.72 → 1.1.0-beta.74
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/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +2 -29
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +2 -29
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +2 -29
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +2 -29
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +2 -2
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +2 -2
- package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +2 -2
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +2 -29
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +80 -51
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +55 -34
- package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +2 -2
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +2 -2
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +2 -29
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +2 -29
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -47
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +2 -2
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +2 -29
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +2 -29
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +2 -2
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +2 -2
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +2 -2
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
- package/dist/artifacts/zeno/Auction.sol/Auction.json +2 -29
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +2 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +2 -29
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/8453.json +17 -17
- package/dist/pools/lendingPool/getLendingPoolInfo.js +3 -0
- package/dist/scripts/liquidation.js +31 -12
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.d.ts +65 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/{contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → @openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.d.ts} +23 -16
- package/dist/types/typechain-types/@openzeppelin/contracts/{utils/math/Math.d.ts → proxy/ERC1967/ERC1967Utils.d.ts} +4 -4
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
- package/dist/types/typechain-types/{contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts → @openzeppelin/contracts/proxy/Proxy.d.ts} +6 -11
- package/dist/types/typechain-types/{contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts → @openzeppelin/contracts/proxy/beacon/IBeacon.d.ts} +9 -9
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/index.d.ts +7 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.d.ts +74 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts +80 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts +51 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +24 -2
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +31 -18
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +8 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +8 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +8 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +16 -4
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +43 -4
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +1 -15
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +1 -15
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +38 -2
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +5 -15
- package/dist/types/typechain-types/contracts/{mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → libraries/pools/LendingPoolFeeLibrary.d.ts} +6 -11
- package/dist/types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +1 -15
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +1 -15
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +2 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +115 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts +56 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +102 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -13
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -20
- 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 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1 -21
- 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 -25
- 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/BaseVRFv2Consumer__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +38 -4
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +1 -1
- 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/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +34 -38
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +9 -29
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +9 -21
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +19 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +32 -20
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +11 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +45 -27
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +1 -1
- 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 +1 -21
- 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 +1 -35
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +4 -14
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +38 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +10 -14
- 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/LendingPoolFeeLibrary__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
- 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 +1 -21
- 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 -25
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +1 -1
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +5 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +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 +1 -21
- 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 +1 -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 -21
- 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 -21
- 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 +5 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +7 -3
- 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 -21
- 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 -21
- package/dist/types/typechain-types/index.d.ts +22 -2
- package/package.json +1 -1
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +0 -35
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +0 -318
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +0 -318
- package/dist/types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
- package/dist/types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +0 -263
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +0 -29
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +0 -203
- package/dist/types/typechain-types/contracts/core/tokens/IndexToken.d.ts +0 -340
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +0 -174
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +0 -188
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts +0 -218
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +0 -47
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/interfaces/IHousePrices.d.ts +0 -29
- package/dist/types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
- package/dist/types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
- package/dist/types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
- package/dist/types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +0 -57
- package/dist/types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
- package/dist/types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
- package/dist/types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +0 -33
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +0 -41
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +0 -472
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +0 -632
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +0 -407
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +0 -21
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +0 -276
- package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +0 -285
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -307
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +0 -21
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +0 -25
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +0 -350
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts +0 -21
- package/dist/types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +0 -43
- package/dist/types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
- package/dist/types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +0 -53
- package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
- package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +0 -42
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { type ContractRunner } from "ethers";
|
|
2
|
-
import type { RAACNFTVaultAdapterNAVOracle, RAACNFTVaultAdapterNAVOracleInterface } from "../../../../../contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle";
|
|
3
|
-
export declare class RAACNFTVaultAdapterNAVOracle__factory {
|
|
4
|
-
static readonly abi: readonly [{
|
|
5
|
-
readonly inputs: readonly [];
|
|
6
|
-
readonly name: "getNAV";
|
|
7
|
-
readonly outputs: readonly [{
|
|
8
|
-
readonly internalType: "uint8";
|
|
9
|
-
readonly name: "decimals";
|
|
10
|
-
readonly type: "uint8";
|
|
11
|
-
}, {
|
|
12
|
-
readonly internalType: "uint256";
|
|
13
|
-
readonly name: "value";
|
|
14
|
-
readonly type: "uint256";
|
|
15
|
-
}, {
|
|
16
|
-
readonly internalType: "uint256";
|
|
17
|
-
readonly name: "timestamp";
|
|
18
|
-
readonly type: "uint256";
|
|
19
|
-
}];
|
|
20
|
-
readonly stateMutability: "view";
|
|
21
|
-
readonly type: "function";
|
|
22
|
-
}];
|
|
23
|
-
static createInterface(): RAACNFTVaultAdapterNAVOracleInterface;
|
|
24
|
-
static connect(address: string, runner?: ContractRunner | null): RAACNFTVaultAdapterNAVOracle;
|
|
25
|
-
}
|
|
@@ -1,350 +0,0 @@
|
|
|
1
|
-
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
-
import type { Signer, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
-
import type { NonPayableOverrides } from "../../../../../common";
|
|
4
|
-
import type { RAACNFTVaultAdapter, RAACNFTVaultAdapterInterface } from "../../../../../contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter";
|
|
5
|
-
type RAACNFTVaultAdapterConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
-
export declare class RAACNFTVaultAdapter__factory extends ContractFactory {
|
|
7
|
-
constructor(...args: RAACNFTVaultAdapterConstructorParams);
|
|
8
|
-
getDeployTransaction(_token: AddressLike, _priceOracle: AddressLike, _vault: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
|
-
from?: string;
|
|
10
|
-
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(_token: AddressLike, _priceOracle: AddressLike, _vault: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
|
-
from?: string;
|
|
13
|
-
}): Promise<RAACNFTVaultAdapter & {
|
|
14
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
-
}>;
|
|
16
|
-
connect(runner: ContractRunner | null): RAACNFTVaultAdapter__factory;
|
|
17
|
-
static readonly bytecode = "0x60e0346200022157601f6200142038819003918201601f191683019291906001600160401b0384118385101762000226578160609284926040968752833981010312620002215762000051816200023c565b6200006c8362000064602085016200023c565b93016200023c565b913315620002095760005460018060a01b031991338383161760005585519160018060a01b03948591823391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a316918215620001c75750831692831562000183578416156200013f573060c052608052600154161760015560a052516111ce90816200025282396080518181816101090152818161019301528181610337015281816106450152610d33015260a0518181816101500152818161028501526105c4015260c05181610d010152f35b845162461bcd60e51b815260206004820152601e60248201527f4552433732315661756c74416461707465723a207a65726f207661756c7400006044820152606490fd5b855162461bcd60e51b815260206004820152601f60248201527f4552433732315661756c74416461707465723a207a65726f206f7261636c65006044820152606490fd5b62461bcd60e51b815260206004820152601e60248201527f4552433732315661756c74416461707465723a207a65726f20746f6b656e00006044820152606490fd5b8351631e4fbdf760e01b815260006004820152602490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b0382168203620002215756fe608060408181526004918236101561001657600080fd5b600092833560e01c918263014647f414610cb8575081631e9ee55f14610bd35781632630c12f14610baa578163264c3cfa14610b1b57816336c1688f14610afc57816349d4640d14610ad3578163530e784f146109e85781635e71430f14610935578163715018a6146108ed578163896317b8146108515781638da5cb5b14610829578163967803fb1461059c578163c12ca8bd14610519578163c8f98d9114610261578163d4c3eea01461023d578163f2fde38b146101c257508063f8eef10f1461017f578063fbfa77cf1461013c5763fc0c546a146100f657600080fd5b34610138578160031936011261013857517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5080fd5b5034610138578160031936011261013857517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5034610138578160031936011261013857517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b905034610239576020366003190112610239576101dd610e12565b906101e6610e97565b6001600160a01b039182169283156102235750506000548260018060a01b031982161760005516600080516020611179833981519152600080a380f35b51631e4fbdf760e01b8152908101849052602490fd5b8280fd5b50503461013857816003193601126101385760209061025a610fd3565b9051908152f35b8383346101385761027136610e55565b9194916001600160a01b039186906102ac337f0000000000000000000000000000000000000000000000000000000000000000861614610ec3565b60209788918101031261041b57359283865280875260ff8587205416156104cc57600254600019908181019081116104b957858852600389528688205490808203610472575b5050600254801561045f5781019061030982610f7d565b909182549160031b1b191690556002558386526003875260008587205580875284862060ff198154169055827f00000000000000000000000000000000000000000000000000000000000000001693843b156104515785516323b872dd60e01b815287818061037c858830898501610f5b565b0381838a5af18015610455578995949392918991610432575b5050908184602494938951988997889616907f8210728e7c071f615b840ee026032693858fbcd5e5359e67e438c890f59e56208d80a4600154169163b94fe91760e01b84528301525afa92831561042757926103f3575b5051908152f35b9091508281813d8311610420575b61040b8183610f38565b8101031261041b575190836103ec565b600080fd5b503d610401565b8251903d90823e3d90fd5b61044191929394959650610f0f565b610451579087939291878a610395565b8680fd5b87513d8a823e3d90fd5b634e487b7160e01b885260318352602488fd5b61047b90610f7d565b90549060031b1c6104a88161048f84610f7d565b90919082549060031b91821b91600019901b1916179055565b8852600389528688205588806102f2565b634e487b7160e01b885260118352602488fd5b845162461bcd60e51b8152908101879052602160248201527f4552433732315661756c74416461707465723a206e6f74206465706f736974656044820152601960fa1b6064820152608490fd5b83833461013857602092836003193601126102395780356001600160401b038111610598579061054d859236908301610e28565b908093918101031261041b57600154835163b94fe91760e01b81529235918301919091528490829060249082906001600160a01b03165afa92831561042757926103f3575051908152f35b8380fd5b90508234610826576105ad36610e55565b919391926001600160a01b0392909185906105eb337f0000000000000000000000000000000000000000000000000000000000000000871614610ec3565b60209687918101031261023957359283835281865260ff87842054166107d557859660249596826001541682519788809263b94fe91760e01b825289888301525afa9586156107cb57849661079c575b50851561074057817f00000000000000000000000000000000000000000000000000000000000000001692833b1561073c5781516323b872dd60e01b815285818061068a8a308e888501610f5b565b038183895af180156107325761071f575b50858552808952818520805460ff1916600117905560025460038a5282862081905590600160401b82101561070c5750906107028661048f8460017ff1444b5cad7ce70cb018d1b8edc8618fe303f3c7f034d8d572a6e27facbf2bef979601600255610f7d565b5196169280a48152f35b634e487b7160e01b865260419052602485fd5b61072b90959195610f0f565b938961069b565b83513d88823e3d90fd5b8480fd5b5162461bcd60e51b8152808301889052603160248201527f4552433732315661756c74416461707465723a207072696365206973207a65726044820152701bcb0818d85b9b9bdd0819195c1bdcda5d607a1b6064820152608490fd5b9095508781813d83116107c4575b6107b48183610f38565b810103126105985751948861063b565b503d6107aa565b81513d86823e3d90fd5b865162461bcd60e51b8152808301879052602560248201527f4552433732315661756c74416461707465723a20616c7265616479206465706f6044820152641cda5d195960da1b6064820152608490fd5b80fd5b505034610138578160031936011261013857905490516001600160a01b039091168152602090f35b905034610239578260031936011261023957815190818301906001600160401b038211838310176108da57508252600681526020906545524337323160d01b8282015282519382859384528251928382860152825b8481106108c457505050828201840152601f01601f19168101030190f35b81810183015188820188015287955082016108a6565b634e487b7160e01b855260419052602484fd5b8334610826578060031936011261082657610906610e97565b80546001600160a01b03198116825581906001600160a01b03166000805160206111798339815191528280a380f35b8284346108265780600319360112610826578151600280548083529083526020939284830192909183907f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90845b8181106109d45750505081610999910382610f38565b83519485948186019282875251809352850193925b8281106109bd57505050500390f35b8351855286955093810193928101926001016109ae565b825484529288019260019283019201610983565b90503461023957602036600319011261023957610a03610e12565b90610a0c610e97565b6001600160a01b03918216928315610a96576001549283168414610a3d5750506001600160a01b0319161760015580f35b906020608492519162461bcd60e51b8352820152602d60248201527f4552433230416461707465723a206f7261636c6520616464726573732073616d60448201526c652061732070726576696f757360981b6064820152fd5b906020606492519162461bcd60e51b8352820152601760248201527604552433230416461707465723a2061646472657373203604c1b6044820152fd5b50503461013857816003193601126101385760055490516001600160a01b039091168152602090f35b5050346101385781600319360112610138576020906002549051908152f35b905082346108265760203660031901126108265750803590600254821015610b5757602083610b4984610f7d565b91905490519160031b1c8152f35b608490602084519162461bcd60e51b8352820152602760248201527f4552433732315661756c74416461707465723a20696e646578206f7574206f6660448201526620626f756e647360c81b6064820152fd5b50503461013857816003193601126101385760015490516001600160a01b039091168152602090f35b90503461023957602036600319011261023957610bee610e12565b90610bf7610e97565b6001600160a01b039182169283610c47575b5050600580546001600160a01b031981168417909155167f69f0849218bc66c64f090e4f1663131939384e6725e4ae478324ec63df70991b8380a380f35b90929181516293630360e11b81526060818681875afa9081610c8a575b50610c7f575051631f93601760e01b81529182015260249150fd5b919250503880610c09565b610caa9060603d8111610cb1575b610ca28183610f38565b810190610fae565b5050610c64565b503d610c98565b90915034610598578260031936011261059857610cd3610e12565b6024356001600160401b038111610e0e57610cf19036908501610e28565b6001600160a01b039390929190307f0000000000000000000000000000000000000000000000000000000000000000861614610db857509081602085949389967f000000000000000000000000000000000000000000000000000000000000000016948101031261073c57823b1561073c5760449285918851978896879563095ea7b360e01b875216908501523560248401525af18015610dac5760209350610d9d575b505160018152f35b610da690610f0f565b38610d95565b505051903d90823e3d90fd5b62461bcd60e51b8152602086820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b6064820152608490fd5b8580fd5b600435906001600160a01b038216820361041b57565b9181601f8401121561041b578235916001600160401b03831161041b576020838186019501011161041b57565b604060031982011261041b57600435906001600160401b03821161041b57610e7f91600401610e28565b90916024356001600160a01b038116810361041b5790565b6000546001600160a01b03163303610eab57565b60405163118cdaa760e01b8152336004820152602490fd5b15610eca57565b60405162461bcd60e51b815260206004820152601e60248201527f4552433732315661756c74416461707465723a206f6e6c79207661756c7400006044820152606490fd5b6001600160401b038111610f2257604052565b634e487b7160e01b600052604160045260246000fd5b601f909101601f19168101906001600160401b03821190821017610f2257604052565b6001600160a01b03918216815291166020820152604081019190915260600190565b600254811015610f9857600260005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b9081606091031261041b57805160ff8116810361041b57916040602083015192015190565b6005546001600160a01b031680610ff05750610fed61108b565b90565b6060600491604051928380926293630360e11b82525afa90816000918293611068575b50611022575050610fed61108b565b60ff1660120360ff81116110525760ff16604d811161105257600a0a908181029181830414901517156110525790565b634e487b7160e01b600052601160045260246000fd5b909250611083915060603d8111610cb157610ca28183610f38565b509138611013565b6002546001805460009283929183906001600160a01b03165b8285106110b357505050505090565b90919293946110c186610f7d565b905490604080519263b94fe91760e01b845260049260031b1c82840152602092602493808286818a5afa92831561116f57508792611141575b5050830180931161113057505094600019811461111c578401939291906110a4565b634e487b7160e01b83526011600452602483fd5b634e487b7160e01b85526011905283fd5b90809250813d8311611168575b6111588183610f38565b81010312610e0e575138806110fa565b503d61114e565b513d89823e3d90fdfe8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0a2646970667358221220b4926fed1bedf3b660e805f32f93f8122a06905dcd97ca65b442d007047445a264736f6c63430008140033";
|
|
18
|
-
static readonly abi: readonly [{
|
|
19
|
-
readonly inputs: readonly [{
|
|
20
|
-
readonly internalType: "address";
|
|
21
|
-
readonly name: "_token";
|
|
22
|
-
readonly type: "address";
|
|
23
|
-
}, {
|
|
24
|
-
readonly internalType: "address";
|
|
25
|
-
readonly name: "_priceOracle";
|
|
26
|
-
readonly type: "address";
|
|
27
|
-
}, {
|
|
28
|
-
readonly internalType: "address";
|
|
29
|
-
readonly name: "_vault";
|
|
30
|
-
readonly type: "address";
|
|
31
|
-
}];
|
|
32
|
-
readonly stateMutability: "nonpayable";
|
|
33
|
-
readonly type: "constructor";
|
|
34
|
-
}, {
|
|
35
|
-
readonly inputs: readonly [{
|
|
36
|
-
readonly internalType: "address";
|
|
37
|
-
readonly name: "oracle";
|
|
38
|
-
readonly type: "address";
|
|
39
|
-
}];
|
|
40
|
-
readonly name: "InvalidOracle";
|
|
41
|
-
readonly type: "error";
|
|
42
|
-
}, {
|
|
43
|
-
readonly inputs: readonly [{
|
|
44
|
-
readonly internalType: "address";
|
|
45
|
-
readonly name: "owner";
|
|
46
|
-
readonly type: "address";
|
|
47
|
-
}];
|
|
48
|
-
readonly name: "OwnableInvalidOwner";
|
|
49
|
-
readonly type: "error";
|
|
50
|
-
}, {
|
|
51
|
-
readonly inputs: readonly [{
|
|
52
|
-
readonly internalType: "address";
|
|
53
|
-
readonly name: "account";
|
|
54
|
-
readonly type: "address";
|
|
55
|
-
}];
|
|
56
|
-
readonly name: "OwnableUnauthorizedAccount";
|
|
57
|
-
readonly type: "error";
|
|
58
|
-
}, {
|
|
59
|
-
readonly anonymous: false;
|
|
60
|
-
readonly inputs: readonly [{
|
|
61
|
-
readonly indexed: true;
|
|
62
|
-
readonly internalType: "address";
|
|
63
|
-
readonly name: "previousOracle";
|
|
64
|
-
readonly type: "address";
|
|
65
|
-
}, {
|
|
66
|
-
readonly indexed: true;
|
|
67
|
-
readonly internalType: "address";
|
|
68
|
-
readonly name: "newOracle";
|
|
69
|
-
readonly type: "address";
|
|
70
|
-
}];
|
|
71
|
-
readonly name: "NavOracleUpdated";
|
|
72
|
-
readonly type: "event";
|
|
73
|
-
}, {
|
|
74
|
-
readonly anonymous: false;
|
|
75
|
-
readonly inputs: readonly [{
|
|
76
|
-
readonly indexed: true;
|
|
77
|
-
readonly internalType: "address";
|
|
78
|
-
readonly name: "previousOwner";
|
|
79
|
-
readonly type: "address";
|
|
80
|
-
}, {
|
|
81
|
-
readonly indexed: true;
|
|
82
|
-
readonly internalType: "address";
|
|
83
|
-
readonly name: "newOwner";
|
|
84
|
-
readonly type: "address";
|
|
85
|
-
}];
|
|
86
|
-
readonly name: "OwnershipTransferred";
|
|
87
|
-
readonly type: "event";
|
|
88
|
-
}, {
|
|
89
|
-
readonly anonymous: false;
|
|
90
|
-
readonly inputs: readonly [{
|
|
91
|
-
readonly indexed: true;
|
|
92
|
-
readonly internalType: "address";
|
|
93
|
-
readonly name: "token";
|
|
94
|
-
readonly type: "address";
|
|
95
|
-
}, {
|
|
96
|
-
readonly indexed: true;
|
|
97
|
-
readonly internalType: "address";
|
|
98
|
-
readonly name: "from";
|
|
99
|
-
readonly type: "address";
|
|
100
|
-
}, {
|
|
101
|
-
readonly indexed: true;
|
|
102
|
-
readonly internalType: "uint256";
|
|
103
|
-
readonly name: "tokenId";
|
|
104
|
-
readonly type: "uint256";
|
|
105
|
-
}];
|
|
106
|
-
readonly name: "TokenDeposited";
|
|
107
|
-
readonly type: "event";
|
|
108
|
-
}, {
|
|
109
|
-
readonly anonymous: false;
|
|
110
|
-
readonly inputs: readonly [{
|
|
111
|
-
readonly indexed: true;
|
|
112
|
-
readonly internalType: "address";
|
|
113
|
-
readonly name: "token";
|
|
114
|
-
readonly type: "address";
|
|
115
|
-
}, {
|
|
116
|
-
readonly indexed: true;
|
|
117
|
-
readonly internalType: "address";
|
|
118
|
-
readonly name: "to";
|
|
119
|
-
readonly type: "address";
|
|
120
|
-
}, {
|
|
121
|
-
readonly indexed: true;
|
|
122
|
-
readonly internalType: "uint256";
|
|
123
|
-
readonly name: "tokenId";
|
|
124
|
-
readonly type: "uint256";
|
|
125
|
-
}];
|
|
126
|
-
readonly name: "TokenWithdrawn";
|
|
127
|
-
readonly type: "event";
|
|
128
|
-
}, {
|
|
129
|
-
readonly inputs: readonly [{
|
|
130
|
-
readonly internalType: "address";
|
|
131
|
-
readonly name: "to";
|
|
132
|
-
readonly type: "address";
|
|
133
|
-
}, {
|
|
134
|
-
readonly internalType: "bytes";
|
|
135
|
-
readonly name: "data";
|
|
136
|
-
readonly type: "bytes";
|
|
137
|
-
}];
|
|
138
|
-
readonly name: "approve";
|
|
139
|
-
readonly outputs: readonly [{
|
|
140
|
-
readonly internalType: "bool";
|
|
141
|
-
readonly name: "";
|
|
142
|
-
readonly type: "bool";
|
|
143
|
-
}];
|
|
144
|
-
readonly stateMutability: "nonpayable";
|
|
145
|
-
readonly type: "function";
|
|
146
|
-
}, {
|
|
147
|
-
readonly inputs: readonly [{
|
|
148
|
-
readonly internalType: "bytes";
|
|
149
|
-
readonly name: "data";
|
|
150
|
-
readonly type: "bytes";
|
|
151
|
-
}, {
|
|
152
|
-
readonly internalType: "address";
|
|
153
|
-
readonly name: "from";
|
|
154
|
-
readonly type: "address";
|
|
155
|
-
}];
|
|
156
|
-
readonly name: "deposit";
|
|
157
|
-
readonly outputs: readonly [{
|
|
158
|
-
readonly internalType: "uint256";
|
|
159
|
-
readonly name: "value";
|
|
160
|
-
readonly type: "uint256";
|
|
161
|
-
}];
|
|
162
|
-
readonly stateMutability: "nonpayable";
|
|
163
|
-
readonly type: "function";
|
|
164
|
-
}, {
|
|
165
|
-
readonly inputs: readonly [];
|
|
166
|
-
readonly name: "getAssetToken";
|
|
167
|
-
readonly outputs: readonly [{
|
|
168
|
-
readonly internalType: "address";
|
|
169
|
-
readonly name: "";
|
|
170
|
-
readonly type: "address";
|
|
171
|
-
}];
|
|
172
|
-
readonly stateMutability: "view";
|
|
173
|
-
readonly type: "function";
|
|
174
|
-
}, {
|
|
175
|
-
readonly inputs: readonly [];
|
|
176
|
-
readonly name: "getAssetType";
|
|
177
|
-
readonly outputs: readonly [{
|
|
178
|
-
readonly internalType: "string";
|
|
179
|
-
readonly name: "";
|
|
180
|
-
readonly type: "string";
|
|
181
|
-
}];
|
|
182
|
-
readonly stateMutability: "pure";
|
|
183
|
-
readonly type: "function";
|
|
184
|
-
}, {
|
|
185
|
-
readonly inputs: readonly [{
|
|
186
|
-
readonly internalType: "bytes";
|
|
187
|
-
readonly name: "data";
|
|
188
|
-
readonly type: "bytes";
|
|
189
|
-
}];
|
|
190
|
-
readonly name: "getAssetValue";
|
|
191
|
-
readonly outputs: readonly [{
|
|
192
|
-
readonly internalType: "uint256";
|
|
193
|
-
readonly name: "";
|
|
194
|
-
readonly type: "uint256";
|
|
195
|
-
}];
|
|
196
|
-
readonly stateMutability: "view";
|
|
197
|
-
readonly type: "function";
|
|
198
|
-
}, {
|
|
199
|
-
readonly inputs: readonly [{
|
|
200
|
-
readonly internalType: "uint256";
|
|
201
|
-
readonly name: "index";
|
|
202
|
-
readonly type: "uint256";
|
|
203
|
-
}];
|
|
204
|
-
readonly name: "getDepositedTokenAtIndex";
|
|
205
|
-
readonly outputs: readonly [{
|
|
206
|
-
readonly internalType: "uint256";
|
|
207
|
-
readonly name: "tokenId";
|
|
208
|
-
readonly type: "uint256";
|
|
209
|
-
}];
|
|
210
|
-
readonly stateMutability: "view";
|
|
211
|
-
readonly type: "function";
|
|
212
|
-
}, {
|
|
213
|
-
readonly inputs: readonly [];
|
|
214
|
-
readonly name: "getDepositedTokens";
|
|
215
|
-
readonly outputs: readonly [{
|
|
216
|
-
readonly internalType: "uint256[]";
|
|
217
|
-
readonly name: "";
|
|
218
|
-
readonly type: "uint256[]";
|
|
219
|
-
}];
|
|
220
|
-
readonly stateMutability: "view";
|
|
221
|
-
readonly type: "function";
|
|
222
|
-
}, {
|
|
223
|
-
readonly inputs: readonly [];
|
|
224
|
-
readonly name: "getDepositedTokensCount";
|
|
225
|
-
readonly outputs: readonly [{
|
|
226
|
-
readonly internalType: "uint256";
|
|
227
|
-
readonly name: "";
|
|
228
|
-
readonly type: "uint256";
|
|
229
|
-
}];
|
|
230
|
-
readonly stateMutability: "view";
|
|
231
|
-
readonly type: "function";
|
|
232
|
-
}, {
|
|
233
|
-
readonly inputs: readonly [];
|
|
234
|
-
readonly name: "navOracle";
|
|
235
|
-
readonly outputs: readonly [{
|
|
236
|
-
readonly internalType: "contract RAACNFTVaultAdapterNAVOracle";
|
|
237
|
-
readonly name: "";
|
|
238
|
-
readonly type: "address";
|
|
239
|
-
}];
|
|
240
|
-
readonly stateMutability: "view";
|
|
241
|
-
readonly type: "function";
|
|
242
|
-
}, {
|
|
243
|
-
readonly inputs: readonly [];
|
|
244
|
-
readonly name: "owner";
|
|
245
|
-
readonly outputs: readonly [{
|
|
246
|
-
readonly internalType: "address";
|
|
247
|
-
readonly name: "";
|
|
248
|
-
readonly type: "address";
|
|
249
|
-
}];
|
|
250
|
-
readonly stateMutability: "view";
|
|
251
|
-
readonly type: "function";
|
|
252
|
-
}, {
|
|
253
|
-
readonly inputs: readonly [];
|
|
254
|
-
readonly name: "priceOracle";
|
|
255
|
-
readonly outputs: readonly [{
|
|
256
|
-
readonly internalType: "contract IPriceOracle";
|
|
257
|
-
readonly name: "";
|
|
258
|
-
readonly type: "address";
|
|
259
|
-
}];
|
|
260
|
-
readonly stateMutability: "view";
|
|
261
|
-
readonly type: "function";
|
|
262
|
-
}, {
|
|
263
|
-
readonly inputs: readonly [];
|
|
264
|
-
readonly name: "renounceOwnership";
|
|
265
|
-
readonly outputs: readonly [];
|
|
266
|
-
readonly stateMutability: "nonpayable";
|
|
267
|
-
readonly type: "function";
|
|
268
|
-
}, {
|
|
269
|
-
readonly inputs: readonly [{
|
|
270
|
-
readonly internalType: "address";
|
|
271
|
-
readonly name: "_navOracle";
|
|
272
|
-
readonly type: "address";
|
|
273
|
-
}];
|
|
274
|
-
readonly name: "setNavOracle";
|
|
275
|
-
readonly outputs: readonly [];
|
|
276
|
-
readonly stateMutability: "nonpayable";
|
|
277
|
-
readonly type: "function";
|
|
278
|
-
}, {
|
|
279
|
-
readonly inputs: readonly [{
|
|
280
|
-
readonly internalType: "address";
|
|
281
|
-
readonly name: "_oracle";
|
|
282
|
-
readonly type: "address";
|
|
283
|
-
}];
|
|
284
|
-
readonly name: "setPriceOracle";
|
|
285
|
-
readonly outputs: readonly [];
|
|
286
|
-
readonly stateMutability: "nonpayable";
|
|
287
|
-
readonly type: "function";
|
|
288
|
-
}, {
|
|
289
|
-
readonly inputs: readonly [];
|
|
290
|
-
readonly name: "token";
|
|
291
|
-
readonly outputs: readonly [{
|
|
292
|
-
readonly internalType: "contract IERC721";
|
|
293
|
-
readonly name: "";
|
|
294
|
-
readonly type: "address";
|
|
295
|
-
}];
|
|
296
|
-
readonly stateMutability: "view";
|
|
297
|
-
readonly type: "function";
|
|
298
|
-
}, {
|
|
299
|
-
readonly inputs: readonly [];
|
|
300
|
-
readonly name: "totalValue";
|
|
301
|
-
readonly outputs: readonly [{
|
|
302
|
-
readonly internalType: "uint256";
|
|
303
|
-
readonly name: "";
|
|
304
|
-
readonly type: "uint256";
|
|
305
|
-
}];
|
|
306
|
-
readonly stateMutability: "view";
|
|
307
|
-
readonly type: "function";
|
|
308
|
-
}, {
|
|
309
|
-
readonly inputs: readonly [{
|
|
310
|
-
readonly internalType: "address";
|
|
311
|
-
readonly name: "newOwner";
|
|
312
|
-
readonly type: "address";
|
|
313
|
-
}];
|
|
314
|
-
readonly name: "transferOwnership";
|
|
315
|
-
readonly outputs: readonly [];
|
|
316
|
-
readonly stateMutability: "nonpayable";
|
|
317
|
-
readonly type: "function";
|
|
318
|
-
}, {
|
|
319
|
-
readonly inputs: readonly [];
|
|
320
|
-
readonly name: "vault";
|
|
321
|
-
readonly outputs: readonly [{
|
|
322
|
-
readonly internalType: "address";
|
|
323
|
-
readonly name: "";
|
|
324
|
-
readonly type: "address";
|
|
325
|
-
}];
|
|
326
|
-
readonly stateMutability: "view";
|
|
327
|
-
readonly type: "function";
|
|
328
|
-
}, {
|
|
329
|
-
readonly inputs: readonly [{
|
|
330
|
-
readonly internalType: "bytes";
|
|
331
|
-
readonly name: "data";
|
|
332
|
-
readonly type: "bytes";
|
|
333
|
-
}, {
|
|
334
|
-
readonly internalType: "address";
|
|
335
|
-
readonly name: "to";
|
|
336
|
-
readonly type: "address";
|
|
337
|
-
}];
|
|
338
|
-
readonly name: "withdraw";
|
|
339
|
-
readonly outputs: readonly [{
|
|
340
|
-
readonly internalType: "uint256";
|
|
341
|
-
readonly name: "value";
|
|
342
|
-
readonly type: "uint256";
|
|
343
|
-
}];
|
|
344
|
-
readonly stateMutability: "nonpayable";
|
|
345
|
-
readonly type: "function";
|
|
346
|
-
}];
|
|
347
|
-
static createInterface(): RAACNFTVaultAdapterInterface;
|
|
348
|
-
static connect(address: string, runner?: ContractRunner | null): RAACNFTVaultAdapter;
|
|
349
|
-
}
|
|
350
|
-
export {};
|
package/dist/types/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { type ContractRunner } from "ethers";
|
|
2
|
-
import type { IHousePrices, IHousePricesInterface } from "../../../contracts/interfaces/IHousePrices";
|
|
3
|
-
export declare class IHousePrices__factory {
|
|
4
|
-
static readonly abi: readonly [{
|
|
5
|
-
readonly inputs: readonly [{
|
|
6
|
-
readonly internalType: "uint256";
|
|
7
|
-
readonly name: "tokenId";
|
|
8
|
-
readonly type: "uint256";
|
|
9
|
-
}];
|
|
10
|
-
readonly name: "tokenToHousePrice";
|
|
11
|
-
readonly outputs: readonly [{
|
|
12
|
-
readonly internalType: "uint256";
|
|
13
|
-
readonly name: "";
|
|
14
|
-
readonly type: "uint256";
|
|
15
|
-
}];
|
|
16
|
-
readonly stateMutability: "view";
|
|
17
|
-
readonly type: "function";
|
|
18
|
-
}];
|
|
19
|
-
static createInterface(): IHousePricesInterface;
|
|
20
|
-
static connect(address: string, runner?: ContractRunner | null): IHousePrices;
|
|
21
|
-
}
|
package/dist/types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { type ContractRunner } from "ethers";
|
|
2
|
-
import type { IPoolManager, IPoolManagerInterface } from "../../../contracts/interfaces/IPoolManager";
|
|
3
|
-
export declare class IPoolManager__factory {
|
|
4
|
-
static readonly abi: readonly [{
|
|
5
|
-
readonly inputs: readonly [{
|
|
6
|
-
readonly internalType: "uint256";
|
|
7
|
-
readonly name: "amount";
|
|
8
|
-
readonly type: "uint256";
|
|
9
|
-
}];
|
|
10
|
-
readonly name: "divest";
|
|
11
|
-
readonly outputs: readonly [];
|
|
12
|
-
readonly stateMutability: "nonpayable";
|
|
13
|
-
readonly type: "function";
|
|
14
|
-
}, {
|
|
15
|
-
readonly inputs: readonly [];
|
|
16
|
-
readonly name: "generateYield";
|
|
17
|
-
readonly outputs: readonly [];
|
|
18
|
-
readonly stateMutability: "nonpayable";
|
|
19
|
-
readonly type: "function";
|
|
20
|
-
}, {
|
|
21
|
-
readonly inputs: readonly [];
|
|
22
|
-
readonly name: "getAvailableBalance";
|
|
23
|
-
readonly outputs: readonly [{
|
|
24
|
-
readonly internalType: "uint256";
|
|
25
|
-
readonly name: "";
|
|
26
|
-
readonly type: "uint256";
|
|
27
|
-
}];
|
|
28
|
-
readonly stateMutability: "view";
|
|
29
|
-
readonly type: "function";
|
|
30
|
-
}, {
|
|
31
|
-
readonly inputs: readonly [{
|
|
32
|
-
readonly internalType: "uint256";
|
|
33
|
-
readonly name: "amount";
|
|
34
|
-
readonly type: "uint256";
|
|
35
|
-
}];
|
|
36
|
-
readonly name: "invest";
|
|
37
|
-
readonly outputs: readonly [];
|
|
38
|
-
readonly stateMutability: "nonpayable";
|
|
39
|
-
readonly type: "function";
|
|
40
|
-
}];
|
|
41
|
-
static createInterface(): IPoolManagerInterface;
|
|
42
|
-
static connect(address: string, runner?: ContractRunner | null): IPoolManager;
|
|
43
|
-
}
|
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
import { type ContractRunner } from "ethers";
|
|
2
|
-
import type { IReserveAllocationLibraryMock, IReserveAllocationLibraryMockInterface } from "../../../contracts/interfaces/IReserveAllocationLibraryMock";
|
|
3
|
-
export declare class IReserveAllocationLibraryMock__factory {
|
|
4
|
-
static readonly abi: readonly [{
|
|
5
|
-
readonly inputs: readonly [{
|
|
6
|
-
readonly internalType: "uint256";
|
|
7
|
-
readonly name: "amount";
|
|
8
|
-
readonly type: "uint256";
|
|
9
|
-
}];
|
|
10
|
-
readonly name: "addLiquidity";
|
|
11
|
-
readonly outputs: readonly [];
|
|
12
|
-
readonly stateMutability: "nonpayable";
|
|
13
|
-
readonly type: "function";
|
|
14
|
-
}, {
|
|
15
|
-
readonly inputs: readonly [{
|
|
16
|
-
readonly internalType: "uint256";
|
|
17
|
-
readonly name: "amount";
|
|
18
|
-
readonly type: "uint256";
|
|
19
|
-
}, {
|
|
20
|
-
readonly internalType: "address";
|
|
21
|
-
readonly name: "recipient";
|
|
22
|
-
readonly type: "address";
|
|
23
|
-
}];
|
|
24
|
-
readonly name: "allocateFunds";
|
|
25
|
-
readonly outputs: readonly [];
|
|
26
|
-
readonly stateMutability: "nonpayable";
|
|
27
|
-
readonly type: "function";
|
|
28
|
-
}, {
|
|
29
|
-
readonly inputs: readonly [{
|
|
30
|
-
readonly internalType: "uint256";
|
|
31
|
-
readonly name: "amount";
|
|
32
|
-
readonly type: "uint256";
|
|
33
|
-
}, {
|
|
34
|
-
readonly internalType: "address";
|
|
35
|
-
readonly name: "user";
|
|
36
|
-
readonly type: "address";
|
|
37
|
-
}, {
|
|
38
|
-
readonly internalType: "address";
|
|
39
|
-
readonly name: "onBehalfOf";
|
|
40
|
-
readonly type: "address";
|
|
41
|
-
}];
|
|
42
|
-
readonly name: "borrow";
|
|
43
|
-
readonly outputs: readonly [{
|
|
44
|
-
readonly internalType: "uint256";
|
|
45
|
-
readonly name: "";
|
|
46
|
-
readonly type: "uint256";
|
|
47
|
-
}, {
|
|
48
|
-
readonly internalType: "uint256";
|
|
49
|
-
readonly name: "";
|
|
50
|
-
readonly type: "uint256";
|
|
51
|
-
}];
|
|
52
|
-
readonly stateMutability: "nonpayable";
|
|
53
|
-
readonly type: "function";
|
|
54
|
-
}, {
|
|
55
|
-
readonly inputs: readonly [];
|
|
56
|
-
readonly name: "calculateUtilizationRate";
|
|
57
|
-
readonly outputs: readonly [{
|
|
58
|
-
readonly internalType: "uint256";
|
|
59
|
-
readonly name: "";
|
|
60
|
-
readonly type: "uint256";
|
|
61
|
-
}];
|
|
62
|
-
readonly stateMutability: "view";
|
|
63
|
-
readonly type: "function";
|
|
64
|
-
}, {
|
|
65
|
-
readonly inputs: readonly [];
|
|
66
|
-
readonly name: "getRateData";
|
|
67
|
-
readonly outputs: readonly [{
|
|
68
|
-
readonly components: readonly [{
|
|
69
|
-
readonly internalType: "uint256";
|
|
70
|
-
readonly name: "currentLiquidityRate";
|
|
71
|
-
readonly type: "uint256";
|
|
72
|
-
}, {
|
|
73
|
-
readonly internalType: "uint256";
|
|
74
|
-
readonly name: "currentUsageRate";
|
|
75
|
-
readonly type: "uint256";
|
|
76
|
-
}, {
|
|
77
|
-
readonly internalType: "uint256";
|
|
78
|
-
readonly name: "primeRate";
|
|
79
|
-
readonly type: "uint256";
|
|
80
|
-
}, {
|
|
81
|
-
readonly internalType: "uint256";
|
|
82
|
-
readonly name: "baseRate";
|
|
83
|
-
readonly type: "uint256";
|
|
84
|
-
}, {
|
|
85
|
-
readonly internalType: "uint256";
|
|
86
|
-
readonly name: "optimalRate";
|
|
87
|
-
readonly type: "uint256";
|
|
88
|
-
}, {
|
|
89
|
-
readonly internalType: "uint256";
|
|
90
|
-
readonly name: "maxRate";
|
|
91
|
-
readonly type: "uint256";
|
|
92
|
-
}, {
|
|
93
|
-
readonly internalType: "uint256";
|
|
94
|
-
readonly name: "optimalUtilizationRate";
|
|
95
|
-
readonly type: "uint256";
|
|
96
|
-
}, {
|
|
97
|
-
readonly internalType: "uint256";
|
|
98
|
-
readonly name: "protocolFeeRate";
|
|
99
|
-
readonly type: "uint256";
|
|
100
|
-
}];
|
|
101
|
-
readonly internalType: "struct ReserveLibrary.ReserveRateData";
|
|
102
|
-
readonly name: "";
|
|
103
|
-
readonly type: "tuple";
|
|
104
|
-
}];
|
|
105
|
-
readonly stateMutability: "view";
|
|
106
|
-
readonly type: "function";
|
|
107
|
-
}, {
|
|
108
|
-
readonly inputs: readonly [];
|
|
109
|
-
readonly name: "getReserveData";
|
|
110
|
-
readonly outputs: readonly [{
|
|
111
|
-
readonly components: readonly [{
|
|
112
|
-
readonly internalType: "address";
|
|
113
|
-
readonly name: "reserveRTokenAddress";
|
|
114
|
-
readonly type: "address";
|
|
115
|
-
}, {
|
|
116
|
-
readonly internalType: "address";
|
|
117
|
-
readonly name: "reserveAssetAddress";
|
|
118
|
-
readonly type: "address";
|
|
119
|
-
}, {
|
|
120
|
-
readonly internalType: "address";
|
|
121
|
-
readonly name: "reserveDebtTokenAddress";
|
|
122
|
-
readonly type: "address";
|
|
123
|
-
}, {
|
|
124
|
-
readonly internalType: "uint256";
|
|
125
|
-
readonly name: "totalLiquidity";
|
|
126
|
-
readonly type: "uint256";
|
|
127
|
-
}, {
|
|
128
|
-
readonly internalType: "uint256";
|
|
129
|
-
readonly name: "totalUsage";
|
|
130
|
-
readonly type: "uint256";
|
|
131
|
-
}, {
|
|
132
|
-
readonly internalType: "uint128";
|
|
133
|
-
readonly name: "liquidityIndex";
|
|
134
|
-
readonly type: "uint128";
|
|
135
|
-
}, {
|
|
136
|
-
readonly internalType: "uint128";
|
|
137
|
-
readonly name: "usageIndex";
|
|
138
|
-
readonly type: "uint128";
|
|
139
|
-
}, {
|
|
140
|
-
readonly internalType: "uint40";
|
|
141
|
-
readonly name: "lastUpdateTimestamp";
|
|
142
|
-
readonly type: "uint40";
|
|
143
|
-
}];
|
|
144
|
-
readonly internalType: "struct ReserveLibrary.ReserveData";
|
|
145
|
-
readonly name: "";
|
|
146
|
-
readonly type: "tuple";
|
|
147
|
-
}];
|
|
148
|
-
readonly stateMutability: "view";
|
|
149
|
-
readonly type: "function";
|
|
150
|
-
}, {
|
|
151
|
-
readonly inputs: readonly [{
|
|
152
|
-
readonly internalType: "uint256";
|
|
153
|
-
readonly name: "amount";
|
|
154
|
-
readonly type: "uint256";
|
|
155
|
-
}, {
|
|
156
|
-
readonly internalType: "address";
|
|
157
|
-
readonly name: "user";
|
|
158
|
-
readonly type: "address";
|
|
159
|
-
}, {
|
|
160
|
-
readonly internalType: "address";
|
|
161
|
-
readonly name: "onBehalfOf";
|
|
162
|
-
readonly type: "address";
|
|
163
|
-
}];
|
|
164
|
-
readonly name: "repay";
|
|
165
|
-
readonly outputs: readonly [{
|
|
166
|
-
readonly internalType: "uint256";
|
|
167
|
-
readonly name: "";
|
|
168
|
-
readonly type: "uint256";
|
|
169
|
-
}, {
|
|
170
|
-
readonly internalType: "uint256";
|
|
171
|
-
readonly name: "";
|
|
172
|
-
readonly type: "uint256";
|
|
173
|
-
}];
|
|
174
|
-
readonly stateMutability: "nonpayable";
|
|
175
|
-
readonly type: "function";
|
|
176
|
-
}, {
|
|
177
|
-
readonly inputs: readonly [{
|
|
178
|
-
readonly internalType: "uint256";
|
|
179
|
-
readonly name: "newPrimeRate";
|
|
180
|
-
readonly type: "uint256";
|
|
181
|
-
}];
|
|
182
|
-
readonly name: "setPrimeRate";
|
|
183
|
-
readonly outputs: readonly [];
|
|
184
|
-
readonly stateMutability: "nonpayable";
|
|
185
|
-
readonly type: "function";
|
|
186
|
-
}];
|
|
187
|
-
static createInterface(): IReserveAllocationLibraryMockInterface;
|
|
188
|
-
static connect(address: string, runner?: ContractRunner | null): IReserveAllocationLibraryMock;
|
|
189
|
-
}
|