@raac/rpc 1.1.0-beta.5 → 1.1.0-beta.7
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 +66 -23
- package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +83 -29
- package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +82 -31
- package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +114 -5
- package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +2 -2
- package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +465 -0
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +497 -0
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1065 -337
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +180 -99
- package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +20 -2
- package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +2 -29
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +158 -38
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -29
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +553 -224
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +354 -0
- package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +356 -0
- package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +1036 -0
- package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +622 -207
- package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
- package/dist/artifacts/zeno/Auction.sol/Auction.json +89 -15
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +2 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +108 -38
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/11155111.json +8 -3
- package/dist/configs/chains/17000.json +38 -3
- package/dist/configs/chains/8453.json +49 -14
- package/dist/configs/createConfig.js +3 -3
- package/dist/pools/lendingPool/_helpers.js +41 -0
- package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.js +20 -0
- package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.js +32 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +20 -0
- package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +32 -0
- package/dist/pools/lendingPool/borrowFromLendingPool.js +11 -14
- package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +11 -29
- package/dist/pools/lendingPool/calculateInsuranceFee.js +12 -8
- package/dist/pools/lendingPool/closeLiquidation.js +16 -14
- package/dist/pools/lendingPool/depositAssetToLendingPool.js +22 -0
- package/dist/pools/lendingPool/depositToLendingPool.js +2 -5
- package/dist/pools/lendingPool/getAdapterAddress.js +44 -0
- package/dist/pools/lendingPool/getAdapters.js +20 -0
- package/dist/pools/lendingPool/getEligibleUserDeposits.js +2 -5
- package/dist/pools/lendingPool/getHealthFactor.js +15 -13
- package/dist/pools/lendingPool/getLendingPoolInfo.js +10 -25
- package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +2 -6
- package/dist/pools/lendingPool/getParameters.js +29 -0
- package/dist/pools/lendingPool/getPositionDebt.js +12 -11
- package/dist/pools/lendingPool/getPositionScaledDebt.js +16 -13
- package/dist/pools/lendingPool/getPositionView.js +16 -10
- package/dist/pools/lendingPool/getPositionsScaledDebt.js +3 -5
- package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +2 -5
- package/dist/pools/lendingPool/getUserCollateralValue.js +3 -5
- package/dist/pools/lendingPool/getWithdrawRequestInfo.js +25 -0
- package/dist/pools/lendingPool/initializeLiquidation.js +12 -12
- package/dist/pools/lendingPool/openVaultPosition.js +42 -0
- package/dist/pools/lendingPool/repayToLendingPool.js +11 -14
- package/dist/pools/lendingPool/requestWithdraw.js +28 -0
- package/dist/pools/lendingPool/types.js +2 -0
- package/dist/pools/lendingPool/withdrawAssetFromLendingPool.js +22 -0
- package/dist/pools/lendingPool/withdrawFromLendingPool.js +3 -4
- package/dist/pools/rwaVault/_helpers.js +41 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.js +21 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.js +20 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.js +30 -0
- package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.js +20 -0
- package/dist/pools/rwaVault/depositToRWAVault.js +23 -0
- package/dist/pools/rwaVault/getAdapterAddress.js +43 -0
- package/dist/pools/rwaVault/getAdapters.js +20 -0
- package/dist/pools/rwaVault/getNextRandomNFT.js +21 -0
- package/dist/pools/rwaVault/getRWAVaultInfo.js +48 -0
- package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +23 -0
- package/dist/pools/rwaVault/requestRandomSeed.js +23 -0
- package/dist/pools/rwaVault/types.js +2 -0
- package/dist/scripts/index.js +81 -64
- package/dist/types/RPCLibrary.d.ts +55 -22
- package/dist/types/configs/createConfig.d.ts +1 -1
- package/dist/types/pools/lendingPool/_helpers.d.ts +10 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.d.ts +3 -0
- package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.d.ts +10 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +3 -0
- package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +10 -0
- package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +4 -3
- package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +4 -3
- package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +3 -2
- package/dist/types/pools/lendingPool/closeLiquidation.d.ts +7 -5
- package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +5 -0
- package/dist/types/pools/lendingPool/getAdapterAddress.d.ts +16 -0
- package/dist/types/pools/lendingPool/getAdapters.d.ts +8 -0
- package/dist/types/pools/lendingPool/getHealthFactor.d.ts +6 -4
- package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -3
- package/dist/types/pools/lendingPool/getParameters.d.ts +17 -0
- package/dist/types/pools/lendingPool/getPositionDebt.d.ts +4 -3
- package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +8 -5
- package/dist/types/pools/lendingPool/getPositionView.d.ts +14 -18
- package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +8 -0
- package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +4 -3
- package/dist/types/pools/lendingPool/openVaultPosition.d.ts +4 -0
- package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +4 -3
- package/dist/types/pools/lendingPool/requestWithdraw.d.ts +4 -0
- package/dist/types/pools/lendingPool/types.d.ts +7 -0
- package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +5 -0
- package/dist/types/pools/rwaVault/_helpers.d.ts +10 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.d.ts +9 -0
- package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.d.ts +3 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.d.ts +9 -0
- package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.d.ts +3 -0
- package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +5 -0
- package/dist/types/pools/rwaVault/getAdapterAddress.d.ts +16 -0
- package/dist/types/pools/rwaVault/getAdapters.d.ts +8 -0
- package/dist/types/pools/rwaVault/getNextRandomNFT.d.ts +8 -0
- package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +20 -0
- package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +4 -0
- package/dist/types/pools/rwaVault/requestRandomSeed.d.ts +4 -0
- package/dist/types/pools/rwaVault/types.d.ts +7 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +103 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +37 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +143 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +529 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +109 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +6 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +192 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +45 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +155 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +25 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +4 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +731 -0
- package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +77 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +231 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +49 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +20 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +30 -1
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +53 -0
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +115 -0
- package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +15 -1
- package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +616 -142
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +396 -108
- package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +623 -0
- package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +609 -155
- package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +610 -156
- package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/governance/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +45 -67
- package/dist/types/typechain-types/contracts/core/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +721 -0
- package/dist/types/typechain-types/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +69 -12
- package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +22 -4
- package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +40 -2
- package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +41 -8
- package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +39 -7
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +232 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +254 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +728 -205
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +440 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +538 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +485 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +7 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +158 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +124 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +135 -79
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +140 -0
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +3 -1
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +203 -0
- package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +23 -1
- package/dist/types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +6 -15
- package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +94 -11
- package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +1 -17
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +264 -0
- package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +433 -172
- package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +1 -1
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +174 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +178 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +511 -0
- package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +5 -0
- package/dist/types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +63 -0
- package/dist/types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +190 -23
- package/dist/types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +75 -0
- package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +9 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +527 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +222 -40
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +351 -0
- package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
- package/dist/types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +45 -67
- package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +332 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +302 -0
- package/dist/types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +30 -1
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +5 -1
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +31 -24
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +143 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +51 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +369 -150
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +102 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +51 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +19 -64
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +49 -0
- package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +6 -15
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +70 -7
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +197 -0
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +295 -36
- package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +208 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +89 -0
- package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +357 -0
- package/dist/types/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/interfaces/index.d.ts +2 -4
- package/dist/types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +18 -3
- package/dist/types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +31 -1
- package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +9 -2
- package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +34 -1
- package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +1 -25
- package/dist/types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +225 -0
- package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +56 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +35 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +2 -6
- package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +4 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +394 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/contracts/mocks/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +33 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +2 -2
- package/dist/types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +349 -148
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +41 -8
- package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +39 -7
- package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
- package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +367 -140
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +1 -5
- package/dist/types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +1 -5
- package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -1
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +68 -139
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +19 -9
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +37 -18
- package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/contracts/mocks/tests/index.d.ts +0 -2
- package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +37 -8
- package/dist/types/typechain-types/contracts/zeno/ZENO.d.ts +62 -6
- 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/shared/interfaces/AggregatorV3Interface__factory.d.ts +93 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +191 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +663 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +139 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +4 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +194 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +27 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +155 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +32 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +944 -0
- package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +95 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +289 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts +43 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -13
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +50 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +9 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +26 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +65 -21
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +49 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +177 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +698 -144
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +461 -137
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +848 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +686 -162
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +689 -155
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +42 -80
- package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1028 -0
- package/dist/types/typechain-types/factories/contracts/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +66 -25
- package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +37 -1
- package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +90 -6
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +64 -9
- package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +369 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +393 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +578 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +881 -306
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +716 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +636 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +5 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +281 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +227 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +255 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +151 -85
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +3 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +276 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +29 -1
- package/dist/types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +7 -11
- 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 +124 -31
- package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +1 -61
- package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +465 -0
- package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +446 -186
- package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +285 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +287 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +808 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +67 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +213 -6
- package/dist/types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +77 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +32 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +643 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +239 -65
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts +425 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +41 -79
- package/dist/types/typechain-types/factories/contracts/interfaces/core/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +390 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +35 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +33 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +4 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +14 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +24 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +189 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +183 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +428 -143
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +53 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +56 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +26 -75
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +6 -10
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +79 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +223 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +355 -29
- package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +256 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +119 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +503 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +2 -4
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +44 -1
- package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +42 -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 +10 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +47 -1
- package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
- package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -29
- package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +353 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +65 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +21 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
- 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 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +591 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +42 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +2 -2
- 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/MockVRFCoordinatorV2__factory.d.ts +490 -166
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +67 -12
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +427 -132
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +8 -4
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -15
- package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -15
- 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 +0 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -21
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +53 -122
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +21 -12
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +39 -14
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
- 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/ReserveLibraryMock__factory.d.ts +1 -1
- 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/mocks/tests/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +5 -1
- package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +83 -14
- package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +13 -1
- package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +87 -31
- package/dist/types/typechain-types/index.d.ts +112 -40
- package/dist/types/utils/artifacts.d.ts +460 -44
- package/dist/utils/artifacts.js +13 -2
- package/package.json +1 -1
- package/dist/artifacts/core/tokens/IndexToken.sol/IndexToken.json +0 -770
- package/dist/contracts/indexToken/getNextRandomNFT.js +0 -30
- package/dist/contracts/indexToken/redeemNFT.js +0 -39
- package/dist/pools/lendingPool/claimReward.js +0 -22
- package/dist/pools/lendingPool/depositNFTToLendingPool.js +0 -50
- package/dist/pools/lendingPool/getAllUserData.js +0 -28
- package/dist/pools/lendingPool/getPendingReward.js +0 -20
- package/dist/pools/lendingPool/getUserOfDepositedNFT.js +0 -27
- package/dist/pools/lendingPool/withdrawNFTFromLendingPool.js +0 -24
- package/dist/pools/stabilityPool/calculateRAACRewards.js +0 -21
- package/dist/pools/stabilityPool/depositNFTToStabilityPool.js +0 -40
- package/dist/types/contracts/indexToken/getNextRandomNFT.d.ts +0 -7
- package/dist/types/contracts/indexToken/redeemNFT.d.ts +0 -4
- package/dist/types/pools/lendingPool/claimReward.d.ts +0 -4
- package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +0 -4
- package/dist/types/pools/lendingPool/getAllUserData.d.ts +0 -17
- package/dist/types/pools/lendingPool/getPendingReward.d.ts +0 -4
- package/dist/types/pools/lendingPool/getUserOfDepositedNFT.d.ts +0 -11
- package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +0 -4
- package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +0 -4
- package/dist/types/pools/stabilityPool/depositNFTToStabilityPool.d.ts +0 -4
|
@@ -98,6 +98,22 @@ declare const ABIS: {
|
|
|
98
98
|
stateMutability: string;
|
|
99
99
|
type: string;
|
|
100
100
|
anonymous?: undefined;
|
|
101
|
+
} | {
|
|
102
|
+
inputs: any[];
|
|
103
|
+
name: string;
|
|
104
|
+
outputs: {
|
|
105
|
+
components: {
|
|
106
|
+
internalType: string;
|
|
107
|
+
name: string;
|
|
108
|
+
type: string;
|
|
109
|
+
}[];
|
|
110
|
+
internalType: string;
|
|
111
|
+
name: string;
|
|
112
|
+
type: string;
|
|
113
|
+
}[];
|
|
114
|
+
stateMutability: string;
|
|
115
|
+
type: string;
|
|
116
|
+
anonymous?: undefined;
|
|
101
117
|
})[];
|
|
102
118
|
raactoken: ({
|
|
103
119
|
inputs: {
|
|
@@ -426,21 +442,11 @@ declare const ABIS: {
|
|
|
426
442
|
}[];
|
|
427
443
|
name: string;
|
|
428
444
|
outputs: {
|
|
429
|
-
components:
|
|
430
|
-
internalType: string;
|
|
431
|
-
name: string;
|
|
432
|
-
type: string;
|
|
433
|
-
components?: undefined;
|
|
434
|
-
} | {
|
|
435
|
-
components: {
|
|
436
|
-
internalType: string;
|
|
437
|
-
name: string;
|
|
438
|
-
type: string;
|
|
439
|
-
}[];
|
|
445
|
+
components: {
|
|
440
446
|
internalType: string;
|
|
441
447
|
name: string;
|
|
442
448
|
type: string;
|
|
443
|
-
}
|
|
449
|
+
}[];
|
|
444
450
|
internalType: string;
|
|
445
451
|
name: string;
|
|
446
452
|
type: string;
|
|
@@ -973,7 +979,7 @@ declare const ABIS: {
|
|
|
973
979
|
type: string;
|
|
974
980
|
anonymous?: undefined;
|
|
975
981
|
})[];
|
|
976
|
-
|
|
982
|
+
mockvrfcoordinator: ({
|
|
977
983
|
inputs: {
|
|
978
984
|
internalType: string;
|
|
979
985
|
name: string;
|
|
@@ -1022,6 +1028,72 @@ declare const ABIS: {
|
|
|
1022
1028
|
stateMutability: string;
|
|
1023
1029
|
type: string;
|
|
1024
1030
|
anonymous?: undefined;
|
|
1031
|
+
} | {
|
|
1032
|
+
inputs: {
|
|
1033
|
+
components: {
|
|
1034
|
+
internalType: string;
|
|
1035
|
+
name: string;
|
|
1036
|
+
type: string;
|
|
1037
|
+
}[];
|
|
1038
|
+
internalType: string;
|
|
1039
|
+
name: string;
|
|
1040
|
+
type: string;
|
|
1041
|
+
}[];
|
|
1042
|
+
name: string;
|
|
1043
|
+
outputs: {
|
|
1044
|
+
internalType: string;
|
|
1045
|
+
name: string;
|
|
1046
|
+
type: string;
|
|
1047
|
+
}[];
|
|
1048
|
+
stateMutability: string;
|
|
1049
|
+
type: string;
|
|
1050
|
+
anonymous?: undefined;
|
|
1051
|
+
})[];
|
|
1052
|
+
vrfconsumer: ({
|
|
1053
|
+
inputs: {
|
|
1054
|
+
internalType: string;
|
|
1055
|
+
name: string;
|
|
1056
|
+
type: string;
|
|
1057
|
+
}[];
|
|
1058
|
+
stateMutability: string;
|
|
1059
|
+
type: string;
|
|
1060
|
+
name?: undefined;
|
|
1061
|
+
anonymous?: undefined;
|
|
1062
|
+
outputs?: undefined;
|
|
1063
|
+
} | {
|
|
1064
|
+
inputs: {
|
|
1065
|
+
internalType: string;
|
|
1066
|
+
name: string;
|
|
1067
|
+
type: string;
|
|
1068
|
+
}[];
|
|
1069
|
+
name: string;
|
|
1070
|
+
type: string;
|
|
1071
|
+
stateMutability?: undefined;
|
|
1072
|
+
anonymous?: undefined;
|
|
1073
|
+
outputs?: undefined;
|
|
1074
|
+
} | {
|
|
1075
|
+
anonymous: boolean;
|
|
1076
|
+
inputs: {
|
|
1077
|
+
indexed: boolean;
|
|
1078
|
+
internalType: string;
|
|
1079
|
+
name: string;
|
|
1080
|
+
type: string;
|
|
1081
|
+
}[];
|
|
1082
|
+
name: string;
|
|
1083
|
+
type: string;
|
|
1084
|
+
stateMutability?: undefined;
|
|
1085
|
+
outputs?: undefined;
|
|
1086
|
+
} | {
|
|
1087
|
+
inputs: any[];
|
|
1088
|
+
name: string;
|
|
1089
|
+
outputs: {
|
|
1090
|
+
internalType: string;
|
|
1091
|
+
name: string;
|
|
1092
|
+
type: string;
|
|
1093
|
+
}[];
|
|
1094
|
+
stateMutability: string;
|
|
1095
|
+
type: string;
|
|
1096
|
+
anonymous?: undefined;
|
|
1025
1097
|
} | {
|
|
1026
1098
|
inputs: any[];
|
|
1027
1099
|
name: string;
|
|
@@ -1038,8 +1110,19 @@ declare const ABIS: {
|
|
|
1038
1110
|
stateMutability: string;
|
|
1039
1111
|
type: string;
|
|
1040
1112
|
anonymous?: undefined;
|
|
1113
|
+
} | {
|
|
1114
|
+
inputs: {
|
|
1115
|
+
internalType: string;
|
|
1116
|
+
name: string;
|
|
1117
|
+
type: string;
|
|
1118
|
+
}[];
|
|
1119
|
+
name: string;
|
|
1120
|
+
outputs: any[];
|
|
1121
|
+
stateMutability: string;
|
|
1122
|
+
type: string;
|
|
1123
|
+
anonymous?: undefined;
|
|
1041
1124
|
})[];
|
|
1042
|
-
|
|
1125
|
+
raacprimerateoracle: ({
|
|
1043
1126
|
inputs: {
|
|
1044
1127
|
internalType: string;
|
|
1045
1128
|
name: string;
|
|
@@ -1089,7 +1172,7 @@ declare const ABIS: {
|
|
|
1089
1172
|
type: string;
|
|
1090
1173
|
anonymous?: undefined;
|
|
1091
1174
|
})[];
|
|
1092
|
-
|
|
1175
|
+
rwavault: ({
|
|
1093
1176
|
inputs: {
|
|
1094
1177
|
internalType: string;
|
|
1095
1178
|
name: string;
|
|
@@ -1124,14 +1207,13 @@ declare const ABIS: {
|
|
|
1124
1207
|
stateMutability?: undefined;
|
|
1125
1208
|
outputs?: undefined;
|
|
1126
1209
|
} | {
|
|
1127
|
-
inputs:
|
|
1210
|
+
inputs: {
|
|
1211
|
+
internalType: string;
|
|
1212
|
+
name: string;
|
|
1213
|
+
type: string;
|
|
1214
|
+
}[];
|
|
1128
1215
|
name: string;
|
|
1129
1216
|
outputs: {
|
|
1130
|
-
components: {
|
|
1131
|
-
internalType: string;
|
|
1132
|
-
name: string;
|
|
1133
|
-
type: string;
|
|
1134
|
-
}[];
|
|
1135
1217
|
internalType: string;
|
|
1136
1218
|
name: string;
|
|
1137
1219
|
type: string;
|
|
@@ -1139,8 +1221,47 @@ declare const ABIS: {
|
|
|
1139
1221
|
stateMutability: string;
|
|
1140
1222
|
type: string;
|
|
1141
1223
|
anonymous?: undefined;
|
|
1224
|
+
})[];
|
|
1225
|
+
erc20assetadapter: ({
|
|
1226
|
+
inputs: {
|
|
1227
|
+
internalType: string;
|
|
1228
|
+
name: string;
|
|
1229
|
+
type: string;
|
|
1230
|
+
}[];
|
|
1231
|
+
stateMutability: string;
|
|
1232
|
+
type: string;
|
|
1233
|
+
name?: undefined;
|
|
1234
|
+
anonymous?: undefined;
|
|
1235
|
+
outputs?: undefined;
|
|
1142
1236
|
} | {
|
|
1143
|
-
inputs:
|
|
1237
|
+
inputs: {
|
|
1238
|
+
internalType: string;
|
|
1239
|
+
name: string;
|
|
1240
|
+
type: string;
|
|
1241
|
+
}[];
|
|
1242
|
+
name: string;
|
|
1243
|
+
type: string;
|
|
1244
|
+
stateMutability?: undefined;
|
|
1245
|
+
anonymous?: undefined;
|
|
1246
|
+
outputs?: undefined;
|
|
1247
|
+
} | {
|
|
1248
|
+
anonymous: boolean;
|
|
1249
|
+
inputs: {
|
|
1250
|
+
indexed: boolean;
|
|
1251
|
+
internalType: string;
|
|
1252
|
+
name: string;
|
|
1253
|
+
type: string;
|
|
1254
|
+
}[];
|
|
1255
|
+
name: string;
|
|
1256
|
+
type: string;
|
|
1257
|
+
stateMutability?: undefined;
|
|
1258
|
+
outputs?: undefined;
|
|
1259
|
+
} | {
|
|
1260
|
+
inputs: {
|
|
1261
|
+
internalType: string;
|
|
1262
|
+
name: string;
|
|
1263
|
+
type: string;
|
|
1264
|
+
}[];
|
|
1144
1265
|
name: string;
|
|
1145
1266
|
outputs: {
|
|
1146
1267
|
internalType: string;
|
|
@@ -1150,6 +1271,18 @@ declare const ABIS: {
|
|
|
1150
1271
|
stateMutability: string;
|
|
1151
1272
|
type: string;
|
|
1152
1273
|
anonymous?: undefined;
|
|
1274
|
+
})[];
|
|
1275
|
+
erc721assetadapter: ({
|
|
1276
|
+
inputs: {
|
|
1277
|
+
internalType: string;
|
|
1278
|
+
name: string;
|
|
1279
|
+
type: string;
|
|
1280
|
+
}[];
|
|
1281
|
+
stateMutability: string;
|
|
1282
|
+
type: string;
|
|
1283
|
+
name?: undefined;
|
|
1284
|
+
anonymous?: undefined;
|
|
1285
|
+
outputs?: undefined;
|
|
1153
1286
|
} | {
|
|
1154
1287
|
inputs: {
|
|
1155
1288
|
internalType: string;
|
|
@@ -1157,12 +1290,89 @@ declare const ABIS: {
|
|
|
1157
1290
|
type: string;
|
|
1158
1291
|
}[];
|
|
1159
1292
|
name: string;
|
|
1160
|
-
|
|
1293
|
+
type: string;
|
|
1294
|
+
stateMutability?: undefined;
|
|
1295
|
+
anonymous?: undefined;
|
|
1296
|
+
outputs?: undefined;
|
|
1297
|
+
} | {
|
|
1298
|
+
anonymous: boolean;
|
|
1299
|
+
inputs: {
|
|
1300
|
+
indexed: boolean;
|
|
1301
|
+
internalType: string;
|
|
1302
|
+
name: string;
|
|
1303
|
+
type: string;
|
|
1304
|
+
}[];
|
|
1305
|
+
name: string;
|
|
1306
|
+
type: string;
|
|
1307
|
+
stateMutability?: undefined;
|
|
1308
|
+
outputs?: undefined;
|
|
1309
|
+
} | {
|
|
1310
|
+
inputs: {
|
|
1311
|
+
internalType: string;
|
|
1312
|
+
name: string;
|
|
1313
|
+
type: string;
|
|
1314
|
+
}[];
|
|
1315
|
+
name: string;
|
|
1316
|
+
outputs: {
|
|
1317
|
+
internalType: string;
|
|
1318
|
+
name: string;
|
|
1319
|
+
type: string;
|
|
1320
|
+
}[];
|
|
1161
1321
|
stateMutability: string;
|
|
1162
1322
|
type: string;
|
|
1163
1323
|
anonymous?: undefined;
|
|
1164
1324
|
})[];
|
|
1165
|
-
|
|
1325
|
+
erc20vaultadapter: ({
|
|
1326
|
+
inputs: {
|
|
1327
|
+
internalType: string;
|
|
1328
|
+
name: string;
|
|
1329
|
+
type: string;
|
|
1330
|
+
}[];
|
|
1331
|
+
stateMutability: string;
|
|
1332
|
+
type: string;
|
|
1333
|
+
name?: undefined;
|
|
1334
|
+
anonymous?: undefined;
|
|
1335
|
+
outputs?: undefined;
|
|
1336
|
+
} | {
|
|
1337
|
+
inputs: {
|
|
1338
|
+
internalType: string;
|
|
1339
|
+
name: string;
|
|
1340
|
+
type: string;
|
|
1341
|
+
}[];
|
|
1342
|
+
name: string;
|
|
1343
|
+
type: string;
|
|
1344
|
+
stateMutability?: undefined;
|
|
1345
|
+
anonymous?: undefined;
|
|
1346
|
+
outputs?: undefined;
|
|
1347
|
+
} | {
|
|
1348
|
+
anonymous: boolean;
|
|
1349
|
+
inputs: {
|
|
1350
|
+
indexed: boolean;
|
|
1351
|
+
internalType: string;
|
|
1352
|
+
name: string;
|
|
1353
|
+
type: string;
|
|
1354
|
+
}[];
|
|
1355
|
+
name: string;
|
|
1356
|
+
type: string;
|
|
1357
|
+
stateMutability?: undefined;
|
|
1358
|
+
outputs?: undefined;
|
|
1359
|
+
} | {
|
|
1360
|
+
inputs: {
|
|
1361
|
+
internalType: string;
|
|
1362
|
+
name: string;
|
|
1363
|
+
type: string;
|
|
1364
|
+
}[];
|
|
1365
|
+
name: string;
|
|
1366
|
+
outputs: {
|
|
1367
|
+
internalType: string;
|
|
1368
|
+
name: string;
|
|
1369
|
+
type: string;
|
|
1370
|
+
}[];
|
|
1371
|
+
stateMutability: string;
|
|
1372
|
+
type: string;
|
|
1373
|
+
anonymous?: undefined;
|
|
1374
|
+
})[];
|
|
1375
|
+
erc721vaultadapter: ({
|
|
1166
1376
|
inputs: {
|
|
1167
1377
|
internalType: string;
|
|
1168
1378
|
name: string;
|
|
@@ -1440,21 +1650,11 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1440
1650
|
}[];
|
|
1441
1651
|
name: string;
|
|
1442
1652
|
outputs: {
|
|
1443
|
-
components:
|
|
1444
|
-
internalType: string;
|
|
1445
|
-
name: string;
|
|
1446
|
-
type: string;
|
|
1447
|
-
components?: undefined;
|
|
1448
|
-
} | {
|
|
1449
|
-
components: {
|
|
1450
|
-
internalType: string;
|
|
1451
|
-
name: string;
|
|
1452
|
-
type: string;
|
|
1453
|
-
}[];
|
|
1653
|
+
components: {
|
|
1454
1654
|
internalType: string;
|
|
1455
1655
|
name: string;
|
|
1456
1656
|
type: string;
|
|
1457
|
-
}
|
|
1657
|
+
}[];
|
|
1458
1658
|
internalType: string;
|
|
1459
1659
|
name: string;
|
|
1460
1660
|
type: string;
|
|
@@ -1560,6 +1760,22 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
1560
1760
|
stateMutability: string;
|
|
1561
1761
|
type: string;
|
|
1562
1762
|
anonymous?: undefined;
|
|
1763
|
+
} | {
|
|
1764
|
+
inputs: any[];
|
|
1765
|
+
name: string;
|
|
1766
|
+
outputs: {
|
|
1767
|
+
components: {
|
|
1768
|
+
internalType: string;
|
|
1769
|
+
name: string;
|
|
1770
|
+
type: string;
|
|
1771
|
+
}[];
|
|
1772
|
+
internalType: string;
|
|
1773
|
+
name: string;
|
|
1774
|
+
type: string;
|
|
1775
|
+
}[];
|
|
1776
|
+
stateMutability: string;
|
|
1777
|
+
type: string;
|
|
1778
|
+
anonymous?: undefined;
|
|
1563
1779
|
})[] | ({
|
|
1564
1780
|
inputs: {
|
|
1565
1781
|
internalType: string;
|
|
@@ -2174,6 +2390,71 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2174
2390
|
stateMutability: string;
|
|
2175
2391
|
type: string;
|
|
2176
2392
|
anonymous?: undefined;
|
|
2393
|
+
} | {
|
|
2394
|
+
inputs: {
|
|
2395
|
+
components: {
|
|
2396
|
+
internalType: string;
|
|
2397
|
+
name: string;
|
|
2398
|
+
type: string;
|
|
2399
|
+
}[];
|
|
2400
|
+
internalType: string;
|
|
2401
|
+
name: string;
|
|
2402
|
+
type: string;
|
|
2403
|
+
}[];
|
|
2404
|
+
name: string;
|
|
2405
|
+
outputs: {
|
|
2406
|
+
internalType: string;
|
|
2407
|
+
name: string;
|
|
2408
|
+
type: string;
|
|
2409
|
+
}[];
|
|
2410
|
+
stateMutability: string;
|
|
2411
|
+
type: string;
|
|
2412
|
+
anonymous?: undefined;
|
|
2413
|
+
})[] | ({
|
|
2414
|
+
inputs: {
|
|
2415
|
+
internalType: string;
|
|
2416
|
+
name: string;
|
|
2417
|
+
type: string;
|
|
2418
|
+
}[];
|
|
2419
|
+
stateMutability: string;
|
|
2420
|
+
type: string;
|
|
2421
|
+
name?: undefined;
|
|
2422
|
+
anonymous?: undefined;
|
|
2423
|
+
outputs?: undefined;
|
|
2424
|
+
} | {
|
|
2425
|
+
inputs: {
|
|
2426
|
+
internalType: string;
|
|
2427
|
+
name: string;
|
|
2428
|
+
type: string;
|
|
2429
|
+
}[];
|
|
2430
|
+
name: string;
|
|
2431
|
+
type: string;
|
|
2432
|
+
stateMutability?: undefined;
|
|
2433
|
+
anonymous?: undefined;
|
|
2434
|
+
outputs?: undefined;
|
|
2435
|
+
} | {
|
|
2436
|
+
anonymous: boolean;
|
|
2437
|
+
inputs: {
|
|
2438
|
+
indexed: boolean;
|
|
2439
|
+
internalType: string;
|
|
2440
|
+
name: string;
|
|
2441
|
+
type: string;
|
|
2442
|
+
}[];
|
|
2443
|
+
name: string;
|
|
2444
|
+
type: string;
|
|
2445
|
+
stateMutability?: undefined;
|
|
2446
|
+
outputs?: undefined;
|
|
2447
|
+
} | {
|
|
2448
|
+
inputs: any[];
|
|
2449
|
+
name: string;
|
|
2450
|
+
outputs: {
|
|
2451
|
+
internalType: string;
|
|
2452
|
+
name: string;
|
|
2453
|
+
type: string;
|
|
2454
|
+
}[];
|
|
2455
|
+
stateMutability: string;
|
|
2456
|
+
type: string;
|
|
2457
|
+
anonymous?: undefined;
|
|
2177
2458
|
} | {
|
|
2178
2459
|
inputs: any[];
|
|
2179
2460
|
name: string;
|
|
@@ -2190,6 +2471,17 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2190
2471
|
stateMutability: string;
|
|
2191
2472
|
type: string;
|
|
2192
2473
|
anonymous?: undefined;
|
|
2474
|
+
} | {
|
|
2475
|
+
inputs: {
|
|
2476
|
+
internalType: string;
|
|
2477
|
+
name: string;
|
|
2478
|
+
type: string;
|
|
2479
|
+
}[];
|
|
2480
|
+
name: string;
|
|
2481
|
+
outputs: any[];
|
|
2482
|
+
stateMutability: string;
|
|
2483
|
+
type: string;
|
|
2484
|
+
anonymous?: undefined;
|
|
2193
2485
|
})[] | ({
|
|
2194
2486
|
inputs: {
|
|
2195
2487
|
internalType: string;
|
|
@@ -2274,14 +2566,13 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2274
2566
|
stateMutability?: undefined;
|
|
2275
2567
|
outputs?: undefined;
|
|
2276
2568
|
} | {
|
|
2277
|
-
inputs:
|
|
2569
|
+
inputs: {
|
|
2570
|
+
internalType: string;
|
|
2571
|
+
name: string;
|
|
2572
|
+
type: string;
|
|
2573
|
+
}[];
|
|
2278
2574
|
name: string;
|
|
2279
2575
|
outputs: {
|
|
2280
|
-
components: {
|
|
2281
|
-
internalType: string;
|
|
2282
|
-
name: string;
|
|
2283
|
-
type: string;
|
|
2284
|
-
}[];
|
|
2285
2576
|
internalType: string;
|
|
2286
2577
|
name: string;
|
|
2287
2578
|
type: string;
|
|
@@ -2289,8 +2580,46 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2289
2580
|
stateMutability: string;
|
|
2290
2581
|
type: string;
|
|
2291
2582
|
anonymous?: undefined;
|
|
2583
|
+
})[] | ({
|
|
2584
|
+
inputs: {
|
|
2585
|
+
internalType: string;
|
|
2586
|
+
name: string;
|
|
2587
|
+
type: string;
|
|
2588
|
+
}[];
|
|
2589
|
+
stateMutability: string;
|
|
2590
|
+
type: string;
|
|
2591
|
+
name?: undefined;
|
|
2592
|
+
anonymous?: undefined;
|
|
2593
|
+
outputs?: undefined;
|
|
2292
2594
|
} | {
|
|
2293
|
-
inputs:
|
|
2595
|
+
inputs: {
|
|
2596
|
+
internalType: string;
|
|
2597
|
+
name: string;
|
|
2598
|
+
type: string;
|
|
2599
|
+
}[];
|
|
2600
|
+
name: string;
|
|
2601
|
+
type: string;
|
|
2602
|
+
stateMutability?: undefined;
|
|
2603
|
+
anonymous?: undefined;
|
|
2604
|
+
outputs?: undefined;
|
|
2605
|
+
} | {
|
|
2606
|
+
anonymous: boolean;
|
|
2607
|
+
inputs: {
|
|
2608
|
+
indexed: boolean;
|
|
2609
|
+
internalType: string;
|
|
2610
|
+
name: string;
|
|
2611
|
+
type: string;
|
|
2612
|
+
}[];
|
|
2613
|
+
name: string;
|
|
2614
|
+
type: string;
|
|
2615
|
+
stateMutability?: undefined;
|
|
2616
|
+
outputs?: undefined;
|
|
2617
|
+
} | {
|
|
2618
|
+
inputs: {
|
|
2619
|
+
internalType: string;
|
|
2620
|
+
name: string;
|
|
2621
|
+
type: string;
|
|
2622
|
+
}[];
|
|
2294
2623
|
name: string;
|
|
2295
2624
|
outputs: {
|
|
2296
2625
|
internalType: string;
|
|
@@ -2300,6 +2629,17 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2300
2629
|
stateMutability: string;
|
|
2301
2630
|
type: string;
|
|
2302
2631
|
anonymous?: undefined;
|
|
2632
|
+
})[] | ({
|
|
2633
|
+
inputs: {
|
|
2634
|
+
internalType: string;
|
|
2635
|
+
name: string;
|
|
2636
|
+
type: string;
|
|
2637
|
+
}[];
|
|
2638
|
+
stateMutability: string;
|
|
2639
|
+
type: string;
|
|
2640
|
+
name?: undefined;
|
|
2641
|
+
anonymous?: undefined;
|
|
2642
|
+
outputs?: undefined;
|
|
2303
2643
|
} | {
|
|
2304
2644
|
inputs: {
|
|
2305
2645
|
internalType: string;
|
|
@@ -2307,7 +2647,83 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
|
|
|
2307
2647
|
type: string;
|
|
2308
2648
|
}[];
|
|
2309
2649
|
name: string;
|
|
2310
|
-
|
|
2650
|
+
type: string;
|
|
2651
|
+
stateMutability?: undefined;
|
|
2652
|
+
anonymous?: undefined;
|
|
2653
|
+
outputs?: undefined;
|
|
2654
|
+
} | {
|
|
2655
|
+
anonymous: boolean;
|
|
2656
|
+
inputs: {
|
|
2657
|
+
indexed: boolean;
|
|
2658
|
+
internalType: string;
|
|
2659
|
+
name: string;
|
|
2660
|
+
type: string;
|
|
2661
|
+
}[];
|
|
2662
|
+
name: string;
|
|
2663
|
+
type: string;
|
|
2664
|
+
stateMutability?: undefined;
|
|
2665
|
+
outputs?: undefined;
|
|
2666
|
+
} | {
|
|
2667
|
+
inputs: {
|
|
2668
|
+
internalType: string;
|
|
2669
|
+
name: string;
|
|
2670
|
+
type: string;
|
|
2671
|
+
}[];
|
|
2672
|
+
name: string;
|
|
2673
|
+
outputs: {
|
|
2674
|
+
internalType: string;
|
|
2675
|
+
name: string;
|
|
2676
|
+
type: string;
|
|
2677
|
+
}[];
|
|
2678
|
+
stateMutability: string;
|
|
2679
|
+
type: string;
|
|
2680
|
+
anonymous?: undefined;
|
|
2681
|
+
})[] | ({
|
|
2682
|
+
inputs: {
|
|
2683
|
+
internalType: string;
|
|
2684
|
+
name: string;
|
|
2685
|
+
type: string;
|
|
2686
|
+
}[];
|
|
2687
|
+
stateMutability: string;
|
|
2688
|
+
type: string;
|
|
2689
|
+
name?: undefined;
|
|
2690
|
+
anonymous?: undefined;
|
|
2691
|
+
outputs?: undefined;
|
|
2692
|
+
} | {
|
|
2693
|
+
inputs: {
|
|
2694
|
+
internalType: string;
|
|
2695
|
+
name: string;
|
|
2696
|
+
type: string;
|
|
2697
|
+
}[];
|
|
2698
|
+
name: string;
|
|
2699
|
+
type: string;
|
|
2700
|
+
stateMutability?: undefined;
|
|
2701
|
+
anonymous?: undefined;
|
|
2702
|
+
outputs?: undefined;
|
|
2703
|
+
} | {
|
|
2704
|
+
anonymous: boolean;
|
|
2705
|
+
inputs: {
|
|
2706
|
+
indexed: boolean;
|
|
2707
|
+
internalType: string;
|
|
2708
|
+
name: string;
|
|
2709
|
+
type: string;
|
|
2710
|
+
}[];
|
|
2711
|
+
name: string;
|
|
2712
|
+
type: string;
|
|
2713
|
+
stateMutability?: undefined;
|
|
2714
|
+
outputs?: undefined;
|
|
2715
|
+
} | {
|
|
2716
|
+
inputs: {
|
|
2717
|
+
internalType: string;
|
|
2718
|
+
name: string;
|
|
2719
|
+
type: string;
|
|
2720
|
+
}[];
|
|
2721
|
+
name: string;
|
|
2722
|
+
outputs: {
|
|
2723
|
+
internalType: string;
|
|
2724
|
+
name: string;
|
|
2725
|
+
type: string;
|
|
2726
|
+
}[];
|
|
2311
2727
|
stateMutability: string;
|
|
2312
2728
|
type: string;
|
|
2313
2729
|
anonymous?: undefined;
|
package/dist/utils/artifacts.js
CHANGED
|
@@ -20,10 +20,14 @@ const Auction_json_1 = __importDefault(require("../artifacts/zeno/Auction.sol/Au
|
|
|
20
20
|
const ZenoFactory_json_1 = __importDefault(require("../artifacts/zeno/ZenoFactory.sol/ZenoFactory.json")); // assert { type: "json" };
|
|
21
21
|
const Zeno_json_1 = __importDefault(require("../artifacts/zeno/Zeno.sol/Zeno.json")); // assert { type: "json" };
|
|
22
22
|
const FeeCollector_json_1 = __importDefault(require("../artifacts/core/collectors/FeeCollector.sol/FeeCollector.json")); // assert { type: "json" };
|
|
23
|
-
const IndexToken_json_1 = __importDefault(require("../artifacts/core/tokens/IndexToken.sol/IndexToken.json")); // assert { type: "json" };
|
|
24
23
|
const MockVRFCoordinatorV2_json_1 = __importDefault(require("../artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json")); // assert { type: "json" };
|
|
25
24
|
const BaseVRFv2Consumer_json_1 = __importDefault(require("../artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json")); // assert { type: "json" };
|
|
26
25
|
const RAACPrimeRateOracle_json_1 = __importDefault(require("../artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json")); // assert { type: "json" };
|
|
26
|
+
const RWAVault_json_1 = __importDefault(require("../artifacts/core/vaults/RWAVault.sol/RWAVault.json")); // assert { type: "json" };
|
|
27
|
+
const ERC20AssetAdapter_json_1 = __importDefault(require("../artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json")); // assert { type: "json" };
|
|
28
|
+
const ERC721AssetAdapter_json_1 = __importDefault(require("../artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json")); // assert { type: "json" };
|
|
29
|
+
const ERC20VaultAdapter_json_1 = __importDefault(require("../artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json"));
|
|
30
|
+
const ERC721VaultAdapter_json_1 = __importDefault(require("../artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json"));
|
|
27
31
|
const CRVUSD_ABI = crvUSDToken_json_1.default.abi;
|
|
28
32
|
const RToken_json_2 = __importDefault(require("../artifacts/core/tokens/RToken.sol/RToken.json")); // assert { type: "json" }; // TODO: Isnt this same as rcrvusd?
|
|
29
33
|
const RTOKEN_ABI = RToken_json_2.default.abi;
|
|
@@ -38,6 +42,9 @@ const RAACNFT_ABI = RAACNFT_json_1.default.abi;
|
|
|
38
42
|
const RAACToken_ABI = RAACToken_json_1.default.abi;
|
|
39
43
|
const RAACHOUSEPRICES_ABI = RAACHousePrices_json_1.default.abi;
|
|
40
44
|
const FEECOLLECTOR_ABI = FeeCollector_json_1.default.abi;
|
|
45
|
+
const RWAVAULT_ABI = RWAVault_json_1.default.abi;
|
|
46
|
+
const ERC20ASSETADAPTER_ABI = ERC20AssetAdapter_json_1.default.abi;
|
|
47
|
+
const ERC721ASSETADAPTER_ABI = ERC721AssetAdapter_json_1.default.abi;
|
|
41
48
|
const ABIS = {
|
|
42
49
|
// Tokens
|
|
43
50
|
crvusd: CRVUSD_ABI,
|
|
@@ -63,10 +70,14 @@ const ABIS = {
|
|
|
63
70
|
auctionfactory: AuctionFactory_json_1.default.abi,
|
|
64
71
|
zeno: Zeno_json_1.default.abi,
|
|
65
72
|
zenofactory: ZenoFactory_json_1.default.abi,
|
|
66
|
-
indextoken: IndexToken_json_1.default.abi,
|
|
67
73
|
mockvrfcoordinator: MockVRFCoordinatorV2_json_1.default.abi,
|
|
68
74
|
vrfconsumer: BaseVRFv2Consumer_json_1.default.abi,
|
|
69
75
|
raacprimerateoracle: RAACPrimeRateOracle_json_1.default.abi,
|
|
76
|
+
rwavault: RWAVAULT_ABI,
|
|
77
|
+
erc20assetadapter: ERC20ASSETADAPTER_ABI,
|
|
78
|
+
erc721assetadapter: ERC721ASSETADAPTER_ABI,
|
|
79
|
+
erc20vaultadapter: ERC20VaultAdapter_json_1.default.abi,
|
|
80
|
+
erc721vaultadapter: ERC721VaultAdapter_json_1.default.abi,
|
|
70
81
|
eth: [],
|
|
71
82
|
};
|
|
72
83
|
exports.ABIS = ABIS;
|