@raac/rpc 1.1.0-beta.8 → 1.1.0-beta.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (564) hide show
  1. package/dist/RPCLibrary.js +53 -6
  2. package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +279 -309
  3. package/dist/artifacts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.json +246 -0
  4. package/dist/artifacts/core/collectors/RAACTokenCollector.sol/RAACTokenCollector.json +458 -0
  5. package/dist/artifacts/core/collectors/RWAIndexTokenCollector.sol/RWAIndexTokenCollector.json +458 -0
  6. package/dist/artifacts/core/collectors/Treasury.sol/Treasury.json +529 -0
  7. package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +2 -93
  8. package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +169 -13
  9. package/dist/artifacts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.json +556 -0
  10. package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +637 -0
  11. package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +190 -29
  12. package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +20 -2
  13. package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +55 -3
  14. package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +267 -220
  15. package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +421 -124
  16. package/dist/artifacts/core/primitives/ComplianceRegistry.sol/ComplianceRegistry.json +397 -0
  17. package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +223 -7
  18. package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +111 -8
  19. package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +272 -28
  20. package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
  21. package/dist/artifacts/core/tokens/RToken.sol/RToken.json +50 -39
  22. package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +25 -2
  23. package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +2 -2
  24. package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +17 -9
  25. package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +89 -9
  26. package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +405 -108
  27. package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +2 -2
  28. package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
  29. package/dist/artifacts/zeno/Auction.sol/Auction.json +57 -2
  30. package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +44 -2
  31. package/dist/artifacts/zeno/Zeno.sol/Zeno.json +2 -2
  32. package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +2 -2
  33. package/dist/configs/chains/11155111.json +80 -20
  34. package/dist/configs/chains/17000.json +25 -0
  35. package/dist/configs/chains/18453.json +187 -0
  36. package/dist/configs/chains/8453.json +66 -18
  37. package/dist/configs/chains/index.js +2 -0
  38. package/dist/minter/get.js +1 -3
  39. package/dist/minter/getApy.js +2 -2
  40. package/dist/nfts/approveNFT.js +25 -0
  41. package/dist/nfts/getApprovalForAll.js +32 -0
  42. package/dist/nfts/getNFTApproval.js +33 -0
  43. package/dist/nfts/getOwnerOfNFT.js +39 -0
  44. package/dist/nfts/setApprovalForAll.js +34 -0
  45. package/dist/oracles/chainlink-networks-config.js +252 -0
  46. package/dist/oracles/encryptSecretURLs.js +25 -0
  47. package/dist/oracles/encryptSecrets.js +29 -0
  48. package/dist/oracles/houses/config.js +19 -0
  49. package/dist/oracles/houses/request.js +176 -0
  50. package/dist/oracles/houses/simulate.js +21 -0
  51. package/dist/oracles/prime-rate/config.js +16 -0
  52. package/dist/oracles/prime-rate/request.js +149 -0
  53. package/dist/oracles/prime-rate/simulate.js +25 -0
  54. package/dist/pools/lendingPool/_helpers.js +2 -3
  55. package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +4 -3
  56. package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +4 -3
  57. package/dist/pools/lendingPool/borrowFromLendingPool.js +5 -3
  58. package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +34 -3
  59. package/dist/pools/lendingPool/calculateInsuranceFee.js +2 -2
  60. package/dist/pools/lendingPool/closeLiquidation.js +2 -2
  61. package/dist/pools/lendingPool/depositAssetToLendingPool.js +2 -2
  62. package/dist/pools/lendingPool/depositToLendingPool.js +4 -2
  63. package/dist/pools/lendingPool/getAdapterAddress.js +8 -10
  64. package/dist/pools/lendingPool/getAdapters.js +1 -1
  65. package/dist/pools/lendingPool/getEligibleUserDeposits.js +1 -1
  66. package/dist/pools/lendingPool/getHealthFactor.js +2 -2
  67. package/dist/pools/lendingPool/getLendingPoolInfo.js +24 -15
  68. package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +1 -1
  69. package/dist/pools/lendingPool/getParameters.js +3 -4
  70. package/dist/pools/lendingPool/getPositionDebt.js +2 -2
  71. package/dist/pools/lendingPool/getPositionScaledDebt.js +2 -2
  72. package/dist/pools/lendingPool/getPositionView.js +1 -1
  73. package/dist/pools/lendingPool/getPositionsScaledDebt.js +1 -1
  74. package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +1 -1
  75. package/dist/pools/lendingPool/getUserCollateralValue.js +1 -1
  76. package/dist/pools/lendingPool/initializeLiquidation.js +2 -2
  77. package/dist/pools/lendingPool/openVaultPosition.js +2 -4
  78. package/dist/pools/lendingPool/repayToLendingPool.js +2 -2
  79. package/dist/pools/lendingPool/vaultOpened.js +22 -0
  80. package/dist/pools/lendingPool/withdrawAssetFromLendingPool.js +3 -4
  81. package/dist/pools/lendingPool/withdrawFromLendingPool.js +7 -4
  82. package/dist/pools/rwaVault/_helpers.js +2 -3
  83. package/dist/pools/rwaVault/depositToRWAVault.js +6 -5
  84. package/dist/pools/rwaVault/getNextRandomNFT.js +1 -1
  85. package/dist/pools/rwaVault/getRWAVaultInfo.js +3 -14
  86. package/dist/pools/rwaVault/previewDeposit.js +16 -0
  87. package/dist/pools/rwaVault/previewWithdraw.js +16 -0
  88. package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +9 -5
  89. package/dist/pools/rwaVault/requestRandomSeed.js +1 -1
  90. package/dist/pools/stabilityPool/_helpers.js +11 -0
  91. package/dist/pools/stabilityPool/getStabilityPoolInfo.js +2 -39
  92. package/dist/pools/stabilityPool/getWithdrawRequestInfo.js +28 -0
  93. package/dist/pools/{lendingPool → stabilityPool}/requestWithdraw.js +2 -7
  94. package/dist/scripts/analyze_lending_positions.js +277 -0
  95. package/dist/scripts/analyze_transfers.js +247 -0
  96. package/dist/scripts/calculate_portfolio.js +167 -0
  97. package/dist/scripts/generateErrorMap.js +180 -0
  98. package/dist/scripts/index.js +211 -78
  99. package/dist/scripts/liquidation.js +176 -0
  100. package/dist/scripts/run_analysis.js +115 -0
  101. package/dist/scripts/test_lending_analysis.js +105 -0
  102. package/dist/scripts/users.js +305 -0
  103. package/dist/test.js +323 -0
  104. package/dist/types/RPCLibrary.d.ts +37 -9
  105. package/dist/types/configs/chains/index.d.ts +5 -3
  106. package/dist/types/configs/index.d.ts +2 -1
  107. package/dist/types/nfts/approveNFT.d.ts +9 -0
  108. package/dist/types/nfts/getApprovalForAll.d.ts +14 -0
  109. package/dist/types/nfts/getNFTApproval.d.ts +14 -0
  110. package/dist/types/nfts/getOwnerOfNFT.d.ts +13 -0
  111. package/dist/types/nfts/setApprovalForAll.d.ts +14 -0
  112. package/dist/types/oracles/chainlink-networks-config.d.ts +222 -0
  113. package/dist/types/oracles/encryptSecretURLs.d.ts +5 -0
  114. package/dist/types/oracles/encryptSecrets.d.ts +4 -0
  115. package/dist/types/oracles/houses/config.d.ts +13 -0
  116. package/dist/types/oracles/houses/request.d.ts +5 -0
  117. package/dist/types/oracles/houses/simulate.d.ts +1 -0
  118. package/dist/types/oracles/prime-rate/config.d.ts +14 -0
  119. package/dist/types/oracles/prime-rate/request.d.ts +2 -0
  120. package/dist/types/oracles/prime-rate/simulate.d.ts +1 -0
  121. package/dist/types/pools/lendingPool/_helpers.d.ts +2 -2
  122. package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +4 -2
  123. package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +4 -2
  124. package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +2 -2
  125. package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +2 -2
  126. package/dist/types/pools/lendingPool/closeLiquidation.d.ts +2 -2
  127. package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +2 -2
  128. package/dist/types/pools/lendingPool/getHealthFactor.d.ts +2 -2
  129. package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +2 -0
  130. package/dist/types/pools/lendingPool/getParameters.d.ts +1 -2
  131. package/dist/types/pools/lendingPool/getPositionDebt.d.ts +2 -2
  132. package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +2 -2
  133. package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +2 -2
  134. package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +2 -2
  135. package/dist/types/pools/lendingPool/vaultOpened.d.ts +11 -0
  136. package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +2 -3
  137. package/dist/types/pools/rwaVault/_helpers.d.ts +2 -2
  138. package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +2 -2
  139. package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +2 -6
  140. package/dist/types/pools/rwaVault/previewDeposit.d.ts +4 -0
  141. package/dist/types/pools/rwaVault/previewWithdraw.d.ts +4 -0
  142. package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +3 -2
  143. package/dist/types/pools/stabilityPool/_helpers.d.ts +4 -0
  144. package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +0 -3
  145. package/dist/types/pools/stabilityPool/getWithdrawRequestInfo.d.ts +13 -0
  146. package/dist/types/scripts/analyze_lending_positions.d.ts +1 -0
  147. package/dist/types/scripts/analyze_transfers.d.ts +1 -0
  148. package/dist/types/scripts/calculate_portfolio.d.ts +1 -0
  149. package/dist/types/scripts/generateErrorMap.d.ts +1 -0
  150. package/dist/types/scripts/liquidation.d.ts +1 -0
  151. package/dist/types/scripts/run_analysis.d.ts +1 -0
  152. package/dist/types/scripts/test_lending_analysis.d.ts +1 -0
  153. package/dist/types/scripts/users.d.ts +1 -0
  154. package/dist/types/test.d.ts +1 -0
  155. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -3
  156. package/dist/types/typechain-types/@openzeppelin/contracts/index.d.ts +2 -0
  157. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.d.ts +65 -0
  158. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +1 -0
  159. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.d.ts +36 -0
  160. package/dist/types/typechain-types/@openzeppelin/contracts/{utils/math/Math.d.ts → proxy/ERC1967/ERC1967Utils.d.ts} +4 -4
  161. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
  162. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/Proxy.d.ts +20 -0
  163. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/IBeacon.d.ts +25 -0
  164. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
  165. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/index.d.ts +7 -0
  166. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.d.ts +74 -0
  167. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy.d.ts +80 -0
  168. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.d.ts +51 -0
  169. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
  170. package/dist/types/typechain-types/@openzeppelin/contracts/proxy/transparent/index.d.ts +3 -0
  171. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.d.ts +36 -0
  172. package/dist/types/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
  173. package/dist/types/typechain-types/contracts/core/collectors/ERC20Collector.d.ts +264 -0
  174. package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +180 -178
  175. package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +17 -5
  176. package/dist/types/typechain-types/contracts/core/collectors/RAACTokenCollector.d.ts +264 -0
  177. package/dist/types/typechain-types/contracts/core/collectors/RWAIndexTokenCollector.d.ts +264 -0
  178. package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +53 -52
  179. package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +3 -0
  180. package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +119 -5
  181. package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +19 -1
  182. package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +119 -5
  183. package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +119 -5
  184. package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +2 -6
  185. package/dist/types/typechain-types/contracts/core/governance/proposals/TimelockController.d.ts +33 -3
  186. package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +1 -41
  187. package/dist/types/typechain-types/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +36 -20
  188. package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +112 -27
  189. package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +116 -10
  190. package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle.d.ts +338 -0
  191. package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle.d.ts +55 -0
  192. package/dist/types/typechain-types/contracts/{mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts → core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle.d.ts} +9 -9
  193. package/dist/types/typechain-types/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
  194. package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +128 -27
  195. package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +112 -27
  196. package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle.d.ts +37 -0
  197. package/dist/types/typechain-types/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
  198. package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle.d.ts +33 -0
  199. package/dist/types/typechain-types/contracts/{mocks/core/oracles/MockERC20PriceOracle.sol → core/oracles/crvUSDPriceOracle.sol}/IPriceOracle.d.ts +1 -1
  200. package/dist/types/typechain-types/contracts/core/oracles/crvUSDPriceOracle.sol/index.d.ts +2 -0
  201. package/dist/types/typechain-types/contracts/core/oracles/index.d.ts +6 -0
  202. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +10 -1
  203. package/dist/types/typechain-types/contracts/core/pools/LendingPool/{ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts → ERC721AssetAdapter.d.ts} +29 -2
  204. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +145 -153
  205. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +94 -63
  206. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +94 -63
  207. package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +105 -62
  208. package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +1 -2
  209. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +66 -28
  210. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +36 -8
  211. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +312 -81
  212. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +61 -25
  213. package/dist/types/typechain-types/contracts/core/primitives/{ComplianceRegistry.d.ts → ComplianceRegistry.sol/ComplianceRegistry.d.ts} +30 -2
  214. package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList.d.ts +25 -0
  215. package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
  216. package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +129 -7
  217. package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -1
  218. package/dist/types/typechain-types/contracts/core/tokens/DEToken.d.ts +39 -9
  219. package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +12 -111
  220. package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +191 -31
  221. package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +15 -33
  222. package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +5 -1
  223. package/dist/types/typechain-types/contracts/core/vaults/{ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts → ERC20VaultAdapter.d.ts} +10 -8
  224. package/dist/types/typechain-types/contracts/core/vaults/{ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts → ERC721VaultAdapter.d.ts} +40 -8
  225. package/dist/types/typechain-types/contracts/core/vaults/RAACNFTVaultAdapterV2.d.ts +262 -0
  226. package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +321 -65
  227. package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +3 -4
  228. package/dist/types/typechain-types/contracts/{mocks/libraries/governance/RAACVotingMock.d.ts → interfaces/core/collectors/IDistributionTarget.d.ts} +25 -23
  229. package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +136 -44
  230. package/dist/types/typechain-types/contracts/interfaces/core/collectors/ITreasury.d.ts +23 -42
  231. package/dist/types/typechain-types/contracts/interfaces/core/collectors/index.d.ts +1 -0
  232. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +101 -5
  233. package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +2 -6
  234. package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +33 -3
  235. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +1 -37
  236. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +21 -20
  237. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +47 -1
  238. package/dist/types/typechain-types/contracts/{core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts → interfaces/core/oracles/IERC20PriceOracle.d.ts} +9 -13
  239. package/dist/types/typechain-types/contracts/{core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts → interfaces/core/oracles/IERC721PriceOracle.d.ts} +6 -6
  240. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePriceOracle.d.ts +29 -0
  241. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer.d.ts +71 -0
  242. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePrices.d.ts +49 -0
  243. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
  244. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable.d.ts +35 -0
  245. package/dist/types/typechain-types/contracts/interfaces/core/oracles/index.d.ts +6 -1
  246. package/dist/types/typechain-types/contracts/interfaces/core/pools/ILiquidityPool.d.ts +26 -12
  247. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +10 -1
  248. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +80 -70
  249. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +52 -1
  250. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +205 -42
  251. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDEToken.d.ts +31 -1
  252. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +7 -15
  253. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +127 -29
  254. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRToken.d.ts +11 -33
  255. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +315 -23
  256. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IERC721VaultAdapter.d.ts +37 -0
  257. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +1 -3
  258. package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +1 -0
  259. package/dist/types/typechain-types/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +33 -1
  260. package/dist/types/typechain-types/contracts/libraries/pools/LendingPoolFeeLibrary.d.ts +20 -0
  261. package/dist/types/typechain-types/contracts/libraries/pools/index.d.ts +1 -0
  262. package/dist/types/typechain-types/contracts/mocks/core/collectors/MockTreasury.d.ts +23 -58
  263. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveCrvUSDVaultMock.d.ts +358 -0
  264. package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +1 -0
  265. package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget.d.ts +37 -0
  266. package/dist/types/typechain-types/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
  267. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockChainlinkAggregator.d.ts +151 -0
  268. package/dist/types/typechain-types/contracts/{interfaces/IHousePrices.d.ts → mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle.d.ts} +10 -14
  269. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA.d.ts +59 -0
  270. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
  271. package/dist/types/typechain-types/contracts/mocks/core/oracles/{MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts → MockERC20PriceOracle.d.ts} +1 -1
  272. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle.d.ts +169 -0
  273. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable.d.ts +171 -0
  274. package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +128 -27
  275. package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +112 -27
  276. package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +6 -2
  277. package/dist/types/typechain-types/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool.d.ts +593 -0
  278. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPool.d.ts +11 -17
  279. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +10 -7
  280. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +80 -70
  281. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLiquidityPool.d.ts +26 -12
  282. package/dist/types/typechain-types/contracts/mocks/core/pools/index.d.ts +1 -0
  283. package/dist/types/typechain-types/{@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts → contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis.d.ts} +18 -14
  284. package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList.d.ts +25 -0
  285. package/dist/types/typechain-types/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
  286. package/dist/types/typechain-types/contracts/mocks/core/primitives/MockDistributableContract.d.ts +9 -1
  287. package/dist/types/typechain-types/contracts/mocks/core/primitives/index.d.ts +2 -0
  288. package/dist/types/typechain-types/contracts/{core/tokens/IndexToken.d.ts → mocks/core/tokens/CrvUSDTokenLimited.d.ts} +53 -155
  289. package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +1 -0
  290. package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +5 -1
  291. package/dist/types/typechain-types/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation.d.ts +185 -0
  292. package/dist/types/typechain-types/contracts/mocks/libraries/pools/index.d.ts +1 -0
  293. package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +33 -2
  294. package/dist/types/typechain-types/contracts/zeno/AuctionFactory.d.ts +34 -2
  295. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
  296. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
  297. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
  298. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +1 -1
  299. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -2
  300. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +1 -1
  301. package/dist/types/typechain-types/factories/@openzeppelin/contracts/index.d.ts +1 -0
  302. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.d.ts +42 -0
  303. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +1 -0
  304. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.d.ts +71 -0
  305. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.d.ts +50 -0
  306. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.d.ts +2 -0
  307. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.d.ts +10 -0
  308. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.d.ts +17 -0
  309. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.d.ts +1 -0
  310. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/index.d.ts +4 -0
  311. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/ProxyAdmin__factory.d.ts +115 -0
  312. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/ITransparentUpgradeableProxy__factory.d.ts +56 -0
  313. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy__factory.d.ts +102 -0
  314. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/index.d.ts +2 -0
  315. package/dist/types/typechain-types/factories/@openzeppelin/contracts/proxy/transparent/index.d.ts +2 -0
  316. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
  317. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -1
  318. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +1 -1
  319. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
  320. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +1 -1
  321. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
  322. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +1 -1
  323. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
  324. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable__factory.d.ts +29 -0
  325. package/dist/types/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +1 -0
  326. package/dist/types/typechain-types/factories/contracts/core/collectors/ERC20Collector__factory.d.ts +373 -0
  327. package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +214 -238
  328. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +29 -3
  329. package/dist/types/typechain-types/factories/contracts/core/collectors/RAACTokenCollector__factory.d.ts +369 -0
  330. package/dist/types/typechain-types/factories/contracts/core/collectors/RWAIndexTokenCollector__factory.d.ts +369 -0
  331. package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +80 -59
  332. package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +3 -0
  333. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +159 -1
  334. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1 -1
  335. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +29 -1
  336. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +160 -2
  337. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +160 -2
  338. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +14 -2
  339. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +25 -1
  340. package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1 -1
  341. package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1 -71
  342. package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +43 -10
  343. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +128 -23
  344. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +135 -14
  345. package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/CrvUSDToUSDOracle__factory.d.ts +443 -0
  346. package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/ICrvUSDToUSDOracle__factory.d.ts +45 -0
  347. package/dist/types/typechain-types/factories/contracts/{interfaces/IHousePrices__factory.d.ts → core/oracles/CrvUSDToUSDOracle.sol/ICrvUsdCurveOracle__factory.d.ts} +6 -6
  348. package/dist/types/typechain-types/factories/contracts/core/oracles/CrvUSDToUSDOracle.sol/index.d.ts +3 -0
  349. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +203 -28
  350. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +153 -28
  351. package/dist/types/typechain-types/factories/contracts/{mocks/core/oracles/MockERC20PriceOracle.sol → core/oracles/RWAIndexTokenOracle.sol}/IPriceOracle__factory.d.ts +1 -1
  352. package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/RWAIndexTokenOracle__factory.d.ts +74 -0
  353. package/dist/types/typechain-types/factories/contracts/core/oracles/RWAIndexTokenOracle.sol/index.d.ts +2 -0
  354. package/dist/types/typechain-types/factories/contracts/core/oracles/crvUSDPriceOracle.sol/CrvUSDPriceOracle__factory.d.ts +52 -0
  355. package/dist/types/typechain-types/factories/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/crvUSDPriceOracle.sol}/IPriceOracle__factory.d.ts +1 -1
  356. package/dist/types/typechain-types/factories/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/crvUSDPriceOracle.sol}/index.d.ts +1 -1
  357. package/dist/types/typechain-types/factories/contracts/core/oracles/index.d.ts +3 -0
  358. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +15 -1
  359. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/{ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts → ERC721AssetAdapter__factory.d.ts} +44 -4
  360. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +103 -50
  361. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +186 -173
  362. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +101 -56
  363. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +117 -48
  364. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +1 -1
  365. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +70 -34
  366. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +82 -8
  367. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +58 -34
  368. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +344 -109
  369. package/dist/types/typechain-types/factories/contracts/core/primitives/{ComplianceRegistry__factory.d.ts → ComplianceRegistry.sol/ComplianceRegistry__factory.d.ts} +47 -3
  370. package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/SanctionsList__factory.d.ts +21 -0
  371. package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry.sol/index.d.ts +2 -0
  372. package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +174 -8
  373. package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +1 -1
  374. package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +87 -9
  375. package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +15 -168
  376. package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
  377. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +213 -24
  378. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
  379. package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +40 -32
  380. package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +22 -4
  381. package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1 -1
  382. package/dist/types/typechain-types/factories/contracts/core/vaults/{ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts → ERC20VaultAdapter__factory.d.ts} +15 -9
  383. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter__factory.d.ts +347 -0
  384. package/dist/types/typechain-types/factories/contracts/core/vaults/RAACNFTVaultAdapterV2__factory.d.ts +417 -0
  385. package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +318 -86
  386. package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +3 -2
  387. package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +4 -0
  388. package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IDistributionTarget__factory.d.ts +39 -0
  389. package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +131 -95
  390. package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +20 -49
  391. package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/index.d.ts +1 -0
  392. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +133 -1
  393. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +13 -1
  394. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +24 -0
  395. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -60
  396. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +19 -16
  397. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +52 -1
  398. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IERC20PriceOracle__factory.d.ts +17 -0
  399. package/dist/types/typechain-types/factories/contracts/{core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts → interfaces/core/oracles/IERC721PriceOracle__factory.d.ts} +8 -4
  400. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePriceOracle__factory.d.ts +21 -0
  401. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePriceSyncer__factory.d.ts +59 -0
  402. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePrices__factory.d.ts +67 -0
  403. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices.sol/index.d.ts +2 -0
  404. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IZKMEVerifyUpgradeable__factory.d.ts +25 -0
  405. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/index.d.ts +5 -1
  406. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +26 -10
  407. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +14 -0
  408. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +53 -0
  409. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +113 -92
  410. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +12 -0
  411. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +236 -41
  412. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +70 -0
  413. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +10 -16
  414. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +122 -22
  415. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +19 -29
  416. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +301 -19
  417. package/dist/types/typechain-types/factories/contracts/interfaces/{IPoolManager__factory.d.ts → core/vaults/IERC721VaultAdapter__factory.d.ts} +20 -22
  418. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +0 -4
  419. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +1 -0
  420. package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +64 -0
  421. package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +4 -0
  422. package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
  423. package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +1 -1
  424. package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +1 -1
  425. package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -1
  426. package/dist/types/typechain-types/factories/contracts/libraries/pools/LendingPoolFeeLibrary__factory.d.ts +42 -0
  427. package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
  428. package/dist/types/typechain-types/factories/contracts/libraries/pools/index.d.ts +1 -0
  429. package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
  430. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +21 -68
  431. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +1 -1
  432. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveCrvUSDVaultMock__factory.d.ts +651 -0
  433. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +1 -1
  434. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +1 -0
  435. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -1
  436. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockPayableTestTarget__factory.d.ts +65 -0
  437. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
  438. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/index.d.ts +1 -0
  439. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +1 -1
  440. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockChainlinkAggregator__factory.d.ts +168 -0
  441. package/dist/types/typechain-types/factories/contracts/{core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts → mocks/core/oracles/MockCurveEMA.sol/ICrvUsdCurveOracle__factory.d.ts} +7 -7
  442. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/MockCurveEMA__factory.d.ts +98 -0
  443. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockCurveEMA.sol/index.d.ts +2 -0
  444. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/{MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts → MockERC20PriceOracle__factory.d.ts} +3 -3
  445. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +1 -1
  446. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
  447. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockRAACNFTVaultAdapterNAVOracle__factory.d.ts +242 -0
  448. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +1 -1
  449. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockZKMEVerifyUpgradeable__factory.d.ts +184 -0
  450. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +203 -28
  451. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +153 -28
  452. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +5 -1
  453. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/CurveStyleCrvUSDiRAACPool__factory.d.ts +938 -0
  454. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +9 -11
  455. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +114 -83
  456. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +15 -19
  457. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +27 -11
  458. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
  459. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
  460. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/index.d.ts +1 -0
  461. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/MockChainAnalysis__factory.d.ts +50 -0
  462. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/SanctionsList__factory.d.ts +21 -0
  463. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockChainAnalysis.sol/index.d.ts +2 -0
  464. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
  465. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
  466. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +15 -1
  467. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
  468. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/index.d.ts +1 -0
  469. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDTokenLimited__factory.d.ts +431 -0
  470. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
  471. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +1 -1
  472. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
  473. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -1
  474. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -1
  475. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -1
  476. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
  477. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
  478. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +1 -0
  479. package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -1
  480. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
  481. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +1 -1
  482. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +1 -1
  483. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +1 -1
  484. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
  485. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
  486. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMockCalculation__factory.d.ts +228 -0
  487. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +23 -5
  488. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/index.d.ts +1 -0
  489. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
  490. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
  491. package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
  492. package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +34 -1
  493. package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +44 -1
  494. package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +1 -1
  495. package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +1 -1
  496. package/dist/types/typechain-types/index.d.ts +88 -18
  497. package/dist/types/utils/artifacts.d.ts +997 -284
  498. package/dist/types/utils/contracts.d.ts +4 -2
  499. package/dist/types/utils/errorDecoder.d.ts +37 -0
  500. package/dist/types/wallet/assets/approveNFT.d.ts +0 -0
  501. package/dist/types/wallet/assets/getAllowance.d.ts +1 -1
  502. package/dist/types/wallet/assets/getBalance.d.ts +3 -3
  503. package/dist/utils/artifacts.js +16 -0
  504. package/dist/utils/errorDecoder.js +137 -0
  505. package/dist/wallet/assets/approveNFT.js +0 -0
  506. package/dist/wallet/assets/getAllowance.js +3 -3
  507. package/dist/wallet/assets/getBalance.js +14 -6
  508. package/package.json +8 -4
  509. package/dist/pools/lendingPool/getWithdrawRequestInfo.js +0 -25
  510. package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +0 -8
  511. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -156
  512. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
  513. package/dist/types/typechain-types/contracts/core/governance/boost/BoostController.d.ts +0 -573
  514. package/dist/types/typechain-types/contracts/core/governance/boost/index.d.ts +0 -1
  515. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
  516. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -283
  517. package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +0 -2
  518. package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
  519. package/dist/types/typechain-types/contracts/interfaces/IPoolManager.d.ts +0 -37
  520. package/dist/types/typechain-types/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -164
  521. package/dist/types/typechain-types/contracts/interfaces/IveRAACDistributor.d.ts +0 -59
  522. package/dist/types/typechain-types/contracts/interfaces/core/governance/IBoostController.d.ts +0 -269
  523. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -235
  524. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +0 -117
  525. package/dist/types/typechain-types/contracts/libraries/governance/Checkpoints.d.ts +0 -55
  526. package/dist/types/typechain-types/contracts/libraries/governance/RAACVoting.d.ts +0 -45
  527. package/dist/types/typechain-types/contracts/libraries/governance/VotingPowerLib.d.ts +0 -66
  528. package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -845
  529. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
  530. package/dist/types/typechain-types/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -510
  531. package/dist/types/typechain-types/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -83
  532. package/dist/types/typechain-types/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -281
  533. package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -100
  534. package/dist/types/typechain-types/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
  535. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -33
  536. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -171
  537. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -1
  538. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
  539. package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
  540. package/dist/types/typechain-types/factories/contracts/core/governance/boost/index.d.ts +0 -1
  541. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +0 -2
  542. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
  543. package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
  544. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +0 -287
  545. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +0 -2
  546. package/dist/types/typechain-types/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -189
  547. package/dist/types/typechain-types/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -75
  548. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -295
  549. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -307
  550. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +0 -141
  551. package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
  552. package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
  553. package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
  554. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
  555. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +0 -2
  556. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
  557. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
  558. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
  559. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
  560. package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -17
  561. package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
  562. package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -2
  563. /package/dist/types/pools/{lendingPool → stabilityPool}/requestWithdraw.d.ts +0 -0
  564. /package/dist/types/typechain-types/contracts/core/{vaults/ERC20VaultAdapter.sol → oracles/RWAIndexTokenOracle.sol}/IPriceOracle.d.ts +0 -0
@@ -605,6 +605,56 @@ declare const ABIS: {
605
605
  type: string;
606
606
  anonymous?: undefined;
607
607
  })[];
608
+ raachousepriceoracle: ({
609
+ inputs: {
610
+ internalType: string;
611
+ name: string;
612
+ type: string;
613
+ }[];
614
+ stateMutability: string;
615
+ type: string;
616
+ name?: undefined;
617
+ anonymous?: undefined;
618
+ outputs?: undefined;
619
+ } | {
620
+ inputs: {
621
+ internalType: string;
622
+ name: string;
623
+ type: string;
624
+ }[];
625
+ name: string;
626
+ type: string;
627
+ stateMutability?: undefined;
628
+ anonymous?: undefined;
629
+ outputs?: undefined;
630
+ } | {
631
+ anonymous: boolean;
632
+ inputs: {
633
+ indexed: boolean;
634
+ internalType: string;
635
+ name: string;
636
+ type: string;
637
+ }[];
638
+ name: string;
639
+ type: string;
640
+ stateMutability?: undefined;
641
+ outputs?: undefined;
642
+ } | {
643
+ inputs: {
644
+ internalType: string;
645
+ name: string;
646
+ type: string;
647
+ }[];
648
+ name: string;
649
+ outputs: {
650
+ internalType: string;
651
+ name: string;
652
+ type: string;
653
+ }[];
654
+ stateMutability: string;
655
+ type: string;
656
+ anonymous?: undefined;
657
+ })[];
608
658
  feecollector: ({
609
659
  inputs: {
610
660
  internalType: string;
@@ -1472,128 +1522,320 @@ declare const ABIS: {
1472
1522
  type: string;
1473
1523
  anonymous?: undefined;
1474
1524
  })[];
1475
- };
1476
- export type AssetType = keyof typeof ABIS | string;
1477
- export type ContractType = keyof typeof ABIS;
1478
- declare const getABI: (name: keyof typeof ABIS) => ({
1479
- inputs: {
1480
- internalType: string;
1481
- name: string;
1525
+ complianceregistry: ({
1526
+ inputs: any[];
1527
+ stateMutability: string;
1482
1528
  type: string;
1483
- }[];
1484
- stateMutability: string;
1485
- type: string;
1486
- name?: undefined;
1487
- anonymous?: undefined;
1488
- outputs?: undefined;
1489
- } | {
1490
- inputs: {
1491
- internalType: string;
1529
+ name?: undefined;
1530
+ anonymous?: undefined;
1531
+ outputs?: undefined;
1532
+ } | {
1533
+ inputs: {
1534
+ internalType: string;
1535
+ name: string;
1536
+ type: string;
1537
+ }[];
1492
1538
  name: string;
1493
1539
  type: string;
1494
- }[];
1495
- name: string;
1496
- type: string;
1497
- stateMutability?: undefined;
1498
- anonymous?: undefined;
1499
- outputs?: undefined;
1500
- } | {
1501
- anonymous: boolean;
1502
- inputs: {
1503
- indexed: boolean;
1504
- internalType: string;
1540
+ stateMutability?: undefined;
1541
+ anonymous?: undefined;
1542
+ outputs?: undefined;
1543
+ } | {
1544
+ anonymous: boolean;
1545
+ inputs: {
1546
+ indexed: boolean;
1547
+ internalType: string;
1548
+ name: string;
1549
+ type: string;
1550
+ }[];
1505
1551
  name: string;
1506
1552
  type: string;
1507
- }[];
1508
- name: string;
1509
- type: string;
1510
- stateMutability?: undefined;
1511
- outputs?: undefined;
1512
- } | {
1513
- inputs: {
1514
- internalType: string;
1553
+ stateMutability?: undefined;
1554
+ outputs?: undefined;
1555
+ } | {
1556
+ inputs: {
1557
+ internalType: string;
1558
+ name: string;
1559
+ type: string;
1560
+ }[];
1515
1561
  name: string;
1562
+ outputs: {
1563
+ internalType: string;
1564
+ name: string;
1565
+ type: string;
1566
+ }[];
1567
+ stateMutability: string;
1516
1568
  type: string;
1517
- }[];
1518
- name: string;
1519
- outputs: {
1520
- internalType: string;
1521
- name: string;
1569
+ anonymous?: undefined;
1570
+ })[];
1571
+ treasury: ({
1572
+ inputs: {
1573
+ internalType: string;
1574
+ name: string;
1575
+ type: string;
1576
+ }[];
1577
+ stateMutability: string;
1522
1578
  type: string;
1523
- }[];
1524
- stateMutability: string;
1525
- type: string;
1526
- anonymous?: undefined;
1527
- })[] | ({
1528
- inputs: {
1529
- internalType: string;
1579
+ name?: undefined;
1580
+ anonymous?: undefined;
1581
+ outputs?: undefined;
1582
+ } | {
1583
+ inputs: {
1584
+ internalType: string;
1585
+ name: string;
1586
+ type: string;
1587
+ }[];
1530
1588
  name: string;
1531
1589
  type: string;
1532
- }[];
1533
- stateMutability: string;
1534
- type: string;
1535
- name?: undefined;
1536
- anonymous?: undefined;
1537
- outputs?: undefined;
1538
- } | {
1539
- inputs: {
1540
- internalType: string;
1590
+ stateMutability?: undefined;
1591
+ anonymous?: undefined;
1592
+ outputs?: undefined;
1593
+ } | {
1594
+ anonymous: boolean;
1595
+ inputs: {
1596
+ indexed: boolean;
1597
+ internalType: string;
1598
+ name: string;
1599
+ type: string;
1600
+ }[];
1541
1601
  name: string;
1542
1602
  type: string;
1543
- }[];
1544
- name: string;
1545
- type: string;
1546
- stateMutability?: undefined;
1547
- anonymous?: undefined;
1548
- outputs?: undefined;
1549
- } | {
1550
- anonymous: boolean;
1551
- inputs: {
1552
- indexed: boolean;
1553
- internalType: string;
1603
+ stateMutability?: undefined;
1604
+ outputs?: undefined;
1605
+ } | {
1606
+ inputs: {
1607
+ internalType: string;
1608
+ name: string;
1609
+ type: string;
1610
+ }[];
1554
1611
  name: string;
1612
+ outputs: {
1613
+ internalType: string;
1614
+ name: string;
1615
+ type: string;
1616
+ }[];
1617
+ stateMutability: string;
1555
1618
  type: string;
1556
- }[];
1557
- name: string;
1558
- type: string;
1559
- stateMutability?: undefined;
1560
- outputs?: undefined;
1561
- } | {
1562
- inputs: {
1563
- internalType: string;
1564
- name: string;
1619
+ anonymous?: undefined;
1620
+ })[];
1621
+ rwaindextokencollector: ({
1622
+ inputs: {
1623
+ internalType: string;
1624
+ name: string;
1625
+ type: string;
1626
+ }[];
1627
+ stateMutability: string;
1565
1628
  type: string;
1566
- }[];
1567
- name: string;
1568
- outputs: {
1569
- internalType: string;
1629
+ name?: undefined;
1630
+ anonymous?: undefined;
1631
+ outputs?: undefined;
1632
+ } | {
1633
+ inputs: {
1634
+ internalType: string;
1635
+ name: string;
1636
+ type: string;
1637
+ }[];
1570
1638
  name: string;
1571
1639
  type: string;
1572
- }[];
1573
- stateMutability: string;
1574
- type: string;
1575
- anonymous?: undefined;
1576
- } | {
1577
- inputs: {
1578
- internalType: string;
1640
+ stateMutability?: undefined;
1641
+ anonymous?: undefined;
1642
+ outputs?: undefined;
1643
+ } | {
1644
+ anonymous: boolean;
1645
+ inputs: {
1646
+ indexed: boolean;
1647
+ internalType: string;
1648
+ name: string;
1649
+ type: string;
1650
+ }[];
1579
1651
  name: string;
1580
1652
  type: string;
1581
- }[];
1582
- name: string;
1583
- outputs: {
1584
- components: {
1653
+ stateMutability?: undefined;
1654
+ outputs?: undefined;
1655
+ } | {
1656
+ inputs: {
1585
1657
  internalType: string;
1586
1658
  name: string;
1587
1659
  type: string;
1588
1660
  }[];
1589
- internalType: string;
1590
1661
  name: string;
1591
- type: string;
1592
- }[];
1593
- stateMutability: string;
1594
- type: string;
1595
- anonymous?: undefined;
1596
- })[] | ({
1662
+ outputs: {
1663
+ internalType: string;
1664
+ name: string;
1665
+ type: string;
1666
+ }[];
1667
+ stateMutability: string;
1668
+ type: string;
1669
+ anonymous?: undefined;
1670
+ })[];
1671
+ raactokencollector: ({
1672
+ inputs: {
1673
+ internalType: string;
1674
+ name: string;
1675
+ type: string;
1676
+ }[];
1677
+ stateMutability: string;
1678
+ type: string;
1679
+ name?: undefined;
1680
+ anonymous?: undefined;
1681
+ outputs?: undefined;
1682
+ } | {
1683
+ inputs: {
1684
+ internalType: string;
1685
+ name: string;
1686
+ type: string;
1687
+ }[];
1688
+ name: string;
1689
+ type: string;
1690
+ stateMutability?: undefined;
1691
+ anonymous?: undefined;
1692
+ outputs?: undefined;
1693
+ } | {
1694
+ anonymous: boolean;
1695
+ inputs: {
1696
+ indexed: boolean;
1697
+ internalType: string;
1698
+ name: string;
1699
+ type: string;
1700
+ }[];
1701
+ name: string;
1702
+ type: string;
1703
+ stateMutability?: undefined;
1704
+ outputs?: undefined;
1705
+ } | {
1706
+ inputs: {
1707
+ internalType: string;
1708
+ name: string;
1709
+ type: string;
1710
+ }[];
1711
+ name: string;
1712
+ outputs: {
1713
+ internalType: string;
1714
+ name: string;
1715
+ type: string;
1716
+ }[];
1717
+ stateMutability: string;
1718
+ type: string;
1719
+ anonymous?: undefined;
1720
+ })[];
1721
+ crvusdtousdoracle: ({
1722
+ inputs: {
1723
+ internalType: string;
1724
+ name: string;
1725
+ type: string;
1726
+ }[];
1727
+ stateMutability: string;
1728
+ type: string;
1729
+ name?: undefined;
1730
+ anonymous?: undefined;
1731
+ outputs?: undefined;
1732
+ } | {
1733
+ inputs: {
1734
+ internalType: string;
1735
+ name: string;
1736
+ type: string;
1737
+ }[];
1738
+ name: string;
1739
+ type: string;
1740
+ stateMutability?: undefined;
1741
+ anonymous?: undefined;
1742
+ outputs?: undefined;
1743
+ } | {
1744
+ anonymous: boolean;
1745
+ inputs: {
1746
+ indexed: boolean;
1747
+ internalType: string;
1748
+ name: string;
1749
+ type: string;
1750
+ }[];
1751
+ name: string;
1752
+ type: string;
1753
+ stateMutability?: undefined;
1754
+ outputs?: undefined;
1755
+ } | {
1756
+ inputs: any[];
1757
+ name: string;
1758
+ outputs: {
1759
+ internalType: string;
1760
+ name: string;
1761
+ type: string;
1762
+ }[];
1763
+ stateMutability: string;
1764
+ type: string;
1765
+ anonymous?: undefined;
1766
+ } | {
1767
+ inputs: {
1768
+ internalType: string;
1769
+ name: string;
1770
+ type: string;
1771
+ }[];
1772
+ name: string;
1773
+ outputs: any[];
1774
+ stateMutability: string;
1775
+ type: string;
1776
+ anonymous?: undefined;
1777
+ })[];
1778
+ nftroyaltyfeecollector: ({
1779
+ inputs: {
1780
+ internalType: string;
1781
+ name: string;
1782
+ type: string;
1783
+ }[];
1784
+ stateMutability: string;
1785
+ type: string;
1786
+ name?: undefined;
1787
+ anonymous?: undefined;
1788
+ outputs?: undefined;
1789
+ } | {
1790
+ inputs: {
1791
+ internalType: string;
1792
+ name: string;
1793
+ type: string;
1794
+ }[];
1795
+ name: string;
1796
+ type: string;
1797
+ stateMutability?: undefined;
1798
+ anonymous?: undefined;
1799
+ outputs?: undefined;
1800
+ } | {
1801
+ anonymous: boolean;
1802
+ inputs: {
1803
+ indexed: boolean;
1804
+ internalType: string;
1805
+ name: string;
1806
+ type: string;
1807
+ }[];
1808
+ name: string;
1809
+ type: string;
1810
+ stateMutability?: undefined;
1811
+ outputs?: undefined;
1812
+ } | {
1813
+ inputs: {
1814
+ internalType: string;
1815
+ name: string;
1816
+ type: string;
1817
+ }[];
1818
+ name: string;
1819
+ outputs: {
1820
+ internalType: string;
1821
+ name: string;
1822
+ type: string;
1823
+ }[];
1824
+ stateMutability: string;
1825
+ type: string;
1826
+ anonymous?: undefined;
1827
+ } | {
1828
+ stateMutability: string;
1829
+ type: string;
1830
+ inputs?: undefined;
1831
+ name?: undefined;
1832
+ anonymous?: undefined;
1833
+ outputs?: undefined;
1834
+ })[];
1835
+ };
1836
+ export type AssetType = keyof typeof ABIS | string;
1837
+ export type ContractType = keyof typeof ABIS;
1838
+ declare const getABI: (name: keyof typeof ABIS) => ({
1597
1839
  inputs: {
1598
1840
  internalType: string;
1599
1841
  name: string;
@@ -1810,7 +2052,11 @@ declare const getABI: (name: keyof typeof ABIS) => ({
1810
2052
  type: string;
1811
2053
  anonymous?: undefined;
1812
2054
  } | {
1813
- inputs: any[];
2055
+ inputs: {
2056
+ internalType: string;
2057
+ name: string;
2058
+ type: string;
2059
+ }[];
1814
2060
  name: string;
1815
2061
  outputs: {
1816
2062
  components: {
@@ -1913,13 +2159,594 @@ declare const getABI: (name: keyof typeof ABIS) => ({
1913
2159
  internalType: string;
1914
2160
  name: string;
1915
2161
  type: string;
1916
- }[];
2162
+ }[];
2163
+ name: string;
2164
+ outputs: {
2165
+ internalType: string;
2166
+ name: string;
2167
+ type: string;
2168
+ }[];
2169
+ stateMutability: string;
2170
+ type: string;
2171
+ anonymous?: undefined;
2172
+ } | {
2173
+ inputs: any[];
2174
+ name: string;
2175
+ outputs: {
2176
+ components: {
2177
+ internalType: string;
2178
+ name: string;
2179
+ type: string;
2180
+ }[];
2181
+ internalType: string;
2182
+ name: string;
2183
+ type: string;
2184
+ }[];
2185
+ stateMutability: string;
2186
+ type: string;
2187
+ anonymous?: undefined;
2188
+ })[] | ({
2189
+ inputs: {
2190
+ internalType: string;
2191
+ name: string;
2192
+ type: string;
2193
+ }[];
2194
+ stateMutability: string;
2195
+ type: string;
2196
+ name?: undefined;
2197
+ anonymous?: undefined;
2198
+ outputs?: undefined;
2199
+ } | {
2200
+ inputs: {
2201
+ internalType: string;
2202
+ name: string;
2203
+ type: string;
2204
+ }[];
2205
+ name: string;
2206
+ type: string;
2207
+ stateMutability?: undefined;
2208
+ anonymous?: undefined;
2209
+ outputs?: undefined;
2210
+ } | {
2211
+ anonymous: boolean;
2212
+ inputs: {
2213
+ indexed: boolean;
2214
+ internalType: string;
2215
+ name: string;
2216
+ type: string;
2217
+ }[];
2218
+ name: string;
2219
+ type: string;
2220
+ stateMutability?: undefined;
2221
+ outputs?: undefined;
2222
+ } | {
2223
+ inputs: {
2224
+ internalType: string;
2225
+ name: string;
2226
+ type: string;
2227
+ }[];
2228
+ name: string;
2229
+ outputs: {
2230
+ internalType: string;
2231
+ name: string;
2232
+ type: string;
2233
+ }[];
2234
+ stateMutability: string;
2235
+ type: string;
2236
+ anonymous?: undefined;
2237
+ })[] | ({
2238
+ inputs: {
2239
+ internalType: string;
2240
+ name: string;
2241
+ type: string;
2242
+ }[];
2243
+ stateMutability: string;
2244
+ type: string;
2245
+ name?: undefined;
2246
+ anonymous?: undefined;
2247
+ outputs?: undefined;
2248
+ } | {
2249
+ inputs: {
2250
+ internalType: string;
2251
+ name: string;
2252
+ type: string;
2253
+ }[];
2254
+ name: string;
2255
+ type: string;
2256
+ stateMutability?: undefined;
2257
+ anonymous?: undefined;
2258
+ outputs?: undefined;
2259
+ } | {
2260
+ anonymous: boolean;
2261
+ inputs: {
2262
+ indexed: boolean;
2263
+ internalType: string;
2264
+ name: string;
2265
+ type: string;
2266
+ }[];
2267
+ name: string;
2268
+ type: string;
2269
+ stateMutability?: undefined;
2270
+ outputs?: undefined;
2271
+ } | {
2272
+ inputs: {
2273
+ internalType: string;
2274
+ name: string;
2275
+ type: string;
2276
+ }[];
2277
+ name: string;
2278
+ outputs: {
2279
+ internalType: string;
2280
+ name: string;
2281
+ type: string;
2282
+ }[];
2283
+ stateMutability: string;
2284
+ type: string;
2285
+ anonymous?: undefined;
2286
+ })[] | ({
2287
+ inputs: {
2288
+ internalType: string;
2289
+ name: string;
2290
+ type: string;
2291
+ }[];
2292
+ stateMutability: string;
2293
+ type: string;
2294
+ name?: undefined;
2295
+ anonymous?: undefined;
2296
+ outputs?: undefined;
2297
+ } | {
2298
+ inputs: {
2299
+ internalType: string;
2300
+ name: string;
2301
+ type: string;
2302
+ }[];
2303
+ name: string;
2304
+ type: string;
2305
+ stateMutability?: undefined;
2306
+ anonymous?: undefined;
2307
+ outputs?: undefined;
2308
+ } | {
2309
+ anonymous: boolean;
2310
+ inputs: {
2311
+ indexed: boolean;
2312
+ internalType: string;
2313
+ name: string;
2314
+ type: string;
2315
+ }[];
2316
+ name: string;
2317
+ type: string;
2318
+ stateMutability?: undefined;
2319
+ outputs?: undefined;
2320
+ } | {
2321
+ inputs: {
2322
+ internalType: string;
2323
+ name: string;
2324
+ type: string;
2325
+ }[];
2326
+ name: string;
2327
+ outputs: {
2328
+ internalType: string;
2329
+ name: string;
2330
+ type: string;
2331
+ }[];
2332
+ stateMutability: string;
2333
+ type: string;
2334
+ anonymous?: undefined;
2335
+ })[] | ({
2336
+ inputs: {
2337
+ internalType: string;
2338
+ name: string;
2339
+ type: string;
2340
+ }[];
2341
+ stateMutability: string;
2342
+ type: string;
2343
+ name?: undefined;
2344
+ anonymous?: undefined;
2345
+ outputs?: undefined;
2346
+ } | {
2347
+ inputs: {
2348
+ internalType: string;
2349
+ name: string;
2350
+ type: string;
2351
+ }[];
2352
+ name: string;
2353
+ type: string;
2354
+ stateMutability?: undefined;
2355
+ anonymous?: undefined;
2356
+ outputs?: undefined;
2357
+ } | {
2358
+ anonymous: boolean;
2359
+ inputs: {
2360
+ indexed: boolean;
2361
+ internalType: string;
2362
+ name: string;
2363
+ type: string;
2364
+ }[];
2365
+ name: string;
2366
+ type: string;
2367
+ stateMutability?: undefined;
2368
+ outputs?: undefined;
2369
+ } | {
2370
+ inputs: {
2371
+ internalType: string;
2372
+ name: string;
2373
+ type: string;
2374
+ }[];
2375
+ name: string;
2376
+ outputs: {
2377
+ internalType: string;
2378
+ name: string;
2379
+ type: string;
2380
+ }[];
2381
+ stateMutability: string;
2382
+ type: string;
2383
+ anonymous?: undefined;
2384
+ })[] | ({
2385
+ inputs: {
2386
+ internalType: string;
2387
+ name: string;
2388
+ type: string;
2389
+ }[];
2390
+ stateMutability: string;
2391
+ type: string;
2392
+ name?: undefined;
2393
+ anonymous?: undefined;
2394
+ outputs?: undefined;
2395
+ } | {
2396
+ inputs: {
2397
+ internalType: string;
2398
+ name: string;
2399
+ type: string;
2400
+ }[];
2401
+ name: string;
2402
+ type: string;
2403
+ stateMutability?: undefined;
2404
+ anonymous?: undefined;
2405
+ outputs?: undefined;
2406
+ } | {
2407
+ anonymous: boolean;
2408
+ inputs: {
2409
+ indexed: boolean;
2410
+ internalType: string;
2411
+ name: string;
2412
+ type: string;
2413
+ }[];
2414
+ name: string;
2415
+ type: string;
2416
+ stateMutability?: undefined;
2417
+ outputs?: undefined;
2418
+ } | {
2419
+ inputs: {
2420
+ internalType: string;
2421
+ name: string;
2422
+ type: string;
2423
+ }[];
2424
+ name: string;
2425
+ outputs: {
2426
+ internalType: string;
2427
+ name: string;
2428
+ type: string;
2429
+ }[];
2430
+ stateMutability: string;
2431
+ type: string;
2432
+ anonymous?: undefined;
2433
+ } | {
2434
+ inputs: {
2435
+ internalType: string;
2436
+ name: string;
2437
+ type: string;
2438
+ }[];
2439
+ name: string;
2440
+ outputs: {
2441
+ components: {
2442
+ internalType: string;
2443
+ name: string;
2444
+ type: string;
2445
+ }[];
2446
+ internalType: string;
2447
+ name: string;
2448
+ type: string;
2449
+ }[];
2450
+ stateMutability: string;
2451
+ type: string;
2452
+ anonymous?: undefined;
2453
+ })[] | ({
2454
+ inputs: {
2455
+ internalType: string;
2456
+ name: string;
2457
+ type: string;
2458
+ }[];
2459
+ stateMutability: string;
2460
+ type: string;
2461
+ name?: undefined;
2462
+ anonymous?: undefined;
2463
+ outputs?: undefined;
2464
+ } | {
2465
+ inputs: {
2466
+ internalType: string;
2467
+ name: string;
2468
+ type: string;
2469
+ }[];
2470
+ name: string;
2471
+ type: string;
2472
+ stateMutability?: undefined;
2473
+ anonymous?: undefined;
2474
+ outputs?: undefined;
2475
+ } | {
2476
+ anonymous: boolean;
2477
+ inputs: {
2478
+ indexed: boolean;
2479
+ internalType: string;
2480
+ name: string;
2481
+ type: string;
2482
+ }[];
2483
+ name: string;
2484
+ type: string;
2485
+ stateMutability?: undefined;
2486
+ outputs?: undefined;
2487
+ } | {
2488
+ inputs: {
2489
+ internalType: string;
2490
+ name: string;
2491
+ type: string;
2492
+ }[];
2493
+ name: string;
2494
+ outputs: {
2495
+ internalType: string;
2496
+ name: string;
2497
+ type: string;
2498
+ }[];
2499
+ stateMutability: string;
2500
+ type: string;
2501
+ anonymous?: undefined;
2502
+ } | {
2503
+ inputs: any[];
2504
+ name: string;
2505
+ outputs: {
2506
+ components: {
2507
+ internalType: string;
2508
+ name: string;
2509
+ type: string;
2510
+ }[];
2511
+ internalType: string;
2512
+ name: string;
2513
+ type: string;
2514
+ }[];
2515
+ stateMutability: string;
2516
+ type: string;
2517
+ anonymous?: undefined;
2518
+ })[] | ({
2519
+ inputs: {
2520
+ internalType: string;
2521
+ name: string;
2522
+ type: string;
2523
+ }[];
2524
+ stateMutability: string;
2525
+ type: string;
2526
+ name?: undefined;
2527
+ anonymous?: undefined;
2528
+ outputs?: undefined;
2529
+ } | {
2530
+ inputs: {
2531
+ internalType: string;
2532
+ name: string;
2533
+ type: string;
2534
+ }[];
2535
+ name: string;
2536
+ type: string;
2537
+ stateMutability?: undefined;
2538
+ anonymous?: undefined;
2539
+ outputs?: undefined;
2540
+ } | {
2541
+ anonymous: boolean;
2542
+ inputs: {
2543
+ indexed: boolean;
2544
+ internalType: string;
2545
+ name: string;
2546
+ type: string;
2547
+ }[];
2548
+ name: string;
2549
+ type: string;
2550
+ stateMutability?: undefined;
2551
+ outputs?: undefined;
2552
+ } | {
2553
+ inputs: {
2554
+ internalType: string;
2555
+ name: string;
2556
+ type: string;
2557
+ }[];
2558
+ name: string;
2559
+ outputs: {
2560
+ internalType: string;
2561
+ name: string;
2562
+ type: string;
2563
+ }[];
2564
+ stateMutability: string;
2565
+ type: string;
2566
+ anonymous?: undefined;
2567
+ } | {
2568
+ inputs: {
2569
+ internalType: string;
2570
+ name: string;
2571
+ type: string;
2572
+ }[];
2573
+ name: string;
2574
+ outputs: {
2575
+ components: {
2576
+ internalType: string;
2577
+ name: string;
2578
+ type: string;
2579
+ }[];
2580
+ internalType: string;
2581
+ name: string;
2582
+ type: string;
2583
+ }[];
2584
+ stateMutability: string;
2585
+ type: string;
2586
+ anonymous?: undefined;
2587
+ })[] | ({
2588
+ inputs: {
2589
+ internalType: string;
2590
+ name: string;
2591
+ type: string;
2592
+ }[];
2593
+ stateMutability: string;
2594
+ type: string;
2595
+ name?: undefined;
2596
+ anonymous?: undefined;
2597
+ outputs?: undefined;
2598
+ } | {
2599
+ inputs: {
2600
+ internalType: string;
2601
+ name: string;
2602
+ type: string;
2603
+ }[];
2604
+ name: string;
2605
+ type: string;
2606
+ stateMutability?: undefined;
2607
+ anonymous?: undefined;
2608
+ outputs?: undefined;
2609
+ } | {
2610
+ anonymous: boolean;
2611
+ inputs: {
2612
+ indexed: boolean;
2613
+ internalType: string;
2614
+ name: string;
2615
+ type: string;
2616
+ }[];
2617
+ name: string;
2618
+ type: string;
2619
+ stateMutability?: undefined;
2620
+ outputs?: undefined;
2621
+ } | {
2622
+ inputs: {
2623
+ internalType: string;
2624
+ name: string;
2625
+ type: string;
2626
+ }[];
2627
+ name: string;
2628
+ outputs: {
2629
+ internalType: string;
2630
+ name: string;
2631
+ type: string;
2632
+ }[];
2633
+ stateMutability: string;
2634
+ type: string;
2635
+ anonymous?: undefined;
2636
+ } | {
2637
+ inputs: any[];
2638
+ name: string;
2639
+ outputs: {
2640
+ components: {
2641
+ internalType: string;
2642
+ name: string;
2643
+ type: string;
2644
+ }[];
2645
+ internalType: string;
2646
+ name: string;
2647
+ type: string;
2648
+ }[];
2649
+ stateMutability: string;
2650
+ type: string;
2651
+ anonymous?: undefined;
2652
+ })[] | ({
2653
+ inputs: {
2654
+ internalType: string;
2655
+ name: string;
2656
+ type: string;
2657
+ }[];
2658
+ stateMutability: string;
2659
+ type: string;
2660
+ name?: undefined;
2661
+ anonymous?: undefined;
2662
+ outputs?: undefined;
2663
+ } | {
2664
+ inputs: {
2665
+ internalType: string;
2666
+ name: string;
2667
+ type: string;
2668
+ }[];
2669
+ name: string;
2670
+ type: string;
2671
+ stateMutability?: undefined;
2672
+ anonymous?: undefined;
2673
+ outputs?: undefined;
2674
+ } | {
2675
+ anonymous: boolean;
2676
+ inputs: ({
2677
+ indexed: boolean;
2678
+ internalType: string;
2679
+ name: string;
2680
+ type: string;
2681
+ components?: undefined;
2682
+ } | {
2683
+ components: {
2684
+ internalType: string;
2685
+ name: string;
2686
+ type: string;
2687
+ }[];
2688
+ indexed: boolean;
2689
+ internalType: string;
2690
+ name: string;
2691
+ type: string;
2692
+ })[];
2693
+ name: string;
2694
+ type: string;
2695
+ stateMutability?: undefined;
2696
+ outputs?: undefined;
2697
+ } | {
2698
+ inputs: {
2699
+ internalType: string;
2700
+ name: string;
2701
+ type: string;
2702
+ }[];
2703
+ name: string;
2704
+ outputs: {
2705
+ internalType: string;
2706
+ name: string;
2707
+ type: string;
2708
+ }[];
2709
+ stateMutability: string;
2710
+ type: string;
2711
+ anonymous?: undefined;
2712
+ } | {
2713
+ inputs: {
2714
+ internalType: string;
2715
+ name: string;
2716
+ type: string;
2717
+ }[];
2718
+ name: string;
2719
+ outputs: {
2720
+ components: {
2721
+ internalType: string;
2722
+ name: string;
2723
+ type: string;
2724
+ }[];
2725
+ internalType: string;
2726
+ name: string;
2727
+ type: string;
2728
+ }[];
2729
+ stateMutability: string;
2730
+ type: string;
2731
+ anonymous?: undefined;
2732
+ } | {
2733
+ inputs: ({
2734
+ internalType: string;
2735
+ name: string;
2736
+ type: string;
2737
+ components?: undefined;
2738
+ } | {
2739
+ components: {
2740
+ internalType: string;
2741
+ name: string;
2742
+ type: string;
2743
+ }[];
2744
+ internalType: string;
2745
+ name: string;
2746
+ type: string;
2747
+ })[];
1917
2748
  name: string;
1918
- outputs: {
1919
- internalType: string;
1920
- name: string;
1921
- type: string;
1922
- }[];
2749
+ outputs: any[];
1923
2750
  stateMutability: string;
1924
2751
  type: string;
1925
2752
  anonymous?: undefined;
@@ -1972,6 +2799,26 @@ declare const getABI: (name: keyof typeof ABIS) => ({
1972
2799
  stateMutability: string;
1973
2800
  type: string;
1974
2801
  anonymous?: undefined;
2802
+ } | {
2803
+ inputs: {
2804
+ components: {
2805
+ internalType: string;
2806
+ name: string;
2807
+ type: string;
2808
+ }[];
2809
+ internalType: string;
2810
+ name: string;
2811
+ type: string;
2812
+ }[];
2813
+ name: string;
2814
+ outputs: {
2815
+ internalType: string;
2816
+ name: string;
2817
+ type: string;
2818
+ }[];
2819
+ stateMutability: string;
2820
+ type: string;
2821
+ anonymous?: undefined;
1975
2822
  })[] | ({
1976
2823
  inputs: {
1977
2824
  internalType: string;
@@ -2007,13 +2854,25 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2007
2854
  stateMutability?: undefined;
2008
2855
  outputs?: undefined;
2009
2856
  } | {
2010
- inputs: {
2857
+ inputs: any[];
2858
+ name: string;
2859
+ outputs: {
2011
2860
  internalType: string;
2012
2861
  name: string;
2013
2862
  type: string;
2014
2863
  }[];
2864
+ stateMutability: string;
2865
+ type: string;
2866
+ anonymous?: undefined;
2867
+ } | {
2868
+ inputs: any[];
2015
2869
  name: string;
2016
2870
  outputs: {
2871
+ components: {
2872
+ internalType: string;
2873
+ name: string;
2874
+ type: string;
2875
+ }[];
2017
2876
  internalType: string;
2018
2877
  name: string;
2019
2878
  type: string;
@@ -2021,32 +2880,30 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2021
2880
  stateMutability: string;
2022
2881
  type: string;
2023
2882
  anonymous?: undefined;
2024
- })[] | ({
2883
+ } | {
2025
2884
  inputs: {
2026
2885
  internalType: string;
2027
2886
  name: string;
2028
2887
  type: string;
2029
2888
  }[];
2889
+ name: string;
2890
+ outputs: any[];
2030
2891
  stateMutability: string;
2031
2892
  type: string;
2032
- name?: undefined;
2033
2893
  anonymous?: undefined;
2034
- outputs?: undefined;
2035
- } | {
2894
+ })[] | ({
2036
2895
  inputs: {
2037
2896
  internalType: string;
2038
2897
  name: string;
2039
2898
  type: string;
2040
2899
  }[];
2041
- name: string;
2900
+ stateMutability: string;
2042
2901
  type: string;
2043
- stateMutability?: undefined;
2902
+ name?: undefined;
2044
2903
  anonymous?: undefined;
2045
2904
  outputs?: undefined;
2046
2905
  } | {
2047
- anonymous: boolean;
2048
2906
  inputs: {
2049
- indexed: boolean;
2050
2907
  internalType: string;
2051
2908
  name: string;
2052
2909
  type: string;
@@ -2054,22 +2911,20 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2054
2911
  name: string;
2055
2912
  type: string;
2056
2913
  stateMutability?: undefined;
2914
+ anonymous?: undefined;
2057
2915
  outputs?: undefined;
2058
2916
  } | {
2917
+ anonymous: boolean;
2059
2918
  inputs: {
2919
+ indexed: boolean;
2060
2920
  internalType: string;
2061
2921
  name: string;
2062
2922
  type: string;
2063
2923
  }[];
2064
2924
  name: string;
2065
- outputs: {
2066
- internalType: string;
2067
- name: string;
2068
- type: string;
2069
- }[];
2070
- stateMutability: string;
2071
2925
  type: string;
2072
- anonymous?: undefined;
2926
+ stateMutability?: undefined;
2927
+ outputs?: undefined;
2073
2928
  } | {
2074
2929
  inputs: {
2075
2930
  internalType: string;
@@ -2078,11 +2933,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2078
2933
  }[];
2079
2934
  name: string;
2080
2935
  outputs: {
2081
- components: {
2082
- internalType: string;
2083
- name: string;
2084
- type: string;
2085
- }[];
2086
2936
  internalType: string;
2087
2937
  name: string;
2088
2938
  type: string;
@@ -2139,22 +2989,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2139
2989
  stateMutability: string;
2140
2990
  type: string;
2141
2991
  anonymous?: undefined;
2142
- } | {
2143
- inputs: any[];
2144
- name: string;
2145
- outputs: {
2146
- components: {
2147
- internalType: string;
2148
- name: string;
2149
- type: string;
2150
- }[];
2151
- internalType: string;
2152
- name: string;
2153
- type: string;
2154
- }[];
2155
- stateMutability: string;
2156
- type: string;
2157
- anonymous?: undefined;
2158
2992
  })[] | ({
2159
2993
  inputs: {
2160
2994
  internalType: string;
@@ -2204,26 +3038,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2204
3038
  stateMutability: string;
2205
3039
  type: string;
2206
3040
  anonymous?: undefined;
2207
- } | {
2208
- inputs: {
2209
- internalType: string;
2210
- name: string;
2211
- type: string;
2212
- }[];
2213
- name: string;
2214
- outputs: {
2215
- components: {
2216
- internalType: string;
2217
- name: string;
2218
- type: string;
2219
- }[];
2220
- internalType: string;
2221
- name: string;
2222
- type: string;
2223
- }[];
2224
- stateMutability: string;
2225
- type: string;
2226
- anonymous?: undefined;
2227
3041
  })[] | ({
2228
3042
  inputs: {
2229
3043
  internalType: string;
@@ -2273,22 +3087,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2273
3087
  stateMutability: string;
2274
3088
  type: string;
2275
3089
  anonymous?: undefined;
2276
- } | {
2277
- inputs: any[];
2278
- name: string;
2279
- outputs: {
2280
- components: {
2281
- internalType: string;
2282
- name: string;
2283
- type: string;
2284
- }[];
2285
- internalType: string;
2286
- name: string;
2287
- type: string;
2288
- }[];
2289
- stateMutability: string;
2290
- type: string;
2291
- anonymous?: undefined;
2292
3090
  })[] | ({
2293
3091
  inputs: {
2294
3092
  internalType: string;
@@ -2313,23 +3111,12 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2313
3111
  outputs?: undefined;
2314
3112
  } | {
2315
3113
  anonymous: boolean;
2316
- inputs: ({
2317
- indexed: boolean;
2318
- internalType: string;
2319
- name: string;
2320
- type: string;
2321
- components?: undefined;
2322
- } | {
2323
- components: {
2324
- internalType: string;
2325
- name: string;
2326
- type: string;
2327
- }[];
3114
+ inputs: {
2328
3115
  indexed: boolean;
2329
3116
  internalType: string;
2330
3117
  name: string;
2331
3118
  type: string;
2332
- })[];
3119
+ }[];
2333
3120
  name: string;
2334
3121
  type: string;
2335
3122
  stateMutability?: undefined;
@@ -2349,47 +3136,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2349
3136
  stateMutability: string;
2350
3137
  type: string;
2351
3138
  anonymous?: undefined;
2352
- } | {
2353
- inputs: {
2354
- internalType: string;
2355
- name: string;
2356
- type: string;
2357
- }[];
2358
- name: string;
2359
- outputs: {
2360
- components: {
2361
- internalType: string;
2362
- name: string;
2363
- type: string;
2364
- }[];
2365
- internalType: string;
2366
- name: string;
2367
- type: string;
2368
- }[];
2369
- stateMutability: string;
2370
- type: string;
2371
- anonymous?: undefined;
2372
- } | {
2373
- inputs: ({
2374
- internalType: string;
2375
- name: string;
2376
- type: string;
2377
- components?: undefined;
2378
- } | {
2379
- components: {
2380
- internalType: string;
2381
- name: string;
2382
- type: string;
2383
- }[];
2384
- internalType: string;
2385
- name: string;
2386
- type: string;
2387
- })[];
2388
- name: string;
2389
- outputs: any[];
2390
- stateMutability: string;
2391
- type: string;
2392
- anonymous?: undefined;
2393
3139
  })[] | ({
2394
3140
  inputs: {
2395
3141
  internalType: string;
@@ -2439,26 +3185,6 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2439
3185
  stateMutability: string;
2440
3186
  type: string;
2441
3187
  anonymous?: undefined;
2442
- } | {
2443
- inputs: {
2444
- components: {
2445
- internalType: string;
2446
- name: string;
2447
- type: string;
2448
- }[];
2449
- internalType: string;
2450
- name: string;
2451
- type: string;
2452
- }[];
2453
- name: string;
2454
- outputs: {
2455
- internalType: string;
2456
- name: string;
2457
- type: string;
2458
- }[];
2459
- stateMutability: string;
2460
- type: string;
2461
- anonymous?: undefined;
2462
3188
  })[] | ({
2463
3189
  inputs: {
2464
3190
  internalType: string;
@@ -2494,40 +3220,17 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2494
3220
  stateMutability?: undefined;
2495
3221
  outputs?: undefined;
2496
3222
  } | {
2497
- inputs: any[];
2498
- name: string;
2499
- outputs: {
3223
+ inputs: {
2500
3224
  internalType: string;
2501
3225
  name: string;
2502
3226
  type: string;
2503
3227
  }[];
2504
- stateMutability: string;
2505
- type: string;
2506
- anonymous?: undefined;
2507
- } | {
2508
- inputs: any[];
2509
3228
  name: string;
2510
3229
  outputs: {
2511
- components: {
2512
- internalType: string;
2513
- name: string;
2514
- type: string;
2515
- }[];
2516
- internalType: string;
2517
- name: string;
2518
- type: string;
2519
- }[];
2520
- stateMutability: string;
2521
- type: string;
2522
- anonymous?: undefined;
2523
- } | {
2524
- inputs: {
2525
3230
  internalType: string;
2526
3231
  name: string;
2527
3232
  type: string;
2528
3233
  }[];
2529
- name: string;
2530
- outputs: any[];
2531
3234
  stateMutability: string;
2532
3235
  type: string;
2533
3236
  anonymous?: undefined;
@@ -2581,11 +3284,7 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2581
3284
  type: string;
2582
3285
  anonymous?: undefined;
2583
3286
  })[] | ({
2584
- inputs: {
2585
- internalType: string;
2586
- name: string;
2587
- type: string;
2588
- }[];
3287
+ inputs: any[];
2589
3288
  stateMutability: string;
2590
3289
  type: string;
2591
3290
  name?: undefined;
@@ -2811,17 +3510,24 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2811
3510
  stateMutability?: undefined;
2812
3511
  outputs?: undefined;
2813
3512
  } | {
2814
- inputs: {
3513
+ inputs: any[];
3514
+ name: string;
3515
+ outputs: {
2815
3516
  internalType: string;
2816
3517
  name: string;
2817
3518
  type: string;
2818
3519
  }[];
2819
- name: string;
2820
- outputs: {
3520
+ stateMutability: string;
3521
+ type: string;
3522
+ anonymous?: undefined;
3523
+ } | {
3524
+ inputs: {
2821
3525
  internalType: string;
2822
3526
  name: string;
2823
3527
  type: string;
2824
3528
  }[];
3529
+ name: string;
3530
+ outputs: any[];
2825
3531
  stateMutability: string;
2826
3532
  type: string;
2827
3533
  anonymous?: undefined;
@@ -2874,5 +3580,12 @@ declare const getABI: (name: keyof typeof ABIS) => ({
2874
3580
  stateMutability: string;
2875
3581
  type: string;
2876
3582
  anonymous?: undefined;
3583
+ } | {
3584
+ stateMutability: string;
3585
+ type: string;
3586
+ inputs?: undefined;
3587
+ name?: undefined;
3588
+ anonymous?: undefined;
3589
+ outputs?: undefined;
2877
3590
  })[];
2878
3591
  export { getABI, ABIS };