@raac/rpc 1.1.0-beta.8 → 1.1.0-beta.80
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 +53 -6
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +279 -309
- package/dist/artifacts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.json +246 -0
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +458 -0
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +458 -0
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +529 -0
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +2 -93
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +169 -13
- package/dist/artifacts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.json +556 -0
- package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +637 -0
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +190 -29
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +20 -2
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +55 -3
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +267 -220
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +421 -124
- package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +397 -0
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +223 -7
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +111 -8
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +272 -28
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +50 -39
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +25 -2
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +2 -2
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +17 -9
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +89 -9
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +405 -108
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +2 -2
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
- package/dist/artifacts/zeno/Auction.sol/Auction.json +57 -2
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +44 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +2 -2
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/11155111.json +80 -20
- package/dist/configs/chains/17000.json +25 -0
- package/dist/configs/chains/18453.json +187 -0
- package/dist/configs/chains/8453.json +66 -18
- package/dist/configs/chains/index.js +2 -0
- package/dist/minter/get.js +1 -3
- package/dist/minter/getApy.js +2 -2
- package/dist/nfts/approveNFT.js +25 -0
- package/dist/nfts/getApprovalForAll.js +32 -0
- package/dist/nfts/getNFTApproval.js +33 -0
- package/dist/nfts/getOwnerOfNFT.js +39 -0
- package/dist/nfts/setApprovalForAll.js +34 -0
- package/dist/oracles/chainlink-networks-config.js +252 -0
- package/dist/oracles/encryptSecretURLs.js +25 -0
- package/dist/oracles/encryptSecrets.js +29 -0
- package/dist/oracles/houses/config.js +19 -0
- package/dist/oracles/houses/request.js +176 -0
- package/dist/oracles/houses/simulate.js +21 -0
- package/dist/oracles/prime-rate/config.js +16 -0
- package/dist/oracles/prime-rate/request.js +149 -0
- package/dist/oracles/prime-rate/simulate.js +25 -0
- package/dist/pools/lendingPool/_helpers.js +2 -3
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +4 -3
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +4 -3
- package/dist/pools/lendingPool/borrowFromLendingPool.js +5 -3
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +34 -3
- package/dist/pools/lendingPool/calculateInsuranceFee.js +2 -2
- package/dist/pools/lendingPool/closeLiquidation.js +2 -2
- package/dist/pools/lendingPool/depositAssetToLendingPool.js +2 -2
- package/dist/pools/lendingPool/depositToLendingPool.js +4 -2
- package/dist/pools/lendingPool/getAdapterAddress.js +8 -10
- package/dist/pools/lendingPool/getAdapters.js +1 -1
- package/dist/pools/lendingPool/getEligibleUserDeposits.js +1 -1
- package/dist/pools/lendingPool/getHealthFactor.js +2 -2
- package/dist/pools/lendingPool/getLendingPoolInfo.js +24 -15
- package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +1 -1
- package/dist/pools/lendingPool/getParameters.js +3 -4
- package/dist/pools/lendingPool/getPositionDebt.js +2 -2
- package/dist/pools/lendingPool/getPositionScaledDebt.js +2 -2
- package/dist/pools/lendingPool/getPositionView.js +1 -1
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +1 -1
- package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +1 -1
- package/dist/pools/lendingPool/getUserCollateralValue.js +1 -1
- package/dist/pools/lendingPool/initializeLiquidation.js +2 -2
- package/dist/pools/lendingPool/openVaultPosition.js +2 -4
- package/dist/pools/lendingPool/repayToLendingPool.js +2 -2
- package/dist/pools/lendingPool/vaultOpened.js +22 -0
- package/dist/pools/lendingPool/withdrawAssetFromLendingPool.js +3 -4
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +7 -4
- package/dist/pools/rwaVault/_helpers.js +2 -3
- package/dist/pools/rwaVault/depositToRWAVault.js +6 -5
- package/dist/pools/rwaVault/getNextRandomNFT.js +1 -1
- package/dist/pools/rwaVault/getRWAVaultInfo.js +3 -14
- package/dist/pools/rwaVault/previewDeposit.js +16 -0
- package/dist/pools/rwaVault/previewWithdraw.js +16 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +9 -5
- package/dist/pools/rwaVault/requestRandomSeed.js +1 -1
- package/dist/pools/stabilityPool/_helpers.js +11 -0
- package/dist/pools/stabilityPool/getStabilityPoolInfo.js +2 -39
- package/dist/pools/stabilityPool/getWithdrawRequestInfo.js +28 -0
- package/dist/pools/{lendingPool → stabilityPool}/requestWithdraw.js +2 -7
- package/dist/scripts/analyze_lending_positions.js +277 -0
- package/dist/scripts/analyze_transfers.js +247 -0
- package/dist/scripts/calculate_portfolio.js +167 -0
- package/dist/scripts/generateErrorMap.js +180 -0
- package/dist/scripts/index.js +211 -78
- package/dist/scripts/liquidation.js +176 -0
- package/dist/scripts/run_analysis.js +115 -0
- package/dist/scripts/test_lending_analysis.js +105 -0
- package/dist/scripts/users.js +305 -0
- package/dist/test.js +323 -0
- package/dist/types/RPCLibrary.d.ts +37 -9
- package/dist/types/configs/chains/index.d.ts +5 -3
- package/dist/types/configs/index.d.ts +2 -1
- package/dist/types/nfts/approveNFT.d.ts +9 -0
- package/dist/types/nfts/getApprovalForAll.d.ts +14 -0
- package/dist/types/nfts/getNFTApproval.d.ts +14 -0
- package/dist/types/nfts/getOwnerOfNFT.d.ts +13 -0
- package/dist/types/nfts/setApprovalForAll.d.ts +14 -0
- package/dist/types/oracles/chainlink-networks-config.d.ts +222 -0
- package/dist/types/oracles/encryptSecretURLs.d.ts +5 -0
- package/dist/types/oracles/encryptSecrets.d.ts +4 -0
- package/dist/types/oracles/houses/config.d.ts +13 -0
- package/dist/types/oracles/houses/request.d.ts +5 -0
- package/dist/types/oracles/houses/simulate.d.ts +1 -0
- package/dist/types/oracles/prime-rate/config.d.ts +14 -0
- package/dist/types/oracles/prime-rate/request.d.ts +2 -0
- package/dist/types/oracles/prime-rate/simulate.d.ts +1 -0
- package/dist/types/pools/lendingPool/_helpers.d.ts +2 -2
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +4 -2
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +4 -2
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +2 -2
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +2 -2
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +2 -0
- package/dist/types/pools/lendingPool/getParameters.d.ts +1 -2
- package/dist/types/pools/lendingPool/getPositionDebt.d.ts +2 -2
- package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +2 -2
- package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +2 -2
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +2 -2
- package/dist/types/pools/lendingPool/vaultOpened.d.ts +11 -0
- package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +2 -3
- package/dist/types/pools/rwaVault/_helpers.d.ts +2 -2
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +2 -2
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +2 -6
- package/dist/types/pools/rwaVault/previewDeposit.d.ts +4 -0
- package/dist/types/pools/rwaVault/previewWithdraw.d.ts +4 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +3 -2
- package/dist/types/pools/stabilityPool/_helpers.d.ts +4 -0
- package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +0 -3
- package/dist/types/pools/stabilityPool/getWithdrawRequestInfo.d.ts +13 -0
- package/dist/types/scripts/analyze_lending_positions.d.ts +1 -0
- package/dist/types/scripts/analyze_transfers.d.ts +1 -0
- package/dist/types/scripts/calculate_portfolio.d.ts +1 -0
- package/dist/types/scripts/generateErrorMap.d.ts +1 -0
- package/dist/types/scripts/liquidation.d.ts +1 -0
- package/dist/types/scripts/run_analysis.d.ts +1 -0
- package/dist/types/scripts/test_lending_analysis.d.ts +1 -0
- package/dist/types/scripts/users.d.ts +1 -0
- package/dist/types/test.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -3
- package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.d.ts +65 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/{utils/math/Math.d.ts → proxy/ERC1967/ERC1967Utils.d.ts} +4 -4
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/Proxy.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/IBeacon.d.ts +25 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/index.d.ts +7 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.d.ts +74 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts +80 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts +51 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/index.d.ts +3 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.d.ts +36 -0
- package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +180 -178
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +17 -5
- package/dist/types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +53 -52
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +19 -1
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +119 -5
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +2 -6
- package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +1 -41
- package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +36 -20
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +116 -10
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +338 -0
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts +55 -0
- package/dist/types/typechain-types/contracts/{mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts} +9 -9
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +37 -0
- package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/{mocks/core/oracles/MockERC20PriceOracle.sol → core/oracles/crvUSDPriceOracle.sol}/IPriceOracle.d.ts +1 -1
- package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +6 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/{ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts → ERC721AssetAdapter.d.ts} +29 -2
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +145 -153
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +94 -63
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +94 -63
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +105 -62
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +66 -28
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +36 -8
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +312 -81
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +61 -25
- package/dist/types/typechain-types/contracts/core/primitives/{ComplianceRegistry.d.ts → ComplianceRegistry.sol/ComplianceRegistry.d.ts} +30 -2
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +129 -7
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -1
- package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +39 -9
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +12 -111
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +191 -31
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +15 -33
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/vaults/{ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts → ERC20VaultAdapter.d.ts} +10 -8
- package/dist/types/typechain-types/contracts/core/vaults/{ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts → ERC721VaultAdapter.d.ts} +40 -8
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts +262 -0
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +321 -65
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +3 -4
- package/dist/types/typechain-types/contracts/{mocks/libraries/governance/RAACVotingMock.d.ts → interfaces/core/collectors/IDistributionTarget.d.ts} +25 -23
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +136 -44
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +23 -42
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +101 -5
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +2 -6
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +33 -3
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +1 -37
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +21 -20
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +47 -1
- package/dist/types/typechain-types/contracts/{core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts → interfaces/core/oracles/IERC20PriceOracle.d.ts} +9 -13
- package/dist/types/typechain-types/contracts/{core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → interfaces/core/oracles/IERC721PriceOracle.d.ts} +6 -6
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer.d.ts +71 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePrices.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +35 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +6 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +80 -70
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +52 -1
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +205 -42
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +31 -1
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +7 -15
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +127 -29
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +11 -33
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +315 -23
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +37 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +1 -3
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +33 -1
- package/dist/types/typechain-types/contracts/libraries/pools/LendingPoolFeeLibrary.d.ts +20 -0
- package/dist/types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +23 -58
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +358 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +37 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +151 -0
- package/dist/types/typechain-types/contracts/{interfaces/IHousePrices.d.ts → mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts} +10 -14
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA.d.ts +59 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/{MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts → MockERC20PriceOracle.d.ts} +1 -1
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +169 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +171 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +128 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +112 -27
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +6 -2
- package/dist/types/typechain-types/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool.d.ts +593 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +11 -17
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +10 -7
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +80 -70
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +26 -12
- package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/{@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts → contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts} +18 -14
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +9 -1
- package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/{core/tokens/IndexToken.d.ts → mocks/core/tokens/CrvUSDTokenLimited.d.ts} +53 -155
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +5 -1
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +185 -0
- package/dist/types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +33 -2
- package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +34 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +71 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.d.ts +10 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +115 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts +56 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +102 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.d.ts +29 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +373 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +214 -238
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +29 -3
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +369 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +369 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +80 -59
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +159 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +29 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +160 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +160 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +14 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +25 -1
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -71
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +43 -10
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +128 -23
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +135 -14
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +443 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle__factory.d.ts +45 -0
- package/dist/types/typechain-types/factories/contracts/{interfaces/IHousePrices__factory.d.ts → core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts} +6 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +203 -28
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +153 -28
- package/dist/types/typechain-types/factories/contracts/{mocks/core/oracles/MockERC20PriceOracle.sol → core/oracles/RWAIndexTokenOracle.sol}/IPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +74 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +52 -0
- package/dist/types/typechain-types/factories/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/crvUSDPriceOracle.sol}/IPriceOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/crvUSDPriceOracle.sol}/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/{ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts → ERC721AssetAdapter__factory.d.ts} +44 -4
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +103 -50
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +186 -173
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +101 -56
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +117 -48
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +70 -34
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +82 -8
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +58 -34
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +344 -109
- package/dist/types/typechain-types/factories/contracts/core/primitives/{ComplianceRegistry__factory.d.ts → ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts} +47 -3
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +174 -8
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +87 -9
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +15 -168
- package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +213 -24
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +40 -32
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +22 -4
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/{ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts → ERC20VaultAdapter__factory.d.ts} +15 -9
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +417 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +318 -86
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +3 -2
- package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IDistributionTarget__factory.d.ts +39 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +131 -95
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +20 -49
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +133 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +24 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -60
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +19 -16
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +52 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/{core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts → interfaces/core/oracles/IERC721PriceOracle__factory.d.ts} +8 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer__factory.d.ts +59 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePrices__factory.d.ts +67 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +26 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +113 -92
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +12 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +236 -41
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +70 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +10 -16
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +122 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +19 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +301 -19
- package/dist/types/typechain-types/factories/contracts/interfaces/{IPoolManager__factory.d.ts → core/vaults/IERC721VaultAdapter__factory.d.ts} +20 -22
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +64 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/LendingPoolFeeLibrary__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +21 -68
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +651 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
- package/dist/types/typechain-types/factories/contracts/{core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts → mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts} +7 -7
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +98 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/{MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts → MockERC20PriceOracle__factory.d.ts} +3 -3
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +242 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +184 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +203 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +153 -28
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +938 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +9 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +114 -83
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -19
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +27 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +431 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +228 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +23 -5
- 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 +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +34 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +44 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
- package/dist/types/typechain-types/index.d.ts +88 -18
- package/dist/types/utils/artifacts.d.ts +997 -284
- package/dist/types/utils/contracts.d.ts +4 -2
- package/dist/types/utils/errorDecoder.d.ts +37 -0
- package/dist/types/wallet/assets/approveNFT.d.ts +0 -0
- package/dist/types/wallet/assets/getAllowance.d.ts +1 -1
- package/dist/types/wallet/assets/getBalance.d.ts +3 -3
- package/dist/utils/artifacts.js +16 -0
- package/dist/utils/errorDecoder.js +137 -0
- package/dist/wallet/assets/approveNFT.js +0 -0
- package/dist/wallet/assets/getAllowance.js +3 -3
- package/dist/wallet/assets/getBalance.js +14 -6
- package/package.json +8 -4
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +0 -25
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +0 -8
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
- package/dist/types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
- package/dist/types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
- package/dist/types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
- package/dist/types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +0 -117
- package/dist/types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
- package/dist/types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
- package/dist/types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
- package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
- package/dist/types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
- package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -287
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
- package/dist/types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +0 -141
- package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
- package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
- package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
- package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
- /package/dist/types/pools/{lendingPool → stabilityPool}/requestWithdraw.d.ts +0 -0
- /package/dist/types/typechain-types/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/RWAIndexTokenOracle.sol}/IPriceOracle.d.ts +0 -0
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
3
|
export interface StabilityPoolInterface extends Interface {
|
|
4
|
-
getFunction(nameOrSignature: "addManager" | "balanceOf" | "
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "AllocationUpdated" | "BorrowerLiquidated" | "Deposit" | "Initialized" | "LiquidationStrategyProxyUpdated" | "LiquidityPoolSet" | "ManagerAdded" | "ManagerRemoved" | "MarketAdded" | "MarketAllocationUpdated" | "MarketRemoved" | "NFTDeposited" | "OwnershipTransferred" | "Paused" | "RAACDepositedFromPool" | "Unpaused" | "Withdraw"): EventFragment;
|
|
4
|
+
getFunction(nameOrSignature: "addManager" | "balanceOf" | "collectDust" | "complianceRegistry" | "crvUSDToken" | "deToken" | "deposit" | "depositBlock" | "feeCollector" | "getManagerList" | "getPoolIndex" | "getRawTotalDeposits" | "getScaledDeposit" | "getTotalDeposits" | "getUserDeposit" | "getUserIndex" | "initialize" | "isAddressManager" | "isManager" | "isUserDepositInSameBlock" | "lendingPool" | "liquidateBorrower" | "liquidationSplit" | "liquidationStrategyProxy" | "liquidationSwap" | "managerList" | "onERC721Received" | "owner" | "pause" | "paused" | "rToken" | "removeManager" | "renounceOwnership" | "requestWithdraw" | "rwaVault" | "setFeeCollector" | "setLiquidationStrategyProxy" | "setLiquidationSwap" | "setLiquidationVaultTokenSplit" | "setRWAVault" | "setWithdrawTimelockDelay" | "setWithdrawTimelockDuration" | "transferOwnership" | "treasury" | "unpause" | "withdraw" | "withdrawTimelock" | "withdrawTimelockDelay" | "withdrawTimelockDuration"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "AllocationUpdated" | "BorrowerLiquidated" | "Deposit" | "DustCollected" | "FeeCollectorUpdated" | "Initialized" | "LiquidationStrategyProxyUpdated" | "LiquidationSwapUpdated" | "LiquidationVaultTokenSplitUpdated" | "LiquidityPoolSet" | "ManagerAdded" | "ManagerRemoved" | "MarketAdded" | "MarketAllocationUpdated" | "MarketRemoved" | "NFTDeposited" | "OwnershipTransferred" | "Paused" | "RAACDepositedFromPool" | "RWAVaultUpdated" | "Unpaused" | "Withdraw" | "WithdrawCancelled" | "WithdrawQueued" | "WithdrawTimelockDelayUpdated" | "WithdrawTimelockDurationUpdated"): EventFragment;
|
|
6
6
|
encodeFunctionData(functionFragment: "addManager", values: [AddressLike]): string;
|
|
7
7
|
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike]): string;
|
|
8
|
-
encodeFunctionData(functionFragment: "
|
|
9
|
-
encodeFunctionData(functionFragment: "calculateRaacRewards", values: [AddressLike]): string;
|
|
10
|
-
encodeFunctionData(functionFragment: "calculateRcrvUSDAmount", values: [BigNumberish]): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "collectDust", values: [AddressLike, AddressLike, BigNumberish]): string;
|
|
11
9
|
encodeFunctionData(functionFragment: "complianceRegistry", values?: undefined): string;
|
|
12
10
|
encodeFunctionData(functionFragment: "crvUSDToken", values?: undefined): string;
|
|
13
11
|
encodeFunctionData(functionFragment: "deToken", values?: undefined): string;
|
|
14
|
-
encodeFunctionData(functionFragment: "deTokenDecimals", values?: undefined): string;
|
|
15
12
|
encodeFunctionData(functionFragment: "deposit", values: [BigNumberish]): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "depositBlock", values: [AddressLike]): string;
|
|
14
|
+
encodeFunctionData(functionFragment: "feeCollector", values?: undefined): string;
|
|
16
15
|
encodeFunctionData(functionFragment: "getManagerList", values?: undefined): string;
|
|
17
|
-
encodeFunctionData(functionFragment: "
|
|
16
|
+
encodeFunctionData(functionFragment: "getPoolIndex", values?: undefined): string;
|
|
17
|
+
encodeFunctionData(functionFragment: "getRawTotalDeposits", values?: undefined): string;
|
|
18
|
+
encodeFunctionData(functionFragment: "getScaledDeposit", values: [AddressLike]): string;
|
|
18
19
|
encodeFunctionData(functionFragment: "getTotalDeposits", values?: undefined): string;
|
|
19
20
|
encodeFunctionData(functionFragment: "getUserDeposit", values: [AddressLike]): string;
|
|
21
|
+
encodeFunctionData(functionFragment: "getUserIndex", values: [AddressLike]): string;
|
|
20
22
|
encodeFunctionData(functionFragment: "initialize", values: [
|
|
21
23
|
AddressLike,
|
|
22
24
|
AddressLike,
|
|
@@ -28,81 +30,85 @@ export interface StabilityPoolInterface extends Interface {
|
|
|
28
30
|
]): string;
|
|
29
31
|
encodeFunctionData(functionFragment: "isAddressManager", values: [AddressLike]): string;
|
|
30
32
|
encodeFunctionData(functionFragment: "isManager", values: [AddressLike]): string;
|
|
33
|
+
encodeFunctionData(functionFragment: "isUserDepositInSameBlock", values: [AddressLike]): string;
|
|
31
34
|
encodeFunctionData(functionFragment: "lendingPool", values?: undefined): string;
|
|
32
|
-
encodeFunctionData(functionFragment: "liquidateBorrower", values: [AddressLike, AddressLike, AddressLike, BytesLike]): string;
|
|
35
|
+
encodeFunctionData(functionFragment: "liquidateBorrower", values: [AddressLike, AddressLike, AddressLike, BytesLike, BigNumberish]): string;
|
|
33
36
|
encodeFunctionData(functionFragment: "liquidationSplit", values?: undefined): string;
|
|
34
37
|
encodeFunctionData(functionFragment: "liquidationStrategyProxy", values?: undefined): string;
|
|
35
38
|
encodeFunctionData(functionFragment: "liquidationSwap", values?: undefined): string;
|
|
36
|
-
encodeFunctionData(functionFragment: "liquidityGauge", values?: undefined): string;
|
|
37
39
|
encodeFunctionData(functionFragment: "managerList", values: [BigNumberish]): string;
|
|
38
|
-
encodeFunctionData(functionFragment: "minter", values?: undefined): string;
|
|
39
40
|
encodeFunctionData(functionFragment: "onERC721Received", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
|
|
40
41
|
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
41
42
|
encodeFunctionData(functionFragment: "pause", values?: undefined): string;
|
|
42
43
|
encodeFunctionData(functionFragment: "paused", values?: undefined): string;
|
|
43
44
|
encodeFunctionData(functionFragment: "rToken", values?: undefined): string;
|
|
44
|
-
encodeFunctionData(functionFragment: "rTokenDecimals", values?: undefined): string;
|
|
45
|
-
encodeFunctionData(functionFragment: "raacToken", values?: undefined): string;
|
|
46
45
|
encodeFunctionData(functionFragment: "removeManager", values: [AddressLike]): string;
|
|
47
46
|
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
47
|
+
encodeFunctionData(functionFragment: "requestWithdraw", values: [BigNumberish]): string;
|
|
48
48
|
encodeFunctionData(functionFragment: "rwaVault", values?: undefined): string;
|
|
49
|
+
encodeFunctionData(functionFragment: "setFeeCollector", values: [AddressLike]): string;
|
|
49
50
|
encodeFunctionData(functionFragment: "setLiquidationStrategyProxy", values: [AddressLike]): string;
|
|
50
51
|
encodeFunctionData(functionFragment: "setLiquidationSwap", values: [AddressLike]): string;
|
|
51
52
|
encodeFunctionData(functionFragment: "setLiquidationVaultTokenSplit", values: [BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
|
|
52
|
-
encodeFunctionData(functionFragment: "setLiquidityGauge", values: [AddressLike]): string;
|
|
53
|
-
encodeFunctionData(functionFragment: "setMinter", values: [AddressLike]): string;
|
|
54
53
|
encodeFunctionData(functionFragment: "setRWAVault", values: [AddressLike]): string;
|
|
54
|
+
encodeFunctionData(functionFragment: "setWithdrawTimelockDelay", values: [BigNumberish]): string;
|
|
55
|
+
encodeFunctionData(functionFragment: "setWithdrawTimelockDuration", values: [BigNumberish]): string;
|
|
55
56
|
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
56
57
|
encodeFunctionData(functionFragment: "treasury", values?: undefined): string;
|
|
57
58
|
encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
|
|
58
|
-
encodeFunctionData(functionFragment: "userDeposits", values: [AddressLike]): string;
|
|
59
59
|
encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string;
|
|
60
|
+
encodeFunctionData(functionFragment: "withdrawTimelock", values: [AddressLike]): string;
|
|
61
|
+
encodeFunctionData(functionFragment: "withdrawTimelockDelay", values?: undefined): string;
|
|
62
|
+
encodeFunctionData(functionFragment: "withdrawTimelockDuration", values?: undefined): string;
|
|
60
63
|
decodeFunctionResult(functionFragment: "addManager", data: BytesLike): Result;
|
|
61
64
|
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
|
62
|
-
decodeFunctionResult(functionFragment: "
|
|
63
|
-
decodeFunctionResult(functionFragment: "calculateRaacRewards", data: BytesLike): Result;
|
|
64
|
-
decodeFunctionResult(functionFragment: "calculateRcrvUSDAmount", data: BytesLike): Result;
|
|
65
|
+
decodeFunctionResult(functionFragment: "collectDust", data: BytesLike): Result;
|
|
65
66
|
decodeFunctionResult(functionFragment: "complianceRegistry", data: BytesLike): Result;
|
|
66
67
|
decodeFunctionResult(functionFragment: "crvUSDToken", data: BytesLike): Result;
|
|
67
68
|
decodeFunctionResult(functionFragment: "deToken", data: BytesLike): Result;
|
|
68
|
-
decodeFunctionResult(functionFragment: "deTokenDecimals", data: BytesLike): Result;
|
|
69
69
|
decodeFunctionResult(functionFragment: "deposit", data: BytesLike): Result;
|
|
70
|
+
decodeFunctionResult(functionFragment: "depositBlock", data: BytesLike): Result;
|
|
71
|
+
decodeFunctionResult(functionFragment: "feeCollector", data: BytesLike): Result;
|
|
70
72
|
decodeFunctionResult(functionFragment: "getManagerList", data: BytesLike): Result;
|
|
71
|
-
decodeFunctionResult(functionFragment: "
|
|
73
|
+
decodeFunctionResult(functionFragment: "getPoolIndex", data: BytesLike): Result;
|
|
74
|
+
decodeFunctionResult(functionFragment: "getRawTotalDeposits", data: BytesLike): Result;
|
|
75
|
+
decodeFunctionResult(functionFragment: "getScaledDeposit", data: BytesLike): Result;
|
|
72
76
|
decodeFunctionResult(functionFragment: "getTotalDeposits", data: BytesLike): Result;
|
|
73
77
|
decodeFunctionResult(functionFragment: "getUserDeposit", data: BytesLike): Result;
|
|
78
|
+
decodeFunctionResult(functionFragment: "getUserIndex", data: BytesLike): Result;
|
|
74
79
|
decodeFunctionResult(functionFragment: "initialize", data: BytesLike): Result;
|
|
75
80
|
decodeFunctionResult(functionFragment: "isAddressManager", data: BytesLike): Result;
|
|
76
81
|
decodeFunctionResult(functionFragment: "isManager", data: BytesLike): Result;
|
|
82
|
+
decodeFunctionResult(functionFragment: "isUserDepositInSameBlock", data: BytesLike): Result;
|
|
77
83
|
decodeFunctionResult(functionFragment: "lendingPool", data: BytesLike): Result;
|
|
78
84
|
decodeFunctionResult(functionFragment: "liquidateBorrower", data: BytesLike): Result;
|
|
79
85
|
decodeFunctionResult(functionFragment: "liquidationSplit", data: BytesLike): Result;
|
|
80
86
|
decodeFunctionResult(functionFragment: "liquidationStrategyProxy", data: BytesLike): Result;
|
|
81
87
|
decodeFunctionResult(functionFragment: "liquidationSwap", data: BytesLike): Result;
|
|
82
|
-
decodeFunctionResult(functionFragment: "liquidityGauge", data: BytesLike): Result;
|
|
83
88
|
decodeFunctionResult(functionFragment: "managerList", data: BytesLike): Result;
|
|
84
|
-
decodeFunctionResult(functionFragment: "minter", data: BytesLike): Result;
|
|
85
89
|
decodeFunctionResult(functionFragment: "onERC721Received", data: BytesLike): Result;
|
|
86
90
|
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
87
91
|
decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
|
|
88
92
|
decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
|
|
89
93
|
decodeFunctionResult(functionFragment: "rToken", data: BytesLike): Result;
|
|
90
|
-
decodeFunctionResult(functionFragment: "rTokenDecimals", data: BytesLike): Result;
|
|
91
|
-
decodeFunctionResult(functionFragment: "raacToken", data: BytesLike): Result;
|
|
92
94
|
decodeFunctionResult(functionFragment: "removeManager", data: BytesLike): Result;
|
|
93
95
|
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
96
|
+
decodeFunctionResult(functionFragment: "requestWithdraw", data: BytesLike): Result;
|
|
94
97
|
decodeFunctionResult(functionFragment: "rwaVault", data: BytesLike): Result;
|
|
98
|
+
decodeFunctionResult(functionFragment: "setFeeCollector", data: BytesLike): Result;
|
|
95
99
|
decodeFunctionResult(functionFragment: "setLiquidationStrategyProxy", data: BytesLike): Result;
|
|
96
100
|
decodeFunctionResult(functionFragment: "setLiquidationSwap", data: BytesLike): Result;
|
|
97
101
|
decodeFunctionResult(functionFragment: "setLiquidationVaultTokenSplit", data: BytesLike): Result;
|
|
98
|
-
decodeFunctionResult(functionFragment: "setLiquidityGauge", data: BytesLike): Result;
|
|
99
|
-
decodeFunctionResult(functionFragment: "setMinter", data: BytesLike): Result;
|
|
100
102
|
decodeFunctionResult(functionFragment: "setRWAVault", data: BytesLike): Result;
|
|
103
|
+
decodeFunctionResult(functionFragment: "setWithdrawTimelockDelay", data: BytesLike): Result;
|
|
104
|
+
decodeFunctionResult(functionFragment: "setWithdrawTimelockDuration", data: BytesLike): Result;
|
|
101
105
|
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
102
106
|
decodeFunctionResult(functionFragment: "treasury", data: BytesLike): Result;
|
|
103
107
|
decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
|
|
104
|
-
decodeFunctionResult(functionFragment: "userDeposits", data: BytesLike): Result;
|
|
105
108
|
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
|
|
109
|
+
decodeFunctionResult(functionFragment: "withdrawTimelock", data: BytesLike): Result;
|
|
110
|
+
decodeFunctionResult(functionFragment: "withdrawTimelockDelay", data: BytesLike): Result;
|
|
111
|
+
decodeFunctionResult(functionFragment: "withdrawTimelockDuration", data: BytesLike): Result;
|
|
106
112
|
}
|
|
107
113
|
export declare namespace AllocationUpdatedEvent {
|
|
108
114
|
type InputTuple = [manager: AddressLike, newAllocation: BigNumberish];
|
|
@@ -161,6 +167,35 @@ export declare namespace DepositEvent {
|
|
|
161
167
|
type Log = TypedEventLog<Event>;
|
|
162
168
|
type LogDescription = TypedLogDescription<Event>;
|
|
163
169
|
}
|
|
170
|
+
export declare namespace DustCollectedEvent {
|
|
171
|
+
type InputTuple = [
|
|
172
|
+
token: AddressLike,
|
|
173
|
+
recipient: AddressLike,
|
|
174
|
+
amount: BigNumberish
|
|
175
|
+
];
|
|
176
|
+
type OutputTuple = [token: string, recipient: string, amount: bigint];
|
|
177
|
+
interface OutputObject {
|
|
178
|
+
token: string;
|
|
179
|
+
recipient: string;
|
|
180
|
+
amount: bigint;
|
|
181
|
+
}
|
|
182
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
183
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
184
|
+
type Log = TypedEventLog<Event>;
|
|
185
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
186
|
+
}
|
|
187
|
+
export declare namespace FeeCollectorUpdatedEvent {
|
|
188
|
+
type InputTuple = [previous: AddressLike, latest: AddressLike];
|
|
189
|
+
type OutputTuple = [previous: string, latest: string];
|
|
190
|
+
interface OutputObject {
|
|
191
|
+
previous: string;
|
|
192
|
+
latest: string;
|
|
193
|
+
}
|
|
194
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
195
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
196
|
+
type Log = TypedEventLog<Event>;
|
|
197
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
198
|
+
}
|
|
164
199
|
export declare namespace InitializedEvent {
|
|
165
200
|
type InputTuple = [version: BigNumberish];
|
|
166
201
|
type OutputTuple = [version: bigint];
|
|
@@ -184,6 +219,42 @@ export declare namespace LiquidationStrategyProxyUpdatedEvent {
|
|
|
184
219
|
type Log = TypedEventLog<Event>;
|
|
185
220
|
type LogDescription = TypedLogDescription<Event>;
|
|
186
221
|
}
|
|
222
|
+
export declare namespace LiquidationSwapUpdatedEvent {
|
|
223
|
+
type InputTuple = [previous: AddressLike, latest: AddressLike];
|
|
224
|
+
type OutputTuple = [previous: string, latest: string];
|
|
225
|
+
interface OutputObject {
|
|
226
|
+
previous: string;
|
|
227
|
+
latest: string;
|
|
228
|
+
}
|
|
229
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
230
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
231
|
+
type Log = TypedEventLog<Event>;
|
|
232
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
233
|
+
}
|
|
234
|
+
export declare namespace LiquidationVaultTokenSplitUpdatedEvent {
|
|
235
|
+
type InputTuple = [
|
|
236
|
+
mintPercentage: BigNumberish,
|
|
237
|
+
burnPercentage: BigNumberish,
|
|
238
|
+
swapPercentage: BigNumberish,
|
|
239
|
+
liquidityPercentage: BigNumberish
|
|
240
|
+
];
|
|
241
|
+
type OutputTuple = [
|
|
242
|
+
mintPercentage: bigint,
|
|
243
|
+
burnPercentage: bigint,
|
|
244
|
+
swapPercentage: bigint,
|
|
245
|
+
liquidityPercentage: bigint
|
|
246
|
+
];
|
|
247
|
+
interface OutputObject {
|
|
248
|
+
mintPercentage: bigint;
|
|
249
|
+
burnPercentage: bigint;
|
|
250
|
+
swapPercentage: bigint;
|
|
251
|
+
liquidityPercentage: bigint;
|
|
252
|
+
}
|
|
253
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
254
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
255
|
+
type Log = TypedEventLog<Event>;
|
|
256
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
257
|
+
}
|
|
187
258
|
export declare namespace LiquidityPoolSetEvent {
|
|
188
259
|
type InputTuple = [liquidityPool: AddressLike];
|
|
189
260
|
type OutputTuple = [liquidityPool: string];
|
|
@@ -299,6 +370,18 @@ export declare namespace RAACDepositedFromPoolEvent {
|
|
|
299
370
|
type Log = TypedEventLog<Event>;
|
|
300
371
|
type LogDescription = TypedLogDescription<Event>;
|
|
301
372
|
}
|
|
373
|
+
export declare namespace RWAVaultUpdatedEvent {
|
|
374
|
+
type InputTuple = [previous: AddressLike, latest: AddressLike];
|
|
375
|
+
type OutputTuple = [previous: string, latest: string];
|
|
376
|
+
interface OutputObject {
|
|
377
|
+
previous: string;
|
|
378
|
+
latest: string;
|
|
379
|
+
}
|
|
380
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
381
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
382
|
+
type Log = TypedEventLog<Event>;
|
|
383
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
384
|
+
}
|
|
302
385
|
export declare namespace UnpausedEvent {
|
|
303
386
|
type InputTuple = [account: AddressLike];
|
|
304
387
|
type OutputTuple = [account: string];
|
|
@@ -314,20 +397,69 @@ export declare namespace WithdrawEvent {
|
|
|
314
397
|
type InputTuple = [
|
|
315
398
|
user: AddressLike,
|
|
316
399
|
rcrvUSDAmount: BigNumberish,
|
|
317
|
-
deCRVUSDAmount: BigNumberish
|
|
318
|
-
raacRewards: BigNumberish
|
|
400
|
+
deCRVUSDAmount: BigNumberish
|
|
319
401
|
];
|
|
320
402
|
type OutputTuple = [
|
|
321
403
|
user: string,
|
|
322
404
|
rcrvUSDAmount: bigint,
|
|
323
|
-
deCRVUSDAmount: bigint
|
|
324
|
-
raacRewards: bigint
|
|
405
|
+
deCRVUSDAmount: bigint
|
|
325
406
|
];
|
|
326
407
|
interface OutputObject {
|
|
327
408
|
user: string;
|
|
328
409
|
rcrvUSDAmount: bigint;
|
|
329
410
|
deCRVUSDAmount: bigint;
|
|
330
|
-
|
|
411
|
+
}
|
|
412
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
413
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
414
|
+
type Log = TypedEventLog<Event>;
|
|
415
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
416
|
+
}
|
|
417
|
+
export declare namespace WithdrawCancelledEvent {
|
|
418
|
+
type InputTuple = [user: AddressLike];
|
|
419
|
+
type OutputTuple = [user: string];
|
|
420
|
+
interface OutputObject {
|
|
421
|
+
user: string;
|
|
422
|
+
}
|
|
423
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
424
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
425
|
+
type Log = TypedEventLog<Event>;
|
|
426
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
427
|
+
}
|
|
428
|
+
export declare namespace WithdrawQueuedEvent {
|
|
429
|
+
type InputTuple = [
|
|
430
|
+
user: AddressLike,
|
|
431
|
+
amount: BigNumberish,
|
|
432
|
+
readyAt: BigNumberish
|
|
433
|
+
];
|
|
434
|
+
type OutputTuple = [user: string, amount: bigint, readyAt: bigint];
|
|
435
|
+
interface OutputObject {
|
|
436
|
+
user: string;
|
|
437
|
+
amount: bigint;
|
|
438
|
+
readyAt: bigint;
|
|
439
|
+
}
|
|
440
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
441
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
442
|
+
type Log = TypedEventLog<Event>;
|
|
443
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
444
|
+
}
|
|
445
|
+
export declare namespace WithdrawTimelockDelayUpdatedEvent {
|
|
446
|
+
type InputTuple = [previous: BigNumberish, latest: BigNumberish];
|
|
447
|
+
type OutputTuple = [previous: bigint, latest: bigint];
|
|
448
|
+
interface OutputObject {
|
|
449
|
+
previous: bigint;
|
|
450
|
+
latest: bigint;
|
|
451
|
+
}
|
|
452
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
453
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
454
|
+
type Log = TypedEventLog<Event>;
|
|
455
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
456
|
+
}
|
|
457
|
+
export declare namespace WithdrawTimelockDurationUpdatedEvent {
|
|
458
|
+
type InputTuple = [previous: BigNumberish, latest: BigNumberish];
|
|
459
|
+
type OutputTuple = [previous: bigint, latest: bigint];
|
|
460
|
+
interface OutputObject {
|
|
461
|
+
previous: bigint;
|
|
462
|
+
latest: bigint;
|
|
331
463
|
}
|
|
332
464
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
333
465
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -349,38 +481,38 @@ export interface StabilityPool extends BaseContract {
|
|
|
349
481
|
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
350
482
|
addManager: TypedContractMethod<[manager: AddressLike], [void], "nonpayable">;
|
|
351
483
|
balanceOf: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
], "view">;
|
|
357
|
-
calculateRaacRewards: TypedContractMethod<[
|
|
358
|
-
user: AddressLike
|
|
359
|
-
], [
|
|
360
|
-
bigint
|
|
361
|
-
], "view">;
|
|
362
|
-
calculateRcrvUSDAmount: TypedContractMethod<[
|
|
363
|
-
deCRVUSDAmount: BigNumberish
|
|
484
|
+
collectDust: TypedContractMethod<[
|
|
485
|
+
token: AddressLike,
|
|
486
|
+
recipient: AddressLike,
|
|
487
|
+
amount: BigNumberish
|
|
364
488
|
], [
|
|
365
|
-
|
|
366
|
-
], "
|
|
489
|
+
void
|
|
490
|
+
], "nonpayable">;
|
|
367
491
|
complianceRegistry: TypedContractMethod<[], [string], "view">;
|
|
368
492
|
crvUSDToken: TypedContractMethod<[], [string], "view">;
|
|
369
493
|
deToken: TypedContractMethod<[], [string], "view">;
|
|
370
|
-
|
|
371
|
-
|
|
494
|
+
deposit: TypedContractMethod<[
|
|
495
|
+
scaledAmount: BigNumberish
|
|
496
|
+
], [
|
|
497
|
+
void
|
|
498
|
+
], "nonpayable">;
|
|
499
|
+
depositBlock: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
500
|
+
feeCollector: TypedContractMethod<[], [string], "view">;
|
|
372
501
|
getManagerList: TypedContractMethod<[], [string[]], "view">;
|
|
373
|
-
|
|
502
|
+
getPoolIndex: TypedContractMethod<[], [bigint], "view">;
|
|
503
|
+
getRawTotalDeposits: TypedContractMethod<[], [bigint], "view">;
|
|
504
|
+
getScaledDeposit: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
374
505
|
getTotalDeposits: TypedContractMethod<[], [bigint], "view">;
|
|
375
506
|
getUserDeposit: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
507
|
+
getUserIndex: TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
376
508
|
initialize: TypedContractMethod<[
|
|
377
509
|
_rToken: AddressLike,
|
|
378
510
|
_deToken: AddressLike,
|
|
379
|
-
_raacToken: AddressLike,
|
|
380
511
|
_crvUSDToken: AddressLike,
|
|
381
512
|
_lendingPool: AddressLike,
|
|
382
513
|
_treasury: AddressLike,
|
|
383
|
-
_liquidationStrategyProxy: AddressLike
|
|
514
|
+
_liquidationStrategyProxy: AddressLike,
|
|
515
|
+
_initialOwner: AddressLike
|
|
384
516
|
], [
|
|
385
517
|
void
|
|
386
518
|
], "nonpayable">;
|
|
@@ -390,12 +522,18 @@ export interface StabilityPool extends BaseContract {
|
|
|
390
522
|
boolean
|
|
391
523
|
], "view">;
|
|
392
524
|
isManager: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
525
|
+
isUserDepositInSameBlock: TypedContractMethod<[
|
|
526
|
+
user: AddressLike
|
|
527
|
+
], [
|
|
528
|
+
boolean
|
|
529
|
+
], "view">;
|
|
393
530
|
lendingPool: TypedContractMethod<[], [string], "view">;
|
|
394
531
|
liquidateBorrower: TypedContractMethod<[
|
|
395
532
|
poolAdapter: AddressLike,
|
|
396
533
|
vaultAdapter: AddressLike,
|
|
397
534
|
user: AddressLike,
|
|
398
|
-
data: BytesLike
|
|
535
|
+
data: BytesLike,
|
|
536
|
+
minSharesOut: BigNumberish
|
|
399
537
|
], [
|
|
400
538
|
void
|
|
401
539
|
], "nonpayable">;
|
|
@@ -415,9 +553,7 @@ export interface StabilityPool extends BaseContract {
|
|
|
415
553
|
], "view">;
|
|
416
554
|
liquidationStrategyProxy: TypedContractMethod<[], [string], "view">;
|
|
417
555
|
liquidationSwap: TypedContractMethod<[], [string], "view">;
|
|
418
|
-
liquidityGauge: TypedContractMethod<[], [string], "view">;
|
|
419
556
|
managerList: TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
420
|
-
minter: TypedContractMethod<[], [string], "view">;
|
|
421
557
|
onERC721Received: TypedContractMethod<[
|
|
422
558
|
arg0: AddressLike,
|
|
423
559
|
arg1: AddressLike,
|
|
@@ -430,15 +566,23 @@ export interface StabilityPool extends BaseContract {
|
|
|
430
566
|
pause: TypedContractMethod<[], [void], "nonpayable">;
|
|
431
567
|
paused: TypedContractMethod<[], [boolean], "view">;
|
|
432
568
|
rToken: TypedContractMethod<[], [string], "view">;
|
|
433
|
-
rTokenDecimals: TypedContractMethod<[], [bigint], "view">;
|
|
434
|
-
raacToken: TypedContractMethod<[], [string], "view">;
|
|
435
569
|
removeManager: TypedContractMethod<[
|
|
436
570
|
manager: AddressLike
|
|
437
571
|
], [
|
|
438
572
|
void
|
|
439
573
|
], "nonpayable">;
|
|
440
574
|
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
575
|
+
requestWithdraw: TypedContractMethod<[
|
|
576
|
+
amount: BigNumberish
|
|
577
|
+
], [
|
|
578
|
+
void
|
|
579
|
+
], "nonpayable">;
|
|
441
580
|
rwaVault: TypedContractMethod<[], [string], "view">;
|
|
581
|
+
setFeeCollector: TypedContractMethod<[
|
|
582
|
+
_feeCollector: AddressLike
|
|
583
|
+
], [
|
|
584
|
+
void
|
|
585
|
+
], "nonpayable">;
|
|
442
586
|
setLiquidationStrategyProxy: TypedContractMethod<[
|
|
443
587
|
_liquidationProxy: AddressLike
|
|
444
588
|
], [
|
|
@@ -457,14 +601,18 @@ export interface StabilityPool extends BaseContract {
|
|
|
457
601
|
], [
|
|
458
602
|
void
|
|
459
603
|
], "nonpayable">;
|
|
460
|
-
|
|
461
|
-
|
|
604
|
+
setRWAVault: TypedContractMethod<[
|
|
605
|
+
_rwaVault: AddressLike
|
|
606
|
+
], [
|
|
607
|
+
void
|
|
608
|
+
], "nonpayable">;
|
|
609
|
+
setWithdrawTimelockDelay: TypedContractMethod<[
|
|
610
|
+
_withdrawTimelockDelay: BigNumberish
|
|
462
611
|
], [
|
|
463
612
|
void
|
|
464
613
|
], "nonpayable">;
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
_rwaVault: AddressLike
|
|
614
|
+
setWithdrawTimelockDuration: TypedContractMethod<[
|
|
615
|
+
_withdrawTimelockDuration: BigNumberish
|
|
468
616
|
], [
|
|
469
617
|
void
|
|
470
618
|
], "nonpayable">;
|
|
@@ -475,46 +623,76 @@ export interface StabilityPool extends BaseContract {
|
|
|
475
623
|
], "nonpayable">;
|
|
476
624
|
treasury: TypedContractMethod<[], [string], "view">;
|
|
477
625
|
unpause: TypedContractMethod<[], [void], "nonpayable">;
|
|
478
|
-
userDeposits: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
479
626
|
withdraw: TypedContractMethod<[
|
|
480
|
-
|
|
627
|
+
deTokenAmount: BigNumberish
|
|
481
628
|
], [
|
|
482
629
|
void
|
|
483
630
|
], "nonpayable">;
|
|
631
|
+
withdrawTimelock: TypedContractMethod<[
|
|
632
|
+
arg0: AddressLike
|
|
633
|
+
], [
|
|
634
|
+
[
|
|
635
|
+
bigint,
|
|
636
|
+
bigint,
|
|
637
|
+
bigint,
|
|
638
|
+
bigint,
|
|
639
|
+
bigint,
|
|
640
|
+
bigint
|
|
641
|
+
] & {
|
|
642
|
+
amount: bigint;
|
|
643
|
+
indexAtRequest: bigint;
|
|
644
|
+
balanceAtRequest: bigint;
|
|
645
|
+
userIndexAtRequest: bigint;
|
|
646
|
+
readyAt: bigint;
|
|
647
|
+
expireAt: bigint;
|
|
648
|
+
}
|
|
649
|
+
], "view">;
|
|
650
|
+
withdrawTimelockDelay: TypedContractMethod<[], [bigint], "view">;
|
|
651
|
+
withdrawTimelockDuration: TypedContractMethod<[], [bigint], "view">;
|
|
484
652
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
485
653
|
getFunction(nameOrSignature: "addManager"): TypedContractMethod<[manager: AddressLike], [void], "nonpayable">;
|
|
486
654
|
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
487
|
-
getFunction(nameOrSignature: "
|
|
488
|
-
|
|
489
|
-
|
|
655
|
+
getFunction(nameOrSignature: "collectDust"): TypedContractMethod<[
|
|
656
|
+
token: AddressLike,
|
|
657
|
+
recipient: AddressLike,
|
|
658
|
+
amount: BigNumberish
|
|
659
|
+
], [
|
|
660
|
+
void
|
|
661
|
+
], "nonpayable">;
|
|
490
662
|
getFunction(nameOrSignature: "complianceRegistry"): TypedContractMethod<[], [string], "view">;
|
|
491
663
|
getFunction(nameOrSignature: "crvUSDToken"): TypedContractMethod<[], [string], "view">;
|
|
492
664
|
getFunction(nameOrSignature: "deToken"): TypedContractMethod<[], [string], "view">;
|
|
493
|
-
getFunction(nameOrSignature: "
|
|
494
|
-
getFunction(nameOrSignature: "
|
|
665
|
+
getFunction(nameOrSignature: "deposit"): TypedContractMethod<[scaledAmount: BigNumberish], [void], "nonpayable">;
|
|
666
|
+
getFunction(nameOrSignature: "depositBlock"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
|
|
667
|
+
getFunction(nameOrSignature: "feeCollector"): TypedContractMethod<[], [string], "view">;
|
|
495
668
|
getFunction(nameOrSignature: "getManagerList"): TypedContractMethod<[], [string[]], "view">;
|
|
496
|
-
getFunction(nameOrSignature: "
|
|
669
|
+
getFunction(nameOrSignature: "getPoolIndex"): TypedContractMethod<[], [bigint], "view">;
|
|
670
|
+
getFunction(nameOrSignature: "getRawTotalDeposits"): TypedContractMethod<[], [bigint], "view">;
|
|
671
|
+
getFunction(nameOrSignature: "getScaledDeposit"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
497
672
|
getFunction(nameOrSignature: "getTotalDeposits"): TypedContractMethod<[], [bigint], "view">;
|
|
498
673
|
getFunction(nameOrSignature: "getUserDeposit"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
674
|
+
getFunction(nameOrSignature: "getUserIndex"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
|
|
499
675
|
getFunction(nameOrSignature: "initialize"): TypedContractMethod<[
|
|
500
676
|
_rToken: AddressLike,
|
|
501
677
|
_deToken: AddressLike,
|
|
502
|
-
_raacToken: AddressLike,
|
|
503
678
|
_crvUSDToken: AddressLike,
|
|
504
679
|
_lendingPool: AddressLike,
|
|
505
680
|
_treasury: AddressLike,
|
|
506
|
-
_liquidationStrategyProxy: AddressLike
|
|
681
|
+
_liquidationStrategyProxy: AddressLike,
|
|
682
|
+
_initialOwner: AddressLike
|
|
507
683
|
], [
|
|
508
684
|
void
|
|
509
685
|
], "nonpayable">;
|
|
510
686
|
getFunction(nameOrSignature: "isAddressManager"): TypedContractMethod<[manager: AddressLike], [boolean], "view">;
|
|
511
687
|
getFunction(nameOrSignature: "isManager"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
|
|
688
|
+
getFunction(nameOrSignature: "isUserDepositInSameBlock"): TypedContractMethod<[user: AddressLike], [boolean], "view">;
|
|
512
689
|
getFunction(nameOrSignature: "lendingPool"): TypedContractMethod<[], [string], "view">;
|
|
513
690
|
getFunction(nameOrSignature: "liquidateBorrower"): TypedContractMethod<[
|
|
514
691
|
poolAdapter: AddressLike,
|
|
515
692
|
vaultAdapter: AddressLike,
|
|
516
693
|
user: AddressLike,
|
|
517
|
-
data: BytesLike
|
|
694
|
+
data: BytesLike,
|
|
695
|
+
minSharesOut: BigNumberish
|
|
518
696
|
], [
|
|
519
697
|
void
|
|
520
698
|
], "nonpayable">;
|
|
@@ -534,9 +712,7 @@ export interface StabilityPool extends BaseContract {
|
|
|
534
712
|
], "view">;
|
|
535
713
|
getFunction(nameOrSignature: "liquidationStrategyProxy"): TypedContractMethod<[], [string], "view">;
|
|
536
714
|
getFunction(nameOrSignature: "liquidationSwap"): TypedContractMethod<[], [string], "view">;
|
|
537
|
-
getFunction(nameOrSignature: "liquidityGauge"): TypedContractMethod<[], [string], "view">;
|
|
538
715
|
getFunction(nameOrSignature: "managerList"): TypedContractMethod<[arg0: BigNumberish], [string], "view">;
|
|
539
|
-
getFunction(nameOrSignature: "minter"): TypedContractMethod<[], [string], "view">;
|
|
540
716
|
getFunction(nameOrSignature: "onERC721Received"): TypedContractMethod<[
|
|
541
717
|
arg0: AddressLike,
|
|
542
718
|
arg1: AddressLike,
|
|
@@ -549,11 +725,11 @@ export interface StabilityPool extends BaseContract {
|
|
|
549
725
|
getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
550
726
|
getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
|
|
551
727
|
getFunction(nameOrSignature: "rToken"): TypedContractMethod<[], [string], "view">;
|
|
552
|
-
getFunction(nameOrSignature: "rTokenDecimals"): TypedContractMethod<[], [bigint], "view">;
|
|
553
|
-
getFunction(nameOrSignature: "raacToken"): TypedContractMethod<[], [string], "view">;
|
|
554
728
|
getFunction(nameOrSignature: "removeManager"): TypedContractMethod<[manager: AddressLike], [void], "nonpayable">;
|
|
555
729
|
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
730
|
+
getFunction(nameOrSignature: "requestWithdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
|
|
556
731
|
getFunction(nameOrSignature: "rwaVault"): TypedContractMethod<[], [string], "view">;
|
|
732
|
+
getFunction(nameOrSignature: "setFeeCollector"): TypedContractMethod<[_feeCollector: AddressLike], [void], "nonpayable">;
|
|
557
733
|
getFunction(nameOrSignature: "setLiquidationStrategyProxy"): TypedContractMethod<[
|
|
558
734
|
_liquidationProxy: AddressLike
|
|
559
735
|
], [
|
|
@@ -568,19 +744,51 @@ export interface StabilityPool extends BaseContract {
|
|
|
568
744
|
], [
|
|
569
745
|
void
|
|
570
746
|
], "nonpayable">;
|
|
571
|
-
getFunction(nameOrSignature: "setLiquidityGauge"): TypedContractMethod<[_liquidityGauge: AddressLike], [void], "nonpayable">;
|
|
572
|
-
getFunction(nameOrSignature: "setMinter"): TypedContractMethod<[_minter: AddressLike], [void], "nonpayable">;
|
|
573
747
|
getFunction(nameOrSignature: "setRWAVault"): TypedContractMethod<[_rwaVault: AddressLike], [void], "nonpayable">;
|
|
748
|
+
getFunction(nameOrSignature: "setWithdrawTimelockDelay"): TypedContractMethod<[
|
|
749
|
+
_withdrawTimelockDelay: BigNumberish
|
|
750
|
+
], [
|
|
751
|
+
void
|
|
752
|
+
], "nonpayable">;
|
|
753
|
+
getFunction(nameOrSignature: "setWithdrawTimelockDuration"): TypedContractMethod<[
|
|
754
|
+
_withdrawTimelockDuration: BigNumberish
|
|
755
|
+
], [
|
|
756
|
+
void
|
|
757
|
+
], "nonpayable">;
|
|
574
758
|
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
575
759
|
getFunction(nameOrSignature: "treasury"): TypedContractMethod<[], [string], "view">;
|
|
576
760
|
getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
|
|
577
|
-
getFunction(nameOrSignature: "
|
|
578
|
-
getFunction(nameOrSignature: "
|
|
761
|
+
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[deTokenAmount: BigNumberish], [void], "nonpayable">;
|
|
762
|
+
getFunction(nameOrSignature: "withdrawTimelock"): TypedContractMethod<[
|
|
763
|
+
arg0: AddressLike
|
|
764
|
+
], [
|
|
765
|
+
[
|
|
766
|
+
bigint,
|
|
767
|
+
bigint,
|
|
768
|
+
bigint,
|
|
769
|
+
bigint,
|
|
770
|
+
bigint,
|
|
771
|
+
bigint
|
|
772
|
+
] & {
|
|
773
|
+
amount: bigint;
|
|
774
|
+
indexAtRequest: bigint;
|
|
775
|
+
balanceAtRequest: bigint;
|
|
776
|
+
userIndexAtRequest: bigint;
|
|
777
|
+
readyAt: bigint;
|
|
778
|
+
expireAt: bigint;
|
|
779
|
+
}
|
|
780
|
+
], "view">;
|
|
781
|
+
getFunction(nameOrSignature: "withdrawTimelockDelay"): TypedContractMethod<[], [bigint], "view">;
|
|
782
|
+
getFunction(nameOrSignature: "withdrawTimelockDuration"): TypedContractMethod<[], [bigint], "view">;
|
|
579
783
|
getEvent(key: "AllocationUpdated"): TypedContractEvent<AllocationUpdatedEvent.InputTuple, AllocationUpdatedEvent.OutputTuple, AllocationUpdatedEvent.OutputObject>;
|
|
580
784
|
getEvent(key: "BorrowerLiquidated"): TypedContractEvent<BorrowerLiquidatedEvent.InputTuple, BorrowerLiquidatedEvent.OutputTuple, BorrowerLiquidatedEvent.OutputObject>;
|
|
581
785
|
getEvent(key: "Deposit"): TypedContractEvent<DepositEvent.InputTuple, DepositEvent.OutputTuple, DepositEvent.OutputObject>;
|
|
786
|
+
getEvent(key: "DustCollected"): TypedContractEvent<DustCollectedEvent.InputTuple, DustCollectedEvent.OutputTuple, DustCollectedEvent.OutputObject>;
|
|
787
|
+
getEvent(key: "FeeCollectorUpdated"): TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
|
|
582
788
|
getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
583
789
|
getEvent(key: "LiquidationStrategyProxyUpdated"): TypedContractEvent<LiquidationStrategyProxyUpdatedEvent.InputTuple, LiquidationStrategyProxyUpdatedEvent.OutputTuple, LiquidationStrategyProxyUpdatedEvent.OutputObject>;
|
|
790
|
+
getEvent(key: "LiquidationSwapUpdated"): TypedContractEvent<LiquidationSwapUpdatedEvent.InputTuple, LiquidationSwapUpdatedEvent.OutputTuple, LiquidationSwapUpdatedEvent.OutputObject>;
|
|
791
|
+
getEvent(key: "LiquidationVaultTokenSplitUpdated"): TypedContractEvent<LiquidationVaultTokenSplitUpdatedEvent.InputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputObject>;
|
|
584
792
|
getEvent(key: "LiquidityPoolSet"): TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
585
793
|
getEvent(key: "ManagerAdded"): TypedContractEvent<ManagerAddedEvent.InputTuple, ManagerAddedEvent.OutputTuple, ManagerAddedEvent.OutputObject>;
|
|
586
794
|
getEvent(key: "ManagerRemoved"): TypedContractEvent<ManagerRemovedEvent.InputTuple, ManagerRemovedEvent.OutputTuple, ManagerRemovedEvent.OutputObject>;
|
|
@@ -591,8 +799,13 @@ export interface StabilityPool extends BaseContract {
|
|
|
591
799
|
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
592
800
|
getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
593
801
|
getEvent(key: "RAACDepositedFromPool"): TypedContractEvent<RAACDepositedFromPoolEvent.InputTuple, RAACDepositedFromPoolEvent.OutputTuple, RAACDepositedFromPoolEvent.OutputObject>;
|
|
802
|
+
getEvent(key: "RWAVaultUpdated"): TypedContractEvent<RWAVaultUpdatedEvent.InputTuple, RWAVaultUpdatedEvent.OutputTuple, RWAVaultUpdatedEvent.OutputObject>;
|
|
594
803
|
getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
595
804
|
getEvent(key: "Withdraw"): TypedContractEvent<WithdrawEvent.InputTuple, WithdrawEvent.OutputTuple, WithdrawEvent.OutputObject>;
|
|
805
|
+
getEvent(key: "WithdrawCancelled"): TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
806
|
+
getEvent(key: "WithdrawQueued"): TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
807
|
+
getEvent(key: "WithdrawTimelockDelayUpdated"): TypedContractEvent<WithdrawTimelockDelayUpdatedEvent.InputTuple, WithdrawTimelockDelayUpdatedEvent.OutputTuple, WithdrawTimelockDelayUpdatedEvent.OutputObject>;
|
|
808
|
+
getEvent(key: "WithdrawTimelockDurationUpdated"): TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
596
809
|
filters: {
|
|
597
810
|
"AllocationUpdated(address,uint256)": TypedContractEvent<AllocationUpdatedEvent.InputTuple, AllocationUpdatedEvent.OutputTuple, AllocationUpdatedEvent.OutputObject>;
|
|
598
811
|
AllocationUpdated: TypedContractEvent<AllocationUpdatedEvent.InputTuple, AllocationUpdatedEvent.OutputTuple, AllocationUpdatedEvent.OutputObject>;
|
|
@@ -600,10 +813,18 @@ export interface StabilityPool extends BaseContract {
|
|
|
600
813
|
BorrowerLiquidated: TypedContractEvent<BorrowerLiquidatedEvent.InputTuple, BorrowerLiquidatedEvent.OutputTuple, BorrowerLiquidatedEvent.OutputObject>;
|
|
601
814
|
"Deposit(address,uint256,uint256)": TypedContractEvent<DepositEvent.InputTuple, DepositEvent.OutputTuple, DepositEvent.OutputObject>;
|
|
602
815
|
Deposit: TypedContractEvent<DepositEvent.InputTuple, DepositEvent.OutputTuple, DepositEvent.OutputObject>;
|
|
816
|
+
"DustCollected(address,address,uint256)": TypedContractEvent<DustCollectedEvent.InputTuple, DustCollectedEvent.OutputTuple, DustCollectedEvent.OutputObject>;
|
|
817
|
+
DustCollected: TypedContractEvent<DustCollectedEvent.InputTuple, DustCollectedEvent.OutputTuple, DustCollectedEvent.OutputObject>;
|
|
818
|
+
"FeeCollectorUpdated(address,address)": TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
|
|
819
|
+
FeeCollectorUpdated: TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
|
|
603
820
|
"Initialized(uint64)": TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
604
821
|
Initialized: TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
|
|
605
822
|
"LiquidationStrategyProxyUpdated(address,address)": TypedContractEvent<LiquidationStrategyProxyUpdatedEvent.InputTuple, LiquidationStrategyProxyUpdatedEvent.OutputTuple, LiquidationStrategyProxyUpdatedEvent.OutputObject>;
|
|
606
823
|
LiquidationStrategyProxyUpdated: TypedContractEvent<LiquidationStrategyProxyUpdatedEvent.InputTuple, LiquidationStrategyProxyUpdatedEvent.OutputTuple, LiquidationStrategyProxyUpdatedEvent.OutputObject>;
|
|
824
|
+
"LiquidationSwapUpdated(address,address)": TypedContractEvent<LiquidationSwapUpdatedEvent.InputTuple, LiquidationSwapUpdatedEvent.OutputTuple, LiquidationSwapUpdatedEvent.OutputObject>;
|
|
825
|
+
LiquidationSwapUpdated: TypedContractEvent<LiquidationSwapUpdatedEvent.InputTuple, LiquidationSwapUpdatedEvent.OutputTuple, LiquidationSwapUpdatedEvent.OutputObject>;
|
|
826
|
+
"LiquidationVaultTokenSplitUpdated(uint256,uint256,uint256,uint256)": TypedContractEvent<LiquidationVaultTokenSplitUpdatedEvent.InputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputObject>;
|
|
827
|
+
LiquidationVaultTokenSplitUpdated: TypedContractEvent<LiquidationVaultTokenSplitUpdatedEvent.InputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputTuple, LiquidationVaultTokenSplitUpdatedEvent.OutputObject>;
|
|
607
828
|
"LiquidityPoolSet(address)": TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
608
829
|
LiquidityPoolSet: TypedContractEvent<LiquidityPoolSetEvent.InputTuple, LiquidityPoolSetEvent.OutputTuple, LiquidityPoolSetEvent.OutputObject>;
|
|
609
830
|
"ManagerAdded(address)": TypedContractEvent<ManagerAddedEvent.InputTuple, ManagerAddedEvent.OutputTuple, ManagerAddedEvent.OutputObject>;
|
|
@@ -624,9 +845,19 @@ export interface StabilityPool extends BaseContract {
|
|
|
624
845
|
Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
|
|
625
846
|
"RAACDepositedFromPool(address,uint256)": TypedContractEvent<RAACDepositedFromPoolEvent.InputTuple, RAACDepositedFromPoolEvent.OutputTuple, RAACDepositedFromPoolEvent.OutputObject>;
|
|
626
847
|
RAACDepositedFromPool: TypedContractEvent<RAACDepositedFromPoolEvent.InputTuple, RAACDepositedFromPoolEvent.OutputTuple, RAACDepositedFromPoolEvent.OutputObject>;
|
|
848
|
+
"RWAVaultUpdated(address,address)": TypedContractEvent<RWAVaultUpdatedEvent.InputTuple, RWAVaultUpdatedEvent.OutputTuple, RWAVaultUpdatedEvent.OutputObject>;
|
|
849
|
+
RWAVaultUpdated: TypedContractEvent<RWAVaultUpdatedEvent.InputTuple, RWAVaultUpdatedEvent.OutputTuple, RWAVaultUpdatedEvent.OutputObject>;
|
|
627
850
|
"Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
628
851
|
Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
|
|
629
|
-
"Withdraw(address,uint256,uint256
|
|
852
|
+
"Withdraw(address,uint256,uint256)": TypedContractEvent<WithdrawEvent.InputTuple, WithdrawEvent.OutputTuple, WithdrawEvent.OutputObject>;
|
|
630
853
|
Withdraw: TypedContractEvent<WithdrawEvent.InputTuple, WithdrawEvent.OutputTuple, WithdrawEvent.OutputObject>;
|
|
854
|
+
"WithdrawCancelled(address)": TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
855
|
+
WithdrawCancelled: TypedContractEvent<WithdrawCancelledEvent.InputTuple, WithdrawCancelledEvent.OutputTuple, WithdrawCancelledEvent.OutputObject>;
|
|
856
|
+
"WithdrawQueued(address,uint256,uint256)": TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
857
|
+
WithdrawQueued: TypedContractEvent<WithdrawQueuedEvent.InputTuple, WithdrawQueuedEvent.OutputTuple, WithdrawQueuedEvent.OutputObject>;
|
|
858
|
+
"WithdrawTimelockDelayUpdated(uint256,uint256)": TypedContractEvent<WithdrawTimelockDelayUpdatedEvent.InputTuple, WithdrawTimelockDelayUpdatedEvent.OutputTuple, WithdrawTimelockDelayUpdatedEvent.OutputObject>;
|
|
859
|
+
WithdrawTimelockDelayUpdated: TypedContractEvent<WithdrawTimelockDelayUpdatedEvent.InputTuple, WithdrawTimelockDelayUpdatedEvent.OutputTuple, WithdrawTimelockDelayUpdatedEvent.OutputObject>;
|
|
860
|
+
"WithdrawTimelockDurationUpdated(uint256,uint256)": TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
861
|
+
WithdrawTimelockDurationUpdated: TypedContractEvent<WithdrawTimelockDurationUpdatedEvent.InputTuple, WithdrawTimelockDurationUpdatedEvent.OutputTuple, WithdrawTimelockDurationUpdatedEvent.OutputObject>;
|
|
631
862
|
};
|
|
632
863
|
}
|