@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,14 +1,14 @@
|
|
|
1
1
|
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
2
|
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
|
-
export interface
|
|
4
|
-
getFunction(nameOrSignature: "
|
|
5
|
-
encodeFunctionData(functionFragment: "
|
|
6
|
-
decodeFunctionResult(functionFragment: "
|
|
3
|
+
export interface ICrvUsdCurveOracleInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "price_oracle"): FunctionFragment;
|
|
5
|
+
encodeFunctionData(functionFragment: "price_oracle", values: [BigNumberish]): string;
|
|
6
|
+
decodeFunctionResult(functionFragment: "price_oracle", data: BytesLike): Result;
|
|
7
7
|
}
|
|
8
|
-
export interface
|
|
9
|
-
connect(runner?: ContractRunner | null):
|
|
8
|
+
export interface ICrvUsdCurveOracle extends BaseContract {
|
|
9
|
+
connect(runner?: ContractRunner | null): ICrvUsdCurveOracle;
|
|
10
10
|
waitForDeployment(): Promise<this>;
|
|
11
|
-
interface:
|
|
11
|
+
interface: ICrvUsdCurveOracleInterface;
|
|
12
12
|
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
13
13
|
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
14
14
|
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
@@ -18,8 +18,8 @@ export interface IVMTimeControl extends BaseContract {
|
|
|
18
18
|
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
19
19
|
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
20
20
|
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
21
|
-
|
|
21
|
+
price_oracle: TypedContractMethod<[k: BigNumberish], [bigint], "view">;
|
|
22
22
|
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
23
|
-
getFunction(nameOrSignature: "
|
|
23
|
+
getFunction(nameOrSignature: "price_oracle"): TypedContractMethod<[k: BigNumberish], [bigint], "view">;
|
|
24
24
|
filters: {};
|
|
25
25
|
}
|
|
@@ -1,43 +1,84 @@
|
|
|
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 RAACHousePriceOracleInterface extends Interface {
|
|
4
|
-
getFunction(nameOrSignature: "acceptOwnership" | "donId" | "handleOracleFulfillment" | "housePrices" | "owner" | "requestToHouseId" | "s_lastError" | "s_lastRequestId" | "s_lastResponse" | "s_requestIds" | "sendRequest" | "
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "HousePriceRequestSent" | "HousePriceUpdated" | "OracleRequestSent" | "OwnershipTransferRequested" | "OwnershipTransferred" | "RequestFulfilled" | "RequestSent"): EventFragment;
|
|
4
|
+
getFunction(nameOrSignature: "acceptOwnership" | "donId" | "handleOracleFulfillment" | "housePrices" | "isPendingRequest" | "owner" | "pendingRequest" | "raacNFT" | "requestToHouseId" | "s_callbackGasLimit" | "s_encryptedSecretsReference" | "s_lastError" | "s_lastRequestId" | "s_lastResponse" | "s_requestIds" | "s_secretsLocation" | "s_source" | "s_subscriptionId" | "sendRequest" | "setCallbackGasLimit" | "setEncryptedSecretsReference" | "setSubscriptionId" | "transferOwnership"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "CallbackGasLimitUpdated" | "EncryptedSecretsReferenceUpdated" | "HousePriceRequestSent" | "HousePriceUpdated" | "OracleRequestSent" | "OwnershipTransferRequested" | "OwnershipTransferred" | "RequestFulfilled" | "RequestSent" | "SubscriptionIdUpdated"): EventFragment;
|
|
6
6
|
encodeFunctionData(functionFragment: "acceptOwnership", values?: undefined): string;
|
|
7
7
|
encodeFunctionData(functionFragment: "donId", values?: undefined): string;
|
|
8
8
|
encodeFunctionData(functionFragment: "handleOracleFulfillment", values: [BytesLike, BytesLike, BytesLike]): string;
|
|
9
9
|
encodeFunctionData(functionFragment: "housePrices", values?: undefined): string;
|
|
10
|
+
encodeFunctionData(functionFragment: "isPendingRequest", values: [BigNumberish]): string;
|
|
10
11
|
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
12
|
+
encodeFunctionData(functionFragment: "pendingRequest", values: [BigNumberish]): string;
|
|
13
|
+
encodeFunctionData(functionFragment: "raacNFT", values?: undefined): string;
|
|
11
14
|
encodeFunctionData(functionFragment: "requestToHouseId", values: [BytesLike]): string;
|
|
15
|
+
encodeFunctionData(functionFragment: "s_callbackGasLimit", values?: undefined): string;
|
|
16
|
+
encodeFunctionData(functionFragment: "s_encryptedSecretsReference", values?: undefined): string;
|
|
12
17
|
encodeFunctionData(functionFragment: "s_lastError", values?: undefined): string;
|
|
13
18
|
encodeFunctionData(functionFragment: "s_lastRequestId", values?: undefined): string;
|
|
14
19
|
encodeFunctionData(functionFragment: "s_lastResponse", values?: undefined): string;
|
|
15
20
|
encodeFunctionData(functionFragment: "s_requestIds", values: [BytesLike]): string;
|
|
16
|
-
encodeFunctionData(functionFragment: "
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
BigNumberish
|
|
24
|
-
]): string;
|
|
25
|
-
encodeFunctionData(functionFragment: "setDonId", values: [BytesLike]): string;
|
|
21
|
+
encodeFunctionData(functionFragment: "s_secretsLocation", values?: undefined): string;
|
|
22
|
+
encodeFunctionData(functionFragment: "s_source", values?: undefined): string;
|
|
23
|
+
encodeFunctionData(functionFragment: "s_subscriptionId", values?: undefined): string;
|
|
24
|
+
encodeFunctionData(functionFragment: "sendRequest", values: [string[], BytesLike[]]): string;
|
|
25
|
+
encodeFunctionData(functionFragment: "setCallbackGasLimit", values: [BigNumberish]): string;
|
|
26
|
+
encodeFunctionData(functionFragment: "setEncryptedSecretsReference", values: [BigNumberish, BytesLike]): string;
|
|
27
|
+
encodeFunctionData(functionFragment: "setSubscriptionId", values: [BigNumberish]): string;
|
|
26
28
|
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
27
29
|
decodeFunctionResult(functionFragment: "acceptOwnership", data: BytesLike): Result;
|
|
28
30
|
decodeFunctionResult(functionFragment: "donId", data: BytesLike): Result;
|
|
29
31
|
decodeFunctionResult(functionFragment: "handleOracleFulfillment", data: BytesLike): Result;
|
|
30
32
|
decodeFunctionResult(functionFragment: "housePrices", data: BytesLike): Result;
|
|
33
|
+
decodeFunctionResult(functionFragment: "isPendingRequest", data: BytesLike): Result;
|
|
31
34
|
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
35
|
+
decodeFunctionResult(functionFragment: "pendingRequest", data: BytesLike): Result;
|
|
36
|
+
decodeFunctionResult(functionFragment: "raacNFT", data: BytesLike): Result;
|
|
32
37
|
decodeFunctionResult(functionFragment: "requestToHouseId", data: BytesLike): Result;
|
|
38
|
+
decodeFunctionResult(functionFragment: "s_callbackGasLimit", data: BytesLike): Result;
|
|
39
|
+
decodeFunctionResult(functionFragment: "s_encryptedSecretsReference", data: BytesLike): Result;
|
|
33
40
|
decodeFunctionResult(functionFragment: "s_lastError", data: BytesLike): Result;
|
|
34
41
|
decodeFunctionResult(functionFragment: "s_lastRequestId", data: BytesLike): Result;
|
|
35
42
|
decodeFunctionResult(functionFragment: "s_lastResponse", data: BytesLike): Result;
|
|
36
43
|
decodeFunctionResult(functionFragment: "s_requestIds", data: BytesLike): Result;
|
|
44
|
+
decodeFunctionResult(functionFragment: "s_secretsLocation", data: BytesLike): Result;
|
|
45
|
+
decodeFunctionResult(functionFragment: "s_source", data: BytesLike): Result;
|
|
46
|
+
decodeFunctionResult(functionFragment: "s_subscriptionId", data: BytesLike): Result;
|
|
37
47
|
decodeFunctionResult(functionFragment: "sendRequest", data: BytesLike): Result;
|
|
38
|
-
decodeFunctionResult(functionFragment: "
|
|
48
|
+
decodeFunctionResult(functionFragment: "setCallbackGasLimit", data: BytesLike): Result;
|
|
49
|
+
decodeFunctionResult(functionFragment: "setEncryptedSecretsReference", data: BytesLike): Result;
|
|
50
|
+
decodeFunctionResult(functionFragment: "setSubscriptionId", data: BytesLike): Result;
|
|
39
51
|
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
40
52
|
}
|
|
53
|
+
export declare namespace CallbackGasLimitUpdatedEvent {
|
|
54
|
+
type InputTuple = [newCallbackGasLimit: BigNumberish];
|
|
55
|
+
type OutputTuple = [newCallbackGasLimit: bigint];
|
|
56
|
+
interface OutputObject {
|
|
57
|
+
newCallbackGasLimit: bigint;
|
|
58
|
+
}
|
|
59
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
60
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
61
|
+
type Log = TypedEventLog<Event>;
|
|
62
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
63
|
+
}
|
|
64
|
+
export declare namespace EncryptedSecretsReferenceUpdatedEvent {
|
|
65
|
+
type InputTuple = [
|
|
66
|
+
newSecretsLocation: BigNumberish,
|
|
67
|
+
newEncryptedSecretsReference: BytesLike
|
|
68
|
+
];
|
|
69
|
+
type OutputTuple = [
|
|
70
|
+
newSecretsLocation: bigint,
|
|
71
|
+
newEncryptedSecretsReference: string
|
|
72
|
+
];
|
|
73
|
+
interface OutputObject {
|
|
74
|
+
newSecretsLocation: bigint;
|
|
75
|
+
newEncryptedSecretsReference: string;
|
|
76
|
+
}
|
|
77
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
78
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
79
|
+
type Log = TypedEventLog<Event>;
|
|
80
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
81
|
+
}
|
|
41
82
|
export declare namespace HousePriceRequestSentEvent {
|
|
42
83
|
type InputTuple = [requestId: BytesLike, houseId: BigNumberish];
|
|
43
84
|
type OutputTuple = [requestId: string, houseId: bigint];
|
|
@@ -119,6 +160,17 @@ export declare namespace RequestSentEvent {
|
|
|
119
160
|
type Log = TypedEventLog<Event>;
|
|
120
161
|
type LogDescription = TypedLogDescription<Event>;
|
|
121
162
|
}
|
|
163
|
+
export declare namespace SubscriptionIdUpdatedEvent {
|
|
164
|
+
type InputTuple = [newSubscriptionId: BigNumberish];
|
|
165
|
+
type OutputTuple = [newSubscriptionId: bigint];
|
|
166
|
+
interface OutputObject {
|
|
167
|
+
newSubscriptionId: bigint;
|
|
168
|
+
}
|
|
169
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
170
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
171
|
+
type Log = TypedEventLog<Event>;
|
|
172
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
173
|
+
}
|
|
122
174
|
export interface RAACHousePriceOracle extends BaseContract {
|
|
123
175
|
connect(runner?: ContractRunner | null): RAACHousePriceOracle;
|
|
124
176
|
waitForDeployment(): Promise<this>;
|
|
@@ -142,24 +194,46 @@ export interface RAACHousePriceOracle extends BaseContract {
|
|
|
142
194
|
void
|
|
143
195
|
], "nonpayable">;
|
|
144
196
|
housePrices: TypedContractMethod<[], [string], "view">;
|
|
197
|
+
isPendingRequest: TypedContractMethod<[
|
|
198
|
+
houseId: BigNumberish
|
|
199
|
+
], [
|
|
200
|
+
boolean
|
|
201
|
+
], "view">;
|
|
145
202
|
owner: TypedContractMethod<[], [string], "view">;
|
|
203
|
+
pendingRequest: TypedContractMethod<[arg0: BigNumberish], [boolean], "view">;
|
|
204
|
+
raacNFT: TypedContractMethod<[], [string], "view">;
|
|
146
205
|
requestToHouseId: TypedContractMethod<[arg0: BytesLike], [bigint], "view">;
|
|
206
|
+
s_callbackGasLimit: TypedContractMethod<[], [bigint], "view">;
|
|
207
|
+
s_encryptedSecretsReference: TypedContractMethod<[], [string], "view">;
|
|
147
208
|
s_lastError: TypedContractMethod<[], [string], "view">;
|
|
148
209
|
s_lastRequestId: TypedContractMethod<[], [string], "view">;
|
|
149
210
|
s_lastResponse: TypedContractMethod<[], [string], "view">;
|
|
150
211
|
s_requestIds: TypedContractMethod<[arg0: BytesLike], [boolean], "view">;
|
|
212
|
+
s_secretsLocation: TypedContractMethod<[], [bigint], "view">;
|
|
213
|
+
s_source: TypedContractMethod<[], [string], "view">;
|
|
214
|
+
s_subscriptionId: TypedContractMethod<[], [bigint], "view">;
|
|
151
215
|
sendRequest: TypedContractMethod<[
|
|
152
|
-
source: string,
|
|
153
|
-
secretsLocation: BigNumberish,
|
|
154
|
-
encryptedSecretsReference: BytesLike,
|
|
155
216
|
args: string[],
|
|
156
|
-
bytesArgs: BytesLike[]
|
|
157
|
-
subscriptionId: BigNumberish,
|
|
158
|
-
callbackGasLimit: BigNumberish
|
|
217
|
+
bytesArgs: BytesLike[]
|
|
159
218
|
], [
|
|
160
219
|
string
|
|
161
220
|
], "nonpayable">;
|
|
162
|
-
|
|
221
|
+
setCallbackGasLimit: TypedContractMethod<[
|
|
222
|
+
newCallbackGasLimit: BigNumberish
|
|
223
|
+
], [
|
|
224
|
+
void
|
|
225
|
+
], "nonpayable">;
|
|
226
|
+
setEncryptedSecretsReference: TypedContractMethod<[
|
|
227
|
+
newSecretsLocation: BigNumberish,
|
|
228
|
+
newEncryptedSecretsReference: BytesLike
|
|
229
|
+
], [
|
|
230
|
+
void
|
|
231
|
+
], "nonpayable">;
|
|
232
|
+
setSubscriptionId: TypedContractMethod<[
|
|
233
|
+
newSubscriptionId: BigNumberish
|
|
234
|
+
], [
|
|
235
|
+
void
|
|
236
|
+
], "nonpayable">;
|
|
163
237
|
transferOwnership: TypedContractMethod<[
|
|
164
238
|
to: AddressLike
|
|
165
239
|
], [
|
|
@@ -176,25 +250,45 @@ export interface RAACHousePriceOracle extends BaseContract {
|
|
|
176
250
|
void
|
|
177
251
|
], "nonpayable">;
|
|
178
252
|
getFunction(nameOrSignature: "housePrices"): TypedContractMethod<[], [string], "view">;
|
|
253
|
+
getFunction(nameOrSignature: "isPendingRequest"): TypedContractMethod<[houseId: BigNumberish], [boolean], "view">;
|
|
179
254
|
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
255
|
+
getFunction(nameOrSignature: "pendingRequest"): TypedContractMethod<[arg0: BigNumberish], [boolean], "view">;
|
|
256
|
+
getFunction(nameOrSignature: "raacNFT"): TypedContractMethod<[], [string], "view">;
|
|
180
257
|
getFunction(nameOrSignature: "requestToHouseId"): TypedContractMethod<[arg0: BytesLike], [bigint], "view">;
|
|
258
|
+
getFunction(nameOrSignature: "s_callbackGasLimit"): TypedContractMethod<[], [bigint], "view">;
|
|
259
|
+
getFunction(nameOrSignature: "s_encryptedSecretsReference"): TypedContractMethod<[], [string], "view">;
|
|
181
260
|
getFunction(nameOrSignature: "s_lastError"): TypedContractMethod<[], [string], "view">;
|
|
182
261
|
getFunction(nameOrSignature: "s_lastRequestId"): TypedContractMethod<[], [string], "view">;
|
|
183
262
|
getFunction(nameOrSignature: "s_lastResponse"): TypedContractMethod<[], [string], "view">;
|
|
184
263
|
getFunction(nameOrSignature: "s_requestIds"): TypedContractMethod<[arg0: BytesLike], [boolean], "view">;
|
|
264
|
+
getFunction(nameOrSignature: "s_secretsLocation"): TypedContractMethod<[], [bigint], "view">;
|
|
265
|
+
getFunction(nameOrSignature: "s_source"): TypedContractMethod<[], [string], "view">;
|
|
266
|
+
getFunction(nameOrSignature: "s_subscriptionId"): TypedContractMethod<[], [bigint], "view">;
|
|
185
267
|
getFunction(nameOrSignature: "sendRequest"): TypedContractMethod<[
|
|
186
|
-
source: string,
|
|
187
|
-
secretsLocation: BigNumberish,
|
|
188
|
-
encryptedSecretsReference: BytesLike,
|
|
189
268
|
args: string[],
|
|
190
|
-
bytesArgs: BytesLike[]
|
|
191
|
-
subscriptionId: BigNumberish,
|
|
192
|
-
callbackGasLimit: BigNumberish
|
|
269
|
+
bytesArgs: BytesLike[]
|
|
193
270
|
], [
|
|
194
271
|
string
|
|
195
272
|
], "nonpayable">;
|
|
196
|
-
getFunction(nameOrSignature: "
|
|
273
|
+
getFunction(nameOrSignature: "setCallbackGasLimit"): TypedContractMethod<[
|
|
274
|
+
newCallbackGasLimit: BigNumberish
|
|
275
|
+
], [
|
|
276
|
+
void
|
|
277
|
+
], "nonpayable">;
|
|
278
|
+
getFunction(nameOrSignature: "setEncryptedSecretsReference"): TypedContractMethod<[
|
|
279
|
+
newSecretsLocation: BigNumberish,
|
|
280
|
+
newEncryptedSecretsReference: BytesLike
|
|
281
|
+
], [
|
|
282
|
+
void
|
|
283
|
+
], "nonpayable">;
|
|
284
|
+
getFunction(nameOrSignature: "setSubscriptionId"): TypedContractMethod<[
|
|
285
|
+
newSubscriptionId: BigNumberish
|
|
286
|
+
], [
|
|
287
|
+
void
|
|
288
|
+
], "nonpayable">;
|
|
197
289
|
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[to: AddressLike], [void], "nonpayable">;
|
|
290
|
+
getEvent(key: "CallbackGasLimitUpdated"): TypedContractEvent<CallbackGasLimitUpdatedEvent.InputTuple, CallbackGasLimitUpdatedEvent.OutputTuple, CallbackGasLimitUpdatedEvent.OutputObject>;
|
|
291
|
+
getEvent(key: "EncryptedSecretsReferenceUpdated"): TypedContractEvent<EncryptedSecretsReferenceUpdatedEvent.InputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputObject>;
|
|
198
292
|
getEvent(key: "HousePriceRequestSent"): TypedContractEvent<HousePriceRequestSentEvent.InputTuple, HousePriceRequestSentEvent.OutputTuple, HousePriceRequestSentEvent.OutputObject>;
|
|
199
293
|
getEvent(key: "HousePriceUpdated"): TypedContractEvent<HousePriceUpdatedEvent.InputTuple, HousePriceUpdatedEvent.OutputTuple, HousePriceUpdatedEvent.OutputObject>;
|
|
200
294
|
getEvent(key: "OracleRequestSent"): TypedContractEvent<OracleRequestSentEvent.InputTuple, OracleRequestSentEvent.OutputTuple, OracleRequestSentEvent.OutputObject>;
|
|
@@ -202,7 +296,12 @@ export interface RAACHousePriceOracle extends BaseContract {
|
|
|
202
296
|
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
203
297
|
getEvent(key: "RequestFulfilled"): TypedContractEvent<RequestFulfilledEvent.InputTuple, RequestFulfilledEvent.OutputTuple, RequestFulfilledEvent.OutputObject>;
|
|
204
298
|
getEvent(key: "RequestSent"): TypedContractEvent<RequestSentEvent.InputTuple, RequestSentEvent.OutputTuple, RequestSentEvent.OutputObject>;
|
|
299
|
+
getEvent(key: "SubscriptionIdUpdated"): TypedContractEvent<SubscriptionIdUpdatedEvent.InputTuple, SubscriptionIdUpdatedEvent.OutputTuple, SubscriptionIdUpdatedEvent.OutputObject>;
|
|
205
300
|
filters: {
|
|
301
|
+
"CallbackGasLimitUpdated(uint32)": TypedContractEvent<CallbackGasLimitUpdatedEvent.InputTuple, CallbackGasLimitUpdatedEvent.OutputTuple, CallbackGasLimitUpdatedEvent.OutputObject>;
|
|
302
|
+
CallbackGasLimitUpdated: TypedContractEvent<CallbackGasLimitUpdatedEvent.InputTuple, CallbackGasLimitUpdatedEvent.OutputTuple, CallbackGasLimitUpdatedEvent.OutputObject>;
|
|
303
|
+
"EncryptedSecretsReferenceUpdated(uint8,bytes)": TypedContractEvent<EncryptedSecretsReferenceUpdatedEvent.InputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputObject>;
|
|
304
|
+
EncryptedSecretsReferenceUpdated: TypedContractEvent<EncryptedSecretsReferenceUpdatedEvent.InputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputObject>;
|
|
206
305
|
"HousePriceRequestSent(bytes32,uint256)": TypedContractEvent<HousePriceRequestSentEvent.InputTuple, HousePriceRequestSentEvent.OutputTuple, HousePriceRequestSentEvent.OutputObject>;
|
|
207
306
|
HousePriceRequestSent: TypedContractEvent<HousePriceRequestSentEvent.InputTuple, HousePriceRequestSentEvent.OutputTuple, HousePriceRequestSentEvent.OutputObject>;
|
|
208
307
|
"HousePriceUpdated(uint256,uint256)": TypedContractEvent<HousePriceUpdatedEvent.InputTuple, HousePriceUpdatedEvent.OutputTuple, HousePriceUpdatedEvent.OutputObject>;
|
|
@@ -217,5 +316,7 @@ export interface RAACHousePriceOracle extends BaseContract {
|
|
|
217
316
|
RequestFulfilled: TypedContractEvent<RequestFulfilledEvent.InputTuple, RequestFulfilledEvent.OutputTuple, RequestFulfilledEvent.OutputObject>;
|
|
218
317
|
"RequestSent(bytes32)": TypedContractEvent<RequestSentEvent.InputTuple, RequestSentEvent.OutputTuple, RequestSentEvent.OutputObject>;
|
|
219
318
|
RequestSent: TypedContractEvent<RequestSentEvent.InputTuple, RequestSentEvent.OutputTuple, RequestSentEvent.OutputObject>;
|
|
319
|
+
"SubscriptionIdUpdated(uint64)": TypedContractEvent<SubscriptionIdUpdatedEvent.InputTuple, SubscriptionIdUpdatedEvent.OutputTuple, SubscriptionIdUpdatedEvent.OutputObject>;
|
|
320
|
+
SubscriptionIdUpdated: TypedContractEvent<SubscriptionIdUpdatedEvent.InputTuple, SubscriptionIdUpdatedEvent.OutputTuple, SubscriptionIdUpdatedEvent.OutputObject>;
|
|
220
321
|
};
|
|
221
322
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
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 RAACPrimeRateOracleInterface extends Interface {
|
|
4
|
-
getFunction(nameOrSignature: "acceptOwnership" | "donId" | "getPrimeRate" | "handleOracleFulfillment" | "lastPrimeRate" | "lastUpdateTimestamp" | "lendingPool" | "owner" | "s_lastError" | "s_lastRequestId" | "s_lastResponse" | "s_requestIds" | "sendRequest" | "
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "OracleRequestSent" | "OwnershipTransferRequested" | "OwnershipTransferred" | "PrimeRateRequestSent" | "PrimeRateUpdated" | "RequestFulfilled" | "RequestSent"): EventFragment;
|
|
4
|
+
getFunction(nameOrSignature: "acceptOwnership" | "donId" | "getPrimeRate" | "handleOracleFulfillment" | "lastPrimeRate" | "lastUpdateTimestamp" | "lendingPool" | "owner" | "s_callbackGasLimit" | "s_encryptedSecretsReference" | "s_lastError" | "s_lastRequestId" | "s_lastResponse" | "s_requestIds" | "s_secretsLocation" | "s_source" | "s_subscriptionId" | "sendRequest" | "setCallbackGasLimit" | "setEncryptedSecretsReference" | "setSubscriptionId" | "transferOwnership"): FunctionFragment;
|
|
5
|
+
getEvent(nameOrSignatureOrTopic: "CallbackGasLimitUpdated" | "EncryptedSecretsReferenceUpdated" | "OracleRequestSent" | "OwnershipTransferRequested" | "OwnershipTransferred" | "PrimeRateRequestSent" | "PrimeRateUpdated" | "RequestFulfilled" | "RequestSent" | "SubscriptionIdUpdated"): EventFragment;
|
|
6
6
|
encodeFunctionData(functionFragment: "acceptOwnership", values?: undefined): string;
|
|
7
7
|
encodeFunctionData(functionFragment: "donId", values?: undefined): string;
|
|
8
8
|
encodeFunctionData(functionFragment: "getPrimeRate", values?: undefined): string;
|
|
@@ -11,20 +11,19 @@ export interface RAACPrimeRateOracleInterface extends Interface {
|
|
|
11
11
|
encodeFunctionData(functionFragment: "lastUpdateTimestamp", values?: undefined): string;
|
|
12
12
|
encodeFunctionData(functionFragment: "lendingPool", values?: undefined): string;
|
|
13
13
|
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
14
|
+
encodeFunctionData(functionFragment: "s_callbackGasLimit", values?: undefined): string;
|
|
15
|
+
encodeFunctionData(functionFragment: "s_encryptedSecretsReference", values?: undefined): string;
|
|
14
16
|
encodeFunctionData(functionFragment: "s_lastError", values?: undefined): string;
|
|
15
17
|
encodeFunctionData(functionFragment: "s_lastRequestId", values?: undefined): string;
|
|
16
18
|
encodeFunctionData(functionFragment: "s_lastResponse", values?: undefined): string;
|
|
17
19
|
encodeFunctionData(functionFragment: "s_requestIds", values: [BytesLike]): string;
|
|
18
|
-
encodeFunctionData(functionFragment: "
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
BigNumberish
|
|
26
|
-
]): string;
|
|
27
|
-
encodeFunctionData(functionFragment: "setDonId", values: [BytesLike]): string;
|
|
20
|
+
encodeFunctionData(functionFragment: "s_secretsLocation", values?: undefined): string;
|
|
21
|
+
encodeFunctionData(functionFragment: "s_source", values?: undefined): string;
|
|
22
|
+
encodeFunctionData(functionFragment: "s_subscriptionId", values?: undefined): string;
|
|
23
|
+
encodeFunctionData(functionFragment: "sendRequest", values: [string[], BytesLike[]]): string;
|
|
24
|
+
encodeFunctionData(functionFragment: "setCallbackGasLimit", values: [BigNumberish]): string;
|
|
25
|
+
encodeFunctionData(functionFragment: "setEncryptedSecretsReference", values: [BigNumberish, BytesLike]): string;
|
|
26
|
+
encodeFunctionData(functionFragment: "setSubscriptionId", values: [BigNumberish]): string;
|
|
28
27
|
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
29
28
|
decodeFunctionResult(functionFragment: "acceptOwnership", data: BytesLike): Result;
|
|
30
29
|
decodeFunctionResult(functionFragment: "donId", data: BytesLike): Result;
|
|
@@ -34,14 +33,50 @@ export interface RAACPrimeRateOracleInterface extends Interface {
|
|
|
34
33
|
decodeFunctionResult(functionFragment: "lastUpdateTimestamp", data: BytesLike): Result;
|
|
35
34
|
decodeFunctionResult(functionFragment: "lendingPool", data: BytesLike): Result;
|
|
36
35
|
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
36
|
+
decodeFunctionResult(functionFragment: "s_callbackGasLimit", data: BytesLike): Result;
|
|
37
|
+
decodeFunctionResult(functionFragment: "s_encryptedSecretsReference", data: BytesLike): Result;
|
|
37
38
|
decodeFunctionResult(functionFragment: "s_lastError", data: BytesLike): Result;
|
|
38
39
|
decodeFunctionResult(functionFragment: "s_lastRequestId", data: BytesLike): Result;
|
|
39
40
|
decodeFunctionResult(functionFragment: "s_lastResponse", data: BytesLike): Result;
|
|
40
41
|
decodeFunctionResult(functionFragment: "s_requestIds", data: BytesLike): Result;
|
|
42
|
+
decodeFunctionResult(functionFragment: "s_secretsLocation", data: BytesLike): Result;
|
|
43
|
+
decodeFunctionResult(functionFragment: "s_source", data: BytesLike): Result;
|
|
44
|
+
decodeFunctionResult(functionFragment: "s_subscriptionId", data: BytesLike): Result;
|
|
41
45
|
decodeFunctionResult(functionFragment: "sendRequest", data: BytesLike): Result;
|
|
42
|
-
decodeFunctionResult(functionFragment: "
|
|
46
|
+
decodeFunctionResult(functionFragment: "setCallbackGasLimit", data: BytesLike): Result;
|
|
47
|
+
decodeFunctionResult(functionFragment: "setEncryptedSecretsReference", data: BytesLike): Result;
|
|
48
|
+
decodeFunctionResult(functionFragment: "setSubscriptionId", data: BytesLike): Result;
|
|
43
49
|
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
44
50
|
}
|
|
51
|
+
export declare namespace CallbackGasLimitUpdatedEvent {
|
|
52
|
+
type InputTuple = [newCallbackGasLimit: BigNumberish];
|
|
53
|
+
type OutputTuple = [newCallbackGasLimit: bigint];
|
|
54
|
+
interface OutputObject {
|
|
55
|
+
newCallbackGasLimit: bigint;
|
|
56
|
+
}
|
|
57
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
58
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
59
|
+
type Log = TypedEventLog<Event>;
|
|
60
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
61
|
+
}
|
|
62
|
+
export declare namespace EncryptedSecretsReferenceUpdatedEvent {
|
|
63
|
+
type InputTuple = [
|
|
64
|
+
newSecretsLocation: BigNumberish,
|
|
65
|
+
newEncryptedSecretsReference: BytesLike
|
|
66
|
+
];
|
|
67
|
+
type OutputTuple = [
|
|
68
|
+
newSecretsLocation: bigint,
|
|
69
|
+
newEncryptedSecretsReference: string
|
|
70
|
+
];
|
|
71
|
+
interface OutputObject {
|
|
72
|
+
newSecretsLocation: bigint;
|
|
73
|
+
newEncryptedSecretsReference: string;
|
|
74
|
+
}
|
|
75
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
76
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
77
|
+
type Log = TypedEventLog<Event>;
|
|
78
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
79
|
+
}
|
|
45
80
|
export declare namespace OracleRequestSentEvent {
|
|
46
81
|
type InputTuple = [requestId: BytesLike];
|
|
47
82
|
type OutputTuple = [requestId: string];
|
|
@@ -121,6 +156,17 @@ export declare namespace RequestSentEvent {
|
|
|
121
156
|
type Log = TypedEventLog<Event>;
|
|
122
157
|
type LogDescription = TypedLogDescription<Event>;
|
|
123
158
|
}
|
|
159
|
+
export declare namespace SubscriptionIdUpdatedEvent {
|
|
160
|
+
type InputTuple = [newSubscriptionId: BigNumberish];
|
|
161
|
+
type OutputTuple = [newSubscriptionId: bigint];
|
|
162
|
+
interface OutputObject {
|
|
163
|
+
newSubscriptionId: bigint;
|
|
164
|
+
}
|
|
165
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
166
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
167
|
+
type Log = TypedEventLog<Event>;
|
|
168
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
169
|
+
}
|
|
124
170
|
export interface RAACPrimeRateOracle extends BaseContract {
|
|
125
171
|
connect(runner?: ContractRunner | null): RAACPrimeRateOracle;
|
|
126
172
|
waitForDeployment(): Promise<this>;
|
|
@@ -148,22 +194,37 @@ export interface RAACPrimeRateOracle extends BaseContract {
|
|
|
148
194
|
lastUpdateTimestamp: TypedContractMethod<[], [bigint], "view">;
|
|
149
195
|
lendingPool: TypedContractMethod<[], [string], "view">;
|
|
150
196
|
owner: TypedContractMethod<[], [string], "view">;
|
|
197
|
+
s_callbackGasLimit: TypedContractMethod<[], [bigint], "view">;
|
|
198
|
+
s_encryptedSecretsReference: TypedContractMethod<[], [string], "view">;
|
|
151
199
|
s_lastError: TypedContractMethod<[], [string], "view">;
|
|
152
200
|
s_lastRequestId: TypedContractMethod<[], [string], "view">;
|
|
153
201
|
s_lastResponse: TypedContractMethod<[], [string], "view">;
|
|
154
202
|
s_requestIds: TypedContractMethod<[arg0: BytesLike], [boolean], "view">;
|
|
203
|
+
s_secretsLocation: TypedContractMethod<[], [bigint], "view">;
|
|
204
|
+
s_source: TypedContractMethod<[], [string], "view">;
|
|
205
|
+
s_subscriptionId: TypedContractMethod<[], [bigint], "view">;
|
|
155
206
|
sendRequest: TypedContractMethod<[
|
|
156
|
-
source: string,
|
|
157
|
-
secretsLocation: BigNumberish,
|
|
158
|
-
encryptedSecretsReference: BytesLike,
|
|
159
207
|
args: string[],
|
|
160
|
-
bytesArgs: BytesLike[]
|
|
161
|
-
subscriptionId: BigNumberish,
|
|
162
|
-
callbackGasLimit: BigNumberish
|
|
208
|
+
bytesArgs: BytesLike[]
|
|
163
209
|
], [
|
|
164
210
|
string
|
|
165
211
|
], "nonpayable">;
|
|
166
|
-
|
|
212
|
+
setCallbackGasLimit: TypedContractMethod<[
|
|
213
|
+
newCallbackGasLimit: BigNumberish
|
|
214
|
+
], [
|
|
215
|
+
void
|
|
216
|
+
], "nonpayable">;
|
|
217
|
+
setEncryptedSecretsReference: TypedContractMethod<[
|
|
218
|
+
newSecretsLocation: BigNumberish,
|
|
219
|
+
newEncryptedSecretsReference: BytesLike
|
|
220
|
+
], [
|
|
221
|
+
void
|
|
222
|
+
], "nonpayable">;
|
|
223
|
+
setSubscriptionId: TypedContractMethod<[
|
|
224
|
+
newSubscriptionId: BigNumberish
|
|
225
|
+
], [
|
|
226
|
+
void
|
|
227
|
+
], "nonpayable">;
|
|
167
228
|
transferOwnership: TypedContractMethod<[
|
|
168
229
|
to: AddressLike
|
|
169
230
|
], [
|
|
@@ -184,23 +245,40 @@ export interface RAACPrimeRateOracle extends BaseContract {
|
|
|
184
245
|
getFunction(nameOrSignature: "lastUpdateTimestamp"): TypedContractMethod<[], [bigint], "view">;
|
|
185
246
|
getFunction(nameOrSignature: "lendingPool"): TypedContractMethod<[], [string], "view">;
|
|
186
247
|
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
248
|
+
getFunction(nameOrSignature: "s_callbackGasLimit"): TypedContractMethod<[], [bigint], "view">;
|
|
249
|
+
getFunction(nameOrSignature: "s_encryptedSecretsReference"): TypedContractMethod<[], [string], "view">;
|
|
187
250
|
getFunction(nameOrSignature: "s_lastError"): TypedContractMethod<[], [string], "view">;
|
|
188
251
|
getFunction(nameOrSignature: "s_lastRequestId"): TypedContractMethod<[], [string], "view">;
|
|
189
252
|
getFunction(nameOrSignature: "s_lastResponse"): TypedContractMethod<[], [string], "view">;
|
|
190
253
|
getFunction(nameOrSignature: "s_requestIds"): TypedContractMethod<[arg0: BytesLike], [boolean], "view">;
|
|
254
|
+
getFunction(nameOrSignature: "s_secretsLocation"): TypedContractMethod<[], [bigint], "view">;
|
|
255
|
+
getFunction(nameOrSignature: "s_source"): TypedContractMethod<[], [string], "view">;
|
|
256
|
+
getFunction(nameOrSignature: "s_subscriptionId"): TypedContractMethod<[], [bigint], "view">;
|
|
191
257
|
getFunction(nameOrSignature: "sendRequest"): TypedContractMethod<[
|
|
192
|
-
source: string,
|
|
193
|
-
secretsLocation: BigNumberish,
|
|
194
|
-
encryptedSecretsReference: BytesLike,
|
|
195
258
|
args: string[],
|
|
196
|
-
bytesArgs: BytesLike[]
|
|
197
|
-
subscriptionId: BigNumberish,
|
|
198
|
-
callbackGasLimit: BigNumberish
|
|
259
|
+
bytesArgs: BytesLike[]
|
|
199
260
|
], [
|
|
200
261
|
string
|
|
201
262
|
], "nonpayable">;
|
|
202
|
-
getFunction(nameOrSignature: "
|
|
263
|
+
getFunction(nameOrSignature: "setCallbackGasLimit"): TypedContractMethod<[
|
|
264
|
+
newCallbackGasLimit: BigNumberish
|
|
265
|
+
], [
|
|
266
|
+
void
|
|
267
|
+
], "nonpayable">;
|
|
268
|
+
getFunction(nameOrSignature: "setEncryptedSecretsReference"): TypedContractMethod<[
|
|
269
|
+
newSecretsLocation: BigNumberish,
|
|
270
|
+
newEncryptedSecretsReference: BytesLike
|
|
271
|
+
], [
|
|
272
|
+
void
|
|
273
|
+
], "nonpayable">;
|
|
274
|
+
getFunction(nameOrSignature: "setSubscriptionId"): TypedContractMethod<[
|
|
275
|
+
newSubscriptionId: BigNumberish
|
|
276
|
+
], [
|
|
277
|
+
void
|
|
278
|
+
], "nonpayable">;
|
|
203
279
|
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[to: AddressLike], [void], "nonpayable">;
|
|
280
|
+
getEvent(key: "CallbackGasLimitUpdated"): TypedContractEvent<CallbackGasLimitUpdatedEvent.InputTuple, CallbackGasLimitUpdatedEvent.OutputTuple, CallbackGasLimitUpdatedEvent.OutputObject>;
|
|
281
|
+
getEvent(key: "EncryptedSecretsReferenceUpdated"): TypedContractEvent<EncryptedSecretsReferenceUpdatedEvent.InputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputObject>;
|
|
204
282
|
getEvent(key: "OracleRequestSent"): TypedContractEvent<OracleRequestSentEvent.InputTuple, OracleRequestSentEvent.OutputTuple, OracleRequestSentEvent.OutputObject>;
|
|
205
283
|
getEvent(key: "OwnershipTransferRequested"): TypedContractEvent<OwnershipTransferRequestedEvent.InputTuple, OwnershipTransferRequestedEvent.OutputTuple, OwnershipTransferRequestedEvent.OutputObject>;
|
|
206
284
|
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
@@ -208,7 +286,12 @@ export interface RAACPrimeRateOracle extends BaseContract {
|
|
|
208
286
|
getEvent(key: "PrimeRateUpdated"): TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
|
|
209
287
|
getEvent(key: "RequestFulfilled"): TypedContractEvent<RequestFulfilledEvent.InputTuple, RequestFulfilledEvent.OutputTuple, RequestFulfilledEvent.OutputObject>;
|
|
210
288
|
getEvent(key: "RequestSent"): TypedContractEvent<RequestSentEvent.InputTuple, RequestSentEvent.OutputTuple, RequestSentEvent.OutputObject>;
|
|
289
|
+
getEvent(key: "SubscriptionIdUpdated"): TypedContractEvent<SubscriptionIdUpdatedEvent.InputTuple, SubscriptionIdUpdatedEvent.OutputTuple, SubscriptionIdUpdatedEvent.OutputObject>;
|
|
211
290
|
filters: {
|
|
291
|
+
"CallbackGasLimitUpdated(uint32)": TypedContractEvent<CallbackGasLimitUpdatedEvent.InputTuple, CallbackGasLimitUpdatedEvent.OutputTuple, CallbackGasLimitUpdatedEvent.OutputObject>;
|
|
292
|
+
CallbackGasLimitUpdated: TypedContractEvent<CallbackGasLimitUpdatedEvent.InputTuple, CallbackGasLimitUpdatedEvent.OutputTuple, CallbackGasLimitUpdatedEvent.OutputObject>;
|
|
293
|
+
"EncryptedSecretsReferenceUpdated(uint8,bytes)": TypedContractEvent<EncryptedSecretsReferenceUpdatedEvent.InputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputObject>;
|
|
294
|
+
EncryptedSecretsReferenceUpdated: TypedContractEvent<EncryptedSecretsReferenceUpdatedEvent.InputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputTuple, EncryptedSecretsReferenceUpdatedEvent.OutputObject>;
|
|
212
295
|
"OracleRequestSent(bytes32)": TypedContractEvent<OracleRequestSentEvent.InputTuple, OracleRequestSentEvent.OutputTuple, OracleRequestSentEvent.OutputObject>;
|
|
213
296
|
OracleRequestSent: TypedContractEvent<OracleRequestSentEvent.InputTuple, OracleRequestSentEvent.OutputTuple, OracleRequestSentEvent.OutputObject>;
|
|
214
297
|
"OwnershipTransferRequested(address,address)": TypedContractEvent<OwnershipTransferRequestedEvent.InputTuple, OwnershipTransferRequestedEvent.OutputTuple, OwnershipTransferRequestedEvent.OutputObject>;
|
|
@@ -223,5 +306,7 @@ export interface RAACPrimeRateOracle extends BaseContract {
|
|
|
223
306
|
RequestFulfilled: TypedContractEvent<RequestFulfilledEvent.InputTuple, RequestFulfilledEvent.OutputTuple, RequestFulfilledEvent.OutputObject>;
|
|
224
307
|
"RequestSent(bytes32)": TypedContractEvent<RequestSentEvent.InputTuple, RequestSentEvent.OutputTuple, RequestSentEvent.OutputObject>;
|
|
225
308
|
RequestSent: TypedContractEvent<RequestSentEvent.InputTuple, RequestSentEvent.OutputTuple, RequestSentEvent.OutputObject>;
|
|
309
|
+
"SubscriptionIdUpdated(uint64)": TypedContractEvent<SubscriptionIdUpdatedEvent.InputTuple, SubscriptionIdUpdatedEvent.OutputTuple, SubscriptionIdUpdatedEvent.OutputObject>;
|
|
310
|
+
SubscriptionIdUpdated: TypedContractEvent<SubscriptionIdUpdatedEvent.InputTuple, SubscriptionIdUpdatedEvent.OutputTuple, SubscriptionIdUpdatedEvent.OutputObject>;
|
|
226
311
|
};
|
|
227
312
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
|
+
export interface RWAIndexTokenOracleInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "DECIMALS" | "decimals" | "getLatestPrice" | "rwaVault"): FunctionFragment;
|
|
5
|
+
encodeFunctionData(functionFragment: "DECIMALS", values?: undefined): string;
|
|
6
|
+
encodeFunctionData(functionFragment: "decimals", values?: undefined): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "getLatestPrice", values?: undefined): string;
|
|
8
|
+
encodeFunctionData(functionFragment: "rwaVault", values?: undefined): string;
|
|
9
|
+
decodeFunctionResult(functionFragment: "DECIMALS", data: BytesLike): Result;
|
|
10
|
+
decodeFunctionResult(functionFragment: "decimals", data: BytesLike): Result;
|
|
11
|
+
decodeFunctionResult(functionFragment: "getLatestPrice", data: BytesLike): Result;
|
|
12
|
+
decodeFunctionResult(functionFragment: "rwaVault", data: BytesLike): Result;
|
|
13
|
+
}
|
|
14
|
+
export interface RWAIndexTokenOracle extends BaseContract {
|
|
15
|
+
connect(runner?: ContractRunner | null): RWAIndexTokenOracle;
|
|
16
|
+
waitForDeployment(): Promise<this>;
|
|
17
|
+
interface: RWAIndexTokenOracleInterface;
|
|
18
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
19
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
20
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
21
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
22
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
23
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
24
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
25
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
26
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
27
|
+
DECIMALS: TypedContractMethod<[], [bigint], "view">;
|
|
28
|
+
decimals: TypedContractMethod<[], [bigint], "view">;
|
|
29
|
+
getLatestPrice: TypedContractMethod<[], [bigint], "view">;
|
|
30
|
+
rwaVault: TypedContractMethod<[], [string], "view">;
|
|
31
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
32
|
+
getFunction(nameOrSignature: "DECIMALS"): TypedContractMethod<[], [bigint], "view">;
|
|
33
|
+
getFunction(nameOrSignature: "decimals"): TypedContractMethod<[], [bigint], "view">;
|
|
34
|
+
getFunction(nameOrSignature: "getLatestPrice"): TypedContractMethod<[], [bigint], "view">;
|
|
35
|
+
getFunction(nameOrSignature: "rwaVault"): TypedContractMethod<[], [string], "view">;
|
|
36
|
+
filters: {};
|
|
37
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
|
+
export interface CrvUSDPriceOracleInterface extends Interface {
|
|
4
|
+
getFunction(nameOrSignature: "DECIMALS" | "decimals" | "getLatestPrice"): FunctionFragment;
|
|
5
|
+
encodeFunctionData(functionFragment: "DECIMALS", values?: undefined): string;
|
|
6
|
+
encodeFunctionData(functionFragment: "decimals", values?: undefined): string;
|
|
7
|
+
encodeFunctionData(functionFragment: "getLatestPrice", values?: undefined): string;
|
|
8
|
+
decodeFunctionResult(functionFragment: "DECIMALS", data: BytesLike): Result;
|
|
9
|
+
decodeFunctionResult(functionFragment: "decimals", data: BytesLike): Result;
|
|
10
|
+
decodeFunctionResult(functionFragment: "getLatestPrice", data: BytesLike): Result;
|
|
11
|
+
}
|
|
12
|
+
export interface CrvUSDPriceOracle extends BaseContract {
|
|
13
|
+
connect(runner?: ContractRunner | null): CrvUSDPriceOracle;
|
|
14
|
+
waitForDeployment(): Promise<this>;
|
|
15
|
+
interface: CrvUSDPriceOracleInterface;
|
|
16
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
17
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
18
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
19
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
20
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
21
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
22
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
23
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
24
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
25
|
+
DECIMALS: TypedContractMethod<[], [bigint], "view">;
|
|
26
|
+
decimals: TypedContractMethod<[], [bigint], "view">;
|
|
27
|
+
getLatestPrice: TypedContractMethod<[], [bigint], "view">;
|
|
28
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
29
|
+
getFunction(nameOrSignature: "DECIMALS"): TypedContractMethod<[], [bigint], "view">;
|
|
30
|
+
getFunction(nameOrSignature: "decimals"): TypedContractMethod<[], [bigint], "view">;
|
|
31
|
+
getFunction(nameOrSignature: "getLatestPrice"): TypedContractMethod<[], [bigint], "view">;
|
|
32
|
+
filters: {};
|
|
33
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
|
2
|
-
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "
|
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../common";
|
|
3
3
|
export interface IPriceOracleInterface extends Interface {
|
|
4
4
|
getFunction(nameOrSignature: "getLatestPrice"): FunctionFragment;
|
|
5
5
|
encodeFunctionData(functionFragment: "getLatestPrice", values?: undefined): string;
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import type * as crvUsdToUsdOracleSol from "./CrvUSDToUSDOracle.sol";
|
|
2
|
+
export type { crvUsdToUsdOracleSol };
|
|
3
|
+
import type * as rwaIndexTokenOracleSol from "./RWAIndexTokenOracle.sol";
|
|
4
|
+
export type { rwaIndexTokenOracleSol };
|
|
5
|
+
import type * as crvUsdPriceOracleSol from "./crvUSDPriceOracle.sol";
|
|
6
|
+
export type { crvUsdPriceOracleSol };
|
|
1
7
|
export type { BaseChainlinkFunctionsOracle } from "./BaseChainlinkFunctionsOracle";
|
|
2
8
|
export type { BaseVRFv2Consumer } from "./BaseVRFv2Consumer";
|
|
3
9
|
export type { RAACHousePriceOracle } from "./RAACHousePriceOracle";
|