@raac/rpc 1.1.0-beta.4 → 1.1.0-beta.41

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 (535) hide show
  1. package/dist/RPCLibrary.js +80 -21
  2. package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +83 -29
  3. package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +82 -31
  4. package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +114 -5
  5. package/dist/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +409 -0
  6. package/dist/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +66 -4
  7. package/dist/artifacts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.json +465 -0
  8. package/dist/artifacts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.json +497 -0
  9. package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +1065 -337
  10. package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +180 -99
  11. package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +39 -2
  12. package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +2 -29
  13. package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +158 -38
  14. package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +2 -2
  15. package/dist/artifacts/core/tokens/RToken.sol/RToken.json +2 -81
  16. package/dist/artifacts/core/tokens/RWAIndexToken.sol/RWAIndexToken.json +591 -0
  17. package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +557 -223
  18. package/dist/artifacts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.json +354 -0
  19. package/dist/artifacts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.json +356 -0
  20. package/dist/artifacts/core/vaults/RWAVault.sol/RWAVault.json +1036 -0
  21. package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +622 -207
  22. package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +2 -2
  23. package/dist/artifacts/zeno/Auction.sol/Auction.json +104 -15
  24. package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +7 -2
  25. package/dist/artifacts/zeno/Zeno.sol/Zeno.json +108 -38
  26. package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +17 -2
  27. package/dist/configs/chains/11155111.json +52 -22
  28. package/dist/configs/chains/17000.json +38 -3
  29. package/dist/configs/chains/18453.json +162 -0
  30. package/dist/configs/chains/8453.json +47 -12
  31. package/dist/configs/chains/index.js +2 -0
  32. package/dist/configs/createConfig.js +3 -3
  33. package/dist/nfts/approveNFT.js +25 -0
  34. package/dist/nfts/getApprovalForAll.js +32 -0
  35. package/dist/nfts/getNFTApproval.js +33 -0
  36. package/dist/nfts/getOwnerOfNFT.js +39 -0
  37. package/dist/nfts/setApprovalForAll.js +34 -0
  38. package/dist/pools/lendingPool/_helpers.js +40 -0
  39. package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.js +20 -0
  40. package/dist/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.js +32 -0
  41. package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.js +21 -0
  42. package/dist/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.js +33 -0
  43. package/dist/pools/lendingPool/borrowFromLendingPool.js +11 -12
  44. package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +35 -22
  45. package/dist/pools/lendingPool/calculateInsuranceFee.js +12 -8
  46. package/dist/pools/lendingPool/closeLiquidation.js +16 -14
  47. package/dist/pools/lendingPool/depositAssetToLendingPool.js +22 -0
  48. package/dist/pools/lendingPool/depositToLendingPool.js +2 -5
  49. package/dist/pools/lendingPool/getAdapterAddress.js +44 -0
  50. package/dist/pools/lendingPool/getAdapters.js +20 -0
  51. package/dist/pools/lendingPool/getEligibleUserDeposits.js +2 -5
  52. package/dist/pools/lendingPool/getHealthFactor.js +15 -13
  53. package/dist/pools/lendingPool/getLendingPoolInfo.js +18 -33
  54. package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +2 -6
  55. package/dist/pools/lendingPool/getParameters.js +30 -0
  56. package/dist/pools/lendingPool/getPositionDebt.js +12 -11
  57. package/dist/pools/lendingPool/getPositionScaledDebt.js +16 -13
  58. package/dist/pools/lendingPool/getPositionView.js +16 -10
  59. package/dist/pools/lendingPool/getPositionsScaledDebt.js +3 -5
  60. package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +2 -5
  61. package/dist/pools/lendingPool/getUserCollateralValue.js +3 -5
  62. package/dist/pools/lendingPool/getWithdrawRequestInfo.js +22 -0
  63. package/dist/pools/lendingPool/initializeLiquidation.js +12 -12
  64. package/dist/pools/lendingPool/openVaultPosition.js +39 -0
  65. package/dist/pools/lendingPool/repayToLendingPool.js +11 -14
  66. package/dist/pools/lendingPool/requestWithdraw.js +28 -0
  67. package/dist/pools/lendingPool/types.js +2 -0
  68. package/dist/pools/lendingPool/vaultOpened.js +22 -0
  69. package/dist/pools/lendingPool/withdrawAssetFromLendingPool.js +21 -0
  70. package/dist/pools/lendingPool/withdrawFromLendingPool.js +8 -6
  71. package/dist/pools/rwaVault/_helpers.js +40 -0
  72. package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.js +21 -0
  73. package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.js +30 -0
  74. package/dist/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.js +20 -0
  75. package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.js +21 -0
  76. package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.js +20 -0
  77. package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.js +30 -0
  78. package/dist/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.js +20 -0
  79. package/dist/pools/rwaVault/depositToRWAVault.js +31 -0
  80. package/dist/pools/rwaVault/getAdapterAddress.js +43 -0
  81. package/dist/pools/rwaVault/getAdapters.js +20 -0
  82. package/dist/pools/rwaVault/getNextRandomNFT.js +21 -0
  83. package/dist/pools/rwaVault/getRWAVaultInfo.js +45 -0
  84. package/dist/pools/rwaVault/redeemNFTFromRWAVault.js +23 -0
  85. package/dist/pools/rwaVault/requestRandomSeed.js +23 -0
  86. package/dist/pools/rwaVault/types.js +2 -0
  87. package/dist/scripts/index.js +121 -47
  88. package/dist/types/RPCLibrary.d.ts +70 -21
  89. package/dist/types/configs/chains/index.d.ts +5 -3
  90. package/dist/types/configs/createConfig.d.ts +1 -1
  91. package/dist/types/configs/index.d.ts +2 -1
  92. package/dist/types/nfts/approveNFT.d.ts +9 -0
  93. package/dist/types/nfts/getApprovalForAll.d.ts +14 -0
  94. package/dist/types/nfts/getNFTApproval.d.ts +14 -0
  95. package/dist/types/nfts/getOwnerOfNFT.d.ts +13 -0
  96. package/dist/types/nfts/setApprovalForAll.d.ts +14 -0
  97. package/dist/types/pools/lendingPool/_helpers.d.ts +10 -0
  98. package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterBalance.d.ts +3 -0
  99. package/dist/types/pools/lendingPool/adapters/erc20/getERC20AdapterInfo.d.ts +10 -0
  100. package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterDeposits.d.ts +5 -0
  101. package/dist/types/pools/lendingPool/adapters/erc721/getERC721AdapterInfo.d.ts +12 -0
  102. package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +4 -3
  103. package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +4 -3
  104. package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +3 -2
  105. package/dist/types/pools/lendingPool/closeLiquidation.d.ts +7 -5
  106. package/dist/types/pools/lendingPool/depositAssetToLendingPool.d.ts +5 -0
  107. package/dist/types/pools/lendingPool/getAdapterAddress.d.ts +16 -0
  108. package/dist/types/pools/lendingPool/getAdapters.d.ts +8 -0
  109. package/dist/types/pools/lendingPool/getHealthFactor.d.ts +6 -4
  110. package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +1 -3
  111. package/dist/types/pools/lendingPool/getParameters.d.ts +18 -0
  112. package/dist/types/pools/lendingPool/getPositionDebt.d.ts +4 -3
  113. package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +8 -5
  114. package/dist/types/pools/lendingPool/getPositionView.d.ts +14 -18
  115. package/dist/types/pools/lendingPool/getWithdrawRequestInfo.d.ts +8 -0
  116. package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +4 -3
  117. package/dist/types/pools/lendingPool/openVaultPosition.d.ts +4 -0
  118. package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +4 -3
  119. package/dist/types/pools/lendingPool/requestWithdraw.d.ts +4 -0
  120. package/dist/types/pools/lendingPool/types.d.ts +7 -0
  121. package/dist/types/pools/lendingPool/vaultOpened.d.ts +11 -0
  122. package/dist/types/pools/lendingPool/withdrawAssetFromLendingPool.d.ts +4 -0
  123. package/dist/types/pools/rwaVault/_helpers.d.ts +10 -0
  124. package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterAssetValue.d.ts +3 -0
  125. package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterInfo.d.ts +9 -0
  126. package/dist/types/pools/rwaVault/adapters/erc20/getERC20VaultAdapterTotalValue.d.ts +3 -0
  127. package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterAssetValue.d.ts +3 -0
  128. package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterDeposits.d.ts +3 -0
  129. package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterInfo.d.ts +9 -0
  130. package/dist/types/pools/rwaVault/adapters/erc721/getERC721VaultAdapterTotalValue.d.ts +3 -0
  131. package/dist/types/pools/rwaVault/depositToRWAVault.d.ts +5 -0
  132. package/dist/types/pools/rwaVault/getAdapterAddress.d.ts +16 -0
  133. package/dist/types/pools/rwaVault/getAdapters.d.ts +8 -0
  134. package/dist/types/pools/rwaVault/getNextRandomNFT.d.ts +8 -0
  135. package/dist/types/pools/rwaVault/getRWAVaultInfo.d.ts +20 -0
  136. package/dist/types/pools/rwaVault/redeemNFTFromRWAVault.d.ts +4 -0
  137. package/dist/types/pools/rwaVault/requestRandomSeed.d.ts +4 -0
  138. package/dist/types/pools/rwaVault/types.d.ts +7 -0
  139. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.d.ts +103 -0
  140. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver.d.ts +37 -0
  141. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface.d.ts +143 -0
  142. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
  143. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI.d.ts +529 -0
  144. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus.d.ts +109 -0
  145. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +6 -0
  146. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus.d.ts +192 -0
  147. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus.d.ts +45 -0
  148. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus.d.ts +155 -0
  149. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
  150. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient.d.ts +25 -0
  151. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
  152. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/index.d.ts +4 -0
  153. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock.d.ts +731 -0
  154. package/dist/types/typechain-types/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
  155. package/dist/types/typechain-types/@openzeppelin/contracts/access/Ownable2Step.d.ts +77 -0
  156. package/dist/types/typechain-types/@openzeppelin/contracts/access/index.d.ts +1 -0
  157. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC1363.d.ts +231 -0
  158. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/IERC2981.d.ts +49 -0
  159. package/dist/types/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
  160. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
  161. package/dist/types/typechain-types/@openzeppelin/contracts/utils/Errors.d.ts +20 -0
  162. package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/MerkleProof.d.ts +20 -0
  163. package/dist/types/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
  164. package/dist/types/typechain-types/@openzeppelin/contracts/utils/index.d.ts +1 -0
  165. package/dist/types/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
  166. package/dist/types/typechain-types/contracts/core/collectors/FeeCollector.d.ts +30 -1
  167. package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal.d.ts +53 -0
  168. package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector.d.ts +115 -0
  169. package/dist/types/typechain-types/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
  170. package/dist/types/typechain-types/contracts/core/collectors/Treasury.d.ts +15 -1
  171. package/dist/types/typechain-types/contracts/core/collectors/index.d.ts +2 -0
  172. package/dist/types/typechain-types/contracts/core/governance/gauges/BaseGauge.d.ts +616 -142
  173. package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeController.d.ts +396 -108
  174. package/dist/types/typechain-types/contracts/core/governance/gauges/GaugeRewardsDistributor.d.ts +623 -0
  175. package/dist/types/typechain-types/contracts/core/governance/gauges/RAACGauge.d.ts +609 -155
  176. package/dist/types/typechain-types/contracts/core/governance/gauges/RWAGauge.d.ts +610 -156
  177. package/dist/types/typechain-types/contracts/core/governance/gauges/index.d.ts +1 -0
  178. package/dist/types/typechain-types/contracts/core/governance/index.d.ts +0 -2
  179. package/dist/types/typechain-types/contracts/core/governance/proposals/Governance.d.ts +45 -67
  180. package/dist/types/typechain-types/contracts/core/index.d.ts +4 -0
  181. package/dist/types/typechain-types/contracts/core/lockers/LLamaTemple.d.ts +721 -0
  182. package/dist/types/typechain-types/contracts/core/lockers/index.d.ts +1 -0
  183. package/dist/types/typechain-types/contracts/core/minters/RAACMinter/RAACMinter.d.ts +69 -12
  184. package/dist/types/typechain-types/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +22 -4
  185. package/dist/types/typechain-types/contracts/core/oracles/BaseVRFv2Consumer.d.ts +40 -2
  186. package/dist/types/typechain-types/contracts/core/oracles/RAACHousePriceOracle.d.ts +41 -8
  187. package/dist/types/typechain-types/contracts/core/oracles/RAACPrimeRateOracle.d.ts +39 -7
  188. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter.d.ts +232 -0
  189. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter.d.ts +25 -0
  190. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle.d.ts +25 -0
  191. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
  192. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter.d.ts +254 -0
  193. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle.d.ts +29 -0
  194. package/dist/types/typechain-types/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
  195. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +728 -205
  196. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPoolStorage.d.ts +440 -0
  197. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LiquidationProxy.d.ts +538 -0
  198. package/dist/types/typechain-types/contracts/core/pools/LendingPool/VaultProxy.d.ts +485 -0
  199. package/dist/types/typechain-types/contracts/core/pools/LendingPool/index.d.ts +7 -0
  200. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationStrategyProxy.d.ts +158 -0
  201. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/LiquidationSwap.d.ts +124 -0
  202. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPool.d.ts +135 -79
  203. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/StabilityPoolStorage.d.ts +140 -0
  204. package/dist/types/typechain-types/contracts/core/pools/StabilityPool/index.d.ts +3 -1
  205. package/dist/types/typechain-types/contracts/core/primitives/ComplianceRegistry.d.ts +203 -0
  206. package/dist/types/typechain-types/contracts/core/primitives/RAACHousePrices.d.ts +23 -1
  207. package/dist/types/typechain-types/contracts/core/primitives/WithCompliance.d.ts +25 -0
  208. package/dist/types/typechain-types/contracts/core/primitives/index.d.ts +2 -0
  209. package/dist/types/typechain-types/contracts/core/tokens/DebtToken.d.ts +8 -8
  210. package/dist/types/typechain-types/contracts/core/tokens/RAACNFT.d.ts +94 -11
  211. package/dist/types/typechain-types/contracts/core/tokens/RToken.d.ts +1 -17
  212. package/dist/types/typechain-types/contracts/core/tokens/RWAIndexToken.d.ts +264 -0
  213. package/dist/types/typechain-types/contracts/core/tokens/VeRAACToken.d.ts +433 -172
  214. package/dist/types/typechain-types/contracts/core/tokens/index.d.ts +1 -1
  215. package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter.d.ts +174 -0
  216. package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle.d.ts +25 -0
  217. package/dist/types/typechain-types/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
  218. package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter.d.ts +178 -0
  219. package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle.d.ts +29 -0
  220. package/dist/types/typechain-types/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
  221. package/dist/types/typechain-types/contracts/core/vaults/RWAVault.d.ts +511 -0
  222. package/dist/types/typechain-types/contracts/core/vaults/index.d.ts +5 -0
  223. package/dist/types/typechain-types/contracts/interfaces/IComplianceRegistry.d.ts +63 -0
  224. package/dist/types/typechain-types/contracts/interfaces/INFTLiquidator.d.ts +190 -23
  225. package/dist/types/typechain-types/contracts/interfaces/INFTWhitelist.d.ts +75 -0
  226. package/dist/types/typechain-types/contracts/interfaces/core/collectors/IFeeCollector.d.ts +9 -0
  227. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IBaseGauge.d.ts +527 -0
  228. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +222 -40
  229. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor.d.ts +351 -0
  230. package/dist/types/typechain-types/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
  231. package/dist/types/typechain-types/contracts/interfaces/core/governance/index.d.ts +0 -1
  232. package/dist/types/typechain-types/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +45 -67
  233. package/dist/types/typechain-types/contracts/interfaces/core/index.d.ts +2 -0
  234. package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaLocker.d.ts +332 -0
  235. package/dist/types/typechain-types/contracts/interfaces/core/lockers/ILLamaTemple.d.ts +302 -0
  236. package/dist/types/typechain-types/contracts/interfaces/core/lockers/index.d.ts +2 -0
  237. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +30 -1
  238. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver.d.ts +49 -0
  239. package/dist/types/typechain-types/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
  240. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +5 -1
  241. package/dist/types/typechain-types/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +31 -24
  242. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IAssetAdapter.d.ts +143 -0
  243. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/IERC721Adapter.d.ts +51 -0
  244. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +369 -150
  245. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage.d.ts +102 -0
  246. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
  247. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap.d.ts +51 -0
  248. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +19 -64
  249. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage.d.ts +49 -0
  250. package/dist/types/typechain-types/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
  251. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IDebtToken.d.ts +6 -6
  252. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IRAACNFT.d.ts +70 -7
  253. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IVaultToken.d.ts +197 -0
  254. package/dist/types/typechain-types/contracts/interfaces/core/tokens/IveRAACToken.d.ts +295 -36
  255. package/dist/types/typechain-types/contracts/interfaces/core/tokens/index.d.ts +1 -0
  256. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IBaseHybridVault.d.ts +208 -0
  257. package/dist/types/typechain-types/contracts/interfaces/core/vaults/IVaultAssetAdapter.d.ts +89 -0
  258. package/dist/types/typechain-types/contracts/interfaces/core/vaults/index.d.ts +2 -0
  259. package/dist/types/typechain-types/contracts/interfaces/curve/ICurveLiquidityGaugeV5.d.ts +357 -0
  260. package/dist/types/typechain-types/contracts/interfaces/curve/index.d.ts +1 -0
  261. package/dist/types/typechain-types/contracts/interfaces/index.d.ts +2 -4
  262. package/dist/types/typechain-types/contracts/interfaces/zeno/IAuction.d.ts +18 -3
  263. package/dist/types/typechain-types/contracts/interfaces/zeno/IZENO.d.ts +31 -1
  264. package/dist/types/typechain-types/contracts/libraries/governance/LockManager.d.ts +9 -2
  265. package/dist/types/typechain-types/contracts/libraries/governance/PowerCheckpoint.d.ts +34 -1
  266. package/dist/types/typechain-types/contracts/libraries/governance/index.d.ts +0 -3
  267. package/dist/types/typechain-types/contracts/libraries/math/TimeWeightedAverage.d.ts +1 -25
  268. package/dist/types/typechain-types/contracts/mocks/core/collectors/MockWETH.d.ts +225 -0
  269. package/dist/types/typechain-types/contracts/mocks/core/collectors/index.d.ts +1 -0
  270. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock.d.ts +56 -0
  271. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge.d.ts +35 -0
  272. package/dist/types/typechain-types/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
  273. package/dist/types/typechain-types/contracts/mocks/core/curve/index.d.ts +2 -0
  274. package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +2 -6
  275. package/dist/types/typechain-types/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
  276. package/dist/types/typechain-types/contracts/mocks/core/index.d.ts +4 -0
  277. package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker.d.ts +394 -0
  278. package/dist/types/typechain-types/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
  279. package/dist/types/typechain-types/contracts/mocks/core/lockers/index.d.ts +2 -0
  280. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle.d.ts +25 -0
  281. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle.d.ts +33 -0
  282. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
  283. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +2 -2
  284. package/dist/types/typechain-types/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +349 -148
  285. package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +41 -8
  286. package/dist/types/typechain-types/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +39 -7
  287. package/dist/types/typechain-types/contracts/mocks/core/oracles/index.d.ts +2 -0
  288. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +367 -140
  289. package/dist/types/typechain-types/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +1 -5
  290. package/dist/types/typechain-types/contracts/mocks/core/tokens/MockToken.d.ts +1 -5
  291. package/dist/types/typechain-types/contracts/mocks/core/tokens/index.d.ts +0 -1
  292. package/dist/types/typechain-types/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +68 -139
  293. package/dist/types/typechain-types/contracts/mocks/libraries/governance/LockManagerMock.d.ts +19 -9
  294. package/dist/types/typechain-types/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +37 -18
  295. package/dist/types/typechain-types/contracts/mocks/libraries/governance/index.d.ts +0 -3
  296. package/dist/types/typechain-types/contracts/mocks/tests/index.d.ts +0 -2
  297. package/dist/types/typechain-types/contracts/zeno/Auction.d.ts +37 -8
  298. package/dist/types/typechain-types/contracts/zeno/ZENO.d.ts +62 -6
  299. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +1 -1
  300. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +1 -1
  301. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +1 -1
  302. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface__factory.d.ts +93 -0
  303. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IERC677Receiver__factory.d.ts +25 -0
  304. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/LinkTokenInterface__factory.d.ts +191 -0
  305. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +3 -0
  306. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/SubscriptionAPI__factory.d.ts +663 -0
  307. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/VRFConsumerBaseV2Plus__factory.d.ts +139 -0
  308. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/index.d.ts +4 -0
  309. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFCoordinatorV2Plus__factory.d.ts +194 -0
  310. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFMigratableConsumerV2Plus__factory.d.ts +27 -0
  311. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/IVRFSubscriptionV2Plus__factory.d.ts +155 -0
  312. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/interfaces/index.d.ts +3 -0
  313. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/VRFV2PlusClient__factory.d.ts +32 -0
  314. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/dev/libraries/index.d.ts +1 -0
  315. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +2 -0
  316. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/VRFCoordinatorV2_5Mock__factory.d.ts +944 -0
  317. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/vrf/mocks/index.d.ts +1 -0
  318. package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.d.ts +95 -0
  319. package/dist/types/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +1 -0
  320. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1363__factory.d.ts +289 -0
  321. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC2981__factory.d.ts +43 -0
  322. package/dist/types/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +2 -0
  323. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +1 -1
  324. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
  325. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +1 -13
  326. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.d.ts +50 -0
  327. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +1 -1
  328. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +9 -1
  329. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +1 -1
  330. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.d.ts +26 -0
  331. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +1 -0
  332. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +1 -0
  333. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +1 -1
  334. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -1
  335. package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +65 -21
  336. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/IWETH10Minimal__factory.d.ts +49 -0
  337. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/NFTRoyaltyFeeCollector__factory.d.ts +177 -0
  338. package/dist/types/typechain-types/factories/contracts/core/collectors/NFTRoyaltyFeeCollector.sol/index.d.ts +2 -0
  339. package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +15 -1
  340. package/dist/types/typechain-types/factories/contracts/core/collectors/index.d.ts +1 -0
  341. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +698 -144
  342. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +461 -137
  343. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeRewardsDistributor__factory.d.ts +848 -0
  344. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +686 -162
  345. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +689 -155
  346. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/index.d.ts +1 -0
  347. package/dist/types/typechain-types/factories/contracts/core/governance/index.d.ts +0 -1
  348. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +42 -80
  349. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +1 -1
  350. package/dist/types/typechain-types/factories/contracts/core/index.d.ts +2 -0
  351. package/dist/types/typechain-types/factories/contracts/core/lockers/LLamaTemple__factory.d.ts +1028 -0
  352. package/dist/types/typechain-types/factories/contracts/core/lockers/index.d.ts +1 -0
  353. package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +66 -25
  354. package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +5 -1
  355. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +37 -1
  356. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +90 -6
  357. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +64 -9
  358. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +49 -3
  359. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/ERC20AssetAdapter__factory.d.ts +369 -0
  360. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IERC20Adapter__factory.d.ts +21 -0
  361. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/IPriceOracle__factory.d.ts +17 -0
  362. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC20AssetAdapter.sol/index.d.ts +3 -0
  363. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/ERC721AssetAdapter__factory.d.ts +393 -0
  364. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/IPriceOracle__factory.d.ts +21 -0
  365. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/ERC721AssetAdapter.sol/index.d.ts +2 -0
  366. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPoolStorage__factory.d.ts +578 -0
  367. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +881 -306
  368. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LiquidationProxy__factory.d.ts +716 -0
  369. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/VaultProxy__factory.d.ts +636 -0
  370. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/index.d.ts +5 -0
  371. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationStrategyProxy__factory.d.ts +281 -0
  372. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/LiquidationSwap__factory.d.ts +227 -0
  373. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPoolStorage__factory.d.ts +255 -0
  374. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +151 -85
  375. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/index.d.ts +3 -1
  376. package/dist/types/typechain-types/factories/contracts/core/primitives/ComplianceRegistry__factory.d.ts +276 -0
  377. package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +29 -1
  378. package/dist/types/typechain-types/factories/contracts/core/primitives/WithCompliance__factory.d.ts +17 -0
  379. package/dist/types/typechain-types/factories/contracts/core/primitives/index.d.ts +2 -0
  380. package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +1 -21
  381. package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +8 -8
  382. package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +1 -1
  383. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +124 -31
  384. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +1 -1
  385. package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +1 -61
  386. package/dist/types/typechain-types/factories/contracts/core/tokens/RWAIndexToken__factory.d.ts +465 -0
  387. package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +446 -186
  388. package/dist/types/typechain-types/factories/contracts/core/tokens/index.d.ts +1 -1
  389. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/ERC20VaultAdapter__factory.d.ts +285 -0
  390. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/IPriceOracle__factory.d.ts +17 -0
  391. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC20VaultAdapter.sol/index.d.ts +2 -0
  392. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/ERC721VaultAdapter__factory.d.ts +287 -0
  393. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/IPriceOracle__factory.d.ts +21 -0
  394. package/dist/types/typechain-types/factories/contracts/core/vaults/ERC721VaultAdapter.sol/index.d.ts +2 -0
  395. package/dist/types/typechain-types/factories/contracts/core/vaults/RWAVault__factory.d.ts +808 -0
  396. package/dist/types/typechain-types/factories/contracts/core/vaults/index.d.ts +3 -0
  397. package/dist/types/typechain-types/factories/contracts/interfaces/IComplianceRegistry__factory.d.ts +67 -0
  398. package/dist/types/typechain-types/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +213 -6
  399. package/dist/types/typechain-types/factories/contracts/interfaces/INFTWhitelist__factory.d.ts +77 -0
  400. package/dist/types/typechain-types/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +32 -0
  401. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IBaseGauge__factory.d.ts +643 -0
  402. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +239 -65
  403. package/dist/types/typechain-types/factories/{@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper__factory.d.ts → contracts/interfaces/core/governance/gauges/IGaugeRewardsDistributor__factory.d.ts} +209 -201
  404. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/gauges/index.d.ts +2 -1
  405. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/index.d.ts +0 -1
  406. package/dist/types/typechain-types/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +41 -79
  407. package/dist/types/typechain-types/factories/contracts/interfaces/core/index.d.ts +1 -0
  408. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaLocker__factory.d.ts +390 -0
  409. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/ILLamaTemple__factory.d.ts +390 -0
  410. package/dist/types/typechain-types/factories/contracts/interfaces/core/lockers/index.d.ts +2 -0
  411. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinterRewardsReceiver__factory.d.ts +35 -0
  412. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +33 -0
  413. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +1 -0
  414. package/dist/types/typechain-types/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +4 -0
  415. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +14 -0
  416. package/dist/types/typechain-types/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +24 -29
  417. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IAssetAdapter__factory.d.ts +189 -0
  418. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/IERC721Adapter__factory.d.ts +53 -0
  419. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPoolStorage__factory.d.ts +183 -0
  420. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +428 -143
  421. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +3 -0
  422. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/ILiquidationSwap__factory.d.ts +53 -0
  423. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPoolStorage__factory.d.ts +56 -0
  424. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +26 -75
  425. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +2 -0
  426. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +6 -6
  427. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +79 -4
  428. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IVaultToken__factory.d.ts +223 -0
  429. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +355 -29
  430. package/dist/types/typechain-types/factories/contracts/interfaces/core/tokens/index.d.ts +1 -0
  431. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IBaseHybridVault__factory.d.ts +256 -0
  432. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/IVaultAssetAdapter__factory.d.ts +119 -0
  433. package/dist/types/typechain-types/factories/contracts/interfaces/core/vaults/index.d.ts +2 -0
  434. package/dist/types/typechain-types/factories/contracts/interfaces/curve/ICurveLiquidityGaugeV5__factory.d.ts +503 -0
  435. package/dist/types/typechain-types/factories/contracts/interfaces/curve/index.d.ts +1 -0
  436. package/dist/types/typechain-types/factories/contracts/interfaces/index.d.ts +2 -4
  437. package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +44 -1
  438. package/dist/types/typechain-types/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +42 -0
  439. package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +1 -1
  440. package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +10 -1
  441. package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +47 -1
  442. package/dist/types/typechain-types/factories/contracts/libraries/governance/index.d.ts +0 -3
  443. package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +1 -29
  444. package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +1 -1
  445. package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +1 -1
  446. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +1 -1
  447. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockWETH__factory.d.ts +353 -0
  448. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/index.d.ts +1 -0
  449. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/CurveLiquidityGaugeV5Mock__factory.d.ts +65 -0
  450. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/ILiquidityGauge__factory.d.ts +21 -0
  451. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/CurveLiquidityGaugeV5Mock.sol/index.d.ts +2 -0
  452. package/dist/types/typechain-types/factories/contracts/mocks/core/curve/index.d.ts +1 -0
  453. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +1 -15
  454. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -1
  455. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +1 -1
  456. package/dist/types/typechain-types/factories/contracts/mocks/core/index.d.ts +2 -0
  457. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/LlamaLocker__factory.d.ts +591 -0
  458. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/LLamaLocker.sol/index.d.ts +1 -0
  459. package/dist/types/typechain-types/factories/contracts/mocks/core/lockers/index.d.ts +1 -0
  460. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/IPriceOracle__factory.d.ts +17 -0
  461. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/MockERC20PriceOracle__factory.d.ts +42 -0
  462. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockERC20PriceOracle.sol/index.d.ts +2 -0
  463. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +2 -2
  464. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +1 -1
  465. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +490 -166
  466. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +67 -12
  467. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +49 -3
  468. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/index.d.ts +1 -0
  469. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +1 -21
  470. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +427 -132
  471. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +1 -1
  472. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +1 -21
  473. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +1 -1
  474. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +1 -1
  475. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +1 -1
  476. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +1 -1
  477. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +1 -21
  478. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +1 -1
  479. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +1 -1
  480. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +8 -4
  481. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +1 -1
  482. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +1 -21
  483. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +1 -15
  484. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +1 -15
  485. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +1 -1
  486. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +1 -1
  487. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/index.d.ts +0 -1
  488. package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +1 -21
  489. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +1 -1
  490. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +53 -122
  491. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +21 -12
  492. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +39 -14
  493. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/index.d.ts +0 -3
  494. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +1 -1
  495. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +1 -1
  496. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +1 -1
  497. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +1 -1
  498. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +1 -1
  499. package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +1 -1
  500. package/dist/types/typechain-types/factories/contracts/mocks/tests/index.d.ts +0 -1
  501. package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +5 -1
  502. package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +83 -14
  503. package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +13 -1
  504. package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +87 -31
  505. package/dist/types/typechain-types/index.d.ts +112 -42
  506. package/dist/types/utils/artifacts.d.ts +685 -78
  507. package/dist/types/utils/contracts.d.ts +4 -2
  508. package/dist/types/wallet/assets/approveNFT.d.ts +0 -0
  509. package/dist/types/wallet/assets/getAllowance.d.ts +1 -1
  510. package/dist/types/wallet/assets/getBalance.d.ts +5 -1
  511. package/dist/utils/artifacts.js +19 -3
  512. package/dist/wallet/assets/approveNFT.js +0 -0
  513. package/dist/wallet/assets/getAllowance.js +3 -3
  514. package/dist/wallet/assets/getBalance.js +20 -6
  515. package/package.json +1 -1
  516. package/dist/artifacts/core/tokens/IndexToken.sol/IndexToken.json +0 -770
  517. package/dist/contracts/indexToken/getNextRandomNFT.js +0 -30
  518. package/dist/contracts/indexToken/redeemNFT.js +0 -39
  519. package/dist/pools/lendingPool/claimReward.js +0 -22
  520. package/dist/pools/lendingPool/depositNFTToLendingPool.js +0 -50
  521. package/dist/pools/lendingPool/getAllUserData.js +0 -28
  522. package/dist/pools/lendingPool/getPendingReward.js +0 -20
  523. package/dist/pools/lendingPool/withdrawNFTFromLendingPool.js +0 -24
  524. package/dist/pools/stabilityPool/calculateRAACRewards.js +0 -21
  525. package/dist/pools/stabilityPool/depositNFTToStabilityPool.js +0 -40
  526. package/dist/types/contracts/indexToken/getNextRandomNFT.d.ts +0 -7
  527. package/dist/types/contracts/indexToken/redeemNFT.d.ts +0 -4
  528. package/dist/types/pools/lendingPool/claimReward.d.ts +0 -4
  529. package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +0 -4
  530. package/dist/types/pools/lendingPool/getAllUserData.d.ts +0 -17
  531. package/dist/types/pools/lendingPool/getPendingReward.d.ts +0 -4
  532. package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +0 -4
  533. package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +0 -4
  534. package/dist/types/pools/stabilityPool/depositNFTToStabilityPool.d.ts +0 -4
  535. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper.d.ts +0 -261
@@ -98,6 +98,22 @@ declare const ABIS: {
98
98
  stateMutability: string;
99
99
  type: string;
100
100
  anonymous?: undefined;
101
+ } | {
102
+ inputs: any[];
103
+ name: string;
104
+ outputs: {
105
+ components: {
106
+ internalType: string;
107
+ name: string;
108
+ type: string;
109
+ }[];
110
+ internalType: string;
111
+ name: string;
112
+ type: string;
113
+ }[];
114
+ stateMutability: string;
115
+ type: string;
116
+ anonymous?: undefined;
101
117
  })[];
102
118
  raactoken: ({
103
119
  inputs: {
@@ -426,21 +442,11 @@ declare const ABIS: {
426
442
  }[];
427
443
  name: string;
428
444
  outputs: {
429
- components: ({
430
- internalType: string;
431
- name: string;
432
- type: string;
433
- components?: undefined;
434
- } | {
435
- components: {
436
- internalType: string;
437
- name: string;
438
- type: string;
439
- }[];
445
+ components: {
440
446
  internalType: string;
441
447
  name: string;
442
448
  type: string;
443
- })[];
449
+ }[];
444
450
  internalType: string;
445
451
  name: string;
446
452
  type: string;
@@ -599,6 +605,56 @@ declare const ABIS: {
599
605
  type: string;
600
606
  anonymous?: undefined;
601
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
+ })[];
602
658
  feecollector: ({
603
659
  inputs: {
604
660
  internalType: string;
@@ -973,7 +1029,7 @@ declare const ABIS: {
973
1029
  type: string;
974
1030
  anonymous?: undefined;
975
1031
  })[];
976
- indextoken: ({
1032
+ mockvrfcoordinator: ({
977
1033
  inputs: {
978
1034
  internalType: string;
979
1035
  name: string;
@@ -1022,6 +1078,72 @@ declare const ABIS: {
1022
1078
  stateMutability: string;
1023
1079
  type: string;
1024
1080
  anonymous?: undefined;
1081
+ } | {
1082
+ inputs: {
1083
+ components: {
1084
+ internalType: string;
1085
+ name: string;
1086
+ type: string;
1087
+ }[];
1088
+ internalType: string;
1089
+ name: string;
1090
+ type: string;
1091
+ }[];
1092
+ name: string;
1093
+ outputs: {
1094
+ internalType: string;
1095
+ name: string;
1096
+ type: string;
1097
+ }[];
1098
+ stateMutability: string;
1099
+ type: string;
1100
+ anonymous?: undefined;
1101
+ })[];
1102
+ vrfconsumer: ({
1103
+ inputs: {
1104
+ internalType: string;
1105
+ name: string;
1106
+ type: string;
1107
+ }[];
1108
+ stateMutability: string;
1109
+ type: string;
1110
+ name?: undefined;
1111
+ anonymous?: undefined;
1112
+ outputs?: undefined;
1113
+ } | {
1114
+ inputs: {
1115
+ internalType: string;
1116
+ name: string;
1117
+ type: string;
1118
+ }[];
1119
+ name: string;
1120
+ type: string;
1121
+ stateMutability?: undefined;
1122
+ anonymous?: undefined;
1123
+ outputs?: undefined;
1124
+ } | {
1125
+ anonymous: boolean;
1126
+ inputs: {
1127
+ indexed: boolean;
1128
+ internalType: string;
1129
+ name: string;
1130
+ type: string;
1131
+ }[];
1132
+ name: string;
1133
+ type: string;
1134
+ stateMutability?: undefined;
1135
+ outputs?: undefined;
1136
+ } | {
1137
+ inputs: any[];
1138
+ name: string;
1139
+ outputs: {
1140
+ internalType: string;
1141
+ name: string;
1142
+ type: string;
1143
+ }[];
1144
+ stateMutability: string;
1145
+ type: string;
1146
+ anonymous?: undefined;
1025
1147
  } | {
1026
1148
  inputs: any[];
1027
1149
  name: string;
@@ -1038,8 +1160,19 @@ declare const ABIS: {
1038
1160
  stateMutability: string;
1039
1161
  type: string;
1040
1162
  anonymous?: undefined;
1163
+ } | {
1164
+ inputs: {
1165
+ internalType: string;
1166
+ name: string;
1167
+ type: string;
1168
+ }[];
1169
+ name: string;
1170
+ outputs: any[];
1171
+ stateMutability: string;
1172
+ type: string;
1173
+ anonymous?: undefined;
1041
1174
  })[];
1042
- mockvrfcoordinator: ({
1175
+ raacprimerateoracle: ({
1043
1176
  inputs: {
1044
1177
  internalType: string;
1045
1178
  name: string;
@@ -1089,7 +1222,7 @@ declare const ABIS: {
1089
1222
  type: string;
1090
1223
  anonymous?: undefined;
1091
1224
  })[];
1092
- vrfconsumer: ({
1225
+ rwavault: ({
1093
1226
  inputs: {
1094
1227
  internalType: string;
1095
1228
  name: string;
@@ -1124,14 +1257,13 @@ declare const ABIS: {
1124
1257
  stateMutability?: undefined;
1125
1258
  outputs?: undefined;
1126
1259
  } | {
1127
- inputs: any[];
1260
+ inputs: {
1261
+ internalType: string;
1262
+ name: string;
1263
+ type: string;
1264
+ }[];
1128
1265
  name: string;
1129
1266
  outputs: {
1130
- components: {
1131
- internalType: string;
1132
- name: string;
1133
- type: string;
1134
- }[];
1135
1267
  internalType: string;
1136
1268
  name: string;
1137
1269
  type: string;
@@ -1139,17 +1271,18 @@ declare const ABIS: {
1139
1271
  stateMutability: string;
1140
1272
  type: string;
1141
1273
  anonymous?: undefined;
1142
- } | {
1143
- inputs: any[];
1144
- name: string;
1145
- outputs: {
1274
+ })[];
1275
+ erc20assetadapter: ({
1276
+ inputs: {
1146
1277
  internalType: string;
1147
1278
  name: string;
1148
1279
  type: string;
1149
1280
  }[];
1150
1281
  stateMutability: string;
1151
1282
  type: string;
1283
+ name?: undefined;
1152
1284
  anonymous?: undefined;
1285
+ outputs?: undefined;
1153
1286
  } | {
1154
1287
  inputs: {
1155
1288
  internalType: string;
@@ -1157,12 +1290,39 @@ declare const ABIS: {
1157
1290
  type: string;
1158
1291
  }[];
1159
1292
  name: string;
1160
- outputs: any[];
1293
+ type: string;
1294
+ stateMutability?: undefined;
1295
+ anonymous?: undefined;
1296
+ outputs?: undefined;
1297
+ } | {
1298
+ anonymous: boolean;
1299
+ inputs: {
1300
+ indexed: boolean;
1301
+ internalType: string;
1302
+ name: string;
1303
+ type: string;
1304
+ }[];
1305
+ name: string;
1306
+ type: string;
1307
+ stateMutability?: undefined;
1308
+ outputs?: undefined;
1309
+ } | {
1310
+ inputs: {
1311
+ internalType: string;
1312
+ name: string;
1313
+ type: string;
1314
+ }[];
1315
+ name: string;
1316
+ outputs: {
1317
+ internalType: string;
1318
+ name: string;
1319
+ type: string;
1320
+ }[];
1161
1321
  stateMutability: string;
1162
1322
  type: string;
1163
1323
  anonymous?: undefined;
1164
1324
  })[];
1165
- raacprimerateoracle: ({
1325
+ erc721assetadapter: ({
1166
1326
  inputs: {
1167
1327
  internalType: string;
1168
1328
  name: string;
@@ -1174,7 +1334,11 @@ declare const ABIS: {
1174
1334
  anonymous?: undefined;
1175
1335
  outputs?: undefined;
1176
1336
  } | {
1177
- inputs: any[];
1337
+ inputs: {
1338
+ internalType: string;
1339
+ name: string;
1340
+ type: string;
1341
+ }[];
1178
1342
  name: string;
1179
1343
  type: string;
1180
1344
  stateMutability?: undefined;
@@ -1193,7 +1357,11 @@ declare const ABIS: {
1193
1357
  stateMutability?: undefined;
1194
1358
  outputs?: undefined;
1195
1359
  } | {
1196
- inputs: any[];
1360
+ inputs: {
1361
+ internalType: string;
1362
+ name: string;
1363
+ type: string;
1364
+ }[];
1197
1365
  name: string;
1198
1366
  outputs: {
1199
1367
  internalType: string;
@@ -1203,44 +1371,182 @@ declare const ABIS: {
1203
1371
  stateMutability: string;
1204
1372
  type: string;
1205
1373
  anonymous?: undefined;
1206
- } | {
1374
+ })[];
1375
+ erc20vaultadapter: ({
1207
1376
  inputs: {
1208
1377
  internalType: string;
1209
1378
  name: string;
1210
1379
  type: string;
1211
1380
  }[];
1212
- name: string;
1213
- outputs: any[];
1214
1381
  stateMutability: string;
1215
1382
  type: string;
1383
+ name?: undefined;
1216
1384
  anonymous?: undefined;
1217
- })[];
1218
- eth: any[];
1219
- };
1220
- export type AssetType = keyof typeof ABIS | string;
1221
- export type ContractType = keyof typeof ABIS;
1222
- declare const getABI: (name: keyof typeof ABIS) => any[] | ({
1223
- inputs: {
1224
- internalType: string;
1385
+ outputs?: undefined;
1386
+ } | {
1387
+ inputs: {
1388
+ internalType: string;
1389
+ name: string;
1390
+ type: string;
1391
+ }[];
1225
1392
  name: string;
1226
1393
  type: string;
1227
- }[];
1228
- stateMutability: string;
1229
- type: string;
1230
- name?: undefined;
1231
- anonymous?: undefined;
1232
- outputs?: undefined;
1233
- } | {
1234
- inputs: {
1235
- internalType: string;
1394
+ stateMutability?: undefined;
1395
+ anonymous?: undefined;
1396
+ outputs?: undefined;
1397
+ } | {
1398
+ anonymous: boolean;
1399
+ inputs: {
1400
+ indexed: boolean;
1401
+ internalType: string;
1402
+ name: string;
1403
+ type: string;
1404
+ }[];
1236
1405
  name: string;
1237
1406
  type: string;
1238
- }[];
1239
- name: string;
1240
- type: string;
1241
- stateMutability?: undefined;
1242
- anonymous?: undefined;
1243
- outputs?: undefined;
1407
+ stateMutability?: undefined;
1408
+ outputs?: undefined;
1409
+ } | {
1410
+ inputs: {
1411
+ internalType: string;
1412
+ name: string;
1413
+ type: string;
1414
+ }[];
1415
+ name: string;
1416
+ outputs: {
1417
+ internalType: string;
1418
+ name: string;
1419
+ type: string;
1420
+ }[];
1421
+ stateMutability: string;
1422
+ type: string;
1423
+ anonymous?: undefined;
1424
+ })[];
1425
+ erc721vaultadapter: ({
1426
+ inputs: {
1427
+ internalType: string;
1428
+ name: string;
1429
+ type: string;
1430
+ }[];
1431
+ stateMutability: string;
1432
+ type: string;
1433
+ name?: undefined;
1434
+ anonymous?: undefined;
1435
+ outputs?: undefined;
1436
+ } | {
1437
+ inputs: {
1438
+ internalType: string;
1439
+ name: string;
1440
+ type: string;
1441
+ }[];
1442
+ name: string;
1443
+ type: string;
1444
+ stateMutability?: undefined;
1445
+ anonymous?: undefined;
1446
+ outputs?: undefined;
1447
+ } | {
1448
+ anonymous: boolean;
1449
+ inputs: {
1450
+ indexed: boolean;
1451
+ internalType: string;
1452
+ name: string;
1453
+ type: string;
1454
+ }[];
1455
+ name: string;
1456
+ type: string;
1457
+ stateMutability?: undefined;
1458
+ outputs?: undefined;
1459
+ } | {
1460
+ inputs: {
1461
+ internalType: string;
1462
+ name: string;
1463
+ type: string;
1464
+ }[];
1465
+ name: string;
1466
+ outputs: {
1467
+ internalType: string;
1468
+ name: string;
1469
+ type: string;
1470
+ }[];
1471
+ stateMutability: string;
1472
+ type: string;
1473
+ anonymous?: undefined;
1474
+ })[];
1475
+ rwaindextoken: ({
1476
+ inputs: {
1477
+ internalType: string;
1478
+ name: string;
1479
+ type: string;
1480
+ }[];
1481
+ stateMutability: string;
1482
+ type: string;
1483
+ name?: undefined;
1484
+ anonymous?: undefined;
1485
+ outputs?: undefined;
1486
+ } | {
1487
+ inputs: {
1488
+ internalType: string;
1489
+ name: string;
1490
+ type: string;
1491
+ }[];
1492
+ name: string;
1493
+ type: string;
1494
+ stateMutability?: undefined;
1495
+ anonymous?: undefined;
1496
+ outputs?: undefined;
1497
+ } | {
1498
+ anonymous: boolean;
1499
+ inputs: {
1500
+ indexed: boolean;
1501
+ internalType: string;
1502
+ name: string;
1503
+ type: string;
1504
+ }[];
1505
+ name: string;
1506
+ type: string;
1507
+ stateMutability?: undefined;
1508
+ outputs?: undefined;
1509
+ } | {
1510
+ inputs: {
1511
+ internalType: string;
1512
+ name: string;
1513
+ type: string;
1514
+ }[];
1515
+ name: string;
1516
+ outputs: {
1517
+ internalType: string;
1518
+ name: string;
1519
+ type: string;
1520
+ }[];
1521
+ stateMutability: string;
1522
+ type: string;
1523
+ anonymous?: undefined;
1524
+ })[];
1525
+ };
1526
+ export type AssetType = keyof typeof ABIS | string;
1527
+ export type ContractType = keyof typeof ABIS;
1528
+ declare const getABI: (name: keyof typeof ABIS) => ({
1529
+ inputs: {
1530
+ internalType: string;
1531
+ name: string;
1532
+ type: string;
1533
+ }[];
1534
+ stateMutability: string;
1535
+ type: string;
1536
+ name?: undefined;
1537
+ anonymous?: undefined;
1538
+ outputs?: undefined;
1539
+ } | {
1540
+ inputs: {
1541
+ internalType: string;
1542
+ name: string;
1543
+ type: string;
1544
+ }[];
1545
+ name: string;
1546
+ type: string;
1547
+ stateMutability?: undefined;
1548
+ anonymous?: undefined;
1549
+ outputs?: undefined;
1244
1550
  } | {
1245
1551
  anonymous: boolean;
1246
1552
  inputs: {
@@ -1443,21 +1749,11 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
1443
1749
  }[];
1444
1750
  name: string;
1445
1751
  outputs: {
1446
- components: ({
1447
- internalType: string;
1448
- name: string;
1449
- type: string;
1450
- components?: undefined;
1451
- } | {
1452
- components: {
1453
- internalType: string;
1454
- name: string;
1455
- type: string;
1456
- }[];
1752
+ components: {
1457
1753
  internalType: string;
1458
1754
  name: string;
1459
1755
  type: string;
1460
- })[];
1756
+ }[];
1461
1757
  internalType: string;
1462
1758
  name: string;
1463
1759
  type: string;
@@ -1563,6 +1859,22 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
1563
1859
  stateMutability: string;
1564
1860
  type: string;
1565
1861
  anonymous?: undefined;
1862
+ } | {
1863
+ inputs: any[];
1864
+ name: string;
1865
+ outputs: {
1866
+ components: {
1867
+ internalType: string;
1868
+ name: string;
1869
+ type: string;
1870
+ }[];
1871
+ internalType: string;
1872
+ name: string;
1873
+ type: string;
1874
+ }[];
1875
+ stateMutability: string;
1876
+ type: string;
1877
+ anonymous?: undefined;
1566
1878
  })[] | ({
1567
1879
  inputs: {
1568
1880
  internalType: string;
@@ -2177,6 +2489,71 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2177
2489
  stateMutability: string;
2178
2490
  type: string;
2179
2491
  anonymous?: undefined;
2492
+ } | {
2493
+ inputs: {
2494
+ components: {
2495
+ internalType: string;
2496
+ name: string;
2497
+ type: string;
2498
+ }[];
2499
+ internalType: string;
2500
+ name: string;
2501
+ type: string;
2502
+ }[];
2503
+ name: string;
2504
+ outputs: {
2505
+ internalType: string;
2506
+ name: string;
2507
+ type: string;
2508
+ }[];
2509
+ stateMutability: string;
2510
+ type: string;
2511
+ anonymous?: undefined;
2512
+ })[] | ({
2513
+ inputs: {
2514
+ internalType: string;
2515
+ name: string;
2516
+ type: string;
2517
+ }[];
2518
+ stateMutability: string;
2519
+ type: string;
2520
+ name?: undefined;
2521
+ anonymous?: undefined;
2522
+ outputs?: undefined;
2523
+ } | {
2524
+ inputs: {
2525
+ internalType: string;
2526
+ name: string;
2527
+ type: string;
2528
+ }[];
2529
+ name: string;
2530
+ type: string;
2531
+ stateMutability?: undefined;
2532
+ anonymous?: undefined;
2533
+ outputs?: undefined;
2534
+ } | {
2535
+ anonymous: boolean;
2536
+ inputs: {
2537
+ indexed: boolean;
2538
+ internalType: string;
2539
+ name: string;
2540
+ type: string;
2541
+ }[];
2542
+ name: string;
2543
+ type: string;
2544
+ stateMutability?: undefined;
2545
+ outputs?: undefined;
2546
+ } | {
2547
+ inputs: any[];
2548
+ name: string;
2549
+ outputs: {
2550
+ internalType: string;
2551
+ name: string;
2552
+ type: string;
2553
+ }[];
2554
+ stateMutability: string;
2555
+ type: string;
2556
+ anonymous?: undefined;
2180
2557
  } | {
2181
2558
  inputs: any[];
2182
2559
  name: string;
@@ -2193,6 +2570,17 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2193
2570
  stateMutability: string;
2194
2571
  type: string;
2195
2572
  anonymous?: undefined;
2573
+ } | {
2574
+ inputs: {
2575
+ internalType: string;
2576
+ name: string;
2577
+ type: string;
2578
+ }[];
2579
+ name: string;
2580
+ outputs: any[];
2581
+ stateMutability: string;
2582
+ type: string;
2583
+ anonymous?: undefined;
2196
2584
  })[] | ({
2197
2585
  inputs: {
2198
2586
  internalType: string;
@@ -2277,14 +2665,13 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2277
2665
  stateMutability?: undefined;
2278
2666
  outputs?: undefined;
2279
2667
  } | {
2280
- inputs: any[];
2668
+ inputs: {
2669
+ internalType: string;
2670
+ name: string;
2671
+ type: string;
2672
+ }[];
2281
2673
  name: string;
2282
2674
  outputs: {
2283
- components: {
2284
- internalType: string;
2285
- name: string;
2286
- type: string;
2287
- }[];
2288
2675
  internalType: string;
2289
2676
  name: string;
2290
2677
  type: string;
@@ -2292,8 +2679,46 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2292
2679
  stateMutability: string;
2293
2680
  type: string;
2294
2681
  anonymous?: undefined;
2682
+ })[] | ({
2683
+ inputs: {
2684
+ internalType: string;
2685
+ name: string;
2686
+ type: string;
2687
+ }[];
2688
+ stateMutability: string;
2689
+ type: string;
2690
+ name?: undefined;
2691
+ anonymous?: undefined;
2692
+ outputs?: undefined;
2295
2693
  } | {
2296
- inputs: any[];
2694
+ inputs: {
2695
+ internalType: string;
2696
+ name: string;
2697
+ type: string;
2698
+ }[];
2699
+ name: string;
2700
+ type: string;
2701
+ stateMutability?: undefined;
2702
+ anonymous?: undefined;
2703
+ outputs?: undefined;
2704
+ } | {
2705
+ anonymous: boolean;
2706
+ inputs: {
2707
+ indexed: boolean;
2708
+ internalType: string;
2709
+ name: string;
2710
+ type: string;
2711
+ }[];
2712
+ name: string;
2713
+ type: string;
2714
+ stateMutability?: undefined;
2715
+ outputs?: undefined;
2716
+ } | {
2717
+ inputs: {
2718
+ internalType: string;
2719
+ name: string;
2720
+ type: string;
2721
+ }[];
2297
2722
  name: string;
2298
2723
  outputs: {
2299
2724
  internalType: string;
@@ -2303,6 +2728,17 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2303
2728
  stateMutability: string;
2304
2729
  type: string;
2305
2730
  anonymous?: undefined;
2731
+ })[] | ({
2732
+ inputs: {
2733
+ internalType: string;
2734
+ name: string;
2735
+ type: string;
2736
+ }[];
2737
+ stateMutability: string;
2738
+ type: string;
2739
+ name?: undefined;
2740
+ anonymous?: undefined;
2741
+ outputs?: undefined;
2306
2742
  } | {
2307
2743
  inputs: {
2308
2744
  internalType: string;
@@ -2310,7 +2746,34 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2310
2746
  type: string;
2311
2747
  }[];
2312
2748
  name: string;
2313
- outputs: any[];
2749
+ type: string;
2750
+ stateMutability?: undefined;
2751
+ anonymous?: undefined;
2752
+ outputs?: undefined;
2753
+ } | {
2754
+ anonymous: boolean;
2755
+ inputs: {
2756
+ indexed: boolean;
2757
+ internalType: string;
2758
+ name: string;
2759
+ type: string;
2760
+ }[];
2761
+ name: string;
2762
+ type: string;
2763
+ stateMutability?: undefined;
2764
+ outputs?: undefined;
2765
+ } | {
2766
+ inputs: {
2767
+ internalType: string;
2768
+ name: string;
2769
+ type: string;
2770
+ }[];
2771
+ name: string;
2772
+ outputs: {
2773
+ internalType: string;
2774
+ name: string;
2775
+ type: string;
2776
+ }[];
2314
2777
  stateMutability: string;
2315
2778
  type: string;
2316
2779
  anonymous?: undefined;
@@ -2326,7 +2789,11 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2326
2789
  anonymous?: undefined;
2327
2790
  outputs?: undefined;
2328
2791
  } | {
2329
- inputs: any[];
2792
+ inputs: {
2793
+ internalType: string;
2794
+ name: string;
2795
+ type: string;
2796
+ }[];
2330
2797
  name: string;
2331
2798
  type: string;
2332
2799
  stateMutability?: undefined;
@@ -2345,7 +2812,11 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2345
2812
  stateMutability?: undefined;
2346
2813
  outputs?: undefined;
2347
2814
  } | {
2348
- inputs: any[];
2815
+ inputs: {
2816
+ internalType: string;
2817
+ name: string;
2818
+ type: string;
2819
+ }[];
2349
2820
  name: string;
2350
2821
  outputs: {
2351
2822
  internalType: string;
@@ -2355,6 +2826,17 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2355
2826
  stateMutability: string;
2356
2827
  type: string;
2357
2828
  anonymous?: undefined;
2829
+ })[] | ({
2830
+ inputs: {
2831
+ internalType: string;
2832
+ name: string;
2833
+ type: string;
2834
+ }[];
2835
+ stateMutability: string;
2836
+ type: string;
2837
+ name?: undefined;
2838
+ anonymous?: undefined;
2839
+ outputs?: undefined;
2358
2840
  } | {
2359
2841
  inputs: {
2360
2842
  internalType: string;
@@ -2362,7 +2844,132 @@ declare const getABI: (name: keyof typeof ABIS) => any[] | ({
2362
2844
  type: string;
2363
2845
  }[];
2364
2846
  name: string;
2365
- outputs: any[];
2847
+ type: string;
2848
+ stateMutability?: undefined;
2849
+ anonymous?: undefined;
2850
+ outputs?: undefined;
2851
+ } | {
2852
+ anonymous: boolean;
2853
+ inputs: {
2854
+ indexed: boolean;
2855
+ internalType: string;
2856
+ name: string;
2857
+ type: string;
2858
+ }[];
2859
+ name: string;
2860
+ type: string;
2861
+ stateMutability?: undefined;
2862
+ outputs?: undefined;
2863
+ } | {
2864
+ inputs: {
2865
+ internalType: string;
2866
+ name: string;
2867
+ type: string;
2868
+ }[];
2869
+ name: string;
2870
+ outputs: {
2871
+ internalType: string;
2872
+ name: string;
2873
+ type: string;
2874
+ }[];
2875
+ stateMutability: string;
2876
+ type: string;
2877
+ anonymous?: undefined;
2878
+ })[] | ({
2879
+ inputs: {
2880
+ internalType: string;
2881
+ name: string;
2882
+ type: string;
2883
+ }[];
2884
+ stateMutability: string;
2885
+ type: string;
2886
+ name?: undefined;
2887
+ anonymous?: undefined;
2888
+ outputs?: undefined;
2889
+ } | {
2890
+ inputs: {
2891
+ internalType: string;
2892
+ name: string;
2893
+ type: string;
2894
+ }[];
2895
+ name: string;
2896
+ type: string;
2897
+ stateMutability?: undefined;
2898
+ anonymous?: undefined;
2899
+ outputs?: undefined;
2900
+ } | {
2901
+ anonymous: boolean;
2902
+ inputs: {
2903
+ indexed: boolean;
2904
+ internalType: string;
2905
+ name: string;
2906
+ type: string;
2907
+ }[];
2908
+ name: string;
2909
+ type: string;
2910
+ stateMutability?: undefined;
2911
+ outputs?: undefined;
2912
+ } | {
2913
+ inputs: {
2914
+ internalType: string;
2915
+ name: string;
2916
+ type: string;
2917
+ }[];
2918
+ name: string;
2919
+ outputs: {
2920
+ internalType: string;
2921
+ name: string;
2922
+ type: string;
2923
+ }[];
2924
+ stateMutability: string;
2925
+ type: string;
2926
+ anonymous?: undefined;
2927
+ })[] | ({
2928
+ inputs: {
2929
+ internalType: string;
2930
+ name: string;
2931
+ type: string;
2932
+ }[];
2933
+ stateMutability: string;
2934
+ type: string;
2935
+ name?: undefined;
2936
+ anonymous?: undefined;
2937
+ outputs?: undefined;
2938
+ } | {
2939
+ inputs: {
2940
+ internalType: string;
2941
+ name: string;
2942
+ type: string;
2943
+ }[];
2944
+ name: string;
2945
+ type: string;
2946
+ stateMutability?: undefined;
2947
+ anonymous?: undefined;
2948
+ outputs?: undefined;
2949
+ } | {
2950
+ anonymous: boolean;
2951
+ inputs: {
2952
+ indexed: boolean;
2953
+ internalType: string;
2954
+ name: string;
2955
+ type: string;
2956
+ }[];
2957
+ name: string;
2958
+ type: string;
2959
+ stateMutability?: undefined;
2960
+ outputs?: undefined;
2961
+ } | {
2962
+ inputs: {
2963
+ internalType: string;
2964
+ name: string;
2965
+ type: string;
2966
+ }[];
2967
+ name: string;
2968
+ outputs: {
2969
+ internalType: string;
2970
+ name: string;
2971
+ type: string;
2972
+ }[];
2366
2973
  stateMutability: string;
2367
2974
  type: string;
2368
2975
  anonymous?: undefined;