@raac/rpc 1.1.0-beta.7 → 1.1.0-beta.71
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 +302 -305
- package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +485 -0
- package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +485 -0
- package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +556 -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/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 +47 -2
- package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +55 -3
- package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +227 -209
- package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +400 -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 +138 -8
- package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +299 -28
- package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
- package/dist/artifacts/core/tokens/RToken.sol/RToken.json +77 -21
- package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +614 -0
- package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +29 -2
- package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +44 -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 +84 -2
- package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +44 -2
- package/dist/artifacts/zeno/Zeno.sol/Zeno.json +29 -2
- package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
- package/dist/configs/chains/11155111.json +70 -20
- package/dist/configs/chains/17000.json +25 -0
- package/dist/configs/chains/18453.json +187 -0
- package/dist/configs/chains/8453.json +61 -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 +21 -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 +182 -70
- package/dist/scripts/run_analysis.js +115 -0
- package/dist/scripts/test_lending_analysis.js +105 -0
- package/dist/scripts/users.js +304 -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 +1 -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/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/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -3
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC4626.d.ts +318 -0
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +1 -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 +316 -0
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts +55 -0
- package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts +25 -0
- 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/IPriceOracle.d.ts +25 -0
- 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/core/oracles/crvUSDPriceOracle.sol/IPriceOracle.d.ts +25 -0
- 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.d.ts +281 -0
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +10 -1
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +117 -138
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +86 -63
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +86 -63
- package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +97 -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 +62 -28
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +23 -7
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +273 -81
- package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +57 -25
- package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.d.ts +231 -0
- 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 -19
- package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
- package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.d.ts +176 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.d.ts +210 -0
- package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +17 -7
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter.d.ts +218 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle.d.ts +47 -0
- package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -0
- 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/interfaces/core/collectors/IDistributionTarget.d.ts +43 -0
- 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/interfaces/core/oracles/IERC20PriceOracle.d.ts +25 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IERC721PriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts +29 -0
- package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +8 -68
- 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 -56
- 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 +170 -43
- 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 +7 -19
- 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/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/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts +25 -0
- 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.d.ts +33 -0
- 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 -3
- 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 -56
- 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/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts +39 -0
- 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/mocks/core/tokens/CrvUSDTokenLimited.d.ts +238 -0
- 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/vrf/index.d.ts +0 -2
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4626__factory.d.ts +472 -0
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC4626__factory.d.ts +632 -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 +13 -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 -9
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__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/utils/math/index.d.ts +1 -0
- 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 +393 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +234 -238
- package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +49 -3
- package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +389 -0
- package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +100 -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 +179 -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 +49 -1
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +180 -2
- package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +180 -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 +25 -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 +409 -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/core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts +21 -0
- 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/core/oracles/RWAIndexTokenOracle.sol/IPriceOracle__factory.d.ts +17 -0
- 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/oracles/crvUSDPriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
- package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +35 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +15 -1
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter__factory.d.ts +433 -0
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +98 -53
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +178 -161
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +118 -53
- package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +132 -51
- 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 +60 -42
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +72 -10
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +56 -42
- package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +324 -107
- package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts +320 -0
- 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 +107 -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 +233 -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 +60 -18
- 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 +21 -1
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter__factory.d.ts +311 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +26 -6
- package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapterNAVOracle__factory.d.ts +25 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/RAACNFTVaultAdapter__factory.d.ts +350 -0
- package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapter.sol/index.d.ts +2 -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/interfaces/core/oracles/IERC721PriceOracle__factory.d.ts +25 -0
- 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/IRAACHousePrices__factory.d.ts +1 -89
- 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 +109 -78
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +8 -0
- package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +201 -44
- 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 +12 -18
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +301 -19
- package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IERC721VaultAdapter__factory.d.ts +41 -0
- 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/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 +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 +671 -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 +25 -1
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts +21 -0
- 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__factory.d.ts +42 -0
- 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 +958 -0
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +29 -11
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +110 -69
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -5
- package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +47 -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 +35 -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 +21 -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 +21 -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 +224 -0
- package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +19 -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 +64 -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 +21 -1
- package/dist/types/typechain-types/index.d.ts +72 -22
- package/dist/types/utils/artifacts.d.ts +678 -93
- 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 +5 -1
- package/dist/utils/artifacts.js +14 -1
- 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 +20 -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/pools/{lendingPool → stabilityPool}/requestWithdraw.d.ts +0 -0
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
+
import type { Signer, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
+
import type { NonPayableOverrides } from "../../../../common";
|
|
4
|
+
import type { RWAIndexTokenCollector, RWAIndexTokenCollectorInterface } from "../../../../contracts/core/collectors/RWAIndexTokenCollector";
|
|
5
|
+
type RWAIndexTokenCollectorConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
+
export declare class RWAIndexTokenCollector__factory extends ContractFactory {
|
|
7
|
+
constructor(...args: RWAIndexTokenCollectorConstructorParams);
|
|
8
|
+
getDeployTransaction(_feeCollector: AddressLike, _rwaIndexToken: AddressLike, overrides?: NonPayableOverrides & {
|
|
9
|
+
from?: string;
|
|
10
|
+
}): Promise<ContractDeployTransaction>;
|
|
11
|
+
deploy(_feeCollector: AddressLike, _rwaIndexToken: AddressLike, overrides?: NonPayableOverrides & {
|
|
12
|
+
from?: string;
|
|
13
|
+
}): Promise<RWAIndexTokenCollector & {
|
|
14
|
+
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
+
}>;
|
|
16
|
+
connect(runner: ContractRunner | null): RWAIndexTokenCollector__factory;
|
|
17
|
+
static readonly bytecode = "0x60a0346100fe57601f610ce138819003918201601f19168301916001600160401b038311848410176101035780849260409485528339810103126100fe57610052602061004b83610119565b9201610119565b600180556001600160a01b039182169190821580156100f4575b6100e25760018060a01b031992836002541617600255169060035416176003557fb018c2a68c7fc5afe268363de7d4d5ac1b736007cdd675ba4b26f948065d703b6080526100b93361012d565b506100c3336101ab565b50604051610a75908161024c823960805181818160d501526104b20152f35b60405163e6c4247b60e01b8152600490fd5b508181161561006c565b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036100fe57565b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166101a757818052816020526040822081835260205260408220600160ff198254161790553391600080516020610cc18339815191528180a4600190565b5090565b6001600160a01b031660008181527f175e50102ecf9cfc73f21ab2786f3296b7cae96dee56a3f6a84b3c656d591ada60205260408120549091907f6c0757dc3e6b28b2580c03fd9e96c274acf4f99d91fbec9b418fa1d70604ff1c9060ff1661024657808352826020526040832082845260205260408320600160ff19825416179055600080516020610cc1833981519152339380a4600190565b50509056fe608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a71461069a5750816305db2f41146106715781630b8478f3146103de578163248a9ca3146103b45781632495a5991461038b5781632f2ff15d1461036157816336568abe1461031b57816391d14854146102d5578163a217fddf146102ba578163a42dce801461023f578163c415b95c14610216578163d547741f146101d7578163e5711e8b146100fc575063fb8dc179146100bf57600080fd5b346100f857816003193601126100f857602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b5080fd5b919050346101d35760603660031901126101d357610118610708565b906101216106ed565b906044359161012e61071e565b6001600160a01b03818116959086156101c457806003541695169485146101b6575091816101ae826101a87f4143f7b5cb6ea007914c32b8a3e64cebc051d7f493fa0755454da1e47701e1259661019a6020975193849263a9059cbb60e01b8a850152602484016108f0565b03601f19810183528261089f565b8661090b565b51908152a380f35b8251637d1eea7760e11b8152fd5b50825163e6c4247b60e01b8152fd5b8280fd5b919050346101d357806003193601126101d357610212913561020d60016101fc6106ed565b938387528660205286200154610786565b61082a565b5080f35b5050346100f857816003193601126100f85760025490516001600160a01b039091168152602090f35b9050346101d35760203660031901126101d35761025a610708565b61026261071e565b6001600160a01b03169182156102ad575050600280546001600160a01b031916821790557f12e1d17016b94668449f97876f4a8d5cc2c19f314db337418894734037cc19d48280a280f35b5163e6c4247b60e01b8152fd5b5050346100f857816003193601126100f85751908152602090f35b9050346101d357816003193601126101d3578160209360ff926102f66106ed565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b8383346100f857806003193601126100f8576103356106ed565b90336001600160a01b03831603610352575061021291923561082a565b5163334bd91960e11b81528390fd5b919050346101d357806003193601126101d357610212913561038660016101fc6106ed565b6107ac565b5050346100f857816003193601126100f85760035490516001600160a01b039091168152602090f35b9050346101d35760203660031901126101d357816020936001923581528085522001549051908152f35b9050346101d357826003193601126101d35760026001541461066357600260015560035482516370a0823160e01b8152308382015260209490916001600160a01b03919082168684602481845afa93841561065957829461062a575b50831561061a5782600254169086519188830190848063095ea7b360e01b9384815261047c8761046e8c87602484016108f0565b03601f19810189528861089f565b86519082875af161048b61097d565b816105ea575b50806105e0575b1561057f575b5050505081600254169086836003541660847f000000000000000000000000000000000000000000000000000000000000000097848a519687948593636033e31560e01b85528401523060248401528960448401528a60648401525af19081156105745750610547575b507f872b616f9b879f608f62eed0559e9c82e8cfdf20899fb09f5b1091f59ef74fcf8582600354169260025416938651908152a4600180555160018152f35b61056690863d881161056d575b61055e818361089f565b8101906108d8565b5038610508565b503d610554565b8651903d90823e3d90fd5b88518a810192909252602482015260448082018590528152608081016001600160401b038111828210176105cd576105c49392916105bf918a528261090b565b61090b565b3880808061049e565b634e487b7160e01b855260418852602485fd5b50823b1515610498565b8051801592508c908315610602575b50505038610491565b61061293508201810191016108d8565b388b816105f9565b855163f164e13560e01b81528590fd5b9093508681813d8311610652575b610642818361089f565b810103126100f85751923861043a565b503d610638565b86513d84823e3d90fd5b9051633ee5aeb560e01b8152fd5b5050346100f857816003193601126100f85760209051600080516020610a208339815191528152f35b8491346101d35760203660031901126101d3573563ffffffff60e01b81168091036101d35760209250637965db0b60e01b81149081156106dc575b5015158152f35b6301ffc9a760e01b149050836106d5565b602435906001600160a01b038216820361070357565b600080fd5b600435906001600160a01b038216820361070357565b3360009081527f175e50102ecf9cfc73f21ab2786f3296b7cae96dee56a3f6a84b3c656d591ada6020526040902054600080516020610a208339815191529060ff16156107685750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b80600052600060205260406000203360005260205260ff60406000205416156107685750565b9060009180835282602052604083209160018060a01b03169182845260205260ff6040842054161560001461082557808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff6040842054166000146108255780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b601f909101601f19168101906001600160401b038211908210176108c257604052565b634e487b7160e01b600052604160045260246000fd5b90816020910312610703575180151581036107035790565b6001600160a01b039091168152602081019190915260400190565b6000806109349260018060a01b03169360208151910182865af161092d61097d565b90836109bc565b8051908115159182610962575b505061094a5750565b60249060405190635274afe760e01b82526004820152fd5b61097592506020809183010191016108d8565b153880610941565b3d156109b7573d906001600160401b0382116108c257604051916109ab601f8201601f19166020018461089f565b82523d6000602084013e565b606090565b906109e357508051156109d157805190602001fd5b604051630a12f52160e11b8152600490fd5b81511580610a16575b6109f4575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b156109ec56fe6c0757dc3e6b28b2580c03fd9e96c274acf4f99d91fbec9b418fa1d70604ff1ca26469706673582212201729389af604a2ced11bd3c94bde60d00908b11fc35e16f209ea3cd25594fc1564736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
|
|
18
|
+
static readonly abi: readonly [{
|
|
19
|
+
readonly inputs: readonly [{
|
|
20
|
+
readonly internalType: "address";
|
|
21
|
+
readonly name: "_feeCollector";
|
|
22
|
+
readonly type: "address";
|
|
23
|
+
}, {
|
|
24
|
+
readonly internalType: "address";
|
|
25
|
+
readonly name: "_rwaIndexToken";
|
|
26
|
+
readonly type: "address";
|
|
27
|
+
}];
|
|
28
|
+
readonly stateMutability: "nonpayable";
|
|
29
|
+
readonly type: "constructor";
|
|
30
|
+
}, {
|
|
31
|
+
readonly inputs: readonly [];
|
|
32
|
+
readonly name: "AccessControlBadConfirmation";
|
|
33
|
+
readonly type: "error";
|
|
34
|
+
}, {
|
|
35
|
+
readonly inputs: readonly [{
|
|
36
|
+
readonly internalType: "address";
|
|
37
|
+
readonly name: "account";
|
|
38
|
+
readonly type: "address";
|
|
39
|
+
}, {
|
|
40
|
+
readonly internalType: "bytes32";
|
|
41
|
+
readonly name: "neededRole";
|
|
42
|
+
readonly type: "bytes32";
|
|
43
|
+
}];
|
|
44
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
45
|
+
readonly type: "error";
|
|
46
|
+
}, {
|
|
47
|
+
readonly inputs: readonly [{
|
|
48
|
+
readonly internalType: "address";
|
|
49
|
+
readonly name: "target";
|
|
50
|
+
readonly type: "address";
|
|
51
|
+
}];
|
|
52
|
+
readonly name: "AddressEmptyCode";
|
|
53
|
+
readonly type: "error";
|
|
54
|
+
}, {
|
|
55
|
+
readonly inputs: readonly [{
|
|
56
|
+
readonly internalType: "address";
|
|
57
|
+
readonly name: "account";
|
|
58
|
+
readonly type: "address";
|
|
59
|
+
}];
|
|
60
|
+
readonly name: "AddressInsufficientBalance";
|
|
61
|
+
readonly type: "error";
|
|
62
|
+
}, {
|
|
63
|
+
readonly inputs: readonly [];
|
|
64
|
+
readonly name: "ApprovalFailed";
|
|
65
|
+
readonly type: "error";
|
|
66
|
+
}, {
|
|
67
|
+
readonly inputs: readonly [];
|
|
68
|
+
readonly name: "CannotRescueMainAsset";
|
|
69
|
+
readonly type: "error";
|
|
70
|
+
}, {
|
|
71
|
+
readonly inputs: readonly [];
|
|
72
|
+
readonly name: "FailedInnerCall";
|
|
73
|
+
readonly type: "error";
|
|
74
|
+
}, {
|
|
75
|
+
readonly inputs: readonly [];
|
|
76
|
+
readonly name: "InvalidAddress";
|
|
77
|
+
readonly type: "error";
|
|
78
|
+
}, {
|
|
79
|
+
readonly inputs: readonly [];
|
|
80
|
+
readonly name: "NoFeesToDistribute";
|
|
81
|
+
readonly type: "error";
|
|
82
|
+
}, {
|
|
83
|
+
readonly inputs: readonly [];
|
|
84
|
+
readonly name: "ReentrancyGuardReentrantCall";
|
|
85
|
+
readonly type: "error";
|
|
86
|
+
}, {
|
|
87
|
+
readonly inputs: readonly [{
|
|
88
|
+
readonly internalType: "address";
|
|
89
|
+
readonly name: "token";
|
|
90
|
+
readonly type: "address";
|
|
91
|
+
}];
|
|
92
|
+
readonly name: "SafeERC20FailedOperation";
|
|
93
|
+
readonly type: "error";
|
|
94
|
+
}, {
|
|
95
|
+
readonly anonymous: false;
|
|
96
|
+
readonly inputs: readonly [{
|
|
97
|
+
readonly indexed: true;
|
|
98
|
+
readonly internalType: "address";
|
|
99
|
+
readonly name: "collector";
|
|
100
|
+
readonly type: "address";
|
|
101
|
+
}];
|
|
102
|
+
readonly name: "FeeCollectorSet";
|
|
103
|
+
readonly type: "event";
|
|
104
|
+
}, {
|
|
105
|
+
readonly anonymous: false;
|
|
106
|
+
readonly inputs: readonly [{
|
|
107
|
+
readonly indexed: true;
|
|
108
|
+
readonly internalType: "address";
|
|
109
|
+
readonly name: "token";
|
|
110
|
+
readonly type: "address";
|
|
111
|
+
}, {
|
|
112
|
+
readonly indexed: true;
|
|
113
|
+
readonly internalType: "address";
|
|
114
|
+
readonly name: "collector";
|
|
115
|
+
readonly type: "address";
|
|
116
|
+
}, {
|
|
117
|
+
readonly indexed: false;
|
|
118
|
+
readonly internalType: "uint256";
|
|
119
|
+
readonly name: "amount";
|
|
120
|
+
readonly type: "uint256";
|
|
121
|
+
}, {
|
|
122
|
+
readonly indexed: true;
|
|
123
|
+
readonly internalType: "bytes32";
|
|
124
|
+
readonly name: "feeType";
|
|
125
|
+
readonly type: "bytes32";
|
|
126
|
+
}];
|
|
127
|
+
readonly name: "FeeDistributed";
|
|
128
|
+
readonly type: "event";
|
|
129
|
+
}, {
|
|
130
|
+
readonly anonymous: false;
|
|
131
|
+
readonly inputs: readonly [{
|
|
132
|
+
readonly indexed: true;
|
|
133
|
+
readonly internalType: "bytes32";
|
|
134
|
+
readonly name: "role";
|
|
135
|
+
readonly type: "bytes32";
|
|
136
|
+
}, {
|
|
137
|
+
readonly indexed: true;
|
|
138
|
+
readonly internalType: "bytes32";
|
|
139
|
+
readonly name: "previousAdminRole";
|
|
140
|
+
readonly type: "bytes32";
|
|
141
|
+
}, {
|
|
142
|
+
readonly indexed: true;
|
|
143
|
+
readonly internalType: "bytes32";
|
|
144
|
+
readonly name: "newAdminRole";
|
|
145
|
+
readonly type: "bytes32";
|
|
146
|
+
}];
|
|
147
|
+
readonly name: "RoleAdminChanged";
|
|
148
|
+
readonly type: "event";
|
|
149
|
+
}, {
|
|
150
|
+
readonly anonymous: false;
|
|
151
|
+
readonly inputs: readonly [{
|
|
152
|
+
readonly indexed: true;
|
|
153
|
+
readonly internalType: "bytes32";
|
|
154
|
+
readonly name: "role";
|
|
155
|
+
readonly type: "bytes32";
|
|
156
|
+
}, {
|
|
157
|
+
readonly indexed: true;
|
|
158
|
+
readonly internalType: "address";
|
|
159
|
+
readonly name: "account";
|
|
160
|
+
readonly type: "address";
|
|
161
|
+
}, {
|
|
162
|
+
readonly indexed: true;
|
|
163
|
+
readonly internalType: "address";
|
|
164
|
+
readonly name: "sender";
|
|
165
|
+
readonly type: "address";
|
|
166
|
+
}];
|
|
167
|
+
readonly name: "RoleGranted";
|
|
168
|
+
readonly type: "event";
|
|
169
|
+
}, {
|
|
170
|
+
readonly anonymous: false;
|
|
171
|
+
readonly inputs: readonly [{
|
|
172
|
+
readonly indexed: true;
|
|
173
|
+
readonly internalType: "bytes32";
|
|
174
|
+
readonly name: "role";
|
|
175
|
+
readonly type: "bytes32";
|
|
176
|
+
}, {
|
|
177
|
+
readonly indexed: true;
|
|
178
|
+
readonly internalType: "address";
|
|
179
|
+
readonly name: "account";
|
|
180
|
+
readonly type: "address";
|
|
181
|
+
}, {
|
|
182
|
+
readonly indexed: true;
|
|
183
|
+
readonly internalType: "address";
|
|
184
|
+
readonly name: "sender";
|
|
185
|
+
readonly type: "address";
|
|
186
|
+
}];
|
|
187
|
+
readonly name: "RoleRevoked";
|
|
188
|
+
readonly type: "event";
|
|
189
|
+
}, {
|
|
190
|
+
readonly anonymous: false;
|
|
191
|
+
readonly inputs: readonly [{
|
|
192
|
+
readonly indexed: true;
|
|
193
|
+
readonly internalType: "address";
|
|
194
|
+
readonly name: "token";
|
|
195
|
+
readonly type: "address";
|
|
196
|
+
}, {
|
|
197
|
+
readonly indexed: true;
|
|
198
|
+
readonly internalType: "address";
|
|
199
|
+
readonly name: "recipient";
|
|
200
|
+
readonly type: "address";
|
|
201
|
+
}, {
|
|
202
|
+
readonly indexed: false;
|
|
203
|
+
readonly internalType: "uint256";
|
|
204
|
+
readonly name: "amount";
|
|
205
|
+
readonly type: "uint256";
|
|
206
|
+
}];
|
|
207
|
+
readonly name: "TokenRescued";
|
|
208
|
+
readonly type: "event";
|
|
209
|
+
}, {
|
|
210
|
+
readonly inputs: readonly [];
|
|
211
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
212
|
+
readonly outputs: readonly [{
|
|
213
|
+
readonly internalType: "bytes32";
|
|
214
|
+
readonly name: "";
|
|
215
|
+
readonly type: "bytes32";
|
|
216
|
+
}];
|
|
217
|
+
readonly stateMutability: "view";
|
|
218
|
+
readonly type: "function";
|
|
219
|
+
}, {
|
|
220
|
+
readonly inputs: readonly [];
|
|
221
|
+
readonly name: "FEE_MANAGER_ROLE";
|
|
222
|
+
readonly outputs: readonly [{
|
|
223
|
+
readonly internalType: "bytes32";
|
|
224
|
+
readonly name: "";
|
|
225
|
+
readonly type: "bytes32";
|
|
226
|
+
}];
|
|
227
|
+
readonly stateMutability: "view";
|
|
228
|
+
readonly type: "function";
|
|
229
|
+
}, {
|
|
230
|
+
readonly inputs: readonly [];
|
|
231
|
+
readonly name: "distributeCollectedFees";
|
|
232
|
+
readonly outputs: readonly [{
|
|
233
|
+
readonly internalType: "bool";
|
|
234
|
+
readonly name: "";
|
|
235
|
+
readonly type: "bool";
|
|
236
|
+
}];
|
|
237
|
+
readonly stateMutability: "nonpayable";
|
|
238
|
+
readonly type: "function";
|
|
239
|
+
}, {
|
|
240
|
+
readonly inputs: readonly [];
|
|
241
|
+
readonly name: "feeCollector";
|
|
242
|
+
readonly outputs: readonly [{
|
|
243
|
+
readonly internalType: "address";
|
|
244
|
+
readonly name: "";
|
|
245
|
+
readonly type: "address";
|
|
246
|
+
}];
|
|
247
|
+
readonly stateMutability: "view";
|
|
248
|
+
readonly type: "function";
|
|
249
|
+
}, {
|
|
250
|
+
readonly inputs: readonly [];
|
|
251
|
+
readonly name: "feeType";
|
|
252
|
+
readonly outputs: readonly [{
|
|
253
|
+
readonly internalType: "bytes32";
|
|
254
|
+
readonly name: "";
|
|
255
|
+
readonly type: "bytes32";
|
|
256
|
+
}];
|
|
257
|
+
readonly stateMutability: "view";
|
|
258
|
+
readonly type: "function";
|
|
259
|
+
}, {
|
|
260
|
+
readonly inputs: readonly [{
|
|
261
|
+
readonly internalType: "bytes32";
|
|
262
|
+
readonly name: "role";
|
|
263
|
+
readonly type: "bytes32";
|
|
264
|
+
}];
|
|
265
|
+
readonly name: "getRoleAdmin";
|
|
266
|
+
readonly outputs: readonly [{
|
|
267
|
+
readonly internalType: "bytes32";
|
|
268
|
+
readonly name: "";
|
|
269
|
+
readonly type: "bytes32";
|
|
270
|
+
}];
|
|
271
|
+
readonly stateMutability: "view";
|
|
272
|
+
readonly type: "function";
|
|
273
|
+
}, {
|
|
274
|
+
readonly inputs: readonly [{
|
|
275
|
+
readonly internalType: "bytes32";
|
|
276
|
+
readonly name: "role";
|
|
277
|
+
readonly type: "bytes32";
|
|
278
|
+
}, {
|
|
279
|
+
readonly internalType: "address";
|
|
280
|
+
readonly name: "account";
|
|
281
|
+
readonly type: "address";
|
|
282
|
+
}];
|
|
283
|
+
readonly name: "grantRole";
|
|
284
|
+
readonly outputs: readonly [];
|
|
285
|
+
readonly stateMutability: "nonpayable";
|
|
286
|
+
readonly type: "function";
|
|
287
|
+
}, {
|
|
288
|
+
readonly inputs: readonly [{
|
|
289
|
+
readonly internalType: "bytes32";
|
|
290
|
+
readonly name: "role";
|
|
291
|
+
readonly type: "bytes32";
|
|
292
|
+
}, {
|
|
293
|
+
readonly internalType: "address";
|
|
294
|
+
readonly name: "account";
|
|
295
|
+
readonly type: "address";
|
|
296
|
+
}];
|
|
297
|
+
readonly name: "hasRole";
|
|
298
|
+
readonly outputs: readonly [{
|
|
299
|
+
readonly internalType: "bool";
|
|
300
|
+
readonly name: "";
|
|
301
|
+
readonly type: "bool";
|
|
302
|
+
}];
|
|
303
|
+
readonly stateMutability: "view";
|
|
304
|
+
readonly type: "function";
|
|
305
|
+
}, {
|
|
306
|
+
readonly inputs: readonly [{
|
|
307
|
+
readonly internalType: "bytes32";
|
|
308
|
+
readonly name: "role";
|
|
309
|
+
readonly type: "bytes32";
|
|
310
|
+
}, {
|
|
311
|
+
readonly internalType: "address";
|
|
312
|
+
readonly name: "callerConfirmation";
|
|
313
|
+
readonly type: "address";
|
|
314
|
+
}];
|
|
315
|
+
readonly name: "renounceRole";
|
|
316
|
+
readonly outputs: readonly [];
|
|
317
|
+
readonly stateMutability: "nonpayable";
|
|
318
|
+
readonly type: "function";
|
|
319
|
+
}, {
|
|
320
|
+
readonly inputs: readonly [{
|
|
321
|
+
readonly internalType: "address";
|
|
322
|
+
readonly name: "tokenAddress";
|
|
323
|
+
readonly type: "address";
|
|
324
|
+
}, {
|
|
325
|
+
readonly internalType: "address";
|
|
326
|
+
readonly name: "recipient";
|
|
327
|
+
readonly type: "address";
|
|
328
|
+
}, {
|
|
329
|
+
readonly internalType: "uint256";
|
|
330
|
+
readonly name: "amount";
|
|
331
|
+
readonly type: "uint256";
|
|
332
|
+
}];
|
|
333
|
+
readonly name: "rescueToken";
|
|
334
|
+
readonly outputs: readonly [];
|
|
335
|
+
readonly stateMutability: "nonpayable";
|
|
336
|
+
readonly type: "function";
|
|
337
|
+
}, {
|
|
338
|
+
readonly inputs: readonly [{
|
|
339
|
+
readonly internalType: "bytes32";
|
|
340
|
+
readonly name: "role";
|
|
341
|
+
readonly type: "bytes32";
|
|
342
|
+
}, {
|
|
343
|
+
readonly internalType: "address";
|
|
344
|
+
readonly name: "account";
|
|
345
|
+
readonly type: "address";
|
|
346
|
+
}];
|
|
347
|
+
readonly name: "revokeRole";
|
|
348
|
+
readonly outputs: readonly [];
|
|
349
|
+
readonly stateMutability: "nonpayable";
|
|
350
|
+
readonly type: "function";
|
|
351
|
+
}, {
|
|
352
|
+
readonly inputs: readonly [{
|
|
353
|
+
readonly internalType: "address";
|
|
354
|
+
readonly name: "_feeCollector";
|
|
355
|
+
readonly type: "address";
|
|
356
|
+
}];
|
|
357
|
+
readonly name: "setFeeCollector";
|
|
358
|
+
readonly outputs: readonly [];
|
|
359
|
+
readonly stateMutability: "nonpayable";
|
|
360
|
+
readonly type: "function";
|
|
361
|
+
}, {
|
|
362
|
+
readonly inputs: readonly [{
|
|
363
|
+
readonly internalType: "bytes4";
|
|
364
|
+
readonly name: "interfaceId";
|
|
365
|
+
readonly type: "bytes4";
|
|
366
|
+
}];
|
|
367
|
+
readonly name: "supportsInterface";
|
|
368
|
+
readonly outputs: readonly [{
|
|
369
|
+
readonly internalType: "bool";
|
|
370
|
+
readonly name: "";
|
|
371
|
+
readonly type: "bool";
|
|
372
|
+
}];
|
|
373
|
+
readonly stateMutability: "view";
|
|
374
|
+
readonly type: "function";
|
|
375
|
+
}, {
|
|
376
|
+
readonly inputs: readonly [];
|
|
377
|
+
readonly name: "underlyingToken";
|
|
378
|
+
readonly outputs: readonly [{
|
|
379
|
+
readonly internalType: "address";
|
|
380
|
+
readonly name: "";
|
|
381
|
+
readonly type: "address";
|
|
382
|
+
}];
|
|
383
|
+
readonly stateMutability: "view";
|
|
384
|
+
readonly type: "function";
|
|
385
|
+
}];
|
|
386
|
+
static createInterface(): RWAIndexTokenCollectorInterface;
|
|
387
|
+
static connect(address: string, runner?: ContractRunner | null): RWAIndexTokenCollector;
|
|
388
|
+
}
|
|
389
|
+
export {};
|
package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
14
14
|
deploymentTransaction(): ContractTransactionResponse;
|
|
15
15
|
}>;
|
|
16
16
|
connect(runner: ContractRunner | null): Treasury__factory;
|
|
17
|
-
static readonly bytecode = "
|
|
17
|
+
static readonly bytecode = "0x60803461008e57601f610f2f38819003918201601f19168301916001600160401b038311848410176100935780849260209460405283398101031261008e57516001600160a01b03811680820361008e57600180551561007c578061006661006c926100a9565b50610127565b50604051610d4790816101c88239f35b60405163e6c4247b60e01b8152600490fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff1661012357818052816020526040822081835260205260408220600160ff198254161790553391600080516020610f0f8339815191528180a4600190565b5090565b6001600160a01b031660008181527fe84508f2c7fa9c351146748b3025cb78b45df37d868e48c6a75102fecdeee64560205260408120549091907f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b089060ff166101c257808352826020526040832082845260205260408320600160ff19825416179055600080516020610f0f833981519152339380a4600190565b50509056fe608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a71461070257508163248a9ca3146106d85781632f2ff15d146106ae57816336568abe1461066857816347e7ef241461064557816369328dec146104ec5781636d69fcaf1461041657816375151b63146103d8578163763191901461025b57816391d1485414610215578163a217fddf146101fa578163a8031a1d146101bd578163c62556261461017a578163d547741f1461013757508063ec87621c1461010f5763f8b2cb4f146100d557600080fd5b3461010b57602036600319011261010b5760209181906001600160a01b036100fb61078a565b1681526002845220549051908152f35b5080fd5b503461010b578160031936011261010b5760209051600080516020610cf28339815191528152f35b91905034610176578060031936011261017657610172913561016d600161015c61076f565b938387528660205286200154610839565b6108dd565b5080f35b8280fd5b8284346101ba5760203660031901126101ba57823592548310156101ba57506101a46020926107a0565b905491519160018060a01b039160031b1c168152f35b80fd5b50503461010b578060031936011261010b576020906101ef6101dd61078a565b6101e5610952565b60243590336109d1565b600180555160018152f35b50503461010b578160031936011261010b5751908152602090f35b9050346101765781600319360112610176578160209360ff9261023661076f565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b8391503461010b57602036600319011261010b5761027761078a565b926102806107d1565b6001600160a01b0393841680845260036020819052828520549192909160ff16156103c95782855281602052842060ff198154169055835b8354808210156103bd5783876102cd846107a0565b905490861b1c16146102fe575060001981146102eb576001016102b8565b634e487b7160e01b855260118452602485fd5b90600096929493959619918281019081116103aa579061033184610324610350946107a0565b905490891b1c16916107a0565b90919082549060031b9160018060a01b03809116831b921b1916179055565b82548015610397570192610363846107a0565b81939154921b1b19169055555b7f4c910b69fe65a61f7531b9c5042b2329ca7179c77290aa7e2eb3afa3c8511fd38280a280f35b634e487b7160e01b875260318452602487fd5b634e487b7160e01b885260118552602488fd5b50505091925050610370565b51633dd1b30560e01b81528390fd5b50503461010b57602036600319011261010b5760209160ff9082906001600160a01b0361040361078a565b1681526003855220541690519015158152f35b83833461010b57602036600319011261010b5761043161078a565b6104396107d1565b6001600160a01b0381169182156104dd57828452600360205260ff81852054166104ce5782845260036020528320805460ff191660011790558354600160401b8110156104bb579061033182866001610494950190556107a0565b7f784c8f4dbf0ffedd6e72c76501c545a70f8b203b30a26ce542bf92ba87c248a48280a280f35b634e487b7160e01b845260418552602484fd5b5163c78e82ad60e01b81528490fd5b5163e6c4247b60e01b81528490fd5b9050346101765760603660031901126101765761050761078a565b6044356001600160a01b03818116946024359390928690036106415761052b610952565b6105336107d1565b1692831561063357841561062557838652600260205282828720541061061757838652600360205260ff82872054161561060957838652600260205281862061057d8482546109ae565b9055815163a9059cbb60e01b602082015260248101869052604480820185905281529060808201906001600160401b038211838310176105f65750916105ea7fcbcdbdf10631a43cc99c80acace8232649421c3f4f73919f16013d47c83a687a9492602094835286610bbb565b51908152a36001805580f35b634e487b7160e01b885260419052602487fd5b9051633dd1b30560e01b8152fd5b9051631e9acf1760e31b8152fd5b9051634e46966960e11b8152fd5b905163e6c4247b60e01b8152fd5b8680fd5b50503461010b573660031901126101ba576106616101dd61078a565b6001805580f35b83833461010b578060031936011261010b5761068261076f565b90336001600160a01b0383160361069f57506101729192356108dd565b5163334bd91960e11b81528390fd5b9190503461017657806003193601126101765761017291356106d3600161015c61076f565b61085f565b90503461017657602036600319011261017657816020936001923581528085522001549051908152f35b849134610176576020366003190112610176573563ffffffff60e01b8116809103610176576020925063a8031a1d60e01b8114908115610744575b5015158152f35b637965db0b60e01b81149150811561075e575b508361073d565b6301ffc9a760e01b14905083610757565b602435906001600160a01b038216820361078557565b600080fd5b600435906001600160a01b038216820361078557565b6004548110156107bb57600460005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b3360009081527fe84508f2c7fa9c351146748b3025cb78b45df37d868e48c6a75102fecdeee6456020526040902054600080516020610cf28339815191529060ff161561081b5750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b80600052600060205260406000203360005260205260ff604060002054161561081b5750565b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416156000146108d857808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff6040842054166000146108d85780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a4600190565b600260015414610963576002600155565b604051633ee5aeb560e01b8152600490fd5b601f909101601f19168101906001600160401b0382119082101761099857604052565b634e487b7160e01b600052604160045260246000fd5b919082039182116109bb57565b634e487b7160e01b600052601160045260246000fd5b90929160018060a01b03809416916000948386526020926003845260409260ff848920541615610baa578515610b99578115610b88578351916370a0823160e01b9384845230600485015286846024818b5afa938415610b7e578a94610b4b575b5085516323b872dd60e01b8882015292166024830152306044830152606480830191909152815260a081016001600160401b03811182821017610b37578452610a7b9086610bbb565b82519182523060048301528382602481885afa8015610b2d578790610afe575b610aa592506109ae565b9083865260028352808620805490838201809211610aea577f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4959697505551908152a2565b634e487b7160e01b88526011600452602488fd5b508382813d8311610b26575b610b148183610975565b8101031261064157610aa59151610a9b565b503d610b0a565b83513d89823e3d90fd5b634e487b7160e01b89526041600452602489fd5b9093508681813d8311610b77575b610b638183610975565b81010312610b7357519238610a32565b8980fd5b503d610b59565b86513d8c823e3d90fd5b835163162908e360e11b8152600490fd5b835163e6c4247b60e01b8152600490fd5b8351633dd1b30560e01b8152600490fd5b60018060a01b031690600080826020829451910182865af13d15610c82573d906001600160401b038211610c6e5790610c169160405191610c066020601f19601f8401160184610975565b82523d84602084013e5b84610c8e565b908151918215159283610c46575b505050610c2e5750565b60249060405190635274afe760e01b82526004820152fd5b81929350906020918101031261010b5760200151908115918215036101ba5750388080610c24565b634e487b7160e01b83526041600452602483fd5b610c1690606090610c10565b90610cb55750805115610ca357805190602001fd5b604051630a12f52160e11b8152600490fd5b81511580610ce8575b610cc6575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b15610cbe56fe241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08a26469706673582212206fb231052fc1265cca215ede99d3c8a3999edcdf38392c003ffb5d26ded7671f64736f6c634300081400332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d";
|
|
18
18
|
static readonly abi: readonly [{
|
|
19
19
|
readonly inputs: readonly [{
|
|
20
20
|
readonly internalType: "address";
|
|
@@ -39,6 +39,26 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
39
39
|
}];
|
|
40
40
|
readonly name: "AccessControlUnauthorizedAccount";
|
|
41
41
|
readonly type: "error";
|
|
42
|
+
}, {
|
|
43
|
+
readonly inputs: readonly [{
|
|
44
|
+
readonly internalType: "address";
|
|
45
|
+
readonly name: "target";
|
|
46
|
+
readonly type: "address";
|
|
47
|
+
}];
|
|
48
|
+
readonly name: "AddressEmptyCode";
|
|
49
|
+
readonly type: "error";
|
|
50
|
+
}, {
|
|
51
|
+
readonly inputs: readonly [{
|
|
52
|
+
readonly internalType: "address";
|
|
53
|
+
readonly name: "account";
|
|
54
|
+
readonly type: "address";
|
|
55
|
+
}];
|
|
56
|
+
readonly name: "AddressInsufficientBalance";
|
|
57
|
+
readonly type: "error";
|
|
58
|
+
}, {
|
|
59
|
+
readonly inputs: readonly [];
|
|
60
|
+
readonly name: "FailedInnerCall";
|
|
61
|
+
readonly type: "error";
|
|
42
62
|
}, {
|
|
43
63
|
readonly inputs: readonly [];
|
|
44
64
|
readonly name: "InsufficientBalance";
|
|
@@ -60,30 +80,31 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
60
80
|
readonly name: "ReentrancyGuardReentrantCall";
|
|
61
81
|
readonly type: "error";
|
|
62
82
|
}, {
|
|
63
|
-
readonly inputs: readonly [];
|
|
64
|
-
readonly name: "UnauthorizedCaller";
|
|
65
|
-
readonly type: "error";
|
|
66
|
-
}, {
|
|
67
|
-
readonly anonymous: false;
|
|
68
83
|
readonly inputs: readonly [{
|
|
69
|
-
readonly indexed: true;
|
|
70
84
|
readonly internalType: "address";
|
|
71
85
|
readonly name: "token";
|
|
72
86
|
readonly type: "address";
|
|
73
|
-
}, {
|
|
74
|
-
readonly indexed: false;
|
|
75
|
-
readonly internalType: "uint256";
|
|
76
|
-
readonly name: "amount";
|
|
77
|
-
readonly type: "uint256";
|
|
78
87
|
}];
|
|
79
|
-
readonly name: "
|
|
80
|
-
readonly type: "
|
|
88
|
+
readonly name: "SafeERC20FailedOperation";
|
|
89
|
+
readonly type: "error";
|
|
90
|
+
}, {
|
|
91
|
+
readonly inputs: readonly [];
|
|
92
|
+
readonly name: "TokenAlreadySupported";
|
|
93
|
+
readonly type: "error";
|
|
94
|
+
}, {
|
|
95
|
+
readonly inputs: readonly [];
|
|
96
|
+
readonly name: "TokenNotSupported";
|
|
97
|
+
readonly type: "error";
|
|
98
|
+
}, {
|
|
99
|
+
readonly inputs: readonly [];
|
|
100
|
+
readonly name: "UnauthorizedCaller";
|
|
101
|
+
readonly type: "error";
|
|
81
102
|
}, {
|
|
82
103
|
readonly anonymous: false;
|
|
83
104
|
readonly inputs: readonly [{
|
|
84
105
|
readonly indexed: true;
|
|
85
106
|
readonly internalType: "address";
|
|
86
|
-
readonly name: "
|
|
107
|
+
readonly name: "token";
|
|
87
108
|
readonly type: "address";
|
|
88
109
|
}, {
|
|
89
110
|
readonly indexed: false;
|
|
@@ -91,7 +112,7 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
91
112
|
readonly name: "amount";
|
|
92
113
|
readonly type: "uint256";
|
|
93
114
|
}];
|
|
94
|
-
readonly name: "
|
|
115
|
+
readonly name: "Deposited";
|
|
95
116
|
readonly type: "event";
|
|
96
117
|
}, {
|
|
97
118
|
readonly anonymous: false;
|
|
@@ -153,6 +174,26 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
153
174
|
}];
|
|
154
175
|
readonly name: "RoleRevoked";
|
|
155
176
|
readonly type: "event";
|
|
177
|
+
}, {
|
|
178
|
+
readonly anonymous: false;
|
|
179
|
+
readonly inputs: readonly [{
|
|
180
|
+
readonly indexed: true;
|
|
181
|
+
readonly internalType: "address";
|
|
182
|
+
readonly name: "token";
|
|
183
|
+
readonly type: "address";
|
|
184
|
+
}];
|
|
185
|
+
readonly name: "TokenAdded";
|
|
186
|
+
readonly type: "event";
|
|
187
|
+
}, {
|
|
188
|
+
readonly anonymous: false;
|
|
189
|
+
readonly inputs: readonly [{
|
|
190
|
+
readonly indexed: true;
|
|
191
|
+
readonly internalType: "address";
|
|
192
|
+
readonly name: "token";
|
|
193
|
+
readonly type: "address";
|
|
194
|
+
}];
|
|
195
|
+
readonly name: "TokenRemoved";
|
|
196
|
+
readonly type: "event";
|
|
156
197
|
}, {
|
|
157
198
|
readonly anonymous: false;
|
|
158
199
|
readonly inputs: readonly [{
|
|
@@ -173,16 +214,6 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
173
214
|
}];
|
|
174
215
|
readonly name: "Withdrawn";
|
|
175
216
|
readonly type: "event";
|
|
176
|
-
}, {
|
|
177
|
-
readonly inputs: readonly [];
|
|
178
|
-
readonly name: "ALLOCATOR_ROLE";
|
|
179
|
-
readonly outputs: readonly [{
|
|
180
|
-
readonly internalType: "bytes32";
|
|
181
|
-
readonly name: "";
|
|
182
|
-
readonly type: "bytes32";
|
|
183
|
-
}];
|
|
184
|
-
readonly stateMutability: "view";
|
|
185
|
-
readonly type: "function";
|
|
186
217
|
}, {
|
|
187
218
|
readonly inputs: readonly [];
|
|
188
219
|
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
@@ -206,14 +237,10 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
206
237
|
}, {
|
|
207
238
|
readonly inputs: readonly [{
|
|
208
239
|
readonly internalType: "address";
|
|
209
|
-
readonly name: "
|
|
240
|
+
readonly name: "token";
|
|
210
241
|
readonly type: "address";
|
|
211
|
-
}, {
|
|
212
|
-
readonly internalType: "uint256";
|
|
213
|
-
readonly name: "amount";
|
|
214
|
-
readonly type: "uint256";
|
|
215
242
|
}];
|
|
216
|
-
readonly name: "
|
|
243
|
+
readonly name: "addSupportedToken";
|
|
217
244
|
readonly outputs: readonly [];
|
|
218
245
|
readonly stateMutability: "nonpayable";
|
|
219
246
|
readonly type: "function";
|
|
@@ -242,26 +269,12 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
242
269
|
readonly type: "uint256";
|
|
243
270
|
}];
|
|
244
271
|
readonly name: "distributeRewards";
|
|
245
|
-
readonly outputs: readonly [];
|
|
246
|
-
readonly stateMutability: "nonpayable";
|
|
247
|
-
readonly type: "function";
|
|
248
|
-
}, {
|
|
249
|
-
readonly inputs: readonly [{
|
|
250
|
-
readonly internalType: "address";
|
|
251
|
-
readonly name: "allocator";
|
|
252
|
-
readonly type: "address";
|
|
253
|
-
}, {
|
|
254
|
-
readonly internalType: "address";
|
|
255
|
-
readonly name: "recipient";
|
|
256
|
-
readonly type: "address";
|
|
257
|
-
}];
|
|
258
|
-
readonly name: "getAllocation";
|
|
259
272
|
readonly outputs: readonly [{
|
|
260
|
-
readonly internalType: "
|
|
273
|
+
readonly internalType: "bool";
|
|
261
274
|
readonly name: "";
|
|
262
|
-
readonly type: "
|
|
275
|
+
readonly type: "bool";
|
|
263
276
|
}];
|
|
264
|
-
readonly stateMutability: "
|
|
277
|
+
readonly stateMutability: "nonpayable";
|
|
265
278
|
readonly type: "function";
|
|
266
279
|
}, {
|
|
267
280
|
readonly inputs: readonly [{
|
|
@@ -291,16 +304,6 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
291
304
|
}];
|
|
292
305
|
readonly stateMutability: "view";
|
|
293
306
|
readonly type: "function";
|
|
294
|
-
}, {
|
|
295
|
-
readonly inputs: readonly [];
|
|
296
|
-
readonly name: "getTotalValue";
|
|
297
|
-
readonly outputs: readonly [{
|
|
298
|
-
readonly internalType: "uint256";
|
|
299
|
-
readonly name: "";
|
|
300
|
-
readonly type: "uint256";
|
|
301
|
-
}];
|
|
302
|
-
readonly stateMutability: "view";
|
|
303
|
-
readonly type: "function";
|
|
304
307
|
}, {
|
|
305
308
|
readonly inputs: readonly [{
|
|
306
309
|
readonly internalType: "bytes32";
|
|
@@ -333,6 +336,30 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
333
336
|
}];
|
|
334
337
|
readonly stateMutability: "view";
|
|
335
338
|
readonly type: "function";
|
|
339
|
+
}, {
|
|
340
|
+
readonly inputs: readonly [{
|
|
341
|
+
readonly internalType: "address";
|
|
342
|
+
readonly name: "";
|
|
343
|
+
readonly type: "address";
|
|
344
|
+
}];
|
|
345
|
+
readonly name: "isTokenSupported";
|
|
346
|
+
readonly outputs: readonly [{
|
|
347
|
+
readonly internalType: "bool";
|
|
348
|
+
readonly name: "";
|
|
349
|
+
readonly type: "bool";
|
|
350
|
+
}];
|
|
351
|
+
readonly stateMutability: "view";
|
|
352
|
+
readonly type: "function";
|
|
353
|
+
}, {
|
|
354
|
+
readonly inputs: readonly [{
|
|
355
|
+
readonly internalType: "address";
|
|
356
|
+
readonly name: "token";
|
|
357
|
+
readonly type: "address";
|
|
358
|
+
}];
|
|
359
|
+
readonly name: "removeSupportedToken";
|
|
360
|
+
readonly outputs: readonly [];
|
|
361
|
+
readonly stateMutability: "nonpayable";
|
|
362
|
+
readonly type: "function";
|
|
336
363
|
}, {
|
|
337
364
|
readonly inputs: readonly [{
|
|
338
365
|
readonly internalType: "bytes32";
|
|
@@ -361,6 +388,20 @@ export declare class Treasury__factory extends ContractFactory {
|
|
|
361
388
|
readonly outputs: readonly [];
|
|
362
389
|
readonly stateMutability: "nonpayable";
|
|
363
390
|
readonly type: "function";
|
|
391
|
+
}, {
|
|
392
|
+
readonly inputs: readonly [{
|
|
393
|
+
readonly internalType: "uint256";
|
|
394
|
+
readonly name: "";
|
|
395
|
+
readonly type: "uint256";
|
|
396
|
+
}];
|
|
397
|
+
readonly name: "supportedTokens";
|
|
398
|
+
readonly outputs: readonly [{
|
|
399
|
+
readonly internalType: "address";
|
|
400
|
+
readonly name: "";
|
|
401
|
+
readonly type: "address";
|
|
402
|
+
}];
|
|
403
|
+
readonly stateMutability: "view";
|
|
404
|
+
readonly type: "function";
|
|
364
405
|
}, {
|
|
365
406
|
readonly inputs: readonly [{
|
|
366
407
|
readonly internalType: "bytes4";
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export * as nftRoyaltyFeeCollectorSol from "./NFTRoyaltyFeeCollector.sol";
|
|
2
|
+
export { ERC20Collector__factory } from "./ERC20Collector__factory";
|
|
2
3
|
export { FeeCollector__factory } from "./FeeCollector__factory";
|
|
4
|
+
export { RAACTokenCollector__factory } from "./RAACTokenCollector__factory";
|
|
5
|
+
export { RWAIndexTokenCollector__factory } from "./RWAIndexTokenCollector__factory";
|
|
3
6
|
export { Treasury__factory } from "./Treasury__factory";
|