@raac/rpc 1.0.0 → 1.0.1
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 +269 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +1335 -0
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1724 -0
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +1192 -0
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +215 -0
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +858 -0
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +814 -0
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +893 -0
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +1205 -0
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +1616 -0
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +479 -0
- package/dist/artifacts/zeno/Auction.sol/Auction.json +473 -0
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +307 -0
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +620 -0
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +275 -0
- package/dist/assets/getAsset.js +23 -0
- package/dist/assets/getAssets.js +26 -0
- package/dist/assets/getSupply.js +18 -0
- package/dist/configs/chains/8453.json +115 -0
- package/dist/configs/chains/index.js +13 -0
- package/dist/configs/createConfig.js +89 -0
- package/dist/configs/index.js +43 -0
- package/dist/contracts/crvUSDToken/getBalance.js +17 -0
- package/dist/contracts/crvUSDToken/getTotalSupply.js +31 -0
- package/dist/contracts/getContract.js +18 -0
- package/dist/contracts/getContractAddress.js +50 -0
- package/dist/contracts/housePrices/getLatestPrice.js +21 -0
- package/dist/contracts/housePrices/setOracle.js +24 -0
- package/dist/contracts/rcrvUSDToken/getBalance.js +14 -0
- package/dist/contracts/rcrvUSDToken/getTotalSupply.js +30 -0
- package/dist/contracts/zeno/createAuction.js +25 -0
- package/dist/contracts/zeno/createZeno.js +26 -0
- package/dist/contracts/zeno/getAuctions.js +28 -0
- package/dist/contracts/zeno/getZenos.js +28 -0
- package/dist/index.js +7 -0
- package/dist/methods/approveToken.js +35 -0
- package/dist/methods/commons/checkAllowance.js +19 -0
- package/dist/methods/commons/estimateGasPrice.js +23 -0
- package/dist/methods/getAssetBalance.js +33 -0
- package/dist/methods/getAssetsBalance.js +4 -0
- package/dist/minter/get.js +121 -0
- package/dist/minter/getApy.js +28 -0
- package/dist/minter/tick.js +33 -0
- package/dist/nfts/addNewBatch.js +24 -0
- package/dist/nfts/getCurrentBatchSize.js +19 -0
- package/dist/nfts/getDepositedNFTs.js +19 -0
- package/dist/nfts/getHousePrice.js +19 -0
- package/dist/nfts/getOwnedNFTs.js +34 -0
- package/dist/nfts/mint.js +24 -0
- package/dist/nfts/setBaseUri.js +24 -0
- package/dist/pools/lendingPool/borrowFromLendingPool.js +23 -0
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +51 -0
- package/dist/pools/lendingPool/depositToLendingPool.js +35 -0
- package/dist/pools/lendingPool/getHousePrice.js +26 -0
- package/dist/pools/lendingPool/getLendingPoolInfo.js +106 -0
- package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +22 -0
- package/dist/pools/lendingPool/repayToLendingPool.js +28 -0
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +42 -0
- package/dist/pools/lendingPool/withdrawNFTFromLendingPool.js +24 -0
- package/dist/pools/liquidityPool/getLiquidityPoolInfo.js +73 -0
- package/dist/pools/stabilityPool/calculateRAACRewards.js +21 -0
- package/dist/pools/stabilityPool/depositToStabilityPool.js +34 -0
- package/dist/pools/stabilityPool/getStabilityPoolInfo.js +90 -0
- package/dist/pools/stabilityPool/getStabilityPoolTotalDeposits.js +19 -0
- package/dist/pools/stabilityPool/withdrawFromStabilityPool.js +34 -0
- package/dist/scripts/index.js +83 -0
- package/dist/tests/test.js +32 -0
- package/dist/types/RPCLibrary.d.ts +139 -0
- package/dist/types/assets/getAsset.d.ts +5 -0
- package/dist/types/assets/getAssets.d.ts +4 -0
- package/dist/types/assets/getSupply.d.ts +5 -0
- package/dist/types/configs/chains/index.d.ts +11 -0
- package/dist/types/configs/createConfig.d.ts +86 -0
- package/dist/types/configs/index.d.ts +13 -0
- package/dist/types/contracts/crvUSDToken/getBalance.d.ts +2 -0
- package/dist/types/contracts/crvUSDToken/getTotalSupply.d.ts +10 -0
- package/dist/types/contracts/getContract.d.ts +4 -0
- package/dist/types/contracts/getContractAddress.d.ts +10 -0
- package/dist/types/contracts/housePrices/getLatestPrice.d.ts +10 -0
- package/dist/types/contracts/housePrices/setOracle.d.ts +4 -0
- package/dist/types/contracts/rcrvUSDToken/getBalance.d.ts +2 -0
- package/dist/types/contracts/rcrvUSDToken/getTotalSupply.d.ts +10 -0
- package/dist/types/contracts/zeno/createAuction.d.ts +4 -0
- package/dist/types/contracts/zeno/createZeno.d.ts +4 -0
- package/dist/types/contracts/zeno/getAuctions.d.ts +4 -0
- package/dist/types/contracts/zeno/getZenos.d.ts +4 -0
- package/{index.ts → dist/types/index.d.ts} +0 -1
- package/dist/types/methods/approveToken.d.ts +5 -0
- package/dist/types/methods/commons/checkAllowance.d.ts +6 -0
- package/dist/types/methods/commons/estimateGasPrice.d.ts +11 -0
- package/dist/types/methods/getAssetBalance.d.ts +6 -0
- package/dist/types/methods/getAssetsBalance.d.ts +3 -0
- package/dist/types/minter/get.d.ts +17 -0
- package/dist/types/minter/getApy.d.ts +4 -0
- package/dist/types/minter/tick.d.ts +4 -0
- package/dist/types/nfts/addNewBatch.d.ts +4 -0
- package/dist/types/nfts/getCurrentBatchSize.d.ts +4 -0
- package/dist/types/nfts/getDepositedNFTs.d.ts +7 -0
- package/dist/types/nfts/getHousePrice.d.ts +4 -0
- package/dist/types/nfts/getOwnedNFTs.d.ts +7 -0
- package/dist/types/nfts/mint.d.ts +4 -0
- package/dist/types/nfts/setBaseUri.d.ts +4 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/depositToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/getHousePrice.d.ts +4 -0
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +23 -0
- package/dist/types/pools/lendingPool/getLendingPoolTotalLiquidity.d.ts +4 -0
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/withdrawFromLendingPool.d.ts +4 -0
- package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +4 -0
- package/dist/types/pools/liquidityPool/getLiquidityPoolInfo.d.ts +7 -0
- package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +4 -0
- package/dist/types/pools/stabilityPool/depositToStabilityPool.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +12 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolTotalDeposits.d.ts +4 -0
- package/dist/types/pools/stabilityPool/withdrawFromStabilityPool.d.ts +4 -0
- package/dist/types/scripts/index.d.ts +1 -0
- package/dist/types/tests/test.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +67 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +5 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +205 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +25 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +69 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +69 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +8 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/token/index.d.ts +4 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +12 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +68 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/index.d.ts +6 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +69 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/index.d.ts +4 -0
- package/dist/types/typechain-types/common.d.ts +50 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +708 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +283 -0
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +573 -0
- package/dist/types/typechain-types/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +779 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +815 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +803 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +807 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +612 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +447 -0
- package/dist/types/typechain-types/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/index.d.ts +14 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +703 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +503 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +165 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +188 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +195 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +935 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/MarketCreator.d.ts +274 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +283 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +572 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +111 -0
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +384 -0
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +415 -0
- package/dist/types/typechain-types/contracts/core/tokens/IndexToken.d.ts +155 -0
- package/dist/types/typechain-types/contracts/core/tokens/LPToken.d.ts +224 -0
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +334 -0
- package/dist/types/typechain-types/contracts/core/tokens/RAACToken.d.ts +401 -0
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +567 -0
- package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +816 -0
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/index.d.ts +10 -0
- package/dist/types/typechain-types/contracts/interfaces/IERC20.d.ts +129 -0
- package/dist/types/typechain-types/contracts/interfaces/IHousePrices.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/IMarketCreator.d.ts +85 -0
- package/dist/types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +73 -0
- package/dist/types/typechain-types/contracts/interfaces/IPoolManager.d.ts +37 -0
- package/dist/types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +164 -0
- package/dist/types/typechain-types/contracts/interfaces/IUSDC.d.ts +129 -0
- package/dist/types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +59 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +300 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +139 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +269 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +235 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +341 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +577 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +279 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +12 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +316 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +235 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +110 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +147 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +497 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +350 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +226 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +195 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +279 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACToken.d.ts +346 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +397 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +362 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +144 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/index.d.ts +14 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +122 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +186 -0
- package/dist/types/typechain-types/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/libraries/governance/BoostCalculator.d.ts +42 -0
- package/dist/types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +55 -0
- package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +87 -0
- package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +60 -0
- package/dist/types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +45 -0
- package/dist/types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +66 -0
- package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/libraries/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +104 -0
- package/dist/types/typechain-types/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/libraries/pools/ReserveLibrary.d.ts +124 -0
- package/dist/types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/libraries/utils/StringUtils.d.ts +20 -0
- package/dist/types/typechain-types/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockFeeCollector.d.ts +708 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +169 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +845 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +72 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +12 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +41 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +45 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockOracle.d.ts +43 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +204 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +211 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +121 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +539 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockPool.d.ts +55 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockStabilityPool.d.ts +69 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockContract.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +39 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +47 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/CrvUSDToken.d.ts +212 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/ERC20Mock.d.ts +155 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/ERC721Mock.d.ts +229 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +220 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +191 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockUSDC.d.ts +155 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +510 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/RAACMockERC20.d.ts +186 -0
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/contracts/mocks/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +275 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +83 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +163 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +141 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +41 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +281 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +203 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/WadRayMathMock.d.ts +78 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +225 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/tests/MaliciousDeposit.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/tests/MaliciousWithdraw.d.ts +29 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +71 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +100 -0
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/tests/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +215 -0
- package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +177 -0
- package/dist/types/typechain-types/contracts/zeno/ZENO.d.ts +237 -0
- package/dist/types/typechain-types/contracts/zeno/ZENOFactory.d.ts +151 -0
- package/dist/types/typechain-types/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/erc721a/contracts/IERC721A.d.ts +242 -0
- package/dist/types/typechain-types/erc721a/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/erc721a/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +49 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +268 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +48 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +90 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +86 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +9 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +82 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +63 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +985 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +386 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +716 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +1083 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1124 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1154 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1154 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +976 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +773 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/index.d.ts +7 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1048 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +706 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +205 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +275 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +286 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +1327 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/MarketCreator__factory.d.ts +405 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +930 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +178 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +671 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +729 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +286 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +401 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +635 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +652 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +941 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1264 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IERC20__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IHousePrices__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IMarketCreator__factory.d.ts +101 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IPoolManager__factory.d.ts +43 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +189 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IUSDC__factory.d.ts +147 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +75 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +396 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +165 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +295 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +449 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +307 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +878 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +468 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +380 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +275 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +146 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +153 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +642 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +480 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +256 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +279 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +363 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +436 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +496 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +435 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +194 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +11 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +126 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +246 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +54 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +68 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +111 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +69 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +92 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +74 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/libraries/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +125 -0
- package/dist/types/typechain-types/factories/contracts/libraries/math/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +135 -0
- 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 +26 -0
- package/dist/types/typechain-types/factories/contracts/libraries/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockFeeCollector__factory.d.ts +985 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +212 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +1182 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +91 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +37 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +66 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +62 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +293 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +304 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +740 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +199 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +84 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +109 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +379 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +282 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +388 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +407 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +338 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +278 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +714 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +335 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/mocks/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +351 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +124 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +197 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +183 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +70 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +341 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +6 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +247 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +154 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +277 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +80 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +113 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/tests/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +250 -0
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +320 -0
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +223 -0
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +488 -0
- package/dist/types/typechain-types/factories/contracts/zeno/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/erc721a/contracts/IERC721A__factory.d.ts +368 -0
- package/dist/types/typechain-types/factories/erc721a/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/erc721a/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/index.d.ts +4 -0
- package/dist/types/typechain-types/index.d.ts +311 -0
- package/dist/types/utils/artifacts.d.ts +1627 -0
- package/dist/types/utils/chain.d.ts +13 -0
- package/dist/types/utils/config.d.ts +0 -0
- package/dist/types/utils/contracts.d.ts +20 -0
- package/dist/types/wallet/assets/approveAsset.d.ts +5 -0
- package/dist/types/wallet/assets/burnAsset.d.ts +5 -0
- package/dist/types/wallet/assets/getAllowance.d.ts +5 -0
- package/dist/types/wallet/assets/getAsset.d.ts +4 -0
- package/dist/types/wallet/assets/getAssets.d.ts +4 -0
- package/dist/types/wallet/assets/getBalance.d.ts +5 -0
- package/dist/types/wallet/assets/mintAsset.d.ts +5 -0
- package/dist/types/wallet/assets/transferAsset.d.ts +5 -0
- package/dist/utils/artifacts.js +65 -0
- package/dist/utils/chain.js +92 -0
- package/{utils/config.ts → dist/utils/config.js} +0 -6
- package/dist/utils/contracts.js +81 -0
- package/dist/wallet/assets/approveAsset.js +35 -0
- package/dist/wallet/assets/burnAsset.js +46 -0
- package/dist/wallet/assets/getAllowance.js +26 -0
- package/dist/wallet/assets/getAsset.js +22 -0
- package/dist/wallet/assets/getAssets.js +26 -0
- package/dist/wallet/assets/getBalance.js +24 -0
- package/dist/wallet/assets/mintAsset.js +47 -0
- package/dist/wallet/assets/transferAsset.js +62 -0
- package/package.json +34 -25
- package/RPCLibrary.ts +0 -358
- package/assets/getAsset.ts +0 -26
- package/assets/getAssets.ts +0 -30
- package/assets/getSupply.ts +0 -23
- package/configs/chains/8453.json +0 -116
- package/configs/chains/chain.d.ts +0 -87
- package/configs/chains/index.ts +0 -13
- package/configs/chains/list.json +0 -3
- package/configs/createConfig.ts +0 -91
- package/configs/index.ts +0 -51
- package/contracts/crvUSDToken/getBalance.ts +0 -23
- package/contracts/crvUSDToken/getTotalSupply.ts +0 -36
- package/contracts/getContract.ts +0 -21
- package/contracts/getContractAddress.ts +0 -61
- package/contracts/housePrices/getLatestPrice.ts +0 -38
- package/contracts/housePrices/setOracle.ts +0 -40
- package/contracts/rcrvUSDToken/getBalance.ts +0 -23
- package/contracts/rcrvUSDToken/getTotalSupply.ts +0 -39
- package/contracts/zeno/createAuction.ts +0 -57
- package/contracts/zeno/createZeno.ts +0 -45
- package/contracts/zeno/getAuctions.ts +0 -38
- package/contracts/zeno/getZenos.ts +0 -38
- package/custom-types.d.ts +0 -20
- package/methods/approveToken.ts +0 -47
- package/methods/commons/checkAllowance.ts +0 -36
- package/methods/commons/estimateGasPrice.ts +0 -21
- package/methods/debug/mintToken.js +0 -83
- package/methods/getAssetBalance.ts +0 -47
- package/methods/getAssetsBalance.ts +0 -9
- package/minter/get.ts +0 -150
- package/minter/getApy.ts +0 -37
- package/minter/tick.ts +0 -40
- package/nfts/addNewBatch.ts +0 -37
- package/nfts/getCurrentBatchSize.ts +0 -26
- package/nfts/getDepositedNFTs.ts +0 -31
- package/nfts/getHousePrice.ts +0 -30
- package/nfts/getOwnedNFTs.ts +0 -46
- package/nfts/mint.ts +0 -43
- package/nfts/setBaseUri.ts +0 -33
- package/pools/lendingPool/borrowFromLendingPool.ts +0 -39
- package/pools/lendingPool/depositNFTToLendingPool.ts +0 -70
- package/pools/lendingPool/depositToLendingPool.ts +0 -52
- package/pools/lendingPool/getHousePrice.ts +0 -46
- package/pools/lendingPool/getLendingPoolInfo.ts +0 -153
- package/pools/lendingPool/getLendingPoolTotalLiquidity.ts +0 -32
- package/pools/lendingPool/repayToLendingPool.ts +0 -52
- package/pools/lendingPool/withdrawFromLendingPool.ts +0 -68
- package/pools/lendingPool/withdrawNFTFromLendingPool.ts +0 -39
- package/pools/liquidityPool/getLiquidityPoolInfo.ts +0 -90
- package/pools/stabilityPool/calculateRAACRewards.ts +0 -37
- package/pools/stabilityPool/depositToStabilityPool.ts +0 -47
- package/pools/stabilityPool/getStabilityPoolInfo.ts +0 -121
- package/pools/stabilityPool/getStabilityPoolTotalDeposits.ts +0 -27
- package/pools/stabilityPool/withdrawFromStabilityPool.ts +0 -47
- package/sync-contracts.sh +0 -63
- package/tests/test.ts +0 -40
- package/tsconfig.json +0 -113
- package/utils/artifacts.ts +0 -66
- package/utils/chain.ts +0 -94
- package/utils/contracts.ts +0 -94
- package/wallet/assets/approveAsset.ts +0 -44
- package/wallet/assets/burnAsset.ts +0 -55
- package/wallet/assets/getAllowance.ts +0 -38
- package/wallet/assets/getAsset.ts +0 -33
- package/wallet/assets/getAssets.ts +0 -35
- package/wallet/assets/getBalance.ts +0 -34
- package/wallet/assets/mintAsset.ts +0 -57
- package/wallet/assets/transferAsset.ts +0 -78
|
@@ -0,0 +1,935 @@
|
|
|
1
|
+
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
|
+
export interface LendingPoolInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD" | "BASE_LIQUIDATION_GRACE_PERIOD" | "BASE_LIQUIDATION_THRESHOLD" | "borrow" | "calculateHealthFactor" | "canPaybackDebt" | "closeLiquidation" | "curveVault" | "debtToken" | "deposit" | "depositNFT" | "finalizeLiquidation" | "getNFTPrice" | "getNormalizedDebt" | "getNormalizedIncome" | "getPrimeRate" | "getUserCollateralValue" | "getUserDebt" | "getUserDepositedNFTs" | "healthFactorLiquidationThreshold" | "initiateLiquidation" | "isUnderLiquidation" | "liquidationGracePeriod" | "liquidationStartTime" | "liquidationThreshold" | "liquidityBufferRatio" | "onERC721Received" | "owner" | "pause" | "paused" | "priceOracle" | "primeRateOracle" | "rToken" | "raacNFT" | "rateData" | "renounceOwnership" | "repay" | "repayOnBehalf" | "rescueToken" | "reserve" | "reserveAssetToken" | "setCurveVault" | "setParameter" | "setPrimeRate" | "setPrimeRateOracle" | "setProtocolFeeRate" | "setStabilityPool" | "stabilityPool" | "totalVaultDeposits" | "transferAccruedDust" | "transferOwnership" | "unpause" | "updateState" | "userData" | "withdraw" | "withdrawNFT" | "withdrawalsPaused"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "Borrow" | "CanPaybackDebtChanged" | "CurveVaultUpdated" | "Deposit(address,uint256,uint256)" | "Deposit(address,uint256,uint256)" | "InterestRatesUpdated" | "Liquidation" | "LiquidationClosed" | "LiquidationFinalized" | "LiquidationInitiated" | "LiquidationParametersUpdated" | "LiquidityBufferRatioUpdated" | "LiquidityRebalanced" | "NFTDeposited" | "NFTWithdrawn" | "OwnershipTransferred" | "Paused" | "PrimeRateUpdated" | "Repay" | "ReserveInterestsUpdated" | "StabilityPoolUpdated" | "Unpaused" | "Withdraw(address,uint256)" | "Withdraw(address,uint256,uint256)" | "WithdrawalsPauseStatusChanged"): EventFragment;
|
|
6
|
+
encodeFunctionData(functionFragment: "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD", values?: undefined): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "BASE_LIQUIDATION_GRACE_PERIOD", values?: undefined): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "BASE_LIQUIDATION_THRESHOLD", values?: undefined): string;
|
|
9
|
+
encodeFunctionData(functionFragment: "borrow", values: [BigNumberish]): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "calculateHealthFactor", values: [AddressLike]): string;
|
|
11
|
+
encodeFunctionData(functionFragment: "canPaybackDebt", values?: undefined): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "closeLiquidation", values?: undefined): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "curveVault", values?: undefined): string;
|
|
14
|
+
encodeFunctionData(functionFragment: "debtToken", values?: undefined): string;
|
|
15
|
+
encodeFunctionData(functionFragment: "deposit", values: [BigNumberish]): string;
|
|
16
|
+
encodeFunctionData(functionFragment: "depositNFT", values: [BigNumberish]): string;
|
|
17
|
+
encodeFunctionData(functionFragment: "finalizeLiquidation", values: [AddressLike]): string;
|
|
18
|
+
encodeFunctionData(functionFragment: "getNFTPrice", values: [BigNumberish]): string;
|
|
19
|
+
encodeFunctionData(functionFragment: "getNormalizedDebt", values?: undefined): string;
|
|
20
|
+
encodeFunctionData(functionFragment: "getNormalizedIncome", values?: undefined): string;
|
|
21
|
+
encodeFunctionData(functionFragment: "getPrimeRate", values?: undefined): string;
|
|
22
|
+
encodeFunctionData(functionFragment: "getUserCollateralValue", values: [AddressLike]): string;
|
|
23
|
+
encodeFunctionData(functionFragment: "getUserDebt", values: [AddressLike]): string;
|
|
24
|
+
encodeFunctionData(functionFragment: "getUserDepositedNFTs", values: [AddressLike]): string;
|
|
25
|
+
encodeFunctionData(functionFragment: "healthFactorLiquidationThreshold", values?: undefined): string;
|
|
26
|
+
encodeFunctionData(functionFragment: "initiateLiquidation", values: [AddressLike]): string;
|
|
27
|
+
encodeFunctionData(functionFragment: "isUnderLiquidation", values: [AddressLike]): string;
|
|
28
|
+
encodeFunctionData(functionFragment: "liquidationGracePeriod", values?: undefined): string;
|
|
29
|
+
encodeFunctionData(functionFragment: "liquidationStartTime", values: [AddressLike]): string;
|
|
30
|
+
encodeFunctionData(functionFragment: "liquidationThreshold", values?: undefined): string;
|
|
31
|
+
encodeFunctionData(functionFragment: "liquidityBufferRatio", values?: undefined): string;
|
|
32
|
+
encodeFunctionData(functionFragment: "onERC721Received", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
|
|
33
|
+
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
34
|
+
encodeFunctionData(functionFragment: "pause", values?: undefined): string;
|
|
35
|
+
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
36
|
+
encodeFunctionData(functionFragment: "priceOracle", values?: undefined): string;
|
|
37
|
+
encodeFunctionData(functionFragment: "primeRateOracle", values?: undefined): string;
|
|
38
|
+
encodeFunctionData(functionFragment: "rToken", values?: undefined): string;
|
|
39
|
+
encodeFunctionData(functionFragment: "raacNFT", values?: undefined): string;
|
|
40
|
+
encodeFunctionData(functionFragment: "rateData", values?: undefined): string;
|
|
41
|
+
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
42
|
+
encodeFunctionData(functionFragment: "repay", values: [BigNumberish]): string;
|
|
43
|
+
encodeFunctionData(functionFragment: "repayOnBehalf", values: [BigNumberish, AddressLike]): string;
|
|
44
|
+
encodeFunctionData(functionFragment: "rescueToken", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
45
|
+
encodeFunctionData(functionFragment: "reserve", values?: undefined): string;
|
|
46
|
+
encodeFunctionData(functionFragment: "reserveAssetToken", values?: undefined): string;
|
|
47
|
+
encodeFunctionData(functionFragment: "setCurveVault", values: [AddressLike]): string;
|
|
48
|
+
encodeFunctionData(functionFragment: "setParameter", values: [BigNumberish, BigNumberish]): string;
|
|
49
|
+
encodeFunctionData(functionFragment: "setPrimeRate", values: [BigNumberish]): string;
|
|
50
|
+
encodeFunctionData(functionFragment: "setPrimeRateOracle", values: [AddressLike]): string;
|
|
51
|
+
encodeFunctionData(functionFragment: "setProtocolFeeRate", values: [BigNumberish]): string;
|
|
52
|
+
encodeFunctionData(functionFragment: "setStabilityPool", values: [AddressLike]): string;
|
|
53
|
+
encodeFunctionData(functionFragment: "stabilityPool", values?: undefined): string;
|
|
54
|
+
encodeFunctionData(functionFragment: "totalVaultDeposits", values?: undefined): string;
|
|
55
|
+
encodeFunctionData(functionFragment: "transferAccruedDust", values: [AddressLike, BigNumberish]): string;
|
|
56
|
+
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
57
|
+
encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
|
|
58
|
+
encodeFunctionData(functionFragment: "updateState", values?: undefined): string;
|
|
59
|
+
encodeFunctionData(functionFragment: "userData", values: [AddressLike]): string;
|
|
60
|
+
encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string;
|
|
61
|
+
encodeFunctionData(functionFragment: "withdrawNFT", values: [BigNumberish]): string;
|
|
62
|
+
encodeFunctionData(functionFragment: "withdrawalsPaused", values?: undefined): string;
|
|
63
|
+
decodeFunctionResult(functionFragment: "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD", data: BytesLike): Result;
|
|
64
|
+
decodeFunctionResult(functionFragment: "BASE_LIQUIDATION_GRACE_PERIOD", data: BytesLike): Result;
|
|
65
|
+
decodeFunctionResult(functionFragment: "BASE_LIQUIDATION_THRESHOLD", data: BytesLike): Result;
|
|
66
|
+
decodeFunctionResult(functionFragment: "borrow", data: BytesLike): Result;
|
|
67
|
+
decodeFunctionResult(functionFragment: "calculateHealthFactor", data: BytesLike): Result;
|
|
68
|
+
decodeFunctionResult(functionFragment: "canPaybackDebt", data: BytesLike): Result;
|
|
69
|
+
decodeFunctionResult(functionFragment: "closeLiquidation", data: BytesLike): Result;
|
|
70
|
+
decodeFunctionResult(functionFragment: "curveVault", data: BytesLike): Result;
|
|
71
|
+
decodeFunctionResult(functionFragment: "debtToken", data: BytesLike): Result;
|
|
72
|
+
decodeFunctionResult(functionFragment: "deposit", data: BytesLike): Result;
|
|
73
|
+
decodeFunctionResult(functionFragment: "depositNFT", data: BytesLike): Result;
|
|
74
|
+
decodeFunctionResult(functionFragment: "finalizeLiquidation", data: BytesLike): Result;
|
|
75
|
+
decodeFunctionResult(functionFragment: "getNFTPrice", data: BytesLike): Result;
|
|
76
|
+
decodeFunctionResult(functionFragment: "getNormalizedDebt", data: BytesLike): Result;
|
|
77
|
+
decodeFunctionResult(functionFragment: "getNormalizedIncome", data: BytesLike): Result;
|
|
78
|
+
decodeFunctionResult(functionFragment: "getPrimeRate", data: BytesLike): Result;
|
|
79
|
+
decodeFunctionResult(functionFragment: "getUserCollateralValue", data: BytesLike): Result;
|
|
80
|
+
decodeFunctionResult(functionFragment: "getUserDebt", data: BytesLike): Result;
|
|
81
|
+
decodeFunctionResult(functionFragment: "getUserDepositedNFTs", data: BytesLike): Result;
|
|
82
|
+
decodeFunctionResult(functionFragment: "healthFactorLiquidationThreshold", data: BytesLike): Result;
|
|
83
|
+
decodeFunctionResult(functionFragment: "initiateLiquidation", data: BytesLike): Result;
|
|
84
|
+
decodeFunctionResult(functionFragment: "isUnderLiquidation", data: BytesLike): Result;
|
|
85
|
+
decodeFunctionResult(functionFragment: "liquidationGracePeriod", data: BytesLike): Result;
|
|
86
|
+
decodeFunctionResult(functionFragment: "liquidationStartTime", data: BytesLike): Result;
|
|
87
|
+
decodeFunctionResult(functionFragment: "liquidationThreshold", data: BytesLike): Result;
|
|
88
|
+
decodeFunctionResult(functionFragment: "liquidityBufferRatio", data: BytesLike): Result;
|
|
89
|
+
decodeFunctionResult(functionFragment: "onERC721Received", data: BytesLike): Result;
|
|
90
|
+
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
91
|
+
decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
|
|
92
|
+
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
93
|
+
decodeFunctionResult(functionFragment: "priceOracle", data: BytesLike): Result;
|
|
94
|
+
decodeFunctionResult(functionFragment: "primeRateOracle", data: BytesLike): Result;
|
|
95
|
+
decodeFunctionResult(functionFragment: "rToken", data: BytesLike): Result;
|
|
96
|
+
decodeFunctionResult(functionFragment: "raacNFT", data: BytesLike): Result;
|
|
97
|
+
decodeFunctionResult(functionFragment: "rateData", data: BytesLike): Result;
|
|
98
|
+
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
99
|
+
decodeFunctionResult(functionFragment: "repay", data: BytesLike): Result;
|
|
100
|
+
decodeFunctionResult(functionFragment: "repayOnBehalf", data: BytesLike): Result;
|
|
101
|
+
decodeFunctionResult(functionFragment: "rescueToken", data: BytesLike): Result;
|
|
102
|
+
decodeFunctionResult(functionFragment: "reserve", data: BytesLike): Result;
|
|
103
|
+
decodeFunctionResult(functionFragment: "reserveAssetToken", data: BytesLike): Result;
|
|
104
|
+
decodeFunctionResult(functionFragment: "setCurveVault", data: BytesLike): Result;
|
|
105
|
+
decodeFunctionResult(functionFragment: "setParameter", data: BytesLike): Result;
|
|
106
|
+
decodeFunctionResult(functionFragment: "setPrimeRate", data: BytesLike): Result;
|
|
107
|
+
decodeFunctionResult(functionFragment: "setPrimeRateOracle", data: BytesLike): Result;
|
|
108
|
+
decodeFunctionResult(functionFragment: "setProtocolFeeRate", data: BytesLike): Result;
|
|
109
|
+
decodeFunctionResult(functionFragment: "setStabilityPool", data: BytesLike): Result;
|
|
110
|
+
decodeFunctionResult(functionFragment: "stabilityPool", data: BytesLike): Result;
|
|
111
|
+
decodeFunctionResult(functionFragment: "totalVaultDeposits", data: BytesLike): Result;
|
|
112
|
+
decodeFunctionResult(functionFragment: "transferAccruedDust", data: BytesLike): Result;
|
|
113
|
+
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
114
|
+
decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
|
|
115
|
+
decodeFunctionResult(functionFragment: "updateState", data: BytesLike): Result;
|
|
116
|
+
decodeFunctionResult(functionFragment: "userData", data: BytesLike): Result;
|
|
117
|
+
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
|
|
118
|
+
decodeFunctionResult(functionFragment: "withdrawNFT", data: BytesLike): Result;
|
|
119
|
+
decodeFunctionResult(functionFragment: "withdrawalsPaused", data: BytesLike): Result;
|
|
120
|
+
}
|
|
121
|
+
export declare namespace BorrowEvent {
|
|
122
|
+
type InputTuple = [user: AddressLike, amount: BigNumberish];
|
|
123
|
+
type OutputTuple = [user: string, amount: bigint];
|
|
124
|
+
interface OutputObject {
|
|
125
|
+
user: string;
|
|
126
|
+
amount: bigint;
|
|
127
|
+
}
|
|
128
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
129
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
130
|
+
type Log = TypedEventLog<Event>;
|
|
131
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
132
|
+
}
|
|
133
|
+
export declare namespace CanPaybackDebtChangedEvent {
|
|
134
|
+
type InputTuple = [enabled: boolean];
|
|
135
|
+
type OutputTuple = [enabled: boolean];
|
|
136
|
+
interface OutputObject {
|
|
137
|
+
enabled: boolean;
|
|
138
|
+
}
|
|
139
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
140
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
141
|
+
type Log = TypedEventLog<Event>;
|
|
142
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
143
|
+
}
|
|
144
|
+
export declare namespace CurveVaultUpdatedEvent {
|
|
145
|
+
type InputTuple = [oldVault: AddressLike, newVault: AddressLike];
|
|
146
|
+
type OutputTuple = [oldVault: string, newVault: string];
|
|
147
|
+
interface OutputObject {
|
|
148
|
+
oldVault: string;
|
|
149
|
+
newVault: string;
|
|
150
|
+
}
|
|
151
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
152
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
153
|
+
type Log = TypedEventLog<Event>;
|
|
154
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
155
|
+
}
|
|
156
|
+
export declare namespace Deposit_address_uint256_uint256_Event {
|
|
157
|
+
type InputTuple = [
|
|
158
|
+
user: AddressLike,
|
|
159
|
+
amount: BigNumberish,
|
|
160
|
+
mintedAmount: BigNumberish
|
|
161
|
+
];
|
|
162
|
+
type OutputTuple = [
|
|
163
|
+
user: string,
|
|
164
|
+
amount: bigint,
|
|
165
|
+
mintedAmount: bigint
|
|
166
|
+
];
|
|
167
|
+
interface OutputObject {
|
|
168
|
+
user: string;
|
|
169
|
+
amount: bigint;
|
|
170
|
+
mintedAmount: bigint;
|
|
171
|
+
}
|
|
172
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
173
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
174
|
+
type Log = TypedEventLog<Event>;
|
|
175
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
176
|
+
}
|
|
177
|
+
export declare namespace Deposit_address_uint256_uint256_Event {
|
|
178
|
+
type InputTuple = [
|
|
179
|
+
user: AddressLike,
|
|
180
|
+
amount: BigNumberish,
|
|
181
|
+
liquidityMinted: BigNumberish
|
|
182
|
+
];
|
|
183
|
+
type OutputTuple = [
|
|
184
|
+
user: string,
|
|
185
|
+
amount: bigint,
|
|
186
|
+
liquidityMinted: bigint
|
|
187
|
+
];
|
|
188
|
+
interface OutputObject {
|
|
189
|
+
user: string;
|
|
190
|
+
amount: bigint;
|
|
191
|
+
liquidityMinted: bigint;
|
|
192
|
+
}
|
|
193
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
194
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
195
|
+
type Log = TypedEventLog<Event>;
|
|
196
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
197
|
+
}
|
|
198
|
+
export declare namespace InterestRatesUpdatedEvent {
|
|
199
|
+
type InputTuple = [
|
|
200
|
+
liquidityRate: BigNumberish,
|
|
201
|
+
usageRate: BigNumberish
|
|
202
|
+
];
|
|
203
|
+
type OutputTuple = [liquidityRate: bigint, usageRate: bigint];
|
|
204
|
+
interface OutputObject {
|
|
205
|
+
liquidityRate: bigint;
|
|
206
|
+
usageRate: bigint;
|
|
207
|
+
}
|
|
208
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
209
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
210
|
+
type Log = TypedEventLog<Event>;
|
|
211
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
212
|
+
}
|
|
213
|
+
export declare namespace LiquidationEvent {
|
|
214
|
+
type InputTuple = [
|
|
215
|
+
liquidator: AddressLike,
|
|
216
|
+
user: AddressLike,
|
|
217
|
+
debtRepaid: BigNumberish,
|
|
218
|
+
collateralLiquidated: BigNumberish
|
|
219
|
+
];
|
|
220
|
+
type OutputTuple = [
|
|
221
|
+
liquidator: string,
|
|
222
|
+
user: string,
|
|
223
|
+
debtRepaid: bigint,
|
|
224
|
+
collateralLiquidated: bigint
|
|
225
|
+
];
|
|
226
|
+
interface OutputObject {
|
|
227
|
+
liquidator: string;
|
|
228
|
+
user: string;
|
|
229
|
+
debtRepaid: bigint;
|
|
230
|
+
collateralLiquidated: bigint;
|
|
231
|
+
}
|
|
232
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
233
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
234
|
+
type Log = TypedEventLog<Event>;
|
|
235
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
236
|
+
}
|
|
237
|
+
export declare namespace LiquidationClosedEvent {
|
|
238
|
+
type InputTuple = [user: AddressLike];
|
|
239
|
+
type OutputTuple = [user: string];
|
|
240
|
+
interface OutputObject {
|
|
241
|
+
user: string;
|
|
242
|
+
}
|
|
243
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
244
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
245
|
+
type Log = TypedEventLog<Event>;
|
|
246
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
247
|
+
}
|
|
248
|
+
export declare namespace LiquidationFinalizedEvent {
|
|
249
|
+
type InputTuple = [
|
|
250
|
+
liquidator: AddressLike,
|
|
251
|
+
user: AddressLike,
|
|
252
|
+
debtRepaid: BigNumberish,
|
|
253
|
+
collateralLiquidated: BigNumberish
|
|
254
|
+
];
|
|
255
|
+
type OutputTuple = [
|
|
256
|
+
liquidator: string,
|
|
257
|
+
user: string,
|
|
258
|
+
debtRepaid: bigint,
|
|
259
|
+
collateralLiquidated: bigint
|
|
260
|
+
];
|
|
261
|
+
interface OutputObject {
|
|
262
|
+
liquidator: string;
|
|
263
|
+
user: string;
|
|
264
|
+
debtRepaid: bigint;
|
|
265
|
+
collateralLiquidated: bigint;
|
|
266
|
+
}
|
|
267
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
268
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
269
|
+
type Log = TypedEventLog<Event>;
|
|
270
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
271
|
+
}
|
|
272
|
+
export declare namespace LiquidationInitiatedEvent {
|
|
273
|
+
type InputTuple = [liquidator: AddressLike, user: AddressLike];
|
|
274
|
+
type OutputTuple = [liquidator: string, user: string];
|
|
275
|
+
interface OutputObject {
|
|
276
|
+
liquidator: string;
|
|
277
|
+
user: string;
|
|
278
|
+
}
|
|
279
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
280
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
281
|
+
type Log = TypedEventLog<Event>;
|
|
282
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
283
|
+
}
|
|
284
|
+
export declare namespace LiquidationParametersUpdatedEvent {
|
|
285
|
+
type InputTuple = [
|
|
286
|
+
newLiquidationThreshold: BigNumberish,
|
|
287
|
+
newHealthFactorLiquidationThreshold: BigNumberish,
|
|
288
|
+
newLiquidationGracePeriod: BigNumberish
|
|
289
|
+
];
|
|
290
|
+
type OutputTuple = [
|
|
291
|
+
newLiquidationThreshold: bigint,
|
|
292
|
+
newHealthFactorLiquidationThreshold: bigint,
|
|
293
|
+
newLiquidationGracePeriod: bigint
|
|
294
|
+
];
|
|
295
|
+
interface OutputObject {
|
|
296
|
+
newLiquidationThreshold: bigint;
|
|
297
|
+
newHealthFactorLiquidationThreshold: bigint;
|
|
298
|
+
newLiquidationGracePeriod: bigint;
|
|
299
|
+
}
|
|
300
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
301
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
302
|
+
type Log = TypedEventLog<Event>;
|
|
303
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
304
|
+
}
|
|
305
|
+
export declare namespace LiquidityBufferRatioUpdatedEvent {
|
|
306
|
+
type InputTuple = [oldRatio: BigNumberish, newRatio: BigNumberish];
|
|
307
|
+
type OutputTuple = [oldRatio: bigint, newRatio: bigint];
|
|
308
|
+
interface OutputObject {
|
|
309
|
+
oldRatio: bigint;
|
|
310
|
+
newRatio: bigint;
|
|
311
|
+
}
|
|
312
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
313
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
314
|
+
type Log = TypedEventLog<Event>;
|
|
315
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
316
|
+
}
|
|
317
|
+
export declare namespace LiquidityRebalancedEvent {
|
|
318
|
+
type InputTuple = [
|
|
319
|
+
bufferAmount: BigNumberish,
|
|
320
|
+
vaultAmount: BigNumberish
|
|
321
|
+
];
|
|
322
|
+
type OutputTuple = [bufferAmount: bigint, vaultAmount: bigint];
|
|
323
|
+
interface OutputObject {
|
|
324
|
+
bufferAmount: bigint;
|
|
325
|
+
vaultAmount: bigint;
|
|
326
|
+
}
|
|
327
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
328
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
329
|
+
type Log = TypedEventLog<Event>;
|
|
330
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
331
|
+
}
|
|
332
|
+
export declare namespace NFTDepositedEvent {
|
|
333
|
+
type InputTuple = [user: AddressLike, tokenId: BigNumberish];
|
|
334
|
+
type OutputTuple = [user: string, tokenId: bigint];
|
|
335
|
+
interface OutputObject {
|
|
336
|
+
user: string;
|
|
337
|
+
tokenId: bigint;
|
|
338
|
+
}
|
|
339
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
340
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
341
|
+
type Log = TypedEventLog<Event>;
|
|
342
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
343
|
+
}
|
|
344
|
+
export declare namespace NFTWithdrawnEvent {
|
|
345
|
+
type InputTuple = [user: AddressLike, tokenId: BigNumberish];
|
|
346
|
+
type OutputTuple = [user: string, tokenId: bigint];
|
|
347
|
+
interface OutputObject {
|
|
348
|
+
user: string;
|
|
349
|
+
tokenId: bigint;
|
|
350
|
+
}
|
|
351
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
352
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
353
|
+
type Log = TypedEventLog<Event>;
|
|
354
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
355
|
+
}
|
|
356
|
+
export declare namespace OwnershipTransferredEvent {
|
|
357
|
+
type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
358
|
+
type OutputTuple = [previousOwner: string, newOwner: string];
|
|
359
|
+
interface OutputObject {
|
|
360
|
+
previousOwner: string;
|
|
361
|
+
newOwner: string;
|
|
362
|
+
}
|
|
363
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
364
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
365
|
+
type Log = TypedEventLog<Event>;
|
|
366
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
367
|
+
}
|
|
368
|
+
export declare namespace PausedEvent {
|
|
369
|
+
type InputTuple = [account: AddressLike];
|
|
370
|
+
type OutputTuple = [account: string];
|
|
371
|
+
interface OutputObject {
|
|
372
|
+
account: string;
|
|
373
|
+
}
|
|
374
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
375
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
376
|
+
type Log = TypedEventLog<Event>;
|
|
377
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
378
|
+
}
|
|
379
|
+
export declare namespace PrimeRateUpdatedEvent {
|
|
380
|
+
type InputTuple = [
|
|
381
|
+
oldPrimeRate: BigNumberish,
|
|
382
|
+
newPrimeRate: BigNumberish
|
|
383
|
+
];
|
|
384
|
+
type OutputTuple = [oldPrimeRate: bigint, newPrimeRate: bigint];
|
|
385
|
+
interface OutputObject {
|
|
386
|
+
oldPrimeRate: bigint;
|
|
387
|
+
newPrimeRate: bigint;
|
|
388
|
+
}
|
|
389
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
390
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
391
|
+
type Log = TypedEventLog<Event>;
|
|
392
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
393
|
+
}
|
|
394
|
+
export declare namespace RepayEvent {
|
|
395
|
+
type InputTuple = [
|
|
396
|
+
user: AddressLike,
|
|
397
|
+
onBehalfOf: AddressLike,
|
|
398
|
+
amount: BigNumberish
|
|
399
|
+
];
|
|
400
|
+
type OutputTuple = [user: string, onBehalfOf: string, amount: bigint];
|
|
401
|
+
interface OutputObject {
|
|
402
|
+
user: string;
|
|
403
|
+
onBehalfOf: string;
|
|
404
|
+
amount: bigint;
|
|
405
|
+
}
|
|
406
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
407
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
408
|
+
type Log = TypedEventLog<Event>;
|
|
409
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
410
|
+
}
|
|
411
|
+
export declare namespace ReserveInterestsUpdatedEvent {
|
|
412
|
+
type InputTuple = [
|
|
413
|
+
liquidityIndex: BigNumberish,
|
|
414
|
+
usageIndex: BigNumberish
|
|
415
|
+
];
|
|
416
|
+
type OutputTuple = [liquidityIndex: bigint, usageIndex: bigint];
|
|
417
|
+
interface OutputObject {
|
|
418
|
+
liquidityIndex: bigint;
|
|
419
|
+
usageIndex: bigint;
|
|
420
|
+
}
|
|
421
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
422
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
423
|
+
type Log = TypedEventLog<Event>;
|
|
424
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
425
|
+
}
|
|
426
|
+
export declare namespace StabilityPoolUpdatedEvent {
|
|
427
|
+
type InputTuple = [
|
|
428
|
+
oldStabilityPool: AddressLike,
|
|
429
|
+
newStabilityPool: AddressLike
|
|
430
|
+
];
|
|
431
|
+
type OutputTuple = [
|
|
432
|
+
oldStabilityPool: string,
|
|
433
|
+
newStabilityPool: string
|
|
434
|
+
];
|
|
435
|
+
interface OutputObject {
|
|
436
|
+
oldStabilityPool: string;
|
|
437
|
+
newStabilityPool: string;
|
|
438
|
+
}
|
|
439
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
440
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
441
|
+
type Log = TypedEventLog<Event>;
|
|
442
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
443
|
+
}
|
|
444
|
+
export declare namespace UnpausedEvent {
|
|
445
|
+
type InputTuple = [account: AddressLike];
|
|
446
|
+
type OutputTuple = [account: string];
|
|
447
|
+
interface OutputObject {
|
|
448
|
+
account: string;
|
|
449
|
+
}
|
|
450
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
451
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
452
|
+
type Log = TypedEventLog<Event>;
|
|
453
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
454
|
+
}
|
|
455
|
+
export declare namespace Withdraw_address_uint256_Event {
|
|
456
|
+
type InputTuple = [user: AddressLike, amount: BigNumberish];
|
|
457
|
+
type OutputTuple = [user: string, amount: bigint];
|
|
458
|
+
interface OutputObject {
|
|
459
|
+
user: string;
|
|
460
|
+
amount: bigint;
|
|
461
|
+
}
|
|
462
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
463
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
464
|
+
type Log = TypedEventLog<Event>;
|
|
465
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
466
|
+
}
|
|
467
|
+
export declare namespace Withdraw_address_uint256_uint256_Event {
|
|
468
|
+
type InputTuple = [
|
|
469
|
+
user: AddressLike,
|
|
470
|
+
amount: BigNumberish,
|
|
471
|
+
liquidityBurned: BigNumberish
|
|
472
|
+
];
|
|
473
|
+
type OutputTuple = [
|
|
474
|
+
user: string,
|
|
475
|
+
amount: bigint,
|
|
476
|
+
liquidityBurned: bigint
|
|
477
|
+
];
|
|
478
|
+
interface OutputObject {
|
|
479
|
+
user: string;
|
|
480
|
+
amount: bigint;
|
|
481
|
+
liquidityBurned: bigint;
|
|
482
|
+
}
|
|
483
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
484
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
485
|
+
type Log = TypedEventLog<Event>;
|
|
486
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
487
|
+
}
|
|
488
|
+
export declare namespace WithdrawalsPauseStatusChangedEvent {
|
|
489
|
+
type InputTuple = [isPaused: boolean];
|
|
490
|
+
type OutputTuple = [isPaused: boolean];
|
|
491
|
+
interface OutputObject {
|
|
492
|
+
isPaused: boolean;
|
|
493
|
+
}
|
|
494
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
495
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
496
|
+
type Log = TypedEventLog<Event>;
|
|
497
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
498
|
+
}
|
|
499
|
+
export interface LendingPool extends BaseContract {
|
|
500
|
+
connect(runner?: ContractRunner | null): LendingPool;
|
|
501
|
+
waitForDeployment(): Promise<this>;
|
|
502
|
+
interface: LendingPoolInterface;
|
|
503
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
504
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
505
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
506
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
507
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
508
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
509
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
510
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
511
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
512
|
+
BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD: TypedContractMethod<[
|
|
513
|
+
], [
|
|
514
|
+
bigint
|
|
515
|
+
], "view">;
|
|
516
|
+
BASE_LIQUIDATION_GRACE_PERIOD: TypedContractMethod<[], [bigint], "view">;
|
|
517
|
+
BASE_LIQUIDATION_THRESHOLD: TypedContractMethod<[], [bigint], "view">;
|
|
518
|
+
borrow: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
519
|
+
calculateHealthFactor: TypedContractMethod<[
|
|
520
|
+
userAddress: AddressLike
|
|
521
|
+
], [
|
|
522
|
+
bigint
|
|
523
|
+
], "view">;
|
|
524
|
+
canPaybackDebt: TypedContractMethod<[], [boolean], "view">;
|
|
525
|
+
closeLiquidation: TypedContractMethod<[], [void], "nonpayable">;
|
|
526
|
+
curveVault: TypedContractMethod<[], [string], "view">;
|
|
527
|
+
debtToken: TypedContractMethod<[], [string], "view">;
|
|
528
|
+
deposit: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
529
|
+
depositNFT: TypedContractMethod<[
|
|
530
|
+
tokenId: BigNumberish
|
|
531
|
+
], [
|
|
532
|
+
void
|
|
533
|
+
], "nonpayable">;
|
|
534
|
+
finalizeLiquidation: TypedContractMethod<[
|
|
535
|
+
userAddress: AddressLike
|
|
536
|
+
], [
|
|
537
|
+
void
|
|
538
|
+
], "nonpayable">;
|
|
539
|
+
getNFTPrice: TypedContractMethod<[tokenId: BigNumberish], [bigint], "view">;
|
|
540
|
+
getNormalizedDebt: TypedContractMethod<[], [bigint], "view">;
|
|
541
|
+
getNormalizedIncome: TypedContractMethod<[], [bigint], "view">;
|
|
542
|
+
getPrimeRate: TypedContractMethod<[], [bigint], "view">;
|
|
543
|
+
getUserCollateralValue: TypedContractMethod<[
|
|
544
|
+
userAddress: AddressLike
|
|
545
|
+
], [
|
|
546
|
+
bigint
|
|
547
|
+
], "view">;
|
|
548
|
+
getUserDebt: TypedContractMethod<[
|
|
549
|
+
userAddress: AddressLike
|
|
550
|
+
], [
|
|
551
|
+
bigint
|
|
552
|
+
], "view">;
|
|
553
|
+
getUserDepositedNFTs: TypedContractMethod<[
|
|
554
|
+
userAddress: AddressLike
|
|
555
|
+
], [
|
|
556
|
+
bigint[]
|
|
557
|
+
], "view">;
|
|
558
|
+
healthFactorLiquidationThreshold: TypedContractMethod<[], [bigint], "view">;
|
|
559
|
+
initiateLiquidation: TypedContractMethod<[
|
|
560
|
+
userAddress: AddressLike
|
|
561
|
+
], [
|
|
562
|
+
void
|
|
563
|
+
], "nonpayable">;
|
|
564
|
+
isUnderLiquidation: TypedContractMethod<[
|
|
565
|
+
arg0: AddressLike
|
|
566
|
+
], [
|
|
567
|
+
boolean
|
|
568
|
+
], "view">;
|
|
569
|
+
liquidationGracePeriod: TypedContractMethod<[], [bigint], "view">;
|
|
570
|
+
liquidationStartTime: TypedContractMethod<[
|
|
571
|
+
arg0: AddressLike
|
|
572
|
+
], [
|
|
573
|
+
bigint
|
|
574
|
+
], "view">;
|
|
575
|
+
liquidationThreshold: TypedContractMethod<[], [bigint], "view">;
|
|
576
|
+
liquidityBufferRatio: TypedContractMethod<[], [bigint], "view">;
|
|
577
|
+
onERC721Received: TypedContractMethod<[
|
|
578
|
+
arg0: AddressLike,
|
|
579
|
+
arg1: AddressLike,
|
|
580
|
+
arg2: BigNumberish,
|
|
581
|
+
arg3: BytesLike
|
|
582
|
+
], [
|
|
583
|
+
string
|
|
584
|
+
], "nonpayable">;
|
|
585
|
+
owner: TypedContractMethod<[], [string], "view">;
|
|
586
|
+
pause: TypedContractMethod<[], [void], "nonpayable">;
|
|
587
|
+
paused: TypedContractMethod<[], [boolean], "view">;
|
|
588
|
+
priceOracle: TypedContractMethod<[], [string], "view">;
|
|
589
|
+
primeRateOracle: TypedContractMethod<[], [string], "view">;
|
|
590
|
+
rToken: TypedContractMethod<[], [string], "view">;
|
|
591
|
+
raacNFT: TypedContractMethod<[], [string], "view">;
|
|
592
|
+
rateData: TypedContractMethod<[
|
|
593
|
+
], [
|
|
594
|
+
[
|
|
595
|
+
bigint,
|
|
596
|
+
bigint,
|
|
597
|
+
bigint,
|
|
598
|
+
bigint,
|
|
599
|
+
bigint,
|
|
600
|
+
bigint,
|
|
601
|
+
bigint,
|
|
602
|
+
bigint
|
|
603
|
+
] & {
|
|
604
|
+
currentLiquidityRate: bigint;
|
|
605
|
+
currentUsageRate: bigint;
|
|
606
|
+
primeRate: bigint;
|
|
607
|
+
baseRate: bigint;
|
|
608
|
+
optimalRate: bigint;
|
|
609
|
+
maxRate: bigint;
|
|
610
|
+
optimalUtilizationRate: bigint;
|
|
611
|
+
protocolFeeRate: bigint;
|
|
612
|
+
}
|
|
613
|
+
], "view">;
|
|
614
|
+
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
615
|
+
repay: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
616
|
+
repayOnBehalf: TypedContractMethod<[
|
|
617
|
+
amount: BigNumberish,
|
|
618
|
+
onBehalfOf: AddressLike
|
|
619
|
+
], [
|
|
620
|
+
void
|
|
621
|
+
], "nonpayable">;
|
|
622
|
+
rescueToken: TypedContractMethod<[
|
|
623
|
+
tokenAddress: AddressLike,
|
|
624
|
+
recipient: AddressLike,
|
|
625
|
+
amount: BigNumberish
|
|
626
|
+
], [
|
|
627
|
+
void
|
|
628
|
+
], "nonpayable">;
|
|
629
|
+
reserve: TypedContractMethod<[
|
|
630
|
+
], [
|
|
631
|
+
[
|
|
632
|
+
string,
|
|
633
|
+
string,
|
|
634
|
+
string,
|
|
635
|
+
bigint,
|
|
636
|
+
bigint,
|
|
637
|
+
bigint,
|
|
638
|
+
bigint,
|
|
639
|
+
bigint
|
|
640
|
+
] & {
|
|
641
|
+
reserveRTokenAddress: string;
|
|
642
|
+
reserveAssetAddress: string;
|
|
643
|
+
reserveDebtTokenAddress: string;
|
|
644
|
+
totalLiquidity: bigint;
|
|
645
|
+
totalUsage: bigint;
|
|
646
|
+
liquidityIndex: bigint;
|
|
647
|
+
usageIndex: bigint;
|
|
648
|
+
lastUpdateTimestamp: bigint;
|
|
649
|
+
}
|
|
650
|
+
], "view">;
|
|
651
|
+
reserveAssetToken: TypedContractMethod<[], [string], "view">;
|
|
652
|
+
setCurveVault: TypedContractMethod<[
|
|
653
|
+
newVault: AddressLike
|
|
654
|
+
], [
|
|
655
|
+
void
|
|
656
|
+
], "nonpayable">;
|
|
657
|
+
setParameter: TypedContractMethod<[
|
|
658
|
+
param: BigNumberish,
|
|
659
|
+
newValue: BigNumberish
|
|
660
|
+
], [
|
|
661
|
+
void
|
|
662
|
+
], "nonpayable">;
|
|
663
|
+
setPrimeRate: TypedContractMethod<[
|
|
664
|
+
newPrimeRate: BigNumberish
|
|
665
|
+
], [
|
|
666
|
+
void
|
|
667
|
+
], "nonpayable">;
|
|
668
|
+
setPrimeRateOracle: TypedContractMethod<[
|
|
669
|
+
newOracle: AddressLike
|
|
670
|
+
], [
|
|
671
|
+
void
|
|
672
|
+
], "nonpayable">;
|
|
673
|
+
setProtocolFeeRate: TypedContractMethod<[
|
|
674
|
+
newProtocolFeeRate: BigNumberish
|
|
675
|
+
], [
|
|
676
|
+
void
|
|
677
|
+
], "nonpayable">;
|
|
678
|
+
setStabilityPool: TypedContractMethod<[
|
|
679
|
+
newStabilityPool: AddressLike
|
|
680
|
+
], [
|
|
681
|
+
void
|
|
682
|
+
], "nonpayable">;
|
|
683
|
+
stabilityPool: TypedContractMethod<[], [string], "view">;
|
|
684
|
+
totalVaultDeposits: TypedContractMethod<[], [bigint], "view">;
|
|
685
|
+
transferAccruedDust: TypedContractMethod<[
|
|
686
|
+
recipient: AddressLike,
|
|
687
|
+
amount: BigNumberish
|
|
688
|
+
], [
|
|
689
|
+
void
|
|
690
|
+
], "nonpayable">;
|
|
691
|
+
transferOwnership: TypedContractMethod<[
|
|
692
|
+
newOwner: AddressLike
|
|
693
|
+
], [
|
|
694
|
+
void
|
|
695
|
+
], "nonpayable">;
|
|
696
|
+
unpause: TypedContractMethod<[], [void], "nonpayable">;
|
|
697
|
+
updateState: TypedContractMethod<[], [void], "nonpayable">;
|
|
698
|
+
userData: TypedContractMethod<[
|
|
699
|
+
arg0: AddressLike
|
|
700
|
+
], [
|
|
701
|
+
[
|
|
702
|
+
bigint,
|
|
703
|
+
boolean,
|
|
704
|
+
bigint
|
|
705
|
+
] & {
|
|
706
|
+
scaledDebtBalance: bigint;
|
|
707
|
+
underLiquidation: boolean;
|
|
708
|
+
liquidationStartTime: bigint;
|
|
709
|
+
}
|
|
710
|
+
], "view">;
|
|
711
|
+
withdraw: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
712
|
+
withdrawNFT: TypedContractMethod<[
|
|
713
|
+
tokenId: BigNumberish
|
|
714
|
+
], [
|
|
715
|
+
void
|
|
716
|
+
], "nonpayable">;
|
|
717
|
+
withdrawalsPaused: TypedContractMethod<[], [boolean], "view">;
|
|
718
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
719
|
+
getFunction(nameOrSignature: "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD"): TypedContractMethod<[], [bigint], "view">;
|
|
720
|
+
getFunction(nameOrSignature: "BASE_LIQUIDATION_GRACE_PERIOD"): TypedContractMethod<[], [bigint], "view">;
|
|
721
|
+
getFunction(nameOrSignature: "BASE_LIQUIDATION_THRESHOLD"): TypedContractMethod<[], [bigint], "view">;
|
|
722
|
+
getFunction(nameOrSignature: "borrow"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
723
|
+
getFunction(nameOrSignature: "calculateHealthFactor"): TypedContractMethod<[userAddress: AddressLike], [bigint], "view">;
|
|
724
|
+
getFunction(nameOrSignature: "canPaybackDebt"): TypedContractMethod<[], [boolean], "view">;
|
|
725
|
+
getFunction(nameOrSignature: "closeLiquidation"): TypedContractMethod<[], [void], "nonpayable">;
|
|
726
|
+
getFunction(nameOrSignature: "curveVault"): TypedContractMethod<[], [string], "view">;
|
|
727
|
+
getFunction(nameOrSignature: "debtToken"): TypedContractMethod<[], [string], "view">;
|
|
728
|
+
getFunction(nameOrSignature: "deposit"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
729
|
+
getFunction(nameOrSignature: "depositNFT"): TypedContractMethod<[tokenId: BigNumberish], [void], "nonpayable">;
|
|
730
|
+
getFunction(nameOrSignature: "finalizeLiquidation"): TypedContractMethod<[userAddress: AddressLike], [void], "nonpayable">;
|
|
731
|
+
getFunction(nameOrSignature: "getNFTPrice"): TypedContractMethod<[tokenId: BigNumberish], [bigint], "view">;
|
|
732
|
+
getFunction(nameOrSignature: "getNormalizedDebt"): TypedContractMethod<[], [bigint], "view">;
|
|
733
|
+
getFunction(nameOrSignature: "getNormalizedIncome"): TypedContractMethod<[], [bigint], "view">;
|
|
734
|
+
getFunction(nameOrSignature: "getPrimeRate"): TypedContractMethod<[], [bigint], "view">;
|
|
735
|
+
getFunction(nameOrSignature: "getUserCollateralValue"): TypedContractMethod<[userAddress: AddressLike], [bigint], "view">;
|
|
736
|
+
getFunction(nameOrSignature: "getUserDebt"): TypedContractMethod<[userAddress: AddressLike], [bigint], "view">;
|
|
737
|
+
getFunction(nameOrSignature: "getUserDepositedNFTs"): TypedContractMethod<[userAddress: AddressLike], [bigint[]], "view">;
|
|
738
|
+
getFunction(nameOrSignature: "healthFactorLiquidationThreshold"): TypedContractMethod<[], [bigint], "view">;
|
|
739
|
+
getFunction(nameOrSignature: "initiateLiquidation"): TypedContractMethod<[userAddress: AddressLike], [void], "nonpayable">;
|
|
740
|
+
getFunction(nameOrSignature: "isUnderLiquidation"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
741
|
+
getFunction(nameOrSignature: "liquidationGracePeriod"): TypedContractMethod<[], [bigint], "view">;
|
|
742
|
+
getFunction(nameOrSignature: "liquidationStartTime"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
743
|
+
getFunction(nameOrSignature: "liquidationThreshold"): TypedContractMethod<[], [bigint], "view">;
|
|
744
|
+
getFunction(nameOrSignature: "liquidityBufferRatio"): TypedContractMethod<[], [bigint], "view">;
|
|
745
|
+
getFunction(nameOrSignature: "onERC721Received"): TypedContractMethod<[
|
|
746
|
+
arg0: AddressLike,
|
|
747
|
+
arg1: AddressLike,
|
|
748
|
+
arg2: BigNumberish,
|
|
749
|
+
arg3: BytesLike
|
|
750
|
+
], [
|
|
751
|
+
string
|
|
752
|
+
], "nonpayable">;
|
|
753
|
+
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
754
|
+
getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
755
|
+
getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
|
|
756
|
+
getFunction(nameOrSignature: "priceOracle"): TypedContractMethod<[], [string], "view">;
|
|
757
|
+
getFunction(nameOrSignature: "primeRateOracle"): TypedContractMethod<[], [string], "view">;
|
|
758
|
+
getFunction(nameOrSignature: "rToken"): TypedContractMethod<[], [string], "view">;
|
|
759
|
+
getFunction(nameOrSignature: "raacNFT"): TypedContractMethod<[], [string], "view">;
|
|
760
|
+
getFunction(nameOrSignature: "rateData"): TypedContractMethod<[
|
|
761
|
+
], [
|
|
762
|
+
[
|
|
763
|
+
bigint,
|
|
764
|
+
bigint,
|
|
765
|
+
bigint,
|
|
766
|
+
bigint,
|
|
767
|
+
bigint,
|
|
768
|
+
bigint,
|
|
769
|
+
bigint,
|
|
770
|
+
bigint
|
|
771
|
+
] & {
|
|
772
|
+
currentLiquidityRate: bigint;
|
|
773
|
+
currentUsageRate: bigint;
|
|
774
|
+
primeRate: bigint;
|
|
775
|
+
baseRate: bigint;
|
|
776
|
+
optimalRate: bigint;
|
|
777
|
+
maxRate: bigint;
|
|
778
|
+
optimalUtilizationRate: bigint;
|
|
779
|
+
protocolFeeRate: bigint;
|
|
780
|
+
}
|
|
781
|
+
], "view">;
|
|
782
|
+
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
783
|
+
getFunction(nameOrSignature: "repay"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
784
|
+
getFunction(nameOrSignature: "repayOnBehalf"): TypedContractMethod<[
|
|
785
|
+
amount: BigNumberish,
|
|
786
|
+
onBehalfOf: AddressLike
|
|
787
|
+
], [
|
|
788
|
+
void
|
|
789
|
+
], "nonpayable">;
|
|
790
|
+
getFunction(nameOrSignature: "rescueToken"): TypedContractMethod<[
|
|
791
|
+
tokenAddress: AddressLike,
|
|
792
|
+
recipient: AddressLike,
|
|
793
|
+
amount: BigNumberish
|
|
794
|
+
], [
|
|
795
|
+
void
|
|
796
|
+
], "nonpayable">;
|
|
797
|
+
getFunction(nameOrSignature: "reserve"): TypedContractMethod<[
|
|
798
|
+
], [
|
|
799
|
+
[
|
|
800
|
+
string,
|
|
801
|
+
string,
|
|
802
|
+
string,
|
|
803
|
+
bigint,
|
|
804
|
+
bigint,
|
|
805
|
+
bigint,
|
|
806
|
+
bigint,
|
|
807
|
+
bigint
|
|
808
|
+
] & {
|
|
809
|
+
reserveRTokenAddress: string;
|
|
810
|
+
reserveAssetAddress: string;
|
|
811
|
+
reserveDebtTokenAddress: string;
|
|
812
|
+
totalLiquidity: bigint;
|
|
813
|
+
totalUsage: bigint;
|
|
814
|
+
liquidityIndex: bigint;
|
|
815
|
+
usageIndex: bigint;
|
|
816
|
+
lastUpdateTimestamp: bigint;
|
|
817
|
+
}
|
|
818
|
+
], "view">;
|
|
819
|
+
getFunction(nameOrSignature: "reserveAssetToken"): TypedContractMethod<[], [string], "view">;
|
|
820
|
+
getFunction(nameOrSignature: "setCurveVault"): TypedContractMethod<[newVault: AddressLike], [void], "nonpayable">;
|
|
821
|
+
getFunction(nameOrSignature: "setParameter"): TypedContractMethod<[
|
|
822
|
+
param: BigNumberish,
|
|
823
|
+
newValue: BigNumberish
|
|
824
|
+
], [
|
|
825
|
+
void
|
|
826
|
+
], "nonpayable">;
|
|
827
|
+
getFunction(nameOrSignature: "setPrimeRate"): TypedContractMethod<[newPrimeRate: BigNumberish], [void], "nonpayable">;
|
|
828
|
+
getFunction(nameOrSignature: "setPrimeRateOracle"): TypedContractMethod<[newOracle: AddressLike], [void], "nonpayable">;
|
|
829
|
+
getFunction(nameOrSignature: "setProtocolFeeRate"): TypedContractMethod<[
|
|
830
|
+
newProtocolFeeRate: BigNumberish
|
|
831
|
+
], [
|
|
832
|
+
void
|
|
833
|
+
], "nonpayable">;
|
|
834
|
+
getFunction(nameOrSignature: "setStabilityPool"): TypedContractMethod<[newStabilityPool: AddressLike], [void], "nonpayable">;
|
|
835
|
+
getFunction(nameOrSignature: "stabilityPool"): TypedContractMethod<[], [string], "view">;
|
|
836
|
+
getFunction(nameOrSignature: "totalVaultDeposits"): TypedContractMethod<[], [bigint], "view">;
|
|
837
|
+
getFunction(nameOrSignature: "transferAccruedDust"): TypedContractMethod<[
|
|
838
|
+
recipient: AddressLike,
|
|
839
|
+
amount: BigNumberish
|
|
840
|
+
], [
|
|
841
|
+
void
|
|
842
|
+
], "nonpayable">;
|
|
843
|
+
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
844
|
+
getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
845
|
+
getFunction(nameOrSignature: "updateState"): TypedContractMethod<[], [void], "nonpayable">;
|
|
846
|
+
getFunction(nameOrSignature: "userData"): TypedContractMethod<[
|
|
847
|
+
arg0: AddressLike
|
|
848
|
+
], [
|
|
849
|
+
[
|
|
850
|
+
bigint,
|
|
851
|
+
boolean,
|
|
852
|
+
bigint
|
|
853
|
+
] & {
|
|
854
|
+
scaledDebtBalance: bigint;
|
|
855
|
+
underLiquidation: boolean;
|
|
856
|
+
liquidationStartTime: bigint;
|
|
857
|
+
}
|
|
858
|
+
], "view">;
|
|
859
|
+
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
860
|
+
getFunction(nameOrSignature: "withdrawNFT"): TypedContractMethod<[tokenId: BigNumberish], [void], "nonpayable">;
|
|
861
|
+
getFunction(nameOrSignature: "withdrawalsPaused"): TypedContractMethod<[], [boolean], "view">;
|
|
862
|
+
getEvent(key: "Borrow"): TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
|
|
863
|
+
getEvent(key: "CanPaybackDebtChanged"): TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
|
|
864
|
+
getEvent(key: "CurveVaultUpdated"): TypedContractEvent<CurveVaultUpdatedEvent.InputTuple, CurveVaultUpdatedEvent.OutputTuple, CurveVaultUpdatedEvent.OutputObject>;
|
|
865
|
+
getEvent(key: "Deposit(address,uint256,uint256)"): TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
|
|
866
|
+
getEvent(key: "Deposit(address,uint256,uint256)"): TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
|
|
867
|
+
getEvent(key: "InterestRatesUpdated"): TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
|
|
868
|
+
getEvent(key: "Liquidation"): TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
|
|
869
|
+
getEvent(key: "LiquidationClosed"): TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
|
|
870
|
+
getEvent(key: "LiquidationFinalized"): TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
|
|
871
|
+
getEvent(key: "LiquidationInitiated"): TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
|
|
872
|
+
getEvent(key: "LiquidationParametersUpdated"): TypedContractEvent<LiquidationParametersUpdatedEvent.InputTuple, LiquidationParametersUpdatedEvent.OutputTuple, LiquidationParametersUpdatedEvent.OutputObject>;
|
|
873
|
+
getEvent(key: "LiquidityBufferRatioUpdated"): TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
|
|
874
|
+
getEvent(key: "LiquidityRebalanced"): TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
|
|
875
|
+
getEvent(key: "NFTDeposited"): TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
876
|
+
getEvent(key: "NFTWithdrawn"): TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
|
|
877
|
+
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
878
|
+
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
879
|
+
getEvent(key: "PrimeRateUpdated"): TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
|
|
880
|
+
getEvent(key: "Repay"): TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
881
|
+
getEvent(key: "ReserveInterestsUpdated"): TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
|
|
882
|
+
getEvent(key: "StabilityPoolUpdated"): TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
|
|
883
|
+
getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
884
|
+
getEvent(key: "Withdraw(address,uint256)"): TypedContractEvent<Withdraw_address_uint256_Event.InputTuple, Withdraw_address_uint256_Event.OutputTuple, Withdraw_address_uint256_Event.OutputObject>;
|
|
885
|
+
getEvent(key: "Withdraw(address,uint256,uint256)"): TypedContractEvent<Withdraw_address_uint256_uint256_Event.InputTuple, Withdraw_address_uint256_uint256_Event.OutputTuple, Withdraw_address_uint256_uint256_Event.OutputObject>;
|
|
886
|
+
getEvent(key: "WithdrawalsPauseStatusChanged"): TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
|
|
887
|
+
filters: {
|
|
888
|
+
"Borrow(address,uint256)": TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
|
|
889
|
+
Borrow: TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
|
|
890
|
+
"CanPaybackDebtChanged(bool)": TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
|
|
891
|
+
CanPaybackDebtChanged: TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
|
|
892
|
+
"CurveVaultUpdated(address,address)": TypedContractEvent<CurveVaultUpdatedEvent.InputTuple, CurveVaultUpdatedEvent.OutputTuple, CurveVaultUpdatedEvent.OutputObject>;
|
|
893
|
+
CurveVaultUpdated: TypedContractEvent<CurveVaultUpdatedEvent.InputTuple, CurveVaultUpdatedEvent.OutputTuple, CurveVaultUpdatedEvent.OutputObject>;
|
|
894
|
+
"Deposit(address,uint256,uint256)": TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
|
|
895
|
+
"Deposit(address,uint256,uint256)": TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
|
|
896
|
+
"InterestRatesUpdated(uint256,uint256)": TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
|
|
897
|
+
InterestRatesUpdated: TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
|
|
898
|
+
"Liquidation(address,address,uint256,uint256)": TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
|
|
899
|
+
Liquidation: TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
|
|
900
|
+
"LiquidationClosed(address)": TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
|
|
901
|
+
LiquidationClosed: TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
|
|
902
|
+
"LiquidationFinalized(address,address,uint256,uint256)": TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
|
|
903
|
+
LiquidationFinalized: TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
|
|
904
|
+
"LiquidationInitiated(address,address)": TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
|
|
905
|
+
LiquidationInitiated: TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
|
|
906
|
+
"LiquidationParametersUpdated(uint256,uint256,uint256)": TypedContractEvent<LiquidationParametersUpdatedEvent.InputTuple, LiquidationParametersUpdatedEvent.OutputTuple, LiquidationParametersUpdatedEvent.OutputObject>;
|
|
907
|
+
LiquidationParametersUpdated: TypedContractEvent<LiquidationParametersUpdatedEvent.InputTuple, LiquidationParametersUpdatedEvent.OutputTuple, LiquidationParametersUpdatedEvent.OutputObject>;
|
|
908
|
+
"LiquidityBufferRatioUpdated(uint256,uint256)": TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
|
|
909
|
+
LiquidityBufferRatioUpdated: TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
|
|
910
|
+
"LiquidityRebalanced(uint256,uint256)": TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
|
|
911
|
+
LiquidityRebalanced: TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
|
|
912
|
+
"NFTDeposited(address,uint256)": TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
913
|
+
NFTDeposited: TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
|
|
914
|
+
"NFTWithdrawn(address,uint256)": TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
|
|
915
|
+
NFTWithdrawn: TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
|
|
916
|
+
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
917
|
+
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
918
|
+
"Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
919
|
+
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
920
|
+
"PrimeRateUpdated(uint256,uint256)": TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
|
|
921
|
+
PrimeRateUpdated: TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
|
|
922
|
+
"Repay(address,address,uint256)": TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
923
|
+
Repay: TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
|
|
924
|
+
"ReserveInterestsUpdated(uint256,uint256)": TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
|
|
925
|
+
ReserveInterestsUpdated: TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
|
|
926
|
+
"StabilityPoolUpdated(address,address)": TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
|
|
927
|
+
StabilityPoolUpdated: TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
|
|
928
|
+
"Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
929
|
+
Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
930
|
+
"Withdraw(address,uint256)": TypedContractEvent<Withdraw_address_uint256_Event.InputTuple, Withdraw_address_uint256_Event.OutputTuple, Withdraw_address_uint256_Event.OutputObject>;
|
|
931
|
+
"Withdraw(address,uint256,uint256)": TypedContractEvent<Withdraw_address_uint256_uint256_Event.InputTuple, Withdraw_address_uint256_uint256_Event.OutputTuple, Withdraw_address_uint256_uint256_Event.OutputObject>;
|
|
932
|
+
"WithdrawalsPauseStatusChanged(bool)": TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
|
|
933
|
+
WithdrawalsPauseStatusChanged: TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
|
|
934
|
+
};
|
|
935
|
+
}
|