@raac/rpc 1.0.2-beta.6 → 1.1.0-beta.2

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 (1154) hide show
  1. package/dist/RPCLibrary.js +323 -0
  2. package/dist/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +1743 -0
  3. package/dist/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +1443 -0
  4. package/dist/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +279 -0
  5. package/dist/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +2824 -0
  6. package/dist/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +1146 -0
  7. package/dist/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +285 -0
  8. package/dist/artifacts/core/tokens/DEToken.sol/DEToken.json +858 -0
  9. package/dist/artifacts/core/tokens/IndexToken.sol/IndexToken.json +770 -0
  10. package/dist/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +1472 -0
  11. package/dist/artifacts/core/tokens/RAACToken.sol/RAACToken.json +832 -0
  12. package/dist/artifacts/core/tokens/RToken.sol/RToken.json +1205 -0
  13. package/dist/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +1616 -0
  14. package/dist/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +774 -0
  15. package/dist/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +479 -0
  16. package/dist/artifacts/zeno/Auction.sol/Auction.json +393 -0
  17. package/dist/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +307 -0
  18. package/dist/artifacts/zeno/Zeno.sol/Zeno.json +620 -0
  19. package/dist/artifacts/zeno/ZenoFactory.sol/ZenoFactory.json +275 -0
  20. package/dist/assets/getAsset.js +23 -0
  21. package/dist/assets/getAssets.js +26 -0
  22. package/dist/assets/getSupply.js +18 -0
  23. package/dist/configs/chains/11155111.json +132 -0
  24. package/dist/configs/chains/17000.json +127 -0
  25. package/dist/configs/chains/8453.json +127 -0
  26. package/dist/configs/createConfig.js +95 -0
  27. package/dist/contracts/crvUSDToken/getBalance.js +17 -0
  28. package/dist/contracts/crvUSDToken/getTotalSupply.js +31 -0
  29. package/dist/contracts/feeCollector/claimRewardFromPool.js +24 -0
  30. package/dist/contracts/getContract.js +18 -0
  31. package/dist/contracts/getContractAddress.js +50 -0
  32. package/dist/contracts/housePrices/getLatestPrice.js +21 -0
  33. package/dist/contracts/housePrices/setOracle.js +24 -0
  34. package/dist/contracts/indexToken/getNextRandomNFT.js +30 -0
  35. package/dist/contracts/indexToken/redeemNFT.js +39 -0
  36. package/dist/contracts/rcrvUSDToken/getBalance.js +14 -0
  37. package/dist/contracts/rcrvUSDToken/getTotalSupply.js +30 -0
  38. package/dist/contracts/zeno/createAuction.js +25 -0
  39. package/dist/contracts/zeno/createZeno.js +26 -0
  40. package/dist/contracts/zeno/getAuctions.js +28 -0
  41. package/dist/contracts/zeno/getZenos.js +28 -0
  42. package/dist/index.js +7 -0
  43. package/dist/methods/approveToken.js +35 -0
  44. package/dist/methods/commons/checkAllowance.js +19 -0
  45. package/dist/methods/commons/estimateGasPrice.js +28 -0
  46. package/dist/methods/getAssetBalance.js +33 -0
  47. package/dist/methods/getAssetsBalance.js +4 -0
  48. package/dist/minter/get.js +121 -0
  49. package/dist/minter/getApy.js +28 -0
  50. package/dist/minter/tick.js +33 -0
  51. package/dist/nfts/getAllTokens.js +34 -0
  52. package/dist/nfts/getBaseUri.js +23 -0
  53. package/dist/nfts/getHousePrice.js +19 -0
  54. package/dist/nfts/getMintFeePercentage.js +23 -0
  55. package/dist/nfts/getMintPrice.js +28 -0
  56. package/dist/nfts/getTokenURI.js +23 -0
  57. package/dist/nfts/getTokensByOwner.js +35 -0
  58. package/dist/nfts/getTotalPropertiesCount.js +23 -0
  59. package/dist/nfts/mint.js +26 -0
  60. package/dist/nfts/setBaseUri.js +24 -0
  61. package/dist/nfts/totalNFTSupply.js +19 -0
  62. package/dist/pools/lendingPool/borrowFromLendingPool.js +24 -0
  63. package/dist/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +40 -0
  64. package/dist/pools/lendingPool/calculateInsuranceFee.js +20 -0
  65. package/dist/pools/lendingPool/claimReward.js +22 -0
  66. package/dist/pools/lendingPool/closeLiquidation.js +28 -0
  67. package/dist/pools/lendingPool/depositNFTToLendingPool.js +50 -0
  68. package/dist/pools/lendingPool/depositToLendingPool.js +35 -0
  69. package/dist/pools/lendingPool/getAllUserData.js +28 -0
  70. package/dist/pools/lendingPool/getEligibleUserDeposits.js +27 -0
  71. package/dist/pools/lendingPool/getHealthFactor.js +27 -0
  72. package/dist/pools/lendingPool/getHousePrice.js +26 -0
  73. package/dist/pools/lendingPool/getLendingPoolInfo.js +109 -0
  74. package/dist/pools/lendingPool/getLendingPoolTotalLiquidity.js +22 -0
  75. package/dist/pools/lendingPool/getPendingReward.js +20 -0
  76. package/dist/pools/lendingPool/getPositionDebt.js +27 -0
  77. package/dist/pools/lendingPool/getPositionScaledDebt.js +27 -0
  78. package/dist/pools/lendingPool/getPositionView.js +38 -0
  79. package/dist/pools/lendingPool/getPositionsScaledDebt.js +27 -0
  80. package/dist/pools/lendingPool/getRawUserDepositsInLendingPool.js +21 -0
  81. package/dist/pools/lendingPool/getUserCollateralValue.js +27 -0
  82. package/dist/pools/lendingPool/initializeLiquidation.js +28 -0
  83. package/dist/pools/lendingPool/repayToLendingPool.js +24 -0
  84. package/dist/pools/lendingPool/withdrawFromLendingPool.js +42 -0
  85. package/dist/pools/lendingPool/withdrawNFTFromLendingPool.js +24 -0
  86. package/dist/pools/liquidityPool/getLiquidityPoolInfo.js +73 -0
  87. package/dist/pools/stabilityPool/calculateRAACRewards.js +21 -0
  88. package/dist/pools/stabilityPool/depositNFTToStabilityPool.js +40 -0
  89. package/dist/pools/stabilityPool/depositToStabilityPool.js +34 -0
  90. package/dist/pools/stabilityPool/getRawUserDepositsInStabilityPool.js +21 -0
  91. package/dist/pools/stabilityPool/getStabilityPoolInfo.js +80 -0
  92. package/dist/pools/stabilityPool/getStabilityPoolTotalDeposits.js +19 -0
  93. package/dist/pools/stabilityPool/withdrawFromStabilityPool.js +34 -0
  94. package/dist/scripts/index.js +150 -0
  95. package/dist/tests/test.js +32 -0
  96. package/dist/types/RPCLibrary.d.ts +192 -0
  97. package/dist/types/assets/getAsset.d.ts +5 -0
  98. package/dist/types/assets/getAssets.d.ts +4 -0
  99. package/dist/types/assets/getSupply.d.ts +5 -0
  100. package/dist/types/configs/chains/index.d.ts +15 -0
  101. package/dist/types/configs/createConfig.d.ts +92 -0
  102. package/dist/types/configs/index.d.ts +15 -0
  103. package/dist/types/contracts/crvUSDToken/getBalance.d.ts +2 -0
  104. package/dist/types/contracts/crvUSDToken/getTotalSupply.d.ts +10 -0
  105. package/dist/types/contracts/feeCollector/claimRewardFromPool.d.ts +4 -0
  106. package/dist/types/contracts/getContract.d.ts +4 -0
  107. package/dist/types/contracts/getContractAddress.d.ts +10 -0
  108. package/dist/types/contracts/housePrices/getLatestPrice.d.ts +10 -0
  109. package/dist/types/contracts/housePrices/setOracle.d.ts +4 -0
  110. package/dist/types/contracts/indexToken/getNextRandomNFT.d.ts +7 -0
  111. package/dist/types/contracts/indexToken/redeemNFT.d.ts +4 -0
  112. package/dist/types/contracts/rcrvUSDToken/getBalance.d.ts +2 -0
  113. package/dist/types/contracts/rcrvUSDToken/getTotalSupply.d.ts +10 -0
  114. package/dist/types/contracts/zeno/createAuction.d.ts +4 -0
  115. package/dist/types/contracts/zeno/createZeno.d.ts +4 -0
  116. package/dist/types/contracts/zeno/getAuctions.d.ts +4 -0
  117. package/dist/types/contracts/zeno/getZenos.d.ts +4 -0
  118. package/dist/types/index.d.ts +2 -0
  119. package/dist/types/methods/approveToken.d.ts +5 -0
  120. package/dist/types/methods/commons/checkAllowance.d.ts +6 -0
  121. package/dist/types/methods/commons/estimateGasPrice.d.ts +11 -0
  122. package/dist/types/methods/getAssetBalance.d.ts +6 -0
  123. package/dist/types/methods/getAssetsBalance.d.ts +3 -0
  124. package/dist/types/minter/get.d.ts +17 -0
  125. package/dist/types/minter/getApy.d.ts +4 -0
  126. package/dist/types/minter/tick.d.ts +4 -0
  127. package/dist/types/nfts/getAllTokens.d.ts +7 -0
  128. package/dist/types/nfts/getBaseUri.d.ts +4 -0
  129. package/dist/types/nfts/getHousePrice.d.ts +4 -0
  130. package/dist/types/nfts/getMintFeePercentage.d.ts +4 -0
  131. package/dist/types/nfts/getMintPrice.d.ts +7 -0
  132. package/dist/types/nfts/getTokenURI.d.ts +4 -0
  133. package/dist/types/nfts/getTokensByOwner.d.ts +10 -0
  134. package/dist/types/nfts/getTotalPropertiesCount.d.ts +4 -0
  135. package/dist/types/nfts/mint.d.ts +4 -0
  136. package/dist/types/nfts/setBaseUri.d.ts +4 -0
  137. package/dist/types/nfts/totalNFTSupply.d.ts +4 -0
  138. package/dist/types/pools/lendingPool/borrowFromLendingPool.d.ts +4 -0
  139. package/dist/types/pools/lendingPool/borrowFromLendingPoolWithInsurance.d.ts +4 -0
  140. package/dist/types/pools/lendingPool/calculateInsuranceFee.d.ts +4 -0
  141. package/dist/types/pools/lendingPool/claimReward.d.ts +4 -0
  142. package/dist/types/pools/lendingPool/closeLiquidation.d.ts +11 -0
  143. package/dist/types/pools/lendingPool/depositNFTToLendingPool.d.ts +4 -0
  144. package/dist/types/pools/lendingPool/depositToLendingPool.d.ts +4 -0
  145. package/dist/types/pools/lendingPool/getAllUserData.d.ts +16 -0
  146. package/dist/types/pools/lendingPool/getEligibleUserDeposits.d.ts +11 -0
  147. package/dist/types/pools/lendingPool/getHealthFactor.d.ts +11 -0
  148. package/dist/types/pools/lendingPool/getHousePrice.d.ts +4 -0
  149. package/dist/types/pools/lendingPool/getLendingPoolInfo.d.ts +24 -0
  150. package/dist/types/pools/lendingPool/getLendingPoolTotalLiquidity.d.ts +4 -0
  151. package/dist/types/pools/lendingPool/getPendingReward.d.ts +4 -0
  152. package/dist/types/pools/lendingPool/getPositionDebt.d.ts +11 -0
  153. package/dist/types/pools/lendingPool/getPositionScaledDebt.d.ts +11 -0
  154. package/dist/types/pools/lendingPool/getPositionView.d.ts +27 -0
  155. package/dist/types/pools/lendingPool/getPositionsScaledDebt.d.ts +11 -0
  156. package/dist/types/pools/lendingPool/getRawUserDepositsInLendingPool.d.ts +4 -0
  157. package/dist/types/pools/lendingPool/getUserCollateralValue.d.ts +11 -0
  158. package/dist/types/pools/lendingPool/initializeLiquidation.d.ts +11 -0
  159. package/dist/types/pools/lendingPool/repayToLendingPool.d.ts +4 -0
  160. package/dist/types/pools/lendingPool/withdrawFromLendingPool.d.ts +4 -0
  161. package/dist/types/pools/lendingPool/withdrawNFTFromLendingPool.d.ts +4 -0
  162. package/dist/types/pools/liquidityPool/getLiquidityPoolInfo.d.ts +7 -0
  163. package/dist/types/pools/stabilityPool/calculateRAACRewards.d.ts +4 -0
  164. package/dist/types/pools/stabilityPool/depositNFTToStabilityPool.d.ts +4 -0
  165. package/dist/types/pools/stabilityPool/depositToStabilityPool.d.ts +4 -0
  166. package/dist/types/pools/stabilityPool/getRawUserDepositsInStabilityPool.d.ts +4 -0
  167. package/dist/types/pools/stabilityPool/getStabilityPoolInfo.d.ts +10 -0
  168. package/dist/types/pools/stabilityPool/getStabilityPoolTotalDeposits.d.ts +4 -0
  169. package/dist/types/pools/stabilityPool/withdrawFromStabilityPool.d.ts +4 -0
  170. package/dist/types/scripts/index.d.ts +1 -0
  171. package/dist/types/tests/test.d.ts +1 -0
  172. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper.d.ts +261 -0
  173. package/dist/types/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +4 -0
  174. package/dist/types/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +1694 -0
  175. package/dist/types/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +1021 -0
  176. package/dist/types/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +1033 -0
  177. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +48 -0
  178. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +90 -0
  179. package/dist/types/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +86 -0
  180. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
  181. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Wrapper__factory.d.ts +417 -0
  182. package/dist/types/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +4 -0
  183. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
  184. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
  185. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
  186. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
  187. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
  188. package/dist/types/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
  189. package/dist/types/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +1362 -0
  190. package/dist/types/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +386 -0
  191. package/dist/types/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +716 -0
  192. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +1124 -0
  193. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +1154 -0
  194. package/dist/types/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +1154 -0
  195. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +976 -0
  196. package/dist/types/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +773 -0
  197. package/dist/types/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +1132 -0
  198. package/dist/types/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +680 -0
  199. package/dist/types/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +231 -0
  200. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +275 -0
  201. package/dist/types/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +286 -0
  202. package/dist/types/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +2210 -0
  203. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +390 -0
  204. package/dist/types/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +897 -0
  205. package/dist/types/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +231 -0
  206. package/dist/types/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +671 -0
  207. package/dist/types/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +747 -0
  208. package/dist/types/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +602 -0
  209. package/dist/types/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +401 -0
  210. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +1143 -0
  211. package/dist/types/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +652 -0
  212. package/dist/types/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +941 -0
  213. package/dist/types/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +1264 -0
  214. package/dist/types/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +1200 -0
  215. package/dist/types/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +54 -0
  216. package/dist/types/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +68 -0
  217. package/dist/types/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +111 -0
  218. package/dist/types/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +69 -0
  219. package/dist/types/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +92 -0
  220. package/dist/types/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +74 -0
  221. package/dist/types/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +125 -0
  222. package/dist/types/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +135 -0
  223. package/dist/types/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +26 -0
  224. package/dist/types/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +212 -0
  225. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +1194 -0
  226. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +50 -0
  227. package/dist/types/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +100 -0
  228. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +66 -0
  229. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +62 -0
  230. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +620 -0
  231. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +293 -0
  232. package/dist/types/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +304 -0
  233. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +234 -0
  234. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +1232 -0
  235. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +199 -0
  236. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +795 -0
  237. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +84 -0
  238. package/dist/types/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +109 -0
  239. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +53 -0
  240. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +42 -0
  241. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +68 -0
  242. package/dist/types/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +64 -0
  243. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +379 -0
  244. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +282 -0
  245. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +388 -0
  246. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +451 -0
  247. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +407 -0
  248. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +338 -0
  249. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +278 -0
  250. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +714 -0
  251. package/dist/types/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +335 -0
  252. package/dist/types/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +525 -0
  253. package/dist/types/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +40 -0
  254. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +351 -0
  255. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +124 -0
  256. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +197 -0
  257. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +183 -0
  258. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +70 -0
  259. package/dist/types/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +341 -0
  260. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +247 -0
  261. package/dist/types/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +154 -0
  262. package/dist/types/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +277 -0
  263. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +53 -0
  264. package/dist/types/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +53 -0
  265. package/dist/types/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +80 -0
  266. package/dist/types/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +113 -0
  267. package/dist/types/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +250 -0
  268. package/dist/types/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +320 -0
  269. package/dist/types/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +223 -0
  270. package/dist/types/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +488 -0
  271. package/dist/types/typechain-types/index.d.ts +331 -0
  272. package/dist/types/utils/artifacts.d.ts +1171 -0
  273. package/dist/types/utils/chain.d.ts +13 -0
  274. package/dist/types/utils/config.d.ts +0 -0
  275. package/dist/types/utils/contracts.d.ts +24 -0
  276. package/dist/types/wallet/assets/approveAsset.d.ts +5 -0
  277. package/dist/types/wallet/assets/burnAsset.d.ts +5 -0
  278. package/dist/types/wallet/assets/getAllowance.d.ts +5 -0
  279. package/dist/types/wallet/assets/getAsset.d.ts +4 -0
  280. package/dist/types/wallet/assets/getAssets.d.ts +4 -0
  281. package/dist/types/wallet/assets/getBalance.d.ts +5 -0
  282. package/dist/types/wallet/assets/mintAsset.d.ts +5 -0
  283. package/dist/types/wallet/assets/transferAsset.d.ts +5 -0
  284. package/dist/utils/artifacts.js +76 -0
  285. package/dist/utils/chain.js +92 -0
  286. package/dist/utils/config.js +43 -0
  287. package/dist/utils/contracts.js +81 -0
  288. package/dist/wallet/assets/approveAsset.js +35 -0
  289. package/dist/wallet/assets/burnAsset.js +46 -0
  290. package/dist/wallet/assets/getAllowance.js +26 -0
  291. package/dist/wallet/assets/getAsset.js +22 -0
  292. package/dist/wallet/assets/getAssets.js +26 -0
  293. package/dist/wallet/assets/getBalance.js +24 -0
  294. package/dist/wallet/assets/mintAsset.js +47 -0
  295. package/dist/wallet/assets/transferAsset.js +62 -0
  296. package/package.json +5 -2
  297. package/RPCLibrary.js +0 -335
  298. package/artifacts/core/collectors/FeeCollector.sol/FeeCollector.dbg.json +0 -4
  299. package/artifacts/core/collectors/FeeCollector.sol/FeeCollector.json +0 -1743
  300. package/artifacts/core/collectors/Treasury.sol/Treasury.dbg.json +0 -4
  301. package/artifacts/core/collectors/Treasury.sol/Treasury.json +0 -481
  302. package/artifacts/core/governance/boost/BoostController.sol/BoostController.dbg.json +0 -4
  303. package/artifacts/core/governance/boost/BoostController.sol/BoostController.json +0 -905
  304. package/artifacts/core/governance/gauges/BaseGauge.sol/BaseGauge.dbg.json +0 -4
  305. package/artifacts/core/governance/gauges/BaseGauge.sol/BaseGauge.json +0 -1398
  306. package/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.dbg.json +0 -4
  307. package/artifacts/core/governance/gauges/GaugeController.sol/GaugeController.json +0 -1435
  308. package/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.dbg.json +0 -4
  309. package/artifacts/core/governance/gauges/RAACGauge.sol/RAACGauge.json +0 -1471
  310. package/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.dbg.json +0 -4
  311. package/artifacts/core/governance/gauges/RWAGauge.sol/RWAGauge.json +0 -1471
  312. package/artifacts/core/governance/proposals/Governance.sol/Governance.dbg.json +0 -4
  313. package/artifacts/core/governance/proposals/Governance.sol/Governance.json +0 -1242
  314. package/artifacts/core/governance/proposals/TimelockController.sol/TimelockController.dbg.json +0 -4
  315. package/artifacts/core/governance/proposals/TimelockController.sol/TimelockController.json +0 -988
  316. package/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.dbg.json +0 -4
  317. package/artifacts/core/minters/RAACMinter/RAACMinter.sol/RAACMinter.json +0 -1443
  318. package/artifacts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.sol/RAACReleaseOrchestrator.dbg.json +0 -4
  319. package/artifacts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.sol/RAACReleaseOrchestrator.json +0 -860
  320. package/artifacts/core/oracles/BaseChainlinkFunctionsOracle.sol/BaseChainlinkFunctionsOracle.dbg.json +0 -4
  321. package/artifacts/core/oracles/BaseChainlinkFunctionsOracle.sol/BaseChainlinkFunctionsOracle.json +0 -264
  322. package/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.dbg.json +0 -4
  323. package/artifacts/core/oracles/BaseVRFv2Consumer.sol/BaseVRFv2Consumer.json +0 -279
  324. package/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.dbg.json +0 -4
  325. package/artifacts/core/oracles/RAACHousePriceOracle.sol/RAACHousePriceOracle.json +0 -335
  326. package/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.dbg.json +0 -4
  327. package/artifacts/core/oracles/RAACPrimeRateOracle.sol/RAACPrimeRateOracle.json +0 -350
  328. package/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.dbg.json +0 -4
  329. package/artifacts/core/pools/LendingPool/LendingPool.sol/LendingPool.json +0 -2760
  330. package/artifacts/core/pools/StabilityPool/NFTLiquidator.sol/NFTLiquidator.dbg.json +0 -4
  331. package/artifacts/core/pools/StabilityPool/NFTLiquidator.sol/NFTLiquidator.json +0 -485
  332. package/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.dbg.json +0 -4
  333. package/artifacts/core/pools/StabilityPool/StabilityPool.sol/StabilityPool.json +0 -1146
  334. package/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.dbg.json +0 -4
  335. package/artifacts/core/primitives/RAACHousePrices.sol/RAACHousePrices.json +0 -285
  336. package/artifacts/core/tokens/DEToken.sol/DEToken.dbg.json +0 -4
  337. package/artifacts/core/tokens/DEToken.sol/DEToken.json +0 -858
  338. package/artifacts/core/tokens/DebtToken.sol/DebtToken.dbg.json +0 -4
  339. package/artifacts/core/tokens/DebtToken.sol/DebtToken.json +0 -953
  340. package/artifacts/core/tokens/IndexToken.sol/IndexToken.dbg.json +0 -4
  341. package/artifacts/core/tokens/IndexToken.sol/IndexToken.json +0 -770
  342. package/artifacts/core/tokens/LPToken.sol/LPToken.dbg.json +0 -4
  343. package/artifacts/core/tokens/LPToken.sol/LPToken.json +0 -507
  344. package/artifacts/core/tokens/RAACNFT.sol/RAACNFT.dbg.json +0 -4
  345. package/artifacts/core/tokens/RAACNFT.sol/RAACNFT.json +0 -1472
  346. package/artifacts/core/tokens/RAACToken.sol/RAACToken.dbg.json +0 -4
  347. package/artifacts/core/tokens/RAACToken.sol/RAACToken.json +0 -832
  348. package/artifacts/core/tokens/RToken.sol/RToken.dbg.json +0 -4
  349. package/artifacts/core/tokens/RToken.sol/RToken.json +0 -1205
  350. package/artifacts/core/tokens/veRAACToken.sol/veRAACToken.dbg.json +0 -4
  351. package/artifacts/core/tokens/veRAACToken.sol/veRAACToken.json +0 -1616
  352. package/artifacts/interfaces/IERC20.sol/IERC20.dbg.json +0 -4
  353. package/artifacts/interfaces/IERC20.sol/IERC20.json +0 -194
  354. package/artifacts/interfaces/IHousePrices.sol/IHousePrices.dbg.json +0 -4
  355. package/artifacts/interfaces/IHousePrices.sol/IHousePrices.json +0 -30
  356. package/artifacts/interfaces/INFTLiquidator.sol/INFTLiquidator.dbg.json +0 -4
  357. package/artifacts/interfaces/INFTLiquidator.sol/INFTLiquidator.json +0 -86
  358. package/artifacts/interfaces/IPoolManager.sol/IPoolManager.dbg.json +0 -4
  359. package/artifacts/interfaces/IPoolManager.sol/IPoolManager.json +0 -57
  360. package/artifacts/interfaces/IReserveAllocationLibraryMock.sol/IReserveAllocationLibraryMock.dbg.json +0 -4
  361. package/artifacts/interfaces/IReserveAllocationLibraryMock.sol/IReserveAllocationLibraryMock.json +0 -246
  362. package/artifacts/interfaces/IUSDC.sol/IUSDC.dbg.json +0 -4
  363. package/artifacts/interfaces/IUSDC.sol/IUSDC.json +0 -194
  364. package/artifacts/interfaces/IveRAACDistributor.sol/IveRAACDistributor.dbg.json +0 -4
  365. package/artifacts/interfaces/IveRAACDistributor.sol/IveRAACDistributor.json +0 -100
  366. package/artifacts/interfaces/core/collectors/IBaseCollector.sol/IBaseCollector.dbg.json +0 -4
  367. package/artifacts/interfaces/core/collectors/IBaseCollector.sol/IBaseCollector.json +0 -45
  368. package/artifacts/interfaces/core/collectors/IFeeCollector.sol/IFeeCollector.dbg.json +0 -4
  369. package/artifacts/interfaces/core/collectors/IFeeCollector.sol/IFeeCollector.json +0 -922
  370. package/artifacts/interfaces/core/collectors/ITreasury.sol/ITreasury.dbg.json +0 -4
  371. package/artifacts/interfaces/core/collectors/ITreasury.sol/ITreasury.json +0 -214
  372. package/artifacts/interfaces/core/governance/IBoostController.sol/IBoostController.dbg.json +0 -4
  373. package/artifacts/interfaces/core/governance/IBoostController.sol/IBoostController.json +0 -378
  374. package/artifacts/interfaces/core/governance/gauges/IGauge.sol/IGauge.dbg.json +0 -4
  375. package/artifacts/interfaces/core/governance/gauges/IGauge.sol/IGauge.json +0 -394
  376. package/artifacts/interfaces/core/governance/gauges/IGaugeController.sol/IGaugeController.dbg.json +0 -4
  377. package/artifacts/interfaces/core/governance/gauges/IGaugeController.sol/IGaugeController.json +0 -577
  378. package/artifacts/interfaces/core/governance/proposals/IGovernance.sol/IGovernance.dbg.json +0 -4
  379. package/artifacts/interfaces/core/governance/proposals/IGovernance.sol/IGovernance.json +0 -1134
  380. package/artifacts/interfaces/core/governance/proposals/ITimelockController.sol/ITimelockController.dbg.json +0 -4
  381. package/artifacts/interfaces/core/governance/proposals/ITimelockController.sol/ITimelockController.json +0 -612
  382. package/artifacts/interfaces/core/minters/RAACMinter/IRAACMinter.sol/IRAACMinter.dbg.json +0 -4
  383. package/artifacts/interfaces/core/minters/RAACMinter/IRAACMinter.sol/IRAACMinter.json +0 -542
  384. package/artifacts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.sol/IReleaseOrchestrator.dbg.json +0 -4
  385. package/artifacts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.sol/IReleaseOrchestrator.json +0 -358
  386. package/artifacts/interfaces/core/oracles/IBaseVRFv2Consumer.sol/IBaseVRFv2Consumer.dbg.json +0 -4
  387. package/artifacts/interfaces/core/oracles/IBaseVRFv2Consumer.sol/IBaseVRFv2Consumer.json +0 -102
  388. package/artifacts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePrices.dbg.json +0 -4
  389. package/artifacts/interfaces/core/oracles/IRAACHousePrices.sol/IRAACHousePrices.json +0 -193
  390. package/artifacts/interfaces/core/pools/ILiquidityPool.sol/ILiquidityPool.dbg.json +0 -4
  391. package/artifacts/interfaces/core/pools/ILiquidityPool.sol/ILiquidityPool.json +0 -310
  392. package/artifacts/interfaces/core/pools/LendingPool/ILendingPool.sol/ILendingPool.dbg.json +0 -4
  393. package/artifacts/interfaces/core/pools/LendingPool/ILendingPool.sol/ILendingPool.json +0 -1500
  394. package/artifacts/interfaces/core/pools/StabilityPool/IStabilityPool.sol/IStabilityPool.dbg.json +0 -4
  395. package/artifacts/interfaces/core/pools/StabilityPool/IStabilityPool.sol/IStabilityPool.json +0 -622
  396. package/artifacts/interfaces/core/tokens/IDEToken.sol/IDEToken.dbg.json +0 -4
  397. package/artifacts/interfaces/core/tokens/IDEToken.sol/IDEToken.json +0 -333
  398. package/artifacts/interfaces/core/tokens/IDebtToken.sol/IDebtToken.dbg.json +0 -4
  399. package/artifacts/interfaces/core/tokens/IDebtToken.sol/IDebtToken.json +0 -507
  400. package/artifacts/interfaces/core/tokens/IIndexToken.sol/IIndexToken.dbg.json +0 -4
  401. package/artifacts/interfaces/core/tokens/IIndexToken.sol/IIndexToken.json +0 -299
  402. package/artifacts/interfaces/core/tokens/IRAACNFT.sol/IRAACNFT.dbg.json +0 -4
  403. package/artifacts/interfaces/core/tokens/IRAACNFT.sol/IRAACNFT.json +0 -816
  404. package/artifacts/interfaces/core/tokens/IRAACToken.sol/IRAACToken.dbg.json +0 -4
  405. package/artifacts/interfaces/core/tokens/IRAACToken.sol/IRAACToken.json +0 -567
  406. package/artifacts/interfaces/core/tokens/IRToken.sol/IRToken.dbg.json +0 -4
  407. package/artifacts/interfaces/core/tokens/IRToken.sol/IRToken.json +0 -641
  408. package/artifacts/interfaces/core/tokens/IveRAACToken.sol/IveRAACToken.dbg.json +0 -4
  409. package/artifacts/interfaces/core/tokens/IveRAACToken.sol/IveRAACToken.json +0 -560
  410. package/artifacts/interfaces/core/vaults/IBaseVault.sol/IBaseVault.dbg.json +0 -4
  411. package/artifacts/interfaces/core/vaults/IBaseVault.sol/IBaseVault.json +0 -185
  412. package/artifacts/interfaces/curve/ICurveCrvUSDVault.sol/ICurveCrvUSDVault.dbg.json +0 -4
  413. package/artifacts/interfaces/curve/ICurveCrvUSDVault.sol/ICurveCrvUSDVault.json +0 -250
  414. package/artifacts/interfaces/zeno/IAuction.sol/IAuction.dbg.json +0 -4
  415. package/artifacts/interfaces/zeno/IAuction.sol/IAuction.json +0 -162
  416. package/artifacts/interfaces/zeno/IZENO.sol/IZENO.dbg.json +0 -4
  417. package/artifacts/interfaces/zeno/IZENO.sol/IZENO.json +0 -321
  418. package/artifacts/libraries/governance/BoostCalculator.sol/BoostCalculator.dbg.json +0 -4
  419. package/artifacts/libraries/governance/BoostCalculator.sol/BoostCalculator.json +0 -51
  420. package/artifacts/libraries/governance/Checkpoints.sol/Checkpoints.dbg.json +0 -4
  421. package/artifacts/libraries/governance/Checkpoints.sol/Checkpoints.json +0 -69
  422. package/artifacts/libraries/governance/LockManager.sol/LockManager.dbg.json +0 -4
  423. package/artifacts/libraries/governance/LockManager.sol/LockManager.json +0 -123
  424. package/artifacts/libraries/governance/PowerCheckpoint.sol/PowerCheckpoint.dbg.json +0 -4
  425. package/artifacts/libraries/governance/PowerCheckpoint.sol/PowerCheckpoint.json +0 -70
  426. package/artifacts/libraries/governance/RAACVoting.sol/RAACVoting.dbg.json +0 -4
  427. package/artifacts/libraries/governance/RAACVoting.sol/RAACVoting.json +0 -102
  428. package/artifacts/libraries/governance/VotingPowerLib.sol/VotingPowerLib.dbg.json +0 -4
  429. package/artifacts/libraries/governance/VotingPowerLib.sol/VotingPowerLib.json +0 -76
  430. package/artifacts/libraries/math/PercentageMath.sol/PercentageMath.dbg.json +0 -4
  431. package/artifacts/libraries/math/PercentageMath.sol/PercentageMath.json +0 -10
  432. package/artifacts/libraries/math/TimeWeightedAverage.sol/TimeWeightedAverage.dbg.json +0 -4
  433. package/artifacts/libraries/math/TimeWeightedAverage.sol/TimeWeightedAverage.json +0 -142
  434. package/artifacts/libraries/math/WadRayMath.sol/WadRayMath.dbg.json +0 -4
  435. package/artifacts/libraries/math/WadRayMath.sol/WadRayMath.json +0 -10
  436. package/artifacts/libraries/pools/DataTypes.sol/DataTypes.dbg.json +0 -4
  437. package/artifacts/libraries/pools/DataTypes.sol/DataTypes.json +0 -10
  438. package/artifacts/libraries/pools/ReserveLibrary.sol/ReserveLibrary.dbg.json +0 -4
  439. package/artifacts/libraries/pools/ReserveLibrary.sol/ReserveLibrary.json +0 -153
  440. package/artifacts/libraries/utils/StringUtils.sol/StringUtils.dbg.json +0 -4
  441. package/artifacts/libraries/utils/StringUtils.sol/StringUtils.json +0 -16
  442. package/artifacts/mocks/core/collectors/MockTreasury.sol/MockTreasury.dbg.json +0 -4
  443. package/artifacts/mocks/core/collectors/MockTreasury.sol/MockTreasury.json +0 -255
  444. package/artifacts/mocks/core/governance/gauges/MockBaseGauge.sol/MockBaseGauge.dbg.json +0 -4
  445. package/artifacts/mocks/core/governance/gauges/MockBaseGauge.sol/MockBaseGauge.json +0 -1522
  446. package/artifacts/mocks/core/governance/gauges/MockGaugeController.sol/MockGaugeController.dbg.json +0 -4
  447. package/artifacts/mocks/core/governance/gauges/MockGaugeController.sol/MockGaugeController.json +0 -49
  448. package/artifacts/mocks/core/governance/proposals/TimelockTestTarget.sol/TimelockTestTarget.dbg.json +0 -4
  449. package/artifacts/mocks/core/governance/proposals/TimelockTestTarget.sol/TimelockTestTarget.json +0 -112
  450. package/artifacts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.dbg.json +0 -4
  451. package/artifacts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.json +0 -50
  452. package/artifacts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.dbg.json +0 -4
  453. package/artifacts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.json +0 -69
  454. package/artifacts/mocks/core/oracles/MockOracle.sol/MockOracle.dbg.json +0 -4
  455. package/artifacts/mocks/core/oracles/MockOracle.sol/MockOracle.json +0 -63
  456. package/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.dbg.json +0 -4
  457. package/artifacts/mocks/core/oracles/MockVRFCoordinatorV2.sol/MockVRFCoordinatorV2.json +0 -774
  458. package/artifacts/mocks/core/oracles/TestRAACHousePriceOracle.sol/TestRAACHousePriceOracle.dbg.json +0 -4
  459. package/artifacts/mocks/core/oracles/TestRAACHousePriceOracle.sol/TestRAACHousePriceOracle.json +0 -358
  460. package/artifacts/mocks/core/oracles/TestRAACPrimeRateOracle.sol/TestRAACPrimeRateOracle.dbg.json +0 -4
  461. package/artifacts/mocks/core/oracles/TestRAACPrimeRateOracle.sol/TestRAACPrimeRateOracle.json +0 -373
  462. package/artifacts/mocks/core/pools/MockLendingPool.sol/MockLendingPool.dbg.json +0 -4
  463. package/artifacts/mocks/core/pools/MockLendingPool.sol/MockLendingPool.json +0 -241
  464. package/artifacts/mocks/core/pools/MockLendingPoolCollector.sol/MockLendingPoolCollector.dbg.json +0 -4
  465. package/artifacts/mocks/core/pools/MockLendingPoolCollector.sol/MockLendingPoolCollector.json +0 -288
  466. package/artifacts/mocks/core/pools/MockLendingPoolDebtToken.sol/MockLendingPoolDebtToken.dbg.json +0 -4
  467. package/artifacts/mocks/core/pools/MockLendingPoolDebtToken.sol/MockLendingPoolDebtToken.json +0 -1522
  468. package/artifacts/mocks/core/pools/MockLiquidityPool.sol/MockLiquidityPool.dbg.json +0 -4
  469. package/artifacts/mocks/core/pools/MockLiquidityPool.sol/MockLiquidityPool.json +0 -1019
  470. package/artifacts/mocks/core/pools/MockPool.sol/MockPool.dbg.json +0 -4
  471. package/artifacts/mocks/core/pools/MockPool.sol/MockPool.json +0 -93
  472. package/artifacts/mocks/core/pools/MockStabilityPool.sol/MockStabilityPool.dbg.json +0 -4
  473. package/artifacts/mocks/core/pools/MockStabilityPool.sol/MockStabilityPool.json +0 -126
  474. package/artifacts/mocks/core/primitives/MockContract.sol/MockContract.dbg.json +0 -4
  475. package/artifacts/mocks/core/primitives/MockContract.sol/MockContract.json +0 -37
  476. package/artifacts/mocks/core/primitives/MockContractWithConfig.sol/MockContractWithConfig.dbg.json +0 -4
  477. package/artifacts/mocks/core/primitives/MockContractWithConfig.sol/MockContractWithConfig.json +0 -52
  478. package/artifacts/mocks/core/primitives/MockDistributableContract.sol/MockDistributableContract.dbg.json +0 -4
  479. package/artifacts/mocks/core/primitives/MockDistributableContract.sol/MockDistributableContract.json +0 -73
  480. package/artifacts/mocks/core/primitives/RAACHousePricesMock.sol/RAACHousePricesMock.dbg.json +0 -4
  481. package/artifacts/mocks/core/primitives/RAACHousePricesMock.sol/RAACHousePricesMock.json +0 -67
  482. package/artifacts/mocks/core/tokens/ERC20Mock.sol/ERC20Mock.dbg.json +0 -4
  483. package/artifacts/mocks/core/tokens/ERC20Mock.sol/ERC20Mock.json +0 -353
  484. package/artifacts/mocks/core/tokens/ERC721Mock.sol/ERC721Mock.dbg.json +0 -4
  485. package/artifacts/mocks/core/tokens/ERC721Mock.sol/ERC721Mock.json +0 -491
  486. package/artifacts/mocks/core/tokens/MockCollectableUnderlying.sol/MockCollectableUnderlying.dbg.json +0 -4
  487. package/artifacts/mocks/core/tokens/MockCollectableUnderlying.sol/MockCollectableUnderlying.json +0 -568
  488. package/artifacts/mocks/core/tokens/MockFeeCollectorToken.sol/MockFeeCollectorToken.dbg.json +0 -4
  489. package/artifacts/mocks/core/tokens/MockFeeCollectorToken.sol/MockFeeCollectorToken.json +0 -515
  490. package/artifacts/mocks/core/tokens/MockToken.sol/MockToken.dbg.json +0 -4
  491. package/artifacts/mocks/core/tokens/MockToken.sol/MockToken.json +0 -426
  492. package/artifacts/mocks/core/tokens/MockUSDC.sol/MockUSDC.dbg.json +0 -4
  493. package/artifacts/mocks/core/tokens/MockUSDC.sol/MockUSDC.json +0 -348
  494. package/artifacts/mocks/core/tokens/MockVeToken.sol/MockVeToken.dbg.json +0 -4
  495. package/artifacts/mocks/core/tokens/MockVeToken.sol/MockVeToken.json +0 -905
  496. package/artifacts/mocks/core/tokens/RAACMockERC20.sol/RAACMockERC20.dbg.json +0 -4
  497. package/artifacts/mocks/core/tokens/RAACMockERC20.sol/RAACMockERC20.json +0 -422
  498. package/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.dbg.json +0 -4
  499. package/artifacts/mocks/core/tokens/crvUSDToken.sol/crvUSDToken.json +0 -479
  500. package/artifacts/mocks/core/vaults/MockVault.sol/MockVault.dbg.json +0 -4
  501. package/artifacts/mocks/core/vaults/MockVault.sol/MockVault.json +0 -672
  502. package/artifacts/mocks/libraries/MockStringUtils.sol/MockStringUtils.dbg.json +0 -4
  503. package/artifacts/mocks/libraries/MockStringUtils.sol/MockStringUtils.json +0 -35
  504. package/artifacts/mocks/libraries/governance/BoostCalculatorMock.sol/BoostCalculatorMock.dbg.json +0 -4
  505. package/artifacts/mocks/libraries/governance/BoostCalculatorMock.sol/BoostCalculatorMock.json +0 -431
  506. package/artifacts/mocks/libraries/governance/CheckpointsMock.sol/CheckpointsMock.dbg.json +0 -4
  507. package/artifacts/mocks/libraries/governance/CheckpointsMock.sol/CheckpointsMock.json +0 -144
  508. package/artifacts/mocks/libraries/governance/LockManagerMock.sol/LockManagerMock.dbg.json +0 -4
  509. package/artifacts/mocks/libraries/governance/LockManagerMock.sol/LockManagerMock.json +0 -237
  510. package/artifacts/mocks/libraries/governance/PowerCheckpointMock.sol/PowerCheckpointMock.dbg.json +0 -4
  511. package/artifacts/mocks/libraries/governance/PowerCheckpointMock.sol/PowerCheckpointMock.json +0 -221
  512. package/artifacts/mocks/libraries/governance/RAACVotingMock.sol/RAACVotingMock.dbg.json +0 -4
  513. package/artifacts/mocks/libraries/governance/RAACVotingMock.sol/RAACVotingMock.json +0 -95
  514. package/artifacts/mocks/libraries/governance/VotingPowerMock.sol/VotingPowerMock.dbg.json +0 -4
  515. package/artifacts/mocks/libraries/governance/VotingPowerMock.sol/VotingPowerMock.json +0 -442
  516. package/artifacts/mocks/libraries/math/TimeWeightedAverageMock.sol/TimeWeightedAverageMock.dbg.json +0 -4
  517. package/artifacts/mocks/libraries/math/TimeWeightedAverageMock.sol/TimeWeightedAverageMock.json +0 -309
  518. package/artifacts/mocks/libraries/math/WadRayMathMock.sol/WadRayMathMock.dbg.json +0 -4
  519. package/artifacts/mocks/libraries/math/WadRayMathMock.sol/WadRayMathMock.json +0 -188
  520. package/artifacts/mocks/libraries/pools/ReserveLibraryMock.sol/ReserveLibraryMock.dbg.json +0 -4
  521. package/artifacts/mocks/libraries/pools/ReserveLibraryMock.sol/ReserveLibraryMock.json +0 -339
  522. package/artifacts/mocks/tests/MaliciousDeposit.sol/MaliciousDeposit.dbg.json +0 -4
  523. package/artifacts/mocks/tests/MaliciousDeposit.sol/MaliciousDeposit.json +0 -52
  524. package/artifacts/mocks/tests/MaliciousWithdraw.sol/MaliciousWithdraw.dbg.json +0 -4
  525. package/artifacts/mocks/tests/MaliciousWithdraw.sol/MaliciousWithdraw.json +0 -52
  526. package/artifacts/mocks/tests/VeRAACFuzzHelper.sol/VeRAACFuzzHelper.dbg.json +0 -4
  527. package/artifacts/mocks/tests/VeRAACFuzzHelper.sol/VeRAACFuzzHelper.json +0 -88
  528. package/artifacts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.dbg.json +0 -4
  529. package/artifacts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.json +0 -24
  530. package/artifacts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.dbg.json +0 -4
  531. package/artifacts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.json +0 -129
  532. package/artifacts/zeno/Auction.sol/Auction.dbg.json +0 -4
  533. package/artifacts/zeno/Auction.sol/Auction.json +0 -393
  534. package/artifacts/zeno/AuctionFactory.sol/AuctionFactory.dbg.json +0 -4
  535. package/artifacts/zeno/AuctionFactory.sol/AuctionFactory.json +0 -307
  536. package/artifacts/zeno/ZENO.sol/ZENO.dbg.json +0 -4
  537. package/artifacts/zeno/ZENO.sol/ZENO.json +0 -620
  538. package/artifacts/zeno/ZENOFactory.sol/ZENOFactory.dbg.json +0 -4
  539. package/artifacts/zeno/ZENOFactory.sol/ZENOFactory.json +0 -275
  540. package/assets/getAsset.js +0 -28
  541. package/assets/getAssets.js +0 -29
  542. package/assets/getSupply.js +0 -21
  543. package/configs/chains/11155111.json +0 -132
  544. package/configs/chains/17000.json +0 -128
  545. package/configs/chains/8453.json +0 -128
  546. package/configs/chains/chain.d.js +0 -95
  547. package/configs/chains/index.js +0 -13
  548. package/configs/chains/list.json +0 -1
  549. package/configs/createConfig.js +0 -97
  550. package/configs/index.js +0 -17
  551. package/contracts/crvUSDToken/getBalance.js +0 -23
  552. package/contracts/crvUSDToken/getTotalSupply.js +0 -36
  553. package/contracts/feeCollector/claimRewardFromPool.js +0 -27
  554. package/contracts/getContract.js +0 -20
  555. package/contracts/getContractAddress.js +0 -59
  556. package/contracts/housePrices/getLatestPrice.js +0 -36
  557. package/contracts/housePrices/setOracle.js +0 -38
  558. package/contracts/indexToken/getNextRandomNFT.js +0 -36
  559. package/contracts/indexToken/redeemNFT.js +0 -63
  560. package/contracts/rcrvUSDToken/getBalance.js +0 -23
  561. package/contracts/rcrvUSDToken/getTotalSupply.js +0 -39
  562. package/contracts/zeno/createAuction.js +0 -55
  563. package/contracts/zeno/createZeno.js +0 -45
  564. package/contracts/zeno/getAuctions.js +0 -36
  565. package/contracts/zeno/getZenos.js +0 -36
  566. package/custom-types.d.js +0 -20
  567. package/index.js +0 -3
  568. package/methods/approveToken.js +0 -47
  569. package/methods/commons/checkAllowance.js +0 -34
  570. package/methods/commons/estimateGasPrice.js +0 -24
  571. package/methods/debug/mintToken.js +0 -83
  572. package/methods/getAssetBalance.js +0 -48
  573. package/methods/getAssetsBalance.js +0 -9
  574. package/minter/get.js +0 -148
  575. package/minter/getApy.js +0 -35
  576. package/minter/tick.js +0 -38
  577. package/nfts/getAllTokens.js +0 -49
  578. package/nfts/getBaseUri.js +0 -30
  579. package/nfts/getHousePrice.js +0 -28
  580. package/nfts/getMintFeePercentage.js +0 -31
  581. package/nfts/getMintPrice.js +0 -44
  582. package/nfts/getTokenURI.js +0 -33
  583. package/nfts/getTokensByOwner.js +0 -49
  584. package/nfts/getTotalPropertiesCount.js +0 -31
  585. package/nfts/mint.js +0 -40
  586. package/nfts/setBaseUri.js +0 -31
  587. package/nfts/totalNFTSupply.js +0 -24
  588. package/pools/lendingPool/borrowFromLendingPool.js +0 -39
  589. package/pools/lendingPool/borrowFromLendingPoolWithInsurance.js +0 -78
  590. package/pools/lendingPool/calculateInsuranceFee.js +0 -36
  591. package/pools/lendingPool/claimReward.js +0 -28
  592. package/pools/lendingPool/closeLiquidation.js +0 -38
  593. package/pools/lendingPool/depositNFTToLendingPool.js +0 -67
  594. package/pools/lendingPool/depositToLendingPool.js +0 -50
  595. package/pools/lendingPool/getAllUserData.js +0 -40
  596. package/pools/lendingPool/getEligibleUserDeposits.js +0 -37
  597. package/pools/lendingPool/getHealthFactor.js +0 -41
  598. package/pools/lendingPool/getHousePrice.js +0 -44
  599. package/pools/lendingPool/getLendingPoolInfo.js +0 -149
  600. package/pools/lendingPool/getLendingPoolTotalLiquidity.js +0 -29
  601. package/pools/lendingPool/getPendingReward.js +0 -30
  602. package/pools/lendingPool/getPositionDebt.js +0 -38
  603. package/pools/lendingPool/getPositionScaledDebt.js +0 -41
  604. package/pools/lendingPool/getPositionView.js +0 -50
  605. package/pools/lendingPool/getPositionsScaledDebt.js +0 -37
  606. package/pools/lendingPool/getRawUserDepositsInLendingPool.js +0 -31
  607. package/pools/lendingPool/getUserCollateralValue.js +0 -37
  608. package/pools/lendingPool/initializeLiquidation.js +0 -39
  609. package/pools/lendingPool/repayToLendingPool.js +0 -36
  610. package/pools/lendingPool/withdrawFromLendingPool.js +0 -67
  611. package/pools/lendingPool/withdrawNFTFromLendingPool.js +0 -37
  612. package/pools/liquidityPool/getLiquidityPoolInfo.js +0 -91
  613. package/pools/stabilityPool/calculateRAACRewards.js +0 -33
  614. package/pools/stabilityPool/depositNFTToStabilityPool.js +0 -64
  615. package/pools/stabilityPool/depositToStabilityPool.js +0 -45
  616. package/pools/stabilityPool/getRawUserDepositsInStabilityPool.js +0 -33
  617. package/pools/stabilityPool/getStabilityPoolInfo.js +0 -109
  618. package/pools/stabilityPool/getStabilityPoolTotalDeposits.js +0 -25
  619. package/pools/stabilityPool/methods/commons/estimateGasPrice.js +0 -28
  620. package/pools/stabilityPool/pools/stabilityPool/withdrawFromStabilityPool.js +0 -34
  621. package/pools/stabilityPool/utils/artifacts.js +0 -74
  622. package/pools/stabilityPool/utils/contracts.js +0 -82
  623. package/pools/stabilityPool/withdrawFromStabilityPool.js +0 -45
  624. package/scripts/index.js +0 -236
  625. package/sync-contracts.sh +0 -80
  626. package/tests/test.js +0 -40
  627. package/ts-to-js.sh +0 -42
  628. package/tsconfig.dts.json +0 -12
  629. package/tsconfig.json +0 -115
  630. package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
  631. package/typechain-types/contracts/core/pools/LendingPool/LendingPool.d.ts +0 -1647
  632. package/typechain-types/contracts/interfaces/core/pools/LendingPool/ILendingPool.d.ts +0 -982
  633. package/typechain-types/contracts/mocks/core/pools/MockLendingPoolDebtToken.d.ts +0 -994
  634. package/typechain-types/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest__factory.d.ts +0 -48
  635. package/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal__factory.d.ts +0 -90
  636. package/typechain-types/factories/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner__factory.d.ts +0 -86
  637. package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +0 -46
  638. package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -3
  639. package/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +0 -42
  640. package/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +0 -34
  641. package/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +0 -34
  642. package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +0 -42
  643. package/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +0 -26
  644. package/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +0 -62
  645. package/typechain-types/factories/contracts/core/collectors/FeeCollector__factory.d.ts +0 -1362
  646. package/typechain-types/factories/contracts/core/collectors/Treasury__factory.d.ts +0 -386
  647. package/typechain-types/factories/contracts/core/governance/boost/BoostController__factory.d.ts +0 -716
  648. package/typechain-types/factories/contracts/core/governance/gauges/GaugeController__factory.d.ts +0 -1124
  649. package/typechain-types/factories/contracts/core/governance/gauges/RAACGauge__factory.d.ts +0 -1154
  650. package/typechain-types/factories/contracts/core/governance/gauges/RWAGauge__factory.d.ts +0 -1154
  651. package/typechain-types/factories/contracts/core/governance/proposals/Governance__factory.d.ts +0 -976
  652. package/typechain-types/factories/contracts/core/governance/proposals/TimelockController__factory.d.ts +0 -773
  653. package/typechain-types/factories/contracts/core/minters/RAACMinter/RAACMinter__factory.d.ts +0 -1132
  654. package/typechain-types/factories/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator__factory.d.ts +0 -680
  655. package/typechain-types/factories/contracts/core/oracles/BaseVRFv2Consumer__factory.d.ts +0 -231
  656. package/typechain-types/factories/contracts/core/oracles/RAACHousePriceOracle__factory.d.ts +0 -275
  657. package/typechain-types/factories/contracts/core/oracles/RAACPrimeRateOracle__factory.d.ts +0 -286
  658. package/typechain-types/factories/contracts/core/pools/LendingPool/LendingPool__factory.d.ts +0 -2160
  659. package/typechain-types/factories/contracts/core/pools/StabilityPool/NFTLiquidator__factory.d.ts +0 -390
  660. package/typechain-types/factories/contracts/core/pools/StabilityPool/StabilityPool__factory.d.ts +0 -897
  661. package/typechain-types/factories/contracts/core/primitives/RAACHousePrices__factory.d.ts +0 -231
  662. package/typechain-types/factories/contracts/core/tokens/DEToken__factory.d.ts +0 -671
  663. package/typechain-types/factories/contracts/core/tokens/DebtToken__factory.d.ts +0 -747
  664. package/typechain-types/factories/contracts/core/tokens/IndexToken__factory.d.ts +0 -602
  665. package/typechain-types/factories/contracts/core/tokens/LPToken__factory.d.ts +0 -401
  666. package/typechain-types/factories/contracts/core/tokens/RAACNFT__factory.d.ts +0 -1143
  667. package/typechain-types/factories/contracts/core/tokens/RAACToken__factory.d.ts +0 -652
  668. package/typechain-types/factories/contracts/core/tokens/RToken__factory.d.ts +0 -941
  669. package/typechain-types/factories/contracts/core/tokens/VeRAACToken__factory.d.ts +0 -1264
  670. package/typechain-types/factories/contracts/interfaces/core/pools/LendingPool/ILendingPool__factory.d.ts +0 -1170
  671. package/typechain-types/factories/contracts/libraries/governance/BoostCalculator__factory.d.ts +0 -54
  672. package/typechain-types/factories/contracts/libraries/governance/Checkpoints__factory.d.ts +0 -68
  673. package/typechain-types/factories/contracts/libraries/governance/LockManager__factory.d.ts +0 -111
  674. package/typechain-types/factories/contracts/libraries/governance/PowerCheckpoint__factory.d.ts +0 -69
  675. package/typechain-types/factories/contracts/libraries/governance/RAACVoting__factory.d.ts +0 -92
  676. package/typechain-types/factories/contracts/libraries/governance/VotingPowerLib__factory.d.ts +0 -74
  677. package/typechain-types/factories/contracts/libraries/math/TimeWeightedAverage__factory.d.ts +0 -125
  678. package/typechain-types/factories/contracts/libraries/pools/ReserveLibrary__factory.d.ts +0 -135
  679. package/typechain-types/factories/contracts/libraries/utils/StringUtils__factory.d.ts +0 -26
  680. package/typechain-types/factories/contracts/mocks/core/collectors/MockTreasury__factory.d.ts +0 -212
  681. package/typechain-types/factories/contracts/mocks/core/governance/gauges/MockBaseGauge__factory.d.ts +0 -1194
  682. package/typechain-types/factories/contracts/mocks/core/governance/gauges/MockGaugeController__factory.d.ts +0 -50
  683. package/typechain-types/factories/contracts/mocks/core/governance/proposals/TimelockTestTarget__factory.d.ts +0 -100
  684. package/typechain-types/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter__factory.d.ts +0 -66
  685. package/typechain-types/factories/contracts/mocks/core/oracles/MockOracle__factory.d.ts +0 -62
  686. package/typechain-types/factories/contracts/mocks/core/oracles/MockVRFCoordinatorV2__factory.d.ts +0 -620
  687. package/typechain-types/factories/contracts/mocks/core/oracles/TestRAACHousePriceOracle__factory.d.ts +0 -293
  688. package/typechain-types/factories/contracts/mocks/core/oracles/TestRAACPrimeRateOracle__factory.d.ts +0 -304
  689. package/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolCollector__factory.d.ts +0 -234
  690. package/typechain-types/factories/contracts/mocks/core/pools/MockLendingPoolDebtToken__factory.d.ts +0 -1202
  691. package/typechain-types/factories/contracts/mocks/core/pools/MockLendingPool__factory.d.ts +0 -199
  692. package/typechain-types/factories/contracts/mocks/core/pools/MockLiquidityPool__factory.d.ts +0 -795
  693. package/typechain-types/factories/contracts/mocks/core/pools/MockPool__factory.d.ts +0 -84
  694. package/typechain-types/factories/contracts/mocks/core/pools/MockStabilityPool__factory.d.ts +0 -109
  695. package/typechain-types/factories/contracts/mocks/core/primitives/MockContractWithConfig__factory.d.ts +0 -53
  696. package/typechain-types/factories/contracts/mocks/core/primitives/MockContract__factory.d.ts +0 -42
  697. package/typechain-types/factories/contracts/mocks/core/primitives/MockDistributableContract__factory.d.ts +0 -68
  698. package/typechain-types/factories/contracts/mocks/core/primitives/RAACHousePricesMock__factory.d.ts +0 -64
  699. package/typechain-types/factories/contracts/mocks/core/tokens/CrvUSDToken__factory.d.ts +0 -379
  700. package/typechain-types/factories/contracts/mocks/core/tokens/ERC20Mock__factory.d.ts +0 -282
  701. package/typechain-types/factories/contracts/mocks/core/tokens/ERC721Mock__factory.d.ts +0 -388
  702. package/typechain-types/factories/contracts/mocks/core/tokens/MockCollectableUnderlying__factory.d.ts +0 -451
  703. package/typechain-types/factories/contracts/mocks/core/tokens/MockFeeCollectorToken__factory.d.ts +0 -407
  704. package/typechain-types/factories/contracts/mocks/core/tokens/MockToken__factory.d.ts +0 -338
  705. package/typechain-types/factories/contracts/mocks/core/tokens/MockUSDC__factory.d.ts +0 -278
  706. package/typechain-types/factories/contracts/mocks/core/tokens/MockVeToken__factory.d.ts +0 -714
  707. package/typechain-types/factories/contracts/mocks/core/tokens/RAACMockERC20__factory.d.ts +0 -335
  708. package/typechain-types/factories/contracts/mocks/core/vaults/MockVault__factory.d.ts +0 -525
  709. package/typechain-types/factories/contracts/mocks/libraries/MockStringUtils__factory.d.ts +0 -40
  710. package/typechain-types/factories/contracts/mocks/libraries/governance/BoostCalculatorMock__factory.d.ts +0 -351
  711. package/typechain-types/factories/contracts/mocks/libraries/governance/CheckpointsMock__factory.d.ts +0 -124
  712. package/typechain-types/factories/contracts/mocks/libraries/governance/LockManagerMock__factory.d.ts +0 -197
  713. package/typechain-types/factories/contracts/mocks/libraries/governance/PowerCheckpointMock__factory.d.ts +0 -183
  714. package/typechain-types/factories/contracts/mocks/libraries/governance/RAACVotingMock__factory.d.ts +0 -70
  715. package/typechain-types/factories/contracts/mocks/libraries/governance/VotingPowerMock__factory.d.ts +0 -341
  716. package/typechain-types/factories/contracts/mocks/libraries/math/TimeWeightedAverageMock__factory.d.ts +0 -247
  717. package/typechain-types/factories/contracts/mocks/libraries/math/WadRayMathMock__factory.d.ts +0 -154
  718. package/typechain-types/factories/contracts/mocks/libraries/pools/ReserveLibraryMock__factory.d.ts +0 -277
  719. package/typechain-types/factories/contracts/mocks/tests/MaliciousDeposit__factory.d.ts +0 -53
  720. package/typechain-types/factories/contracts/mocks/tests/MaliciousWithdraw__factory.d.ts +0 -53
  721. package/typechain-types/factories/contracts/mocks/tests/VeRAACFuzzHelper__factory.d.ts +0 -80
  722. package/typechain-types/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper__factory.d.ts +0 -113
  723. package/typechain-types/factories/contracts/zeno/AuctionFactory__factory.d.ts +0 -250
  724. package/typechain-types/factories/contracts/zeno/Auction__factory.d.ts +0 -320
  725. package/typechain-types/factories/contracts/zeno/ZENOFactory__factory.d.ts +0 -223
  726. package/typechain-types/factories/contracts/zeno/ZENO__factory.d.ts +0 -488
  727. package/typechain-types/index.d.ts +0 -329
  728. package/utils/artifacts.js +0 -72
  729. package/utils/chain.js +0 -94
  730. package/utils/config.js +0 -49
  731. package/utils/contracts.js +0 -92
  732. package/wallet/assets/approveAsset.js +0 -44
  733. package/wallet/assets/burnAsset.js +0 -56
  734. package/wallet/assets/getAllowance.js +0 -37
  735. package/wallet/assets/getAsset.js +0 -31
  736. package/wallet/assets/getAssets.js +0 -33
  737. package/wallet/assets/getBalance.js +0 -33
  738. package/wallet/assets/mintAsset.js +0 -59
  739. package/wallet/assets/transferAsset.js +0 -79
  740. /package/{pools/stabilityPool → dist}/configs/chains/index.js +0 -0
  741. /package/{pools/stabilityPool → dist}/configs/index.js +0 -0
  742. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/index.d.ts +0 -0
  743. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/index.d.ts +0 -0
  744. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -0
  745. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient.d.ts +0 -0
  746. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -0
  747. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient.d.ts +0 -0
  748. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter.d.ts +0 -0
  749. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -0
  750. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/FunctionsRequest.d.ts +0 -0
  751. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -0
  752. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/index.d.ts +0 -0
  753. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwner.d.ts +0 -0
  754. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/shared/access/ConfirmedOwnerWithProposal.d.ts +0 -0
  755. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -0
  756. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -0
  757. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable.d.ts +0 -0
  758. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -0
  759. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2.d.ts +0 -0
  760. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -0
  761. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface.d.ts +0 -0
  762. /package/{typechain-types → dist/types/typechain-types}/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -0
  763. /package/{typechain-types → dist/types/typechain-types}/@chainlink/index.d.ts +0 -0
  764. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/access/AccessControl.d.ts +0 -0
  765. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/access/IAccessControl.d.ts +0 -0
  766. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/access/Ownable.d.ts +0 -0
  767. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/access/index.d.ts +0 -0
  768. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/index.d.ts +0 -0
  769. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/interfaces/IERC5267.d.ts +0 -0
  770. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +0 -0
  771. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +0 -0
  772. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +0 -0
  773. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -0
  774. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/interfaces/index.d.ts +0 -0
  775. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +0 -0
  776. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -0
  777. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +0 -0
  778. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -0
  779. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +0 -0
  780. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -0
  781. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -0
  782. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +0 -0
  783. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -0
  784. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +0 -0
  785. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -0
  786. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -0
  787. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +0 -0
  788. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +0 -0
  789. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -0
  790. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -0
  791. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +0 -0
  792. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -0
  793. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/token/index.d.ts +0 -0
  794. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/Address.d.ts +0 -0
  795. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/Nonces.d.ts +0 -0
  796. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/Pausable.d.ts +0 -0
  797. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +0 -0
  798. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/ShortStrings.d.ts +0 -0
  799. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/Strings.d.ts +0 -0
  800. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +0 -0
  801. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +0 -0
  802. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -0
  803. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/index.d.ts +0 -0
  804. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +0 -0
  805. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -0
  806. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -0
  807. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/math/Math.d.ts +0 -0
  808. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/math/SafeCast.d.ts +0 -0
  809. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts/utils/math/index.d.ts +0 -0
  810. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +0 -0
  811. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -0
  812. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/index.d.ts +0 -0
  813. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -0
  814. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +0 -0
  815. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -0
  816. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts +0 -0
  817. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.d.ts +0 -0
  818. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -0
  819. /package/{typechain-types → dist/types/typechain-types}/@openzeppelin/index.d.ts +0 -0
  820. /package/{typechain-types → dist/types/typechain-types}/common.d.ts +0 -0
  821. /package/{typechain-types → dist/types/typechain-types}/contracts/core/collectors/FeeCollector.d.ts +0 -0
  822. /package/{typechain-types → dist/types/typechain-types}/contracts/core/collectors/Treasury.d.ts +0 -0
  823. /package/{typechain-types → dist/types/typechain-types}/contracts/core/collectors/index.d.ts +0 -0
  824. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/boost/BoostController.d.ts +0 -0
  825. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/boost/index.d.ts +0 -0
  826. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/gauges/BaseGauge.d.ts +0 -0
  827. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/gauges/GaugeController.d.ts +0 -0
  828. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/gauges/RAACGauge.d.ts +0 -0
  829. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/gauges/RWAGauge.d.ts +0 -0
  830. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/gauges/index.d.ts +0 -0
  831. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/index.d.ts +0 -0
  832. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/proposals/Governance.d.ts +0 -0
  833. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/proposals/TimelockController.d.ts +0 -0
  834. /package/{typechain-types → dist/types/typechain-types}/contracts/core/governance/proposals/index.d.ts +0 -0
  835. /package/{typechain-types → dist/types/typechain-types}/contracts/core/index.d.ts +0 -0
  836. /package/{typechain-types → dist/types/typechain-types}/contracts/core/minters/RAACMinter/RAACMinter.d.ts +0 -0
  837. /package/{typechain-types → dist/types/typechain-types}/contracts/core/minters/RAACMinter/index.d.ts +0 -0
  838. /package/{typechain-types → dist/types/typechain-types}/contracts/core/minters/RAACReleaseOrchestrator/RAACReleaseOrchestrator.d.ts +0 -0
  839. /package/{typechain-types → dist/types/typechain-types}/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -0
  840. /package/{typechain-types → dist/types/typechain-types}/contracts/core/minters/index.d.ts +0 -0
  841. /package/{typechain-types → dist/types/typechain-types}/contracts/core/oracles/BaseChainlinkFunctionsOracle.d.ts +0 -0
  842. /package/{typechain-types → dist/types/typechain-types}/contracts/core/oracles/BaseVRFv2Consumer.d.ts +0 -0
  843. /package/{typechain-types → dist/types/typechain-types}/contracts/core/oracles/RAACHousePriceOracle.d.ts +0 -0
  844. /package/{typechain-types → dist/types/typechain-types}/contracts/core/oracles/RAACPrimeRateOracle.d.ts +0 -0
  845. /package/{typechain-types → dist/types/typechain-types}/contracts/core/oracles/index.d.ts +0 -0
  846. /package/{typechain-types → dist/types/typechain-types}/contracts/core/pools/LendingPool/index.d.ts +0 -0
  847. /package/{typechain-types → dist/types/typechain-types}/contracts/core/pools/StabilityPool/NFTLiquidator.d.ts +0 -0
  848. /package/{typechain-types → dist/types/typechain-types}/contracts/core/pools/StabilityPool/StabilityPool.d.ts +0 -0
  849. /package/{typechain-types → dist/types/typechain-types}/contracts/core/pools/StabilityPool/index.d.ts +0 -0
  850. /package/{typechain-types → dist/types/typechain-types}/contracts/core/pools/index.d.ts +0 -0
  851. /package/{typechain-types → dist/types/typechain-types}/contracts/core/primitives/RAACHousePrices.d.ts +0 -0
  852. /package/{typechain-types → dist/types/typechain-types}/contracts/core/primitives/index.d.ts +0 -0
  853. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/DEToken.d.ts +0 -0
  854. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/DebtToken.d.ts +0 -0
  855. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/IndexToken.d.ts +0 -0
  856. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/LPToken.d.ts +0 -0
  857. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/RAACNFT.d.ts +0 -0
  858. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/RAACToken.d.ts +0 -0
  859. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/RToken.d.ts +0 -0
  860. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/VeRAACToken.d.ts +0 -0
  861. /package/{typechain-types → dist/types/typechain-types}/contracts/core/tokens/index.d.ts +0 -0
  862. /package/{typechain-types → dist/types/typechain-types}/contracts/index.d.ts +0 -0
  863. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/IERC20.d.ts +0 -0
  864. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/IHousePrices.d.ts +0 -0
  865. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/INFTLiquidator.d.ts +0 -0
  866. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/IPoolManager.d.ts +0 -0
  867. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/IReserveAllocationLibraryMock.d.ts +0 -0
  868. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/IUSDC.d.ts +0 -0
  869. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/IveRAACDistributor.d.ts +0 -0
  870. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/collectors/IBaseCollector.d.ts +0 -0
  871. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/collectors/IFeeCollector.d.ts +0 -0
  872. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/collectors/ITreasury.d.ts +0 -0
  873. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/collectors/index.d.ts +0 -0
  874. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/governance/IBoostController.d.ts +0 -0
  875. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/governance/gauges/IGauge.d.ts +0 -0
  876. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/governance/gauges/IGaugeController.d.ts +0 -0
  877. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/governance/gauges/index.d.ts +0 -0
  878. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/governance/index.d.ts +0 -0
  879. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/governance/proposals/IGovernance.d.ts +0 -0
  880. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/governance/proposals/ITimelockController.d.ts +0 -0
  881. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/governance/proposals/index.d.ts +0 -0
  882. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/index.d.ts +0 -0
  883. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/minters/RAACMinter/IRAACMinter.d.ts +0 -0
  884. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -0
  885. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator.d.ts +0 -0
  886. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -0
  887. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/minters/index.d.ts +0 -0
  888. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/oracles/IBaseVRFv2Consumer.d.ts +0 -0
  889. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/oracles/IRAACHousePrices.d.ts +0 -0
  890. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/oracles/index.d.ts +0 -0
  891. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/pools/ILiquidityPool.d.ts +0 -0
  892. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -0
  893. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/pools/StabilityPool/IStabilityPool.d.ts +0 -0
  894. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -0
  895. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/pools/index.d.ts +0 -0
  896. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/tokens/IDEToken.d.ts +0 -0
  897. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/tokens/IDebtToken.d.ts +0 -0
  898. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/tokens/IIndexToken.d.ts +0 -0
  899. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/tokens/IRAACNFT.d.ts +0 -0
  900. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/tokens/IRAACToken.d.ts +0 -0
  901. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/tokens/IRToken.d.ts +0 -0
  902. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/tokens/IveRAACToken.d.ts +0 -0
  903. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/tokens/index.d.ts +0 -0
  904. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/vaults/IBaseVault.d.ts +0 -0
  905. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/core/vaults/index.d.ts +0 -0
  906. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/curve/ICurveCrvUSDVault.d.ts +0 -0
  907. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/curve/index.d.ts +0 -0
  908. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/index.d.ts +0 -0
  909. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/zeno/IAuction.d.ts +0 -0
  910. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/zeno/IZENO.d.ts +0 -0
  911. /package/{typechain-types → dist/types/typechain-types}/contracts/interfaces/zeno/index.d.ts +0 -0
  912. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/governance/BoostCalculator.d.ts +0 -0
  913. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/governance/Checkpoints.d.ts +0 -0
  914. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/governance/LockManager.d.ts +0 -0
  915. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/governance/PowerCheckpoint.d.ts +0 -0
  916. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/governance/RAACVoting.d.ts +0 -0
  917. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/governance/VotingPowerLib.d.ts +0 -0
  918. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/governance/index.d.ts +0 -0
  919. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/index.d.ts +0 -0
  920. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/math/TimeWeightedAverage.d.ts +0 -0
  921. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/math/index.d.ts +0 -0
  922. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/pools/ReserveLibrary.d.ts +0 -0
  923. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/pools/index.d.ts +0 -0
  924. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/utils/StringUtils.d.ts +0 -0
  925. /package/{typechain-types → dist/types/typechain-types}/contracts/libraries/utils/index.d.ts +0 -0
  926. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/collectors/MockTreasury.d.ts +0 -0
  927. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/collectors/index.d.ts +0 -0
  928. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/governance/gauges/MockBaseGauge.d.ts +0 -0
  929. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/governance/gauges/MockGaugeController.d.ts +0 -0
  930. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/governance/gauges/index.d.ts +0 -0
  931. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/governance/index.d.ts +0 -0
  932. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/governance/proposals/TimelockTestTarget.d.ts +0 -0
  933. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/governance/proposals/index.d.ts +0 -0
  934. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/index.d.ts +0 -0
  935. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter.d.ts +0 -0
  936. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/oracles/MockFunctionsRouter.sol/MockFunctionsRouter.d.ts +0 -0
  937. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -0
  938. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/oracles/MockOracle.d.ts +0 -0
  939. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/oracles/MockVRFCoordinatorV2.d.ts +0 -0
  940. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/oracles/TestRAACHousePriceOracle.d.ts +0 -0
  941. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/oracles/TestRAACPrimeRateOracle.d.ts +0 -0
  942. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/oracles/index.d.ts +0 -0
  943. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/pools/MockLendingPool.d.ts +0 -0
  944. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/pools/MockLendingPoolCollector.d.ts +0 -0
  945. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/pools/MockLiquidityPool.d.ts +0 -0
  946. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/pools/MockPool.d.ts +0 -0
  947. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/pools/MockStabilityPool.d.ts +0 -0
  948. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/pools/index.d.ts +0 -0
  949. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/primitives/MockContract.d.ts +0 -0
  950. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/primitives/MockContractWithConfig.d.ts +0 -0
  951. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/primitives/MockDistributableContract.d.ts +0 -0
  952. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/primitives/RAACHousePricesMock.d.ts +0 -0
  953. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/primitives/index.d.ts +0 -0
  954. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/CrvUSDToken.d.ts +0 -0
  955. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/ERC20Mock.d.ts +0 -0
  956. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/ERC721Mock.d.ts +0 -0
  957. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/MockCollectableUnderlying.d.ts +0 -0
  958. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/MockFeeCollectorToken.d.ts +0 -0
  959. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/MockToken.d.ts +0 -0
  960. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/MockUSDC.d.ts +0 -0
  961. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/MockVeToken.d.ts +0 -0
  962. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/RAACMockERC20.d.ts +0 -0
  963. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/tokens/index.d.ts +0 -0
  964. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/vaults/MockVault.d.ts +0 -0
  965. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/core/vaults/index.d.ts +0 -0
  966. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/index.d.ts +0 -0
  967. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/MockStringUtils.d.ts +0 -0
  968. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/governance/BoostCalculatorMock.d.ts +0 -0
  969. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/governance/CheckpointsMock.d.ts +0 -0
  970. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/governance/LockManagerMock.d.ts +0 -0
  971. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/governance/PowerCheckpointMock.d.ts +0 -0
  972. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/governance/RAACVotingMock.d.ts +0 -0
  973. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/governance/VotingPowerMock.d.ts +0 -0
  974. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/governance/index.d.ts +0 -0
  975. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/index.d.ts +0 -0
  976. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/math/TimeWeightedAverageMock.d.ts +0 -0
  977. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/math/WadRayMathMock.d.ts +0 -0
  978. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/math/index.d.ts +0 -0
  979. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/pools/ReserveLibraryMock.d.ts +0 -0
  980. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/libraries/pools/index.d.ts +0 -0
  981. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/tests/MaliciousDeposit.d.ts +0 -0
  982. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/tests/MaliciousWithdraw.d.ts +0 -0
  983. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/tests/VeRAACFuzzHelper.d.ts +0 -0
  984. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl.d.ts +0 -0
  985. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/tests/VotingPowerFuzzHelper.sol/VotingPowerFuzzHelper.d.ts +0 -0
  986. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -0
  987. /package/{typechain-types → dist/types/typechain-types}/contracts/mocks/tests/index.d.ts +0 -0
  988. /package/{typechain-types → dist/types/typechain-types}/contracts/zeno/Auction.d.ts +0 -0
  989. /package/{typechain-types → dist/types/typechain-types}/contracts/zeno/AuctionFactory.d.ts +0 -0
  990. /package/{typechain-types → dist/types/typechain-types}/contracts/zeno/ZENO.d.ts +0 -0
  991. /package/{typechain-types → dist/types/typechain-types}/contracts/zeno/ZENOFactory.d.ts +0 -0
  992. /package/{typechain-types → dist/types/typechain-types}/contracts/zeno/index.d.ts +0 -0
  993. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/index.d.ts +0 -0
  994. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/index.d.ts +0 -0
  995. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/functions/index.d.ts +0 -0
  996. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/FunctionsClient__factory.d.ts +0 -0
  997. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/index.d.ts +0 -0
  998. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsClient__factory.d.ts +0 -0
  999. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/IFunctionsRouter__factory.d.ts +0 -0
  1000. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/interfaces/index.d.ts +0 -0
  1001. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/functions/v1_0_0/libraries/index.d.ts +0 -0
  1002. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/index.d.ts +0 -0
  1003. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/shared/access/index.d.ts +0 -0
  1004. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/shared/index.d.ts +0 -0
  1005. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/shared/interfaces/IOwnable__factory.d.ts +0 -0
  1006. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/shared/interfaces/index.d.ts +0 -0
  1007. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/vrf/VRFConsumerBaseV2__factory.d.ts +0 -0
  1008. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/vrf/index.d.ts +0 -0
  1009. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/VRFCoordinatorV2Interface__factory.d.ts +0 -0
  1010. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/contracts/src/v0.8/vrf/interfaces/index.d.ts +0 -0
  1011. /package/{typechain-types → dist/types/typechain-types}/factories/@chainlink/index.d.ts +0 -0
  1012. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +0 -0
  1013. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +0 -0
  1014. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +0 -0
  1015. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/access/index.d.ts +0 -0
  1016. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/index.d.ts +0 -0
  1017. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +0 -0
  1018. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +0 -0
  1019. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +0 -0
  1020. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +0 -0
  1021. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +0 -0
  1022. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/interfaces/index.d.ts +0 -0
  1023. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +0 -0
  1024. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -0
  1025. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +0 -0
  1026. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -0
  1027. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +0 -0
  1028. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -0
  1029. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -0
  1030. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +0 -0
  1031. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +0 -0
  1032. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -0
  1033. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -0
  1034. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +0 -0
  1035. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +0 -0
  1036. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -0
  1037. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -0
  1038. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +0 -0
  1039. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +0 -0
  1040. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/token/index.d.ts +0 -0
  1041. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +0 -0
  1042. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +0 -0
  1043. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +0 -0
  1044. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +0 -0
  1045. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +0 -0
  1046. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/index.d.ts +0 -0
  1047. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +0 -0
  1048. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -0
  1049. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -0
  1050. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts/utils/math/index.d.ts +0 -0
  1051. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +0 -0
  1052. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/access/index.d.ts +0 -0
  1053. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/index.d.ts +0 -0
  1054. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/proxy/index.d.ts +0 -0
  1055. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +0 -0
  1056. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.d.ts +0 -0
  1057. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +0 -0
  1058. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable__factory.d.ts +0 -0
  1059. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/contracts-upgradeable/utils/index.d.ts +0 -0
  1060. /package/{typechain-types → dist/types/typechain-types}/factories/@openzeppelin/index.d.ts +0 -0
  1061. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/collectors/index.d.ts +0 -0
  1062. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/governance/boost/index.d.ts +0 -0
  1063. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/governance/gauges/BaseGauge__factory.d.ts +0 -0
  1064. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/governance/gauges/index.d.ts +0 -0
  1065. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/governance/index.d.ts +0 -0
  1066. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/governance/proposals/index.d.ts +0 -0
  1067. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/index.d.ts +0 -0
  1068. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/minters/RAACMinter/index.d.ts +0 -0
  1069. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -0
  1070. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/minters/index.d.ts +0 -0
  1071. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/oracles/BaseChainlinkFunctionsOracle__factory.d.ts +0 -0
  1072. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/oracles/index.d.ts +0 -0
  1073. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/pools/LendingPool/index.d.ts +0 -0
  1074. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/pools/StabilityPool/index.d.ts +0 -0
  1075. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/pools/index.d.ts +0 -0
  1076. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/primitives/index.d.ts +0 -0
  1077. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/core/tokens/index.d.ts +0 -0
  1078. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/index.d.ts +0 -0
  1079. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/IERC20__factory.d.ts +0 -0
  1080. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/IHousePrices__factory.d.ts +0 -0
  1081. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/INFTLiquidator__factory.d.ts +0 -0
  1082. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/IPoolManager__factory.d.ts +0 -0
  1083. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/IReserveAllocationLibraryMock__factory.d.ts +0 -0
  1084. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/IUSDC__factory.d.ts +0 -0
  1085. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/IveRAACDistributor__factory.d.ts +0 -0
  1086. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/collectors/IBaseCollector__factory.d.ts +0 -0
  1087. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/collectors/IFeeCollector__factory.d.ts +0 -0
  1088. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/collectors/ITreasury__factory.d.ts +0 -0
  1089. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/collectors/index.d.ts +0 -0
  1090. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/governance/IBoostController__factory.d.ts +0 -0
  1091. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/governance/gauges/IGaugeController__factory.d.ts +0 -0
  1092. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/governance/gauges/IGauge__factory.d.ts +0 -0
  1093. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/governance/gauges/index.d.ts +0 -0
  1094. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/governance/index.d.ts +0 -0
  1095. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/governance/proposals/IGovernance__factory.d.ts +0 -0
  1096. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/governance/proposals/ITimelockController__factory.d.ts +0 -0
  1097. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/governance/proposals/index.d.ts +0 -0
  1098. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/index.d.ts +0 -0
  1099. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/minters/RAACMinter/IRAACMinter__factory.d.ts +0 -0
  1100. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/minters/RAACMinter/index.d.ts +0 -0
  1101. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/IReleaseOrchestrator__factory.d.ts +0 -0
  1102. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/minters/RAACReleaseOrchestrator/index.d.ts +0 -0
  1103. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/minters/index.d.ts +0 -0
  1104. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/oracles/IBaseVRFv2Consumer__factory.d.ts +0 -0
  1105. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/oracles/IRAACHousePrices__factory.d.ts +0 -0
  1106. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/oracles/index.d.ts +0 -0
  1107. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/pools/ILiquidityPool__factory.d.ts +0 -0
  1108. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/pools/LendingPool/index.d.ts +0 -0
  1109. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/pools/StabilityPool/IStabilityPool__factory.d.ts +0 -0
  1110. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/pools/StabilityPool/index.d.ts +0 -0
  1111. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/pools/index.d.ts +0 -0
  1112. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/tokens/IDEToken__factory.d.ts +0 -0
  1113. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/tokens/IDebtToken__factory.d.ts +0 -0
  1114. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/tokens/IIndexToken__factory.d.ts +0 -0
  1115. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/tokens/IRAACNFT__factory.d.ts +0 -0
  1116. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/tokens/IRAACToken__factory.d.ts +0 -0
  1117. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/tokens/IRToken__factory.d.ts +0 -0
  1118. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/tokens/IveRAACToken__factory.d.ts +0 -0
  1119. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/tokens/index.d.ts +0 -0
  1120. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/vaults/IBaseVault__factory.d.ts +0 -0
  1121. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/core/vaults/index.d.ts +0 -0
  1122. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/curve/ICurveCrvUSDVault__factory.d.ts +0 -0
  1123. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/curve/index.d.ts +0 -0
  1124. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/index.d.ts +0 -0
  1125. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/zeno/IAuction__factory.d.ts +0 -0
  1126. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/zeno/IZENO__factory.d.ts +0 -0
  1127. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/interfaces/zeno/index.d.ts +0 -0
  1128. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/libraries/governance/index.d.ts +0 -0
  1129. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/libraries/index.d.ts +0 -0
  1130. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/libraries/math/index.d.ts +0 -0
  1131. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/libraries/pools/index.d.ts +0 -0
  1132. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/libraries/utils/index.d.ts +0 -0
  1133. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/collectors/index.d.ts +0 -0
  1134. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/governance/gauges/index.d.ts +0 -0
  1135. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/governance/index.d.ts +0 -0
  1136. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/governance/proposals/index.d.ts +0 -0
  1137. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/index.d.ts +0 -0
  1138. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/IFunctionsRouter__factory.d.ts +0 -0
  1139. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/oracles/MockFunctionsRouter.sol/index.d.ts +0 -0
  1140. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/oracles/index.d.ts +0 -0
  1141. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/pools/index.d.ts +0 -0
  1142. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/primitives/index.d.ts +0 -0
  1143. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/tokens/index.d.ts +0 -0
  1144. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/core/vaults/index.d.ts +0 -0
  1145. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/index.d.ts +0 -0
  1146. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/libraries/governance/index.d.ts +0 -0
  1147. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/libraries/index.d.ts +0 -0
  1148. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/libraries/math/index.d.ts +0 -0
  1149. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/libraries/pools/index.d.ts +0 -0
  1150. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/IVMTimeControl__factory.d.ts +0 -0
  1151. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/tests/VotingPowerFuzzHelper.sol/index.d.ts +0 -0
  1152. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/mocks/tests/index.d.ts +0 -0
  1153. /package/{typechain-types → dist/types/typechain-types}/factories/contracts/zeno/index.d.ts +0 -0
  1154. /package/{typechain-types → dist/types/typechain-types}/factories/index.d.ts +0 -0
@@ -0,0 +1,1694 @@
1
+ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
+ import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../common";
3
+ export declare namespace ILendingPool {
4
+ type NFTPositionViewStruct = {
5
+ rawDebtBalance: BigNumberish;
6
+ scaledDebtBalance: BigNumberish;
7
+ healthFactor: BigNumberish;
8
+ isUnderLiquidation: boolean;
9
+ liquidationStartTime: BigNumberish;
10
+ positionIndex: BigNumberish;
11
+ isInsured: boolean;
12
+ };
13
+ type NFTPositionViewStructOutput = [
14
+ rawDebtBalance: bigint,
15
+ scaledDebtBalance: bigint,
16
+ healthFactor: bigint,
17
+ isUnderLiquidation: boolean,
18
+ liquidationStartTime: bigint,
19
+ positionIndex: bigint,
20
+ isInsured: boolean
21
+ ] & {
22
+ rawDebtBalance: bigint;
23
+ scaledDebtBalance: bigint;
24
+ healthFactor: bigint;
25
+ isUnderLiquidation: boolean;
26
+ liquidationStartTime: bigint;
27
+ positionIndex: bigint;
28
+ isInsured: boolean;
29
+ };
30
+ type UserDataViewStruct = {
31
+ nftTokenIds: BigNumberish[];
32
+ scaledDebtBalance: BigNumberish;
33
+ collateralValue: BigNumberish;
34
+ positions: ILendingPool.NFTPositionViewStruct[];
35
+ };
36
+ type UserDataViewStructOutput = [
37
+ nftTokenIds: bigint[],
38
+ scaledDebtBalance: bigint,
39
+ collateralValue: bigint,
40
+ positions: ILendingPool.NFTPositionViewStructOutput[]
41
+ ] & {
42
+ nftTokenIds: bigint[];
43
+ scaledDebtBalance: bigint;
44
+ collateralValue: bigint;
45
+ positions: ILendingPool.NFTPositionViewStructOutput[];
46
+ };
47
+ type NFTPositionStruct = {
48
+ rawDebtBalance: BigNumberish;
49
+ isUnderLiquidation: boolean;
50
+ liquidationStartTime: BigNumberish;
51
+ positionIndex: BigNumberish;
52
+ isInsured: boolean;
53
+ rawInsuredBalance: BigNumberish;
54
+ };
55
+ type NFTPositionStructOutput = [
56
+ rawDebtBalance: bigint,
57
+ isUnderLiquidation: boolean,
58
+ liquidationStartTime: bigint,
59
+ positionIndex: bigint,
60
+ isInsured: boolean,
61
+ rawInsuredBalance: bigint
62
+ ] & {
63
+ rawDebtBalance: bigint;
64
+ isUnderLiquidation: boolean;
65
+ liquidationStartTime: bigint;
66
+ positionIndex: bigint;
67
+ isInsured: boolean;
68
+ rawInsuredBalance: bigint;
69
+ };
70
+ }
71
+ export declare namespace ReserveLibrary {
72
+ type ReserveRateDataStruct = {
73
+ currentLiquidityRate: BigNumberish;
74
+ currentUsageRate: BigNumberish;
75
+ primeRate: BigNumberish;
76
+ baseRate: BigNumberish;
77
+ optimalRate: BigNumberish;
78
+ maxRate: BigNumberish;
79
+ optimalUtilizationRate: BigNumberish;
80
+ protocolFeeRate: BigNumberish;
81
+ };
82
+ type ReserveRateDataStructOutput = [
83
+ currentLiquidityRate: bigint,
84
+ currentUsageRate: bigint,
85
+ primeRate: bigint,
86
+ baseRate: bigint,
87
+ optimalRate: bigint,
88
+ maxRate: bigint,
89
+ optimalUtilizationRate: bigint,
90
+ protocolFeeRate: bigint
91
+ ] & {
92
+ currentLiquidityRate: bigint;
93
+ currentUsageRate: bigint;
94
+ primeRate: bigint;
95
+ baseRate: bigint;
96
+ optimalRate: bigint;
97
+ maxRate: bigint;
98
+ optimalUtilizationRate: bigint;
99
+ protocolFeeRate: bigint;
100
+ };
101
+ type ReserveDataStruct = {
102
+ reserveRTokenAddress: AddressLike;
103
+ reserveAssetAddress: AddressLike;
104
+ reserveDebtTokenAddress: AddressLike;
105
+ totalLiquidity: BigNumberish;
106
+ totalUsage: BigNumberish;
107
+ liquidityIndex: BigNumberish;
108
+ usageIndex: BigNumberish;
109
+ lastUpdateTimestamp: BigNumberish;
110
+ };
111
+ type ReserveDataStructOutput = [
112
+ reserveRTokenAddress: string,
113
+ reserveAssetAddress: string,
114
+ reserveDebtTokenAddress: string,
115
+ totalLiquidity: bigint,
116
+ totalUsage: bigint,
117
+ liquidityIndex: bigint,
118
+ usageIndex: bigint,
119
+ lastUpdateTimestamp: bigint
120
+ ] & {
121
+ reserveRTokenAddress: string;
122
+ reserveAssetAddress: string;
123
+ reserveDebtTokenAddress: string;
124
+ totalLiquidity: bigint;
125
+ totalUsage: bigint;
126
+ liquidityIndex: bigint;
127
+ usageIndex: bigint;
128
+ lastUpdateTimestamp: bigint;
129
+ };
130
+ }
131
+ export interface LendingPoolInterface extends Interface {
132
+ getFunction(nameOrSignature: "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD" | "BASE_LIQUIDATION_GRACE_PERIOD" | "BASE_LIQUIDATION_THRESHOLD" | "borrow" | "borrowWithInsurance" | "calculateHealthFactor" | "calculateInsuranceFee" | "canPaybackDebt" | "claimCollectorRewards" | "claimReward" | "closeLiquidation" | "debtToken" | "deposit" | "depositFee" | "depositNFT" | "depositRewardTokens" | "feeCollector" | "finalizeLiquidation" | "getAllUserData" | "getEligibleUserDeposits" | "getNFTPrice" | "getNormalizedDebt" | "getNormalizedIncome" | "getPendingReward" | "getPosition" | "getPositionData" | "getPositionDebt" | "getPositionScaledDebt" | "getPositionView" | "getPositionsScaledDebt" | "getPrimeRate" | "getRAACNFTAddress" | "getReserveRateData" | "getReserveState" | "getUnclaimedVaultRewards" | "getUninsuredBalance" | "getUserCollateralValue" | "getUserDebt" | "getUserDeposits" | "getUserDepositsInStabilityPool" | "getUserOfDepositedNFT" | "healthFactorLiquidationThreshold" | "initiateLiquidation" | "insuranceFee" | "liquidationGracePeriod" | "liquidationThreshold" | "liquidityBufferRatio" | "onERC721Received" | "owner" | "pause" | "paused" | "positions" | "priceOracle" | "primeRateOracle" | "rToken" | "raacNFT" | "rateData" | "renounceOwnership" | "repay" | "repayOnBehalf" | "rescueToken" | "reserve" | "reserveAssetToken" | "rewardData" | "setFeeCollector" | "setParameter" | "setPrimeRate" | "setPrimeRateOracle" | "setRewardToken" | "setStabilityPool" | "setVault" | "stabilityPool" | "transferAccruedDust" | "transferOwnership" | "unpause" | "updateState" | "updateUserReward" | "userData" | "vault" | "vaultRewards" | "withdraw" | "withdrawNFT" | "withdrawalFee" | "withdrawalsPaused"): FunctionFragment;
133
+ getEvent(nameOrSignatureOrTopic: "Borrow" | "CanPaybackDebtChanged" | "Deposit(address,uint256,uint256)" | "Deposit(address,uint256,uint256)" | "DepositFeeUpdated" | "FeeCollectorUpdated" | "InsufficientFees" | "InsuranceFeeUpdated" | "InsuredNFT" | "InterestRatesUpdated" | "Liquidation" | "LiquidationClosed" | "LiquidationFinalized" | "LiquidationInitiated" | "LiquidationParametersUpdated" | "LiquidityBufferRatioUpdated" | "LiquidityRebalanced" | "NFTDeposited" | "NFTWithdrawn" | "NotFeeCollector" | "OwnershipTransferred" | "Paused" | "PrimeRateUpdated" | "ProtocolFeeRateUpdated" | "ProtocolFeesCollected" | "ProtocolFeesWithdrawn" | "Repay" | "ReserveInterestsUpdated" | "RewardClaimed" | "RewardDistributed" | "RewardParametersUpdated" | "RewardTokenAdded" | "RewardTokensDeposited" | "StabilityPoolUpdated" | "Unpaused" | "VaultRewardsClaimed" | "VaultUpdated" | "VaultWithdrawalFailed" | "Withdraw(address,uint256)" | "Withdraw(address,uint256,uint256)" | "WithdrawFeeUpdated" | "WithdrawalsPauseStatusChanged"): EventFragment;
134
+ encodeFunctionData(functionFragment: "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD", values?: undefined): string;
135
+ encodeFunctionData(functionFragment: "BASE_LIQUIDATION_GRACE_PERIOD", values?: undefined): string;
136
+ encodeFunctionData(functionFragment: "BASE_LIQUIDATION_THRESHOLD", values?: undefined): string;
137
+ encodeFunctionData(functionFragment: "borrow", values: [BigNumberish, BigNumberish]): string;
138
+ encodeFunctionData(functionFragment: "borrowWithInsurance", values: [BigNumberish, BigNumberish]): string;
139
+ encodeFunctionData(functionFragment: "calculateHealthFactor", values: [AddressLike, BigNumberish]): string;
140
+ encodeFunctionData(functionFragment: "calculateInsuranceFee", values: [AddressLike, BigNumberish, BigNumberish]): string;
141
+ encodeFunctionData(functionFragment: "canPaybackDebt", values?: undefined): string;
142
+ encodeFunctionData(functionFragment: "claimCollectorRewards", values?: undefined): string;
143
+ encodeFunctionData(functionFragment: "claimReward", values?: undefined): string;
144
+ encodeFunctionData(functionFragment: "closeLiquidation", values: [BigNumberish]): string;
145
+ encodeFunctionData(functionFragment: "debtToken", values?: undefined): string;
146
+ encodeFunctionData(functionFragment: "deposit", values: [BigNumberish]): string;
147
+ encodeFunctionData(functionFragment: "depositFee", values?: undefined): string;
148
+ encodeFunctionData(functionFragment: "depositNFT", values: [BigNumberish]): string;
149
+ encodeFunctionData(functionFragment: "depositRewardTokens", values: [BigNumberish]): string;
150
+ encodeFunctionData(functionFragment: "feeCollector", values?: undefined): string;
151
+ encodeFunctionData(functionFragment: "finalizeLiquidation", values: [AddressLike, BigNumberish]): string;
152
+ encodeFunctionData(functionFragment: "getAllUserData", values: [AddressLike]): string;
153
+ encodeFunctionData(functionFragment: "getEligibleUserDeposits", values: [AddressLike]): string;
154
+ encodeFunctionData(functionFragment: "getNFTPrice", values: [BigNumberish]): string;
155
+ encodeFunctionData(functionFragment: "getNormalizedDebt", values?: undefined): string;
156
+ encodeFunctionData(functionFragment: "getNormalizedIncome", values?: undefined): string;
157
+ encodeFunctionData(functionFragment: "getPendingReward", values: [AddressLike]): string;
158
+ encodeFunctionData(functionFragment: "getPosition", values: [AddressLike, BigNumberish]): string;
159
+ encodeFunctionData(functionFragment: "getPositionData", values: [AddressLike, BigNumberish]): string;
160
+ encodeFunctionData(functionFragment: "getPositionDebt", values: [AddressLike, BigNumberish]): string;
161
+ encodeFunctionData(functionFragment: "getPositionScaledDebt", values: [AddressLike, BigNumberish]): string;
162
+ encodeFunctionData(functionFragment: "getPositionView", values: [AddressLike, BigNumberish]): string;
163
+ encodeFunctionData(functionFragment: "getPositionsScaledDebt", values: [AddressLike]): string;
164
+ encodeFunctionData(functionFragment: "getPrimeRate", values?: undefined): string;
165
+ encodeFunctionData(functionFragment: "getRAACNFTAddress", values?: undefined): string;
166
+ encodeFunctionData(functionFragment: "getReserveRateData", values?: undefined): string;
167
+ encodeFunctionData(functionFragment: "getReserveState", values?: undefined): string;
168
+ encodeFunctionData(functionFragment: "getUnclaimedVaultRewards", values?: undefined): string;
169
+ encodeFunctionData(functionFragment: "getUninsuredBalance", values: [AddressLike, BigNumberish]): string;
170
+ encodeFunctionData(functionFragment: "getUserCollateralValue", values: [AddressLike]): string;
171
+ encodeFunctionData(functionFragment: "getUserDebt", values: [AddressLike]): string;
172
+ encodeFunctionData(functionFragment: "getUserDeposits", values: [AddressLike]): string;
173
+ encodeFunctionData(functionFragment: "getUserDepositsInStabilityPool", values: [AddressLike]): string;
174
+ encodeFunctionData(functionFragment: "getUserOfDepositedNFT", values: [BigNumberish]): string;
175
+ encodeFunctionData(functionFragment: "healthFactorLiquidationThreshold", values?: undefined): string;
176
+ encodeFunctionData(functionFragment: "initiateLiquidation", values: [AddressLike, BigNumberish]): string;
177
+ encodeFunctionData(functionFragment: "insuranceFee", values?: undefined): string;
178
+ encodeFunctionData(functionFragment: "liquidationGracePeriod", values?: undefined): string;
179
+ encodeFunctionData(functionFragment: "liquidationThreshold", values?: undefined): string;
180
+ encodeFunctionData(functionFragment: "liquidityBufferRatio", values?: undefined): string;
181
+ encodeFunctionData(functionFragment: "onERC721Received", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
182
+ encodeFunctionData(functionFragment: "owner", values?: undefined): string;
183
+ encodeFunctionData(functionFragment: "pause", values?: undefined): string;
184
+ encodeFunctionData(functionFragment: "paused", values?: undefined): string;
185
+ encodeFunctionData(functionFragment: "positions", values: [AddressLike, BigNumberish]): string;
186
+ encodeFunctionData(functionFragment: "priceOracle", values?: undefined): string;
187
+ encodeFunctionData(functionFragment: "primeRateOracle", values?: undefined): string;
188
+ encodeFunctionData(functionFragment: "rToken", values?: undefined): string;
189
+ encodeFunctionData(functionFragment: "raacNFT", values?: undefined): string;
190
+ encodeFunctionData(functionFragment: "rateData", values?: undefined): string;
191
+ encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
192
+ encodeFunctionData(functionFragment: "repay", values: [BigNumberish, BigNumberish]): string;
193
+ encodeFunctionData(functionFragment: "repayOnBehalf", values: [BigNumberish, BigNumberish, AddressLike]): string;
194
+ encodeFunctionData(functionFragment: "rescueToken", values: [AddressLike, AddressLike, BigNumberish]): string;
195
+ encodeFunctionData(functionFragment: "reserve", values?: undefined): string;
196
+ encodeFunctionData(functionFragment: "reserveAssetToken", values?: undefined): string;
197
+ encodeFunctionData(functionFragment: "rewardData", values?: undefined): string;
198
+ encodeFunctionData(functionFragment: "setFeeCollector", values: [AddressLike]): string;
199
+ encodeFunctionData(functionFragment: "setParameter", values: [BigNumberish, BigNumberish]): string;
200
+ encodeFunctionData(functionFragment: "setPrimeRate", values: [BigNumberish]): string;
201
+ encodeFunctionData(functionFragment: "setPrimeRateOracle", values: [AddressLike]): string;
202
+ encodeFunctionData(functionFragment: "setRewardToken", values: [AddressLike]): string;
203
+ encodeFunctionData(functionFragment: "setStabilityPool", values: [AddressLike]): string;
204
+ encodeFunctionData(functionFragment: "setVault", values: [AddressLike]): string;
205
+ encodeFunctionData(functionFragment: "stabilityPool", values?: undefined): string;
206
+ encodeFunctionData(functionFragment: "transferAccruedDust", values: [AddressLike, BigNumberish]): string;
207
+ encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
208
+ encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
209
+ encodeFunctionData(functionFragment: "updateState", values?: undefined): string;
210
+ encodeFunctionData(functionFragment: "updateUserReward", values: [AddressLike]): string;
211
+ encodeFunctionData(functionFragment: "userData", values: [AddressLike]): string;
212
+ encodeFunctionData(functionFragment: "vault", values?: undefined): string;
213
+ encodeFunctionData(functionFragment: "vaultRewards", values?: undefined): string;
214
+ encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish]): string;
215
+ encodeFunctionData(functionFragment: "withdrawNFT", values: [BigNumberish]): string;
216
+ encodeFunctionData(functionFragment: "withdrawalFee", values?: undefined): string;
217
+ encodeFunctionData(functionFragment: "withdrawalsPaused", values?: undefined): string;
218
+ decodeFunctionResult(functionFragment: "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD", data: BytesLike): Result;
219
+ decodeFunctionResult(functionFragment: "BASE_LIQUIDATION_GRACE_PERIOD", data: BytesLike): Result;
220
+ decodeFunctionResult(functionFragment: "BASE_LIQUIDATION_THRESHOLD", data: BytesLike): Result;
221
+ decodeFunctionResult(functionFragment: "borrow", data: BytesLike): Result;
222
+ decodeFunctionResult(functionFragment: "borrowWithInsurance", data: BytesLike): Result;
223
+ decodeFunctionResult(functionFragment: "calculateHealthFactor", data: BytesLike): Result;
224
+ decodeFunctionResult(functionFragment: "calculateInsuranceFee", data: BytesLike): Result;
225
+ decodeFunctionResult(functionFragment: "canPaybackDebt", data: BytesLike): Result;
226
+ decodeFunctionResult(functionFragment: "claimCollectorRewards", data: BytesLike): Result;
227
+ decodeFunctionResult(functionFragment: "claimReward", data: BytesLike): Result;
228
+ decodeFunctionResult(functionFragment: "closeLiquidation", data: BytesLike): Result;
229
+ decodeFunctionResult(functionFragment: "debtToken", data: BytesLike): Result;
230
+ decodeFunctionResult(functionFragment: "deposit", data: BytesLike): Result;
231
+ decodeFunctionResult(functionFragment: "depositFee", data: BytesLike): Result;
232
+ decodeFunctionResult(functionFragment: "depositNFT", data: BytesLike): Result;
233
+ decodeFunctionResult(functionFragment: "depositRewardTokens", data: BytesLike): Result;
234
+ decodeFunctionResult(functionFragment: "feeCollector", data: BytesLike): Result;
235
+ decodeFunctionResult(functionFragment: "finalizeLiquidation", data: BytesLike): Result;
236
+ decodeFunctionResult(functionFragment: "getAllUserData", data: BytesLike): Result;
237
+ decodeFunctionResult(functionFragment: "getEligibleUserDeposits", data: BytesLike): Result;
238
+ decodeFunctionResult(functionFragment: "getNFTPrice", data: BytesLike): Result;
239
+ decodeFunctionResult(functionFragment: "getNormalizedDebt", data: BytesLike): Result;
240
+ decodeFunctionResult(functionFragment: "getNormalizedIncome", data: BytesLike): Result;
241
+ decodeFunctionResult(functionFragment: "getPendingReward", data: BytesLike): Result;
242
+ decodeFunctionResult(functionFragment: "getPosition", data: BytesLike): Result;
243
+ decodeFunctionResult(functionFragment: "getPositionData", data: BytesLike): Result;
244
+ decodeFunctionResult(functionFragment: "getPositionDebt", data: BytesLike): Result;
245
+ decodeFunctionResult(functionFragment: "getPositionScaledDebt", data: BytesLike): Result;
246
+ decodeFunctionResult(functionFragment: "getPositionView", data: BytesLike): Result;
247
+ decodeFunctionResult(functionFragment: "getPositionsScaledDebt", data: BytesLike): Result;
248
+ decodeFunctionResult(functionFragment: "getPrimeRate", data: BytesLike): Result;
249
+ decodeFunctionResult(functionFragment: "getRAACNFTAddress", data: BytesLike): Result;
250
+ decodeFunctionResult(functionFragment: "getReserveRateData", data: BytesLike): Result;
251
+ decodeFunctionResult(functionFragment: "getReserveState", data: BytesLike): Result;
252
+ decodeFunctionResult(functionFragment: "getUnclaimedVaultRewards", data: BytesLike): Result;
253
+ decodeFunctionResult(functionFragment: "getUninsuredBalance", data: BytesLike): Result;
254
+ decodeFunctionResult(functionFragment: "getUserCollateralValue", data: BytesLike): Result;
255
+ decodeFunctionResult(functionFragment: "getUserDebt", data: BytesLike): Result;
256
+ decodeFunctionResult(functionFragment: "getUserDeposits", data: BytesLike): Result;
257
+ decodeFunctionResult(functionFragment: "getUserDepositsInStabilityPool", data: BytesLike): Result;
258
+ decodeFunctionResult(functionFragment: "getUserOfDepositedNFT", data: BytesLike): Result;
259
+ decodeFunctionResult(functionFragment: "healthFactorLiquidationThreshold", data: BytesLike): Result;
260
+ decodeFunctionResult(functionFragment: "initiateLiquidation", data: BytesLike): Result;
261
+ decodeFunctionResult(functionFragment: "insuranceFee", data: BytesLike): Result;
262
+ decodeFunctionResult(functionFragment: "liquidationGracePeriod", data: BytesLike): Result;
263
+ decodeFunctionResult(functionFragment: "liquidationThreshold", data: BytesLike): Result;
264
+ decodeFunctionResult(functionFragment: "liquidityBufferRatio", data: BytesLike): Result;
265
+ decodeFunctionResult(functionFragment: "onERC721Received", data: BytesLike): Result;
266
+ decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
267
+ decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
268
+ decodeFunctionResult(functionFragment: "paused", data: BytesLike): Result;
269
+ decodeFunctionResult(functionFragment: "positions", data: BytesLike): Result;
270
+ decodeFunctionResult(functionFragment: "priceOracle", data: BytesLike): Result;
271
+ decodeFunctionResult(functionFragment: "primeRateOracle", data: BytesLike): Result;
272
+ decodeFunctionResult(functionFragment: "rToken", data: BytesLike): Result;
273
+ decodeFunctionResult(functionFragment: "raacNFT", data: BytesLike): Result;
274
+ decodeFunctionResult(functionFragment: "rateData", data: BytesLike): Result;
275
+ decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
276
+ decodeFunctionResult(functionFragment: "repay", data: BytesLike): Result;
277
+ decodeFunctionResult(functionFragment: "repayOnBehalf", data: BytesLike): Result;
278
+ decodeFunctionResult(functionFragment: "rescueToken", data: BytesLike): Result;
279
+ decodeFunctionResult(functionFragment: "reserve", data: BytesLike): Result;
280
+ decodeFunctionResult(functionFragment: "reserveAssetToken", data: BytesLike): Result;
281
+ decodeFunctionResult(functionFragment: "rewardData", data: BytesLike): Result;
282
+ decodeFunctionResult(functionFragment: "setFeeCollector", data: BytesLike): Result;
283
+ decodeFunctionResult(functionFragment: "setParameter", data: BytesLike): Result;
284
+ decodeFunctionResult(functionFragment: "setPrimeRate", data: BytesLike): Result;
285
+ decodeFunctionResult(functionFragment: "setPrimeRateOracle", data: BytesLike): Result;
286
+ decodeFunctionResult(functionFragment: "setRewardToken", data: BytesLike): Result;
287
+ decodeFunctionResult(functionFragment: "setStabilityPool", data: BytesLike): Result;
288
+ decodeFunctionResult(functionFragment: "setVault", data: BytesLike): Result;
289
+ decodeFunctionResult(functionFragment: "stabilityPool", data: BytesLike): Result;
290
+ decodeFunctionResult(functionFragment: "transferAccruedDust", data: BytesLike): Result;
291
+ decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
292
+ decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
293
+ decodeFunctionResult(functionFragment: "updateState", data: BytesLike): Result;
294
+ decodeFunctionResult(functionFragment: "updateUserReward", data: BytesLike): Result;
295
+ decodeFunctionResult(functionFragment: "userData", data: BytesLike): Result;
296
+ decodeFunctionResult(functionFragment: "vault", data: BytesLike): Result;
297
+ decodeFunctionResult(functionFragment: "vaultRewards", data: BytesLike): Result;
298
+ decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
299
+ decodeFunctionResult(functionFragment: "withdrawNFT", data: BytesLike): Result;
300
+ decodeFunctionResult(functionFragment: "withdrawalFee", data: BytesLike): Result;
301
+ decodeFunctionResult(functionFragment: "withdrawalsPaused", data: BytesLike): Result;
302
+ }
303
+ export declare namespace BorrowEvent {
304
+ type InputTuple = [user: AddressLike, amount: BigNumberish];
305
+ type OutputTuple = [user: string, amount: bigint];
306
+ interface OutputObject {
307
+ user: string;
308
+ amount: bigint;
309
+ }
310
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
311
+ type Filter = TypedDeferredTopicFilter<Event>;
312
+ type Log = TypedEventLog<Event>;
313
+ type LogDescription = TypedLogDescription<Event>;
314
+ }
315
+ export declare namespace CanPaybackDebtChangedEvent {
316
+ type InputTuple = [enabled: boolean];
317
+ type OutputTuple = [enabled: boolean];
318
+ interface OutputObject {
319
+ enabled: boolean;
320
+ }
321
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
322
+ type Filter = TypedDeferredTopicFilter<Event>;
323
+ type Log = TypedEventLog<Event>;
324
+ type LogDescription = TypedLogDescription<Event>;
325
+ }
326
+ export declare namespace Deposit_address_uint256_uint256_Event {
327
+ type InputTuple = [
328
+ user: AddressLike,
329
+ amount: BigNumberish,
330
+ mintedAmount: BigNumberish
331
+ ];
332
+ type OutputTuple = [
333
+ user: string,
334
+ amount: bigint,
335
+ mintedAmount: bigint
336
+ ];
337
+ interface OutputObject {
338
+ user: string;
339
+ amount: bigint;
340
+ mintedAmount: bigint;
341
+ }
342
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
343
+ type Filter = TypedDeferredTopicFilter<Event>;
344
+ type Log = TypedEventLog<Event>;
345
+ type LogDescription = TypedLogDescription<Event>;
346
+ }
347
+ export declare namespace Deposit_address_uint256_uint256_Event {
348
+ type InputTuple = [
349
+ user: AddressLike,
350
+ amount: BigNumberish,
351
+ liquidityMinted: BigNumberish
352
+ ];
353
+ type OutputTuple = [
354
+ user: string,
355
+ amount: bigint,
356
+ liquidityMinted: bigint
357
+ ];
358
+ interface OutputObject {
359
+ user: string;
360
+ amount: bigint;
361
+ liquidityMinted: bigint;
362
+ }
363
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
364
+ type Filter = TypedDeferredTopicFilter<Event>;
365
+ type Log = TypedEventLog<Event>;
366
+ type LogDescription = TypedLogDescription<Event>;
367
+ }
368
+ export declare namespace DepositFeeUpdatedEvent {
369
+ type InputTuple = [
370
+ oldDepositFee: BigNumberish,
371
+ newDepositFee: BigNumberish
372
+ ];
373
+ type OutputTuple = [oldDepositFee: bigint, newDepositFee: bigint];
374
+ interface OutputObject {
375
+ oldDepositFee: bigint;
376
+ newDepositFee: bigint;
377
+ }
378
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
379
+ type Filter = TypedDeferredTopicFilter<Event>;
380
+ type Log = TypedEventLog<Event>;
381
+ type LogDescription = TypedLogDescription<Event>;
382
+ }
383
+ export declare namespace FeeCollectorUpdatedEvent {
384
+ type InputTuple = [
385
+ oldFeeCollector: AddressLike,
386
+ newFeeCollector: AddressLike
387
+ ];
388
+ type OutputTuple = [oldFeeCollector: string, newFeeCollector: string];
389
+ interface OutputObject {
390
+ oldFeeCollector: string;
391
+ newFeeCollector: string;
392
+ }
393
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
394
+ type Filter = TypedDeferredTopicFilter<Event>;
395
+ type Log = TypedEventLog<Event>;
396
+ type LogDescription = TypedLogDescription<Event>;
397
+ }
398
+ export declare namespace InsufficientFeesEvent {
399
+ type InputTuple = [];
400
+ type OutputTuple = [];
401
+ interface OutputObject {
402
+ }
403
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
404
+ type Filter = TypedDeferredTopicFilter<Event>;
405
+ type Log = TypedEventLog<Event>;
406
+ type LogDescription = TypedLogDescription<Event>;
407
+ }
408
+ export declare namespace InsuranceFeeUpdatedEvent {
409
+ type InputTuple = [
410
+ oldInsuranceFee: BigNumberish,
411
+ newInsuranceFee: BigNumberish
412
+ ];
413
+ type OutputTuple = [oldInsuranceFee: bigint, newInsuranceFee: bigint];
414
+ interface OutputObject {
415
+ oldInsuranceFee: bigint;
416
+ newInsuranceFee: bigint;
417
+ }
418
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
419
+ type Filter = TypedDeferredTopicFilter<Event>;
420
+ type Log = TypedEventLog<Event>;
421
+ type LogDescription = TypedLogDescription<Event>;
422
+ }
423
+ export declare namespace InsuredNFTEvent {
424
+ type InputTuple = [tokenId: BigNumberish, amount: BigNumberish];
425
+ type OutputTuple = [tokenId: bigint, amount: bigint];
426
+ interface OutputObject {
427
+ tokenId: bigint;
428
+ amount: bigint;
429
+ }
430
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
431
+ type Filter = TypedDeferredTopicFilter<Event>;
432
+ type Log = TypedEventLog<Event>;
433
+ type LogDescription = TypedLogDescription<Event>;
434
+ }
435
+ export declare namespace InterestRatesUpdatedEvent {
436
+ type InputTuple = [
437
+ liquidityRate: BigNumberish,
438
+ usageRate: BigNumberish
439
+ ];
440
+ type OutputTuple = [liquidityRate: bigint, usageRate: bigint];
441
+ interface OutputObject {
442
+ liquidityRate: bigint;
443
+ usageRate: bigint;
444
+ }
445
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
446
+ type Filter = TypedDeferredTopicFilter<Event>;
447
+ type Log = TypedEventLog<Event>;
448
+ type LogDescription = TypedLogDescription<Event>;
449
+ }
450
+ export declare namespace LiquidationEvent {
451
+ type InputTuple = [
452
+ liquidator: AddressLike,
453
+ user: AddressLike,
454
+ debtRepaid: BigNumberish,
455
+ collateralLiquidated: BigNumberish
456
+ ];
457
+ type OutputTuple = [
458
+ liquidator: string,
459
+ user: string,
460
+ debtRepaid: bigint,
461
+ collateralLiquidated: bigint
462
+ ];
463
+ interface OutputObject {
464
+ liquidator: string;
465
+ user: string;
466
+ debtRepaid: bigint;
467
+ collateralLiquidated: bigint;
468
+ }
469
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
470
+ type Filter = TypedDeferredTopicFilter<Event>;
471
+ type Log = TypedEventLog<Event>;
472
+ type LogDescription = TypedLogDescription<Event>;
473
+ }
474
+ export declare namespace LiquidationClosedEvent {
475
+ type InputTuple = [user: AddressLike, tokenId: BigNumberish];
476
+ type OutputTuple = [user: string, tokenId: bigint];
477
+ interface OutputObject {
478
+ user: string;
479
+ tokenId: bigint;
480
+ }
481
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
482
+ type Filter = TypedDeferredTopicFilter<Event>;
483
+ type Log = TypedEventLog<Event>;
484
+ type LogDescription = TypedLogDescription<Event>;
485
+ }
486
+ export declare namespace LiquidationFinalizedEvent {
487
+ type InputTuple = [
488
+ liquidator: AddressLike,
489
+ user: AddressLike,
490
+ tokenId: BigNumberish,
491
+ debtRepaid: BigNumberish,
492
+ collateralLiquidated: BigNumberish
493
+ ];
494
+ type OutputTuple = [
495
+ liquidator: string,
496
+ user: string,
497
+ tokenId: bigint,
498
+ debtRepaid: bigint,
499
+ collateralLiquidated: bigint
500
+ ];
501
+ interface OutputObject {
502
+ liquidator: string;
503
+ user: string;
504
+ tokenId: bigint;
505
+ debtRepaid: bigint;
506
+ collateralLiquidated: bigint;
507
+ }
508
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
509
+ type Filter = TypedDeferredTopicFilter<Event>;
510
+ type Log = TypedEventLog<Event>;
511
+ type LogDescription = TypedLogDescription<Event>;
512
+ }
513
+ export declare namespace LiquidationInitiatedEvent {
514
+ type InputTuple = [
515
+ liquidator: AddressLike,
516
+ user: AddressLike,
517
+ tokenId: BigNumberish
518
+ ];
519
+ type OutputTuple = [liquidator: string, user: string, tokenId: bigint];
520
+ interface OutputObject {
521
+ liquidator: string;
522
+ user: string;
523
+ tokenId: bigint;
524
+ }
525
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
526
+ type Filter = TypedDeferredTopicFilter<Event>;
527
+ type Log = TypedEventLog<Event>;
528
+ type LogDescription = TypedLogDescription<Event>;
529
+ }
530
+ export declare namespace LiquidationParametersUpdatedEvent {
531
+ type InputTuple = [
532
+ newLiquidationThreshold: BigNumberish,
533
+ newHealthFactorLiquidationThreshold: BigNumberish,
534
+ newLiquidationGracePeriod: BigNumberish
535
+ ];
536
+ type OutputTuple = [
537
+ newLiquidationThreshold: bigint,
538
+ newHealthFactorLiquidationThreshold: bigint,
539
+ newLiquidationGracePeriod: bigint
540
+ ];
541
+ interface OutputObject {
542
+ newLiquidationThreshold: bigint;
543
+ newHealthFactorLiquidationThreshold: bigint;
544
+ newLiquidationGracePeriod: bigint;
545
+ }
546
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
547
+ type Filter = TypedDeferredTopicFilter<Event>;
548
+ type Log = TypedEventLog<Event>;
549
+ type LogDescription = TypedLogDescription<Event>;
550
+ }
551
+ export declare namespace LiquidityBufferRatioUpdatedEvent {
552
+ type InputTuple = [oldRatio: BigNumberish, newRatio: BigNumberish];
553
+ type OutputTuple = [oldRatio: bigint, newRatio: bigint];
554
+ interface OutputObject {
555
+ oldRatio: bigint;
556
+ newRatio: bigint;
557
+ }
558
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
559
+ type Filter = TypedDeferredTopicFilter<Event>;
560
+ type Log = TypedEventLog<Event>;
561
+ type LogDescription = TypedLogDescription<Event>;
562
+ }
563
+ export declare namespace LiquidityRebalancedEvent {
564
+ type InputTuple = [
565
+ bufferAmount: BigNumberish,
566
+ vaultAmount: BigNumberish
567
+ ];
568
+ type OutputTuple = [bufferAmount: bigint, vaultAmount: bigint];
569
+ interface OutputObject {
570
+ bufferAmount: bigint;
571
+ vaultAmount: bigint;
572
+ }
573
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
574
+ type Filter = TypedDeferredTopicFilter<Event>;
575
+ type Log = TypedEventLog<Event>;
576
+ type LogDescription = TypedLogDescription<Event>;
577
+ }
578
+ export declare namespace NFTDepositedEvent {
579
+ type InputTuple = [user: AddressLike, tokenId: BigNumberish];
580
+ type OutputTuple = [user: string, tokenId: bigint];
581
+ interface OutputObject {
582
+ user: string;
583
+ tokenId: bigint;
584
+ }
585
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
586
+ type Filter = TypedDeferredTopicFilter<Event>;
587
+ type Log = TypedEventLog<Event>;
588
+ type LogDescription = TypedLogDescription<Event>;
589
+ }
590
+ export declare namespace NFTWithdrawnEvent {
591
+ type InputTuple = [user: AddressLike, tokenId: BigNumberish];
592
+ type OutputTuple = [user: string, tokenId: bigint];
593
+ interface OutputObject {
594
+ user: string;
595
+ tokenId: bigint;
596
+ }
597
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
598
+ type Filter = TypedDeferredTopicFilter<Event>;
599
+ type Log = TypedEventLog<Event>;
600
+ type LogDescription = TypedLogDescription<Event>;
601
+ }
602
+ export declare namespace NotFeeCollectorEvent {
603
+ type InputTuple = [];
604
+ type OutputTuple = [];
605
+ interface OutputObject {
606
+ }
607
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
608
+ type Filter = TypedDeferredTopicFilter<Event>;
609
+ type Log = TypedEventLog<Event>;
610
+ type LogDescription = TypedLogDescription<Event>;
611
+ }
612
+ export declare namespace OwnershipTransferredEvent {
613
+ type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
614
+ type OutputTuple = [previousOwner: string, newOwner: string];
615
+ interface OutputObject {
616
+ previousOwner: string;
617
+ newOwner: string;
618
+ }
619
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
620
+ type Filter = TypedDeferredTopicFilter<Event>;
621
+ type Log = TypedEventLog<Event>;
622
+ type LogDescription = TypedLogDescription<Event>;
623
+ }
624
+ export declare namespace PausedEvent {
625
+ type InputTuple = [account: AddressLike];
626
+ type OutputTuple = [account: string];
627
+ interface OutputObject {
628
+ account: string;
629
+ }
630
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
631
+ type Filter = TypedDeferredTopicFilter<Event>;
632
+ type Log = TypedEventLog<Event>;
633
+ type LogDescription = TypedLogDescription<Event>;
634
+ }
635
+ export declare namespace PrimeRateUpdatedEvent {
636
+ type InputTuple = [
637
+ oldPrimeRate: BigNumberish,
638
+ newPrimeRate: BigNumberish
639
+ ];
640
+ type OutputTuple = [oldPrimeRate: bigint, newPrimeRate: bigint];
641
+ interface OutputObject {
642
+ oldPrimeRate: bigint;
643
+ newPrimeRate: bigint;
644
+ }
645
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
646
+ type Filter = TypedDeferredTopicFilter<Event>;
647
+ type Log = TypedEventLog<Event>;
648
+ type LogDescription = TypedLogDescription<Event>;
649
+ }
650
+ export declare namespace ProtocolFeeRateUpdatedEvent {
651
+ type InputTuple = [oldValue: BigNumberish, newValue: BigNumberish];
652
+ type OutputTuple = [oldValue: bigint, newValue: bigint];
653
+ interface OutputObject {
654
+ oldValue: bigint;
655
+ newValue: bigint;
656
+ }
657
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
658
+ type Filter = TypedDeferredTopicFilter<Event>;
659
+ type Log = TypedEventLog<Event>;
660
+ type LogDescription = TypedLogDescription<Event>;
661
+ }
662
+ export declare namespace ProtocolFeesCollectedEvent {
663
+ type InputTuple = [
664
+ protocolFee: BigNumberish,
665
+ accumulatedProtocolFees: BigNumberish
666
+ ];
667
+ type OutputTuple = [
668
+ protocolFee: bigint,
669
+ accumulatedProtocolFees: bigint
670
+ ];
671
+ interface OutputObject {
672
+ protocolFee: bigint;
673
+ accumulatedProtocolFees: bigint;
674
+ }
675
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
676
+ type Filter = TypedDeferredTopicFilter<Event>;
677
+ type Log = TypedEventLog<Event>;
678
+ type LogDescription = TypedLogDescription<Event>;
679
+ }
680
+ export declare namespace ProtocolFeesWithdrawnEvent {
681
+ type InputTuple = [feeCollector: AddressLike, amount: BigNumberish];
682
+ type OutputTuple = [feeCollector: string, amount: bigint];
683
+ interface OutputObject {
684
+ feeCollector: string;
685
+ amount: bigint;
686
+ }
687
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
688
+ type Filter = TypedDeferredTopicFilter<Event>;
689
+ type Log = TypedEventLog<Event>;
690
+ type LogDescription = TypedLogDescription<Event>;
691
+ }
692
+ export declare namespace RepayEvent {
693
+ type InputTuple = [
694
+ user: AddressLike,
695
+ onBehalfOf: AddressLike,
696
+ amount: BigNumberish
697
+ ];
698
+ type OutputTuple = [user: string, onBehalfOf: string, amount: bigint];
699
+ interface OutputObject {
700
+ user: string;
701
+ onBehalfOf: string;
702
+ amount: bigint;
703
+ }
704
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
705
+ type Filter = TypedDeferredTopicFilter<Event>;
706
+ type Log = TypedEventLog<Event>;
707
+ type LogDescription = TypedLogDescription<Event>;
708
+ }
709
+ export declare namespace ReserveInterestsUpdatedEvent {
710
+ type InputTuple = [
711
+ liquidityIndex: BigNumberish,
712
+ usageIndex: BigNumberish
713
+ ];
714
+ type OutputTuple = [liquidityIndex: bigint, usageIndex: bigint];
715
+ interface OutputObject {
716
+ liquidityIndex: bigint;
717
+ usageIndex: bigint;
718
+ }
719
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
720
+ type Filter = TypedDeferredTopicFilter<Event>;
721
+ type Log = TypedEventLog<Event>;
722
+ type LogDescription = TypedLogDescription<Event>;
723
+ }
724
+ export declare namespace RewardClaimedEvent {
725
+ type InputTuple = [
726
+ user: AddressLike,
727
+ token: AddressLike,
728
+ amount: BigNumberish
729
+ ];
730
+ type OutputTuple = [user: string, token: string, amount: bigint];
731
+ interface OutputObject {
732
+ user: string;
733
+ token: string;
734
+ amount: bigint;
735
+ }
736
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
737
+ type Filter = TypedDeferredTopicFilter<Event>;
738
+ type Log = TypedEventLog<Event>;
739
+ type LogDescription = TypedLogDescription<Event>;
740
+ }
741
+ export declare namespace RewardDistributedEvent {
742
+ type InputTuple = [user: AddressLike, amount: BigNumberish];
743
+ type OutputTuple = [user: string, amount: bigint];
744
+ interface OutputObject {
745
+ user: string;
746
+ amount: bigint;
747
+ }
748
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
749
+ type Filter = TypedDeferredTopicFilter<Event>;
750
+ type Log = TypedEventLog<Event>;
751
+ type LogDescription = TypedLogDescription<Event>;
752
+ }
753
+ export declare namespace RewardParametersUpdatedEvent {
754
+ type InputTuple = [
755
+ token: AddressLike,
756
+ rewardRate: BigNumberish,
757
+ duration: BigNumberish
758
+ ];
759
+ type OutputTuple = [
760
+ token: string,
761
+ rewardRate: bigint,
762
+ duration: bigint
763
+ ];
764
+ interface OutputObject {
765
+ token: string;
766
+ rewardRate: bigint;
767
+ duration: bigint;
768
+ }
769
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
770
+ type Filter = TypedDeferredTopicFilter<Event>;
771
+ type Log = TypedEventLog<Event>;
772
+ type LogDescription = TypedLogDescription<Event>;
773
+ }
774
+ export declare namespace RewardTokenAddedEvent {
775
+ type InputTuple = [
776
+ token: AddressLike,
777
+ rewardRate: BigNumberish,
778
+ duration: BigNumberish
779
+ ];
780
+ type OutputTuple = [
781
+ token: string,
782
+ rewardRate: bigint,
783
+ duration: bigint
784
+ ];
785
+ interface OutputObject {
786
+ token: string;
787
+ rewardRate: bigint;
788
+ duration: bigint;
789
+ }
790
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
791
+ type Filter = TypedDeferredTopicFilter<Event>;
792
+ type Log = TypedEventLog<Event>;
793
+ type LogDescription = TypedLogDescription<Event>;
794
+ }
795
+ export declare namespace RewardTokensDepositedEvent {
796
+ type InputTuple = [user: AddressLike, amount: BigNumberish];
797
+ type OutputTuple = [user: string, amount: bigint];
798
+ interface OutputObject {
799
+ user: string;
800
+ amount: bigint;
801
+ }
802
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
803
+ type Filter = TypedDeferredTopicFilter<Event>;
804
+ type Log = TypedEventLog<Event>;
805
+ type LogDescription = TypedLogDescription<Event>;
806
+ }
807
+ export declare namespace StabilityPoolUpdatedEvent {
808
+ type InputTuple = [
809
+ oldStabilityPool: AddressLike,
810
+ newStabilityPool: AddressLike
811
+ ];
812
+ type OutputTuple = [
813
+ oldStabilityPool: string,
814
+ newStabilityPool: string
815
+ ];
816
+ interface OutputObject {
817
+ oldStabilityPool: string;
818
+ newStabilityPool: string;
819
+ }
820
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
821
+ type Filter = TypedDeferredTopicFilter<Event>;
822
+ type Log = TypedEventLog<Event>;
823
+ type LogDescription = TypedLogDescription<Event>;
824
+ }
825
+ export declare namespace UnpausedEvent {
826
+ type InputTuple = [account: AddressLike];
827
+ type OutputTuple = [account: string];
828
+ interface OutputObject {
829
+ account: string;
830
+ }
831
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
832
+ type Filter = TypedDeferredTopicFilter<Event>;
833
+ type Log = TypedEventLog<Event>;
834
+ type LogDescription = TypedLogDescription<Event>;
835
+ }
836
+ export declare namespace VaultRewardsClaimedEvent {
837
+ type InputTuple = [amount: BigNumberish];
838
+ type OutputTuple = [amount: bigint];
839
+ interface OutputObject {
840
+ amount: bigint;
841
+ }
842
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
843
+ type Filter = TypedDeferredTopicFilter<Event>;
844
+ type Log = TypedEventLog<Event>;
845
+ type LogDescription = TypedLogDescription<Event>;
846
+ }
847
+ export declare namespace VaultUpdatedEvent {
848
+ type InputTuple = [oldVault: AddressLike, newVault: AddressLike];
849
+ type OutputTuple = [oldVault: string, newVault: string];
850
+ interface OutputObject {
851
+ oldVault: string;
852
+ newVault: string;
853
+ }
854
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
855
+ type Filter = TypedDeferredTopicFilter<Event>;
856
+ type Log = TypedEventLog<Event>;
857
+ type LogDescription = TypedLogDescription<Event>;
858
+ }
859
+ export declare namespace VaultWithdrawalFailedEvent {
860
+ type InputTuple = [vault: AddressLike];
861
+ type OutputTuple = [vault: string];
862
+ interface OutputObject {
863
+ vault: string;
864
+ }
865
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
866
+ type Filter = TypedDeferredTopicFilter<Event>;
867
+ type Log = TypedEventLog<Event>;
868
+ type LogDescription = TypedLogDescription<Event>;
869
+ }
870
+ export declare namespace Withdraw_address_uint256_Event {
871
+ type InputTuple = [user: AddressLike, amount: BigNumberish];
872
+ type OutputTuple = [user: string, amount: bigint];
873
+ interface OutputObject {
874
+ user: string;
875
+ amount: bigint;
876
+ }
877
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
878
+ type Filter = TypedDeferredTopicFilter<Event>;
879
+ type Log = TypedEventLog<Event>;
880
+ type LogDescription = TypedLogDescription<Event>;
881
+ }
882
+ export declare namespace Withdraw_address_uint256_uint256_Event {
883
+ type InputTuple = [
884
+ user: AddressLike,
885
+ amount: BigNumberish,
886
+ liquidityBurned: BigNumberish
887
+ ];
888
+ type OutputTuple = [
889
+ user: string,
890
+ amount: bigint,
891
+ liquidityBurned: bigint
892
+ ];
893
+ interface OutputObject {
894
+ user: string;
895
+ amount: bigint;
896
+ liquidityBurned: bigint;
897
+ }
898
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
899
+ type Filter = TypedDeferredTopicFilter<Event>;
900
+ type Log = TypedEventLog<Event>;
901
+ type LogDescription = TypedLogDescription<Event>;
902
+ }
903
+ export declare namespace WithdrawFeeUpdatedEvent {
904
+ type InputTuple = [
905
+ oldWithdrawalFee: BigNumberish,
906
+ newWithdrawalFee: BigNumberish
907
+ ];
908
+ type OutputTuple = [
909
+ oldWithdrawalFee: bigint,
910
+ newWithdrawalFee: bigint
911
+ ];
912
+ interface OutputObject {
913
+ oldWithdrawalFee: bigint;
914
+ newWithdrawalFee: bigint;
915
+ }
916
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
917
+ type Filter = TypedDeferredTopicFilter<Event>;
918
+ type Log = TypedEventLog<Event>;
919
+ type LogDescription = TypedLogDescription<Event>;
920
+ }
921
+ export declare namespace WithdrawalsPauseStatusChangedEvent {
922
+ type InputTuple = [isPaused: boolean];
923
+ type OutputTuple = [isPaused: boolean];
924
+ interface OutputObject {
925
+ isPaused: boolean;
926
+ }
927
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
928
+ type Filter = TypedDeferredTopicFilter<Event>;
929
+ type Log = TypedEventLog<Event>;
930
+ type LogDescription = TypedLogDescription<Event>;
931
+ }
932
+ export interface LendingPool extends BaseContract {
933
+ connect(runner?: ContractRunner | null): LendingPool;
934
+ waitForDeployment(): Promise<this>;
935
+ interface: LendingPoolInterface;
936
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
937
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
938
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
939
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
940
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
941
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
942
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
943
+ listeners(eventName?: string): Promise<Array<Listener>>;
944
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
945
+ BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD: TypedContractMethod<[
946
+ ], [
947
+ bigint
948
+ ], "view">;
949
+ BASE_LIQUIDATION_GRACE_PERIOD: TypedContractMethod<[], [bigint], "view">;
950
+ BASE_LIQUIDATION_THRESHOLD: TypedContractMethod<[], [bigint], "view">;
951
+ borrow: TypedContractMethod<[
952
+ tokenId: BigNumberish,
953
+ amount: BigNumberish
954
+ ], [
955
+ void
956
+ ], "nonpayable">;
957
+ borrowWithInsurance: TypedContractMethod<[
958
+ tokenId: BigNumberish,
959
+ amount: BigNumberish
960
+ ], [
961
+ void
962
+ ], "nonpayable">;
963
+ calculateHealthFactor: TypedContractMethod<[
964
+ userAddress: AddressLike,
965
+ tokenId: BigNumberish
966
+ ], [
967
+ bigint
968
+ ], "view">;
969
+ calculateInsuranceFee: TypedContractMethod<[
970
+ user: AddressLike,
971
+ tokenId: BigNumberish,
972
+ amount: BigNumberish
973
+ ], [
974
+ bigint
975
+ ], "view">;
976
+ canPaybackDebt: TypedContractMethod<[], [boolean], "view">;
977
+ claimCollectorRewards: TypedContractMethod<[], [bigint], "nonpayable">;
978
+ claimReward: TypedContractMethod<[], [boolean], "nonpayable">;
979
+ closeLiquidation: TypedContractMethod<[
980
+ tokenId: BigNumberish
981
+ ], [
982
+ void
983
+ ], "nonpayable">;
984
+ debtToken: TypedContractMethod<[], [string], "view">;
985
+ deposit: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
986
+ depositFee: TypedContractMethod<[], [bigint], "view">;
987
+ depositNFT: TypedContractMethod<[
988
+ tokenId: BigNumberish
989
+ ], [
990
+ void
991
+ ], "nonpayable">;
992
+ depositRewardTokens: TypedContractMethod<[
993
+ amount: BigNumberish
994
+ ], [
995
+ void
996
+ ], "nonpayable">;
997
+ feeCollector: TypedContractMethod<[], [string], "view">;
998
+ finalizeLiquidation: TypedContractMethod<[
999
+ userAddress: AddressLike,
1000
+ tokenId: BigNumberish
1001
+ ], [
1002
+ void
1003
+ ], "nonpayable">;
1004
+ getAllUserData: TypedContractMethod<[
1005
+ userAddress: AddressLike
1006
+ ], [
1007
+ ILendingPool.UserDataViewStructOutput
1008
+ ], "view">;
1009
+ getEligibleUserDeposits: TypedContractMethod<[
1010
+ user: AddressLike
1011
+ ], [
1012
+ bigint
1013
+ ], "view">;
1014
+ getNFTPrice: TypedContractMethod<[tokenId: BigNumberish], [bigint], "view">;
1015
+ getNormalizedDebt: TypedContractMethod<[], [bigint], "view">;
1016
+ getNormalizedIncome: TypedContractMethod<[], [bigint], "view">;
1017
+ getPendingReward: TypedContractMethod<[user: AddressLike], [bigint], "view">;
1018
+ getPosition: TypedContractMethod<[
1019
+ user: AddressLike,
1020
+ tokenId: BigNumberish
1021
+ ], [
1022
+ ILendingPool.NFTPositionStructOutput
1023
+ ], "view">;
1024
+ getPositionData: TypedContractMethod<[
1025
+ user: AddressLike,
1026
+ tokenId: BigNumberish
1027
+ ], [
1028
+ [bigint, bigint]
1029
+ ], "view">;
1030
+ getPositionDebt: TypedContractMethod<[
1031
+ userAddress: AddressLike,
1032
+ tokenId: BigNumberish
1033
+ ], [
1034
+ bigint
1035
+ ], "view">;
1036
+ getPositionScaledDebt: TypedContractMethod<[
1037
+ userAddress: AddressLike,
1038
+ tokenId: BigNumberish
1039
+ ], [
1040
+ bigint
1041
+ ], "view">;
1042
+ getPositionView: TypedContractMethod<[
1043
+ user: AddressLike,
1044
+ tokenId: BigNumberish
1045
+ ], [
1046
+ ILendingPool.NFTPositionViewStructOutput
1047
+ ], "view">;
1048
+ getPositionsScaledDebt: TypedContractMethod<[
1049
+ userAddress: AddressLike
1050
+ ], [
1051
+ bigint
1052
+ ], "view">;
1053
+ getPrimeRate: TypedContractMethod<[], [bigint], "view">;
1054
+ getRAACNFTAddress: TypedContractMethod<[], [string], "view">;
1055
+ getReserveRateData: TypedContractMethod<[
1056
+ ], [
1057
+ ReserveLibrary.ReserveRateDataStructOutput
1058
+ ], "view">;
1059
+ getReserveState: TypedContractMethod<[
1060
+ ], [
1061
+ ReserveLibrary.ReserveDataStructOutput
1062
+ ], "view">;
1063
+ getUnclaimedVaultRewards: TypedContractMethod<[], [bigint], "view">;
1064
+ getUninsuredBalance: TypedContractMethod<[
1065
+ user: AddressLike,
1066
+ tokenId: BigNumberish
1067
+ ], [
1068
+ bigint
1069
+ ], "view">;
1070
+ getUserCollateralValue: TypedContractMethod<[
1071
+ userAddress: AddressLike
1072
+ ], [
1073
+ bigint
1074
+ ], "view">;
1075
+ getUserDebt: TypedContractMethod<[
1076
+ userAddress: AddressLike
1077
+ ], [
1078
+ bigint
1079
+ ], "view">;
1080
+ getUserDeposits: TypedContractMethod<[user: AddressLike], [bigint], "view">;
1081
+ getUserDepositsInStabilityPool: TypedContractMethod<[
1082
+ user: AddressLike
1083
+ ], [
1084
+ bigint
1085
+ ], "view">;
1086
+ getUserOfDepositedNFT: TypedContractMethod<[
1087
+ nftId: BigNumberish
1088
+ ], [
1089
+ string
1090
+ ], "view">;
1091
+ healthFactorLiquidationThreshold: TypedContractMethod<[], [bigint], "view">;
1092
+ initiateLiquidation: TypedContractMethod<[
1093
+ userAddress: AddressLike,
1094
+ tokenId: BigNumberish
1095
+ ], [
1096
+ void
1097
+ ], "nonpayable">;
1098
+ insuranceFee: TypedContractMethod<[], [bigint], "view">;
1099
+ liquidationGracePeriod: TypedContractMethod<[], [bigint], "view">;
1100
+ liquidationThreshold: TypedContractMethod<[], [bigint], "view">;
1101
+ liquidityBufferRatio: TypedContractMethod<[], [bigint], "view">;
1102
+ onERC721Received: TypedContractMethod<[
1103
+ arg0: AddressLike,
1104
+ arg1: AddressLike,
1105
+ arg2: BigNumberish,
1106
+ arg3: BytesLike
1107
+ ], [
1108
+ string
1109
+ ], "nonpayable">;
1110
+ owner: TypedContractMethod<[], [string], "view">;
1111
+ pause: TypedContractMethod<[], [void], "nonpayable">;
1112
+ paused: TypedContractMethod<[], [boolean], "view">;
1113
+ positions: TypedContractMethod<[
1114
+ arg0: AddressLike,
1115
+ arg1: BigNumberish
1116
+ ], [
1117
+ [
1118
+ bigint,
1119
+ boolean,
1120
+ bigint,
1121
+ bigint,
1122
+ boolean,
1123
+ bigint
1124
+ ] & {
1125
+ rawDebtBalance: bigint;
1126
+ isUnderLiquidation: boolean;
1127
+ liquidationStartTime: bigint;
1128
+ positionIndex: bigint;
1129
+ isInsured: boolean;
1130
+ rawInsuredBalance: bigint;
1131
+ }
1132
+ ], "view">;
1133
+ priceOracle: TypedContractMethod<[], [string], "view">;
1134
+ primeRateOracle: TypedContractMethod<[], [string], "view">;
1135
+ rToken: TypedContractMethod<[], [string], "view">;
1136
+ raacNFT: TypedContractMethod<[], [string], "view">;
1137
+ rateData: TypedContractMethod<[
1138
+ ], [
1139
+ [
1140
+ bigint,
1141
+ bigint,
1142
+ bigint,
1143
+ bigint,
1144
+ bigint,
1145
+ bigint,
1146
+ bigint,
1147
+ bigint
1148
+ ] & {
1149
+ currentLiquidityRate: bigint;
1150
+ currentUsageRate: bigint;
1151
+ primeRate: bigint;
1152
+ baseRate: bigint;
1153
+ optimalRate: bigint;
1154
+ maxRate: bigint;
1155
+ optimalUtilizationRate: bigint;
1156
+ protocolFeeRate: bigint;
1157
+ }
1158
+ ], "view">;
1159
+ renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
1160
+ repay: TypedContractMethod<[
1161
+ tokenId: BigNumberish,
1162
+ amount: BigNumberish
1163
+ ], [
1164
+ void
1165
+ ], "nonpayable">;
1166
+ repayOnBehalf: TypedContractMethod<[
1167
+ tokenId: BigNumberish,
1168
+ amount: BigNumberish,
1169
+ onBehalfOf: AddressLike
1170
+ ], [
1171
+ void
1172
+ ], "nonpayable">;
1173
+ rescueToken: TypedContractMethod<[
1174
+ tokenAddress: AddressLike,
1175
+ recipient: AddressLike,
1176
+ amount: BigNumberish
1177
+ ], [
1178
+ void
1179
+ ], "nonpayable">;
1180
+ reserve: TypedContractMethod<[
1181
+ ], [
1182
+ [
1183
+ string,
1184
+ string,
1185
+ string,
1186
+ bigint,
1187
+ bigint,
1188
+ bigint,
1189
+ bigint,
1190
+ bigint
1191
+ ] & {
1192
+ reserveRTokenAddress: string;
1193
+ reserveAssetAddress: string;
1194
+ reserveDebtTokenAddress: string;
1195
+ totalLiquidity: bigint;
1196
+ totalUsage: bigint;
1197
+ liquidityIndex: bigint;
1198
+ usageIndex: bigint;
1199
+ lastUpdateTimestamp: bigint;
1200
+ }
1201
+ ], "view">;
1202
+ reserveAssetToken: TypedContractMethod<[], [string], "view">;
1203
+ rewardData: TypedContractMethod<[
1204
+ ], [
1205
+ [
1206
+ string,
1207
+ bigint,
1208
+ bigint
1209
+ ] & {
1210
+ rewardToken: string;
1211
+ rewardPerShare: bigint;
1212
+ lastUpdateTime: bigint;
1213
+ }
1214
+ ], "view">;
1215
+ setFeeCollector: TypedContractMethod<[
1216
+ newFeeCollector: AddressLike
1217
+ ], [
1218
+ void
1219
+ ], "nonpayable">;
1220
+ setParameter: TypedContractMethod<[
1221
+ param: BigNumberish,
1222
+ newValue: BigNumberish
1223
+ ], [
1224
+ void
1225
+ ], "nonpayable">;
1226
+ setPrimeRate: TypedContractMethod<[
1227
+ newPrimeRate: BigNumberish
1228
+ ], [
1229
+ void
1230
+ ], "nonpayable">;
1231
+ setPrimeRateOracle: TypedContractMethod<[
1232
+ newOracle: AddressLike
1233
+ ], [
1234
+ void
1235
+ ], "nonpayable">;
1236
+ setRewardToken: TypedContractMethod<[
1237
+ rewardToken: AddressLike
1238
+ ], [
1239
+ void
1240
+ ], "nonpayable">;
1241
+ setStabilityPool: TypedContractMethod<[
1242
+ newStabilityPool: AddressLike
1243
+ ], [
1244
+ void
1245
+ ], "nonpayable">;
1246
+ setVault: TypedContractMethod<[newVault: AddressLike], [void], "nonpayable">;
1247
+ stabilityPool: TypedContractMethod<[], [string], "view">;
1248
+ transferAccruedDust: TypedContractMethod<[
1249
+ recipient: AddressLike,
1250
+ amount: BigNumberish
1251
+ ], [
1252
+ void
1253
+ ], "nonpayable">;
1254
+ transferOwnership: TypedContractMethod<[
1255
+ newOwner: AddressLike
1256
+ ], [
1257
+ void
1258
+ ], "nonpayable">;
1259
+ unpause: TypedContractMethod<[], [void], "nonpayable">;
1260
+ updateState: TypedContractMethod<[], [void], "nonpayable">;
1261
+ updateUserReward: TypedContractMethod<[
1262
+ user: AddressLike
1263
+ ], [
1264
+ void
1265
+ ], "nonpayable">;
1266
+ userData: TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
1267
+ vault: TypedContractMethod<[], [string], "view">;
1268
+ vaultRewards: TypedContractMethod<[
1269
+ ], [
1270
+ [
1271
+ bigint,
1272
+ bigint,
1273
+ bigint,
1274
+ bigint,
1275
+ bigint,
1276
+ bigint
1277
+ ] & {
1278
+ totalDeposits: bigint;
1279
+ unclaimedRewards: bigint;
1280
+ lastClaimTime: bigint;
1281
+ lastSharePrice: bigint;
1282
+ lastWithdrawalTime: bigint;
1283
+ lastDepositTime: bigint;
1284
+ }
1285
+ ], "view">;
1286
+ withdraw: TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
1287
+ withdrawNFT: TypedContractMethod<[
1288
+ tokenId: BigNumberish
1289
+ ], [
1290
+ void
1291
+ ], "nonpayable">;
1292
+ withdrawalFee: TypedContractMethod<[], [bigint], "view">;
1293
+ withdrawalsPaused: TypedContractMethod<[], [boolean], "view">;
1294
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
1295
+ getFunction(nameOrSignature: "BASE_HEALTH_FACTOR_LIQUIDATION_THRESHOLD"): TypedContractMethod<[], [bigint], "view">;
1296
+ getFunction(nameOrSignature: "BASE_LIQUIDATION_GRACE_PERIOD"): TypedContractMethod<[], [bigint], "view">;
1297
+ getFunction(nameOrSignature: "BASE_LIQUIDATION_THRESHOLD"): TypedContractMethod<[], [bigint], "view">;
1298
+ getFunction(nameOrSignature: "borrow"): TypedContractMethod<[
1299
+ tokenId: BigNumberish,
1300
+ amount: BigNumberish
1301
+ ], [
1302
+ void
1303
+ ], "nonpayable">;
1304
+ getFunction(nameOrSignature: "borrowWithInsurance"): TypedContractMethod<[
1305
+ tokenId: BigNumberish,
1306
+ amount: BigNumberish
1307
+ ], [
1308
+ void
1309
+ ], "nonpayable">;
1310
+ getFunction(nameOrSignature: "calculateHealthFactor"): TypedContractMethod<[
1311
+ userAddress: AddressLike,
1312
+ tokenId: BigNumberish
1313
+ ], [
1314
+ bigint
1315
+ ], "view">;
1316
+ getFunction(nameOrSignature: "calculateInsuranceFee"): TypedContractMethod<[
1317
+ user: AddressLike,
1318
+ tokenId: BigNumberish,
1319
+ amount: BigNumberish
1320
+ ], [
1321
+ bigint
1322
+ ], "view">;
1323
+ getFunction(nameOrSignature: "canPaybackDebt"): TypedContractMethod<[], [boolean], "view">;
1324
+ getFunction(nameOrSignature: "claimCollectorRewards"): TypedContractMethod<[], [bigint], "nonpayable">;
1325
+ getFunction(nameOrSignature: "claimReward"): TypedContractMethod<[], [boolean], "nonpayable">;
1326
+ getFunction(nameOrSignature: "closeLiquidation"): TypedContractMethod<[tokenId: BigNumberish], [void], "nonpayable">;
1327
+ getFunction(nameOrSignature: "debtToken"): TypedContractMethod<[], [string], "view">;
1328
+ getFunction(nameOrSignature: "deposit"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
1329
+ getFunction(nameOrSignature: "depositFee"): TypedContractMethod<[], [bigint], "view">;
1330
+ getFunction(nameOrSignature: "depositNFT"): TypedContractMethod<[tokenId: BigNumberish], [void], "nonpayable">;
1331
+ getFunction(nameOrSignature: "depositRewardTokens"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
1332
+ getFunction(nameOrSignature: "feeCollector"): TypedContractMethod<[], [string], "view">;
1333
+ getFunction(nameOrSignature: "finalizeLiquidation"): TypedContractMethod<[
1334
+ userAddress: AddressLike,
1335
+ tokenId: BigNumberish
1336
+ ], [
1337
+ void
1338
+ ], "nonpayable">;
1339
+ getFunction(nameOrSignature: "getAllUserData"): TypedContractMethod<[
1340
+ userAddress: AddressLike
1341
+ ], [
1342
+ ILendingPool.UserDataViewStructOutput
1343
+ ], "view">;
1344
+ getFunction(nameOrSignature: "getEligibleUserDeposits"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
1345
+ getFunction(nameOrSignature: "getNFTPrice"): TypedContractMethod<[tokenId: BigNumberish], [bigint], "view">;
1346
+ getFunction(nameOrSignature: "getNormalizedDebt"): TypedContractMethod<[], [bigint], "view">;
1347
+ getFunction(nameOrSignature: "getNormalizedIncome"): TypedContractMethod<[], [bigint], "view">;
1348
+ getFunction(nameOrSignature: "getPendingReward"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
1349
+ getFunction(nameOrSignature: "getPosition"): TypedContractMethod<[
1350
+ user: AddressLike,
1351
+ tokenId: BigNumberish
1352
+ ], [
1353
+ ILendingPool.NFTPositionStructOutput
1354
+ ], "view">;
1355
+ getFunction(nameOrSignature: "getPositionData"): TypedContractMethod<[
1356
+ user: AddressLike,
1357
+ tokenId: BigNumberish
1358
+ ], [
1359
+ [bigint, bigint]
1360
+ ], "view">;
1361
+ getFunction(nameOrSignature: "getPositionDebt"): TypedContractMethod<[
1362
+ userAddress: AddressLike,
1363
+ tokenId: BigNumberish
1364
+ ], [
1365
+ bigint
1366
+ ], "view">;
1367
+ getFunction(nameOrSignature: "getPositionScaledDebt"): TypedContractMethod<[
1368
+ userAddress: AddressLike,
1369
+ tokenId: BigNumberish
1370
+ ], [
1371
+ bigint
1372
+ ], "view">;
1373
+ getFunction(nameOrSignature: "getPositionView"): TypedContractMethod<[
1374
+ user: AddressLike,
1375
+ tokenId: BigNumberish
1376
+ ], [
1377
+ ILendingPool.NFTPositionViewStructOutput
1378
+ ], "view">;
1379
+ getFunction(nameOrSignature: "getPositionsScaledDebt"): TypedContractMethod<[userAddress: AddressLike], [bigint], "view">;
1380
+ getFunction(nameOrSignature: "getPrimeRate"): TypedContractMethod<[], [bigint], "view">;
1381
+ getFunction(nameOrSignature: "getRAACNFTAddress"): TypedContractMethod<[], [string], "view">;
1382
+ getFunction(nameOrSignature: "getReserveRateData"): TypedContractMethod<[
1383
+ ], [
1384
+ ReserveLibrary.ReserveRateDataStructOutput
1385
+ ], "view">;
1386
+ getFunction(nameOrSignature: "getReserveState"): TypedContractMethod<[], [ReserveLibrary.ReserveDataStructOutput], "view">;
1387
+ getFunction(nameOrSignature: "getUnclaimedVaultRewards"): TypedContractMethod<[], [bigint], "view">;
1388
+ getFunction(nameOrSignature: "getUninsuredBalance"): TypedContractMethod<[
1389
+ user: AddressLike,
1390
+ tokenId: BigNumberish
1391
+ ], [
1392
+ bigint
1393
+ ], "view">;
1394
+ getFunction(nameOrSignature: "getUserCollateralValue"): TypedContractMethod<[userAddress: AddressLike], [bigint], "view">;
1395
+ getFunction(nameOrSignature: "getUserDebt"): TypedContractMethod<[userAddress: AddressLike], [bigint], "view">;
1396
+ getFunction(nameOrSignature: "getUserDeposits"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
1397
+ getFunction(nameOrSignature: "getUserDepositsInStabilityPool"): TypedContractMethod<[user: AddressLike], [bigint], "view">;
1398
+ getFunction(nameOrSignature: "getUserOfDepositedNFT"): TypedContractMethod<[nftId: BigNumberish], [string], "view">;
1399
+ getFunction(nameOrSignature: "healthFactorLiquidationThreshold"): TypedContractMethod<[], [bigint], "view">;
1400
+ getFunction(nameOrSignature: "initiateLiquidation"): TypedContractMethod<[
1401
+ userAddress: AddressLike,
1402
+ tokenId: BigNumberish
1403
+ ], [
1404
+ void
1405
+ ], "nonpayable">;
1406
+ getFunction(nameOrSignature: "insuranceFee"): TypedContractMethod<[], [bigint], "view">;
1407
+ getFunction(nameOrSignature: "liquidationGracePeriod"): TypedContractMethod<[], [bigint], "view">;
1408
+ getFunction(nameOrSignature: "liquidationThreshold"): TypedContractMethod<[], [bigint], "view">;
1409
+ getFunction(nameOrSignature: "liquidityBufferRatio"): TypedContractMethod<[], [bigint], "view">;
1410
+ getFunction(nameOrSignature: "onERC721Received"): TypedContractMethod<[
1411
+ arg0: AddressLike,
1412
+ arg1: AddressLike,
1413
+ arg2: BigNumberish,
1414
+ arg3: BytesLike
1415
+ ], [
1416
+ string
1417
+ ], "nonpayable">;
1418
+ getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
1419
+ getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
1420
+ getFunction(nameOrSignature: "paused"): TypedContractMethod<[], [boolean], "view">;
1421
+ getFunction(nameOrSignature: "positions"): TypedContractMethod<[
1422
+ arg0: AddressLike,
1423
+ arg1: BigNumberish
1424
+ ], [
1425
+ [
1426
+ bigint,
1427
+ boolean,
1428
+ bigint,
1429
+ bigint,
1430
+ boolean,
1431
+ bigint
1432
+ ] & {
1433
+ rawDebtBalance: bigint;
1434
+ isUnderLiquidation: boolean;
1435
+ liquidationStartTime: bigint;
1436
+ positionIndex: bigint;
1437
+ isInsured: boolean;
1438
+ rawInsuredBalance: bigint;
1439
+ }
1440
+ ], "view">;
1441
+ getFunction(nameOrSignature: "priceOracle"): TypedContractMethod<[], [string], "view">;
1442
+ getFunction(nameOrSignature: "primeRateOracle"): TypedContractMethod<[], [string], "view">;
1443
+ getFunction(nameOrSignature: "rToken"): TypedContractMethod<[], [string], "view">;
1444
+ getFunction(nameOrSignature: "raacNFT"): TypedContractMethod<[], [string], "view">;
1445
+ getFunction(nameOrSignature: "rateData"): TypedContractMethod<[
1446
+ ], [
1447
+ [
1448
+ bigint,
1449
+ bigint,
1450
+ bigint,
1451
+ bigint,
1452
+ bigint,
1453
+ bigint,
1454
+ bigint,
1455
+ bigint
1456
+ ] & {
1457
+ currentLiquidityRate: bigint;
1458
+ currentUsageRate: bigint;
1459
+ primeRate: bigint;
1460
+ baseRate: bigint;
1461
+ optimalRate: bigint;
1462
+ maxRate: bigint;
1463
+ optimalUtilizationRate: bigint;
1464
+ protocolFeeRate: bigint;
1465
+ }
1466
+ ], "view">;
1467
+ getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
1468
+ getFunction(nameOrSignature: "repay"): TypedContractMethod<[
1469
+ tokenId: BigNumberish,
1470
+ amount: BigNumberish
1471
+ ], [
1472
+ void
1473
+ ], "nonpayable">;
1474
+ getFunction(nameOrSignature: "repayOnBehalf"): TypedContractMethod<[
1475
+ tokenId: BigNumberish,
1476
+ amount: BigNumberish,
1477
+ onBehalfOf: AddressLike
1478
+ ], [
1479
+ void
1480
+ ], "nonpayable">;
1481
+ getFunction(nameOrSignature: "rescueToken"): TypedContractMethod<[
1482
+ tokenAddress: AddressLike,
1483
+ recipient: AddressLike,
1484
+ amount: BigNumberish
1485
+ ], [
1486
+ void
1487
+ ], "nonpayable">;
1488
+ getFunction(nameOrSignature: "reserve"): TypedContractMethod<[
1489
+ ], [
1490
+ [
1491
+ string,
1492
+ string,
1493
+ string,
1494
+ bigint,
1495
+ bigint,
1496
+ bigint,
1497
+ bigint,
1498
+ bigint
1499
+ ] & {
1500
+ reserveRTokenAddress: string;
1501
+ reserveAssetAddress: string;
1502
+ reserveDebtTokenAddress: string;
1503
+ totalLiquidity: bigint;
1504
+ totalUsage: bigint;
1505
+ liquidityIndex: bigint;
1506
+ usageIndex: bigint;
1507
+ lastUpdateTimestamp: bigint;
1508
+ }
1509
+ ], "view">;
1510
+ getFunction(nameOrSignature: "reserveAssetToken"): TypedContractMethod<[], [string], "view">;
1511
+ getFunction(nameOrSignature: "rewardData"): TypedContractMethod<[
1512
+ ], [
1513
+ [
1514
+ string,
1515
+ bigint,
1516
+ bigint
1517
+ ] & {
1518
+ rewardToken: string;
1519
+ rewardPerShare: bigint;
1520
+ lastUpdateTime: bigint;
1521
+ }
1522
+ ], "view">;
1523
+ getFunction(nameOrSignature: "setFeeCollector"): TypedContractMethod<[newFeeCollector: AddressLike], [void], "nonpayable">;
1524
+ getFunction(nameOrSignature: "setParameter"): TypedContractMethod<[
1525
+ param: BigNumberish,
1526
+ newValue: BigNumberish
1527
+ ], [
1528
+ void
1529
+ ], "nonpayable">;
1530
+ getFunction(nameOrSignature: "setPrimeRate"): TypedContractMethod<[newPrimeRate: BigNumberish], [void], "nonpayable">;
1531
+ getFunction(nameOrSignature: "setPrimeRateOracle"): TypedContractMethod<[newOracle: AddressLike], [void], "nonpayable">;
1532
+ getFunction(nameOrSignature: "setRewardToken"): TypedContractMethod<[rewardToken: AddressLike], [void], "nonpayable">;
1533
+ getFunction(nameOrSignature: "setStabilityPool"): TypedContractMethod<[newStabilityPool: AddressLike], [void], "nonpayable">;
1534
+ getFunction(nameOrSignature: "setVault"): TypedContractMethod<[newVault: AddressLike], [void], "nonpayable">;
1535
+ getFunction(nameOrSignature: "stabilityPool"): TypedContractMethod<[], [string], "view">;
1536
+ getFunction(nameOrSignature: "transferAccruedDust"): TypedContractMethod<[
1537
+ recipient: AddressLike,
1538
+ amount: BigNumberish
1539
+ ], [
1540
+ void
1541
+ ], "nonpayable">;
1542
+ getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
1543
+ getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
1544
+ getFunction(nameOrSignature: "updateState"): TypedContractMethod<[], [void], "nonpayable">;
1545
+ getFunction(nameOrSignature: "updateUserReward"): TypedContractMethod<[user: AddressLike], [void], "nonpayable">;
1546
+ getFunction(nameOrSignature: "userData"): TypedContractMethod<[arg0: AddressLike], [bigint], "view">;
1547
+ getFunction(nameOrSignature: "vault"): TypedContractMethod<[], [string], "view">;
1548
+ getFunction(nameOrSignature: "vaultRewards"): TypedContractMethod<[
1549
+ ], [
1550
+ [
1551
+ bigint,
1552
+ bigint,
1553
+ bigint,
1554
+ bigint,
1555
+ bigint,
1556
+ bigint
1557
+ ] & {
1558
+ totalDeposits: bigint;
1559
+ unclaimedRewards: bigint;
1560
+ lastClaimTime: bigint;
1561
+ lastSharePrice: bigint;
1562
+ lastWithdrawalTime: bigint;
1563
+ lastDepositTime: bigint;
1564
+ }
1565
+ ], "view">;
1566
+ getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
1567
+ getFunction(nameOrSignature: "withdrawNFT"): TypedContractMethod<[tokenId: BigNumberish], [void], "nonpayable">;
1568
+ getFunction(nameOrSignature: "withdrawalFee"): TypedContractMethod<[], [bigint], "view">;
1569
+ getFunction(nameOrSignature: "withdrawalsPaused"): TypedContractMethod<[], [boolean], "view">;
1570
+ getEvent(key: "Borrow"): TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
1571
+ getEvent(key: "CanPaybackDebtChanged"): TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
1572
+ getEvent(key: "Deposit(address,uint256,uint256)"): TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
1573
+ getEvent(key: "Deposit(address,uint256,uint256)"): TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
1574
+ getEvent(key: "DepositFeeUpdated"): TypedContractEvent<DepositFeeUpdatedEvent.InputTuple, DepositFeeUpdatedEvent.OutputTuple, DepositFeeUpdatedEvent.OutputObject>;
1575
+ getEvent(key: "FeeCollectorUpdated"): TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
1576
+ getEvent(key: "InsufficientFees"): TypedContractEvent<InsufficientFeesEvent.InputTuple, InsufficientFeesEvent.OutputTuple, InsufficientFeesEvent.OutputObject>;
1577
+ getEvent(key: "InsuranceFeeUpdated"): TypedContractEvent<InsuranceFeeUpdatedEvent.InputTuple, InsuranceFeeUpdatedEvent.OutputTuple, InsuranceFeeUpdatedEvent.OutputObject>;
1578
+ getEvent(key: "InsuredNFT"): TypedContractEvent<InsuredNFTEvent.InputTuple, InsuredNFTEvent.OutputTuple, InsuredNFTEvent.OutputObject>;
1579
+ getEvent(key: "InterestRatesUpdated"): TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
1580
+ getEvent(key: "Liquidation"): TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
1581
+ getEvent(key: "LiquidationClosed"): TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
1582
+ getEvent(key: "LiquidationFinalized"): TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
1583
+ getEvent(key: "LiquidationInitiated"): TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
1584
+ getEvent(key: "LiquidationParametersUpdated"): TypedContractEvent<LiquidationParametersUpdatedEvent.InputTuple, LiquidationParametersUpdatedEvent.OutputTuple, LiquidationParametersUpdatedEvent.OutputObject>;
1585
+ getEvent(key: "LiquidityBufferRatioUpdated"): TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
1586
+ getEvent(key: "LiquidityRebalanced"): TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
1587
+ getEvent(key: "NFTDeposited"): TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
1588
+ getEvent(key: "NFTWithdrawn"): TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
1589
+ getEvent(key: "NotFeeCollector"): TypedContractEvent<NotFeeCollectorEvent.InputTuple, NotFeeCollectorEvent.OutputTuple, NotFeeCollectorEvent.OutputObject>;
1590
+ getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
1591
+ getEvent(key: "Paused"): TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
1592
+ getEvent(key: "PrimeRateUpdated"): TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
1593
+ getEvent(key: "ProtocolFeeRateUpdated"): TypedContractEvent<ProtocolFeeRateUpdatedEvent.InputTuple, ProtocolFeeRateUpdatedEvent.OutputTuple, ProtocolFeeRateUpdatedEvent.OutputObject>;
1594
+ getEvent(key: "ProtocolFeesCollected"): TypedContractEvent<ProtocolFeesCollectedEvent.InputTuple, ProtocolFeesCollectedEvent.OutputTuple, ProtocolFeesCollectedEvent.OutputObject>;
1595
+ getEvent(key: "ProtocolFeesWithdrawn"): TypedContractEvent<ProtocolFeesWithdrawnEvent.InputTuple, ProtocolFeesWithdrawnEvent.OutputTuple, ProtocolFeesWithdrawnEvent.OutputObject>;
1596
+ getEvent(key: "Repay"): TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
1597
+ getEvent(key: "ReserveInterestsUpdated"): TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
1598
+ getEvent(key: "RewardClaimed"): TypedContractEvent<RewardClaimedEvent.InputTuple, RewardClaimedEvent.OutputTuple, RewardClaimedEvent.OutputObject>;
1599
+ getEvent(key: "RewardDistributed"): TypedContractEvent<RewardDistributedEvent.InputTuple, RewardDistributedEvent.OutputTuple, RewardDistributedEvent.OutputObject>;
1600
+ getEvent(key: "RewardParametersUpdated"): TypedContractEvent<RewardParametersUpdatedEvent.InputTuple, RewardParametersUpdatedEvent.OutputTuple, RewardParametersUpdatedEvent.OutputObject>;
1601
+ getEvent(key: "RewardTokenAdded"): TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
1602
+ getEvent(key: "RewardTokensDeposited"): TypedContractEvent<RewardTokensDepositedEvent.InputTuple, RewardTokensDepositedEvent.OutputTuple, RewardTokensDepositedEvent.OutputObject>;
1603
+ getEvent(key: "StabilityPoolUpdated"): TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
1604
+ getEvent(key: "Unpaused"): TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
1605
+ getEvent(key: "VaultRewardsClaimed"): TypedContractEvent<VaultRewardsClaimedEvent.InputTuple, VaultRewardsClaimedEvent.OutputTuple, VaultRewardsClaimedEvent.OutputObject>;
1606
+ getEvent(key: "VaultUpdated"): TypedContractEvent<VaultUpdatedEvent.InputTuple, VaultUpdatedEvent.OutputTuple, VaultUpdatedEvent.OutputObject>;
1607
+ getEvent(key: "VaultWithdrawalFailed"): TypedContractEvent<VaultWithdrawalFailedEvent.InputTuple, VaultWithdrawalFailedEvent.OutputTuple, VaultWithdrawalFailedEvent.OutputObject>;
1608
+ getEvent(key: "Withdraw(address,uint256)"): TypedContractEvent<Withdraw_address_uint256_Event.InputTuple, Withdraw_address_uint256_Event.OutputTuple, Withdraw_address_uint256_Event.OutputObject>;
1609
+ getEvent(key: "Withdraw(address,uint256,uint256)"): TypedContractEvent<Withdraw_address_uint256_uint256_Event.InputTuple, Withdraw_address_uint256_uint256_Event.OutputTuple, Withdraw_address_uint256_uint256_Event.OutputObject>;
1610
+ getEvent(key: "WithdrawFeeUpdated"): TypedContractEvent<WithdrawFeeUpdatedEvent.InputTuple, WithdrawFeeUpdatedEvent.OutputTuple, WithdrawFeeUpdatedEvent.OutputObject>;
1611
+ getEvent(key: "WithdrawalsPauseStatusChanged"): TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
1612
+ filters: {
1613
+ "Borrow(address,uint256)": TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
1614
+ Borrow: TypedContractEvent<BorrowEvent.InputTuple, BorrowEvent.OutputTuple, BorrowEvent.OutputObject>;
1615
+ "CanPaybackDebtChanged(bool)": TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
1616
+ CanPaybackDebtChanged: TypedContractEvent<CanPaybackDebtChangedEvent.InputTuple, CanPaybackDebtChangedEvent.OutputTuple, CanPaybackDebtChangedEvent.OutputObject>;
1617
+ "Deposit(address,uint256,uint256)": TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
1618
+ "Deposit(address,uint256,uint256)": TypedContractEvent<Deposit_address_uint256_uint256_Event.InputTuple, Deposit_address_uint256_uint256_Event.OutputTuple, Deposit_address_uint256_uint256_Event.OutputObject>;
1619
+ "DepositFeeUpdated(uint256,uint256)": TypedContractEvent<DepositFeeUpdatedEvent.InputTuple, DepositFeeUpdatedEvent.OutputTuple, DepositFeeUpdatedEvent.OutputObject>;
1620
+ DepositFeeUpdated: TypedContractEvent<DepositFeeUpdatedEvent.InputTuple, DepositFeeUpdatedEvent.OutputTuple, DepositFeeUpdatedEvent.OutputObject>;
1621
+ "FeeCollectorUpdated(address,address)": TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
1622
+ FeeCollectorUpdated: TypedContractEvent<FeeCollectorUpdatedEvent.InputTuple, FeeCollectorUpdatedEvent.OutputTuple, FeeCollectorUpdatedEvent.OutputObject>;
1623
+ "InsufficientFees()": TypedContractEvent<InsufficientFeesEvent.InputTuple, InsufficientFeesEvent.OutputTuple, InsufficientFeesEvent.OutputObject>;
1624
+ InsufficientFees: TypedContractEvent<InsufficientFeesEvent.InputTuple, InsufficientFeesEvent.OutputTuple, InsufficientFeesEvent.OutputObject>;
1625
+ "InsuranceFeeUpdated(uint256,uint256)": TypedContractEvent<InsuranceFeeUpdatedEvent.InputTuple, InsuranceFeeUpdatedEvent.OutputTuple, InsuranceFeeUpdatedEvent.OutputObject>;
1626
+ InsuranceFeeUpdated: TypedContractEvent<InsuranceFeeUpdatedEvent.InputTuple, InsuranceFeeUpdatedEvent.OutputTuple, InsuranceFeeUpdatedEvent.OutputObject>;
1627
+ "InsuredNFT(uint256,uint256)": TypedContractEvent<InsuredNFTEvent.InputTuple, InsuredNFTEvent.OutputTuple, InsuredNFTEvent.OutputObject>;
1628
+ InsuredNFT: TypedContractEvent<InsuredNFTEvent.InputTuple, InsuredNFTEvent.OutputTuple, InsuredNFTEvent.OutputObject>;
1629
+ "InterestRatesUpdated(uint256,uint256)": TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
1630
+ InterestRatesUpdated: TypedContractEvent<InterestRatesUpdatedEvent.InputTuple, InterestRatesUpdatedEvent.OutputTuple, InterestRatesUpdatedEvent.OutputObject>;
1631
+ "Liquidation(address,address,uint256,uint256)": TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
1632
+ Liquidation: TypedContractEvent<LiquidationEvent.InputTuple, LiquidationEvent.OutputTuple, LiquidationEvent.OutputObject>;
1633
+ "LiquidationClosed(address,uint256)": TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
1634
+ LiquidationClosed: TypedContractEvent<LiquidationClosedEvent.InputTuple, LiquidationClosedEvent.OutputTuple, LiquidationClosedEvent.OutputObject>;
1635
+ "LiquidationFinalized(address,address,uint256,uint256,uint256)": TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
1636
+ LiquidationFinalized: TypedContractEvent<LiquidationFinalizedEvent.InputTuple, LiquidationFinalizedEvent.OutputTuple, LiquidationFinalizedEvent.OutputObject>;
1637
+ "LiquidationInitiated(address,address,uint256)": TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
1638
+ LiquidationInitiated: TypedContractEvent<LiquidationInitiatedEvent.InputTuple, LiquidationInitiatedEvent.OutputTuple, LiquidationInitiatedEvent.OutputObject>;
1639
+ "LiquidationParametersUpdated(uint256,uint256,uint256)": TypedContractEvent<LiquidationParametersUpdatedEvent.InputTuple, LiquidationParametersUpdatedEvent.OutputTuple, LiquidationParametersUpdatedEvent.OutputObject>;
1640
+ LiquidationParametersUpdated: TypedContractEvent<LiquidationParametersUpdatedEvent.InputTuple, LiquidationParametersUpdatedEvent.OutputTuple, LiquidationParametersUpdatedEvent.OutputObject>;
1641
+ "LiquidityBufferRatioUpdated(uint256,uint256)": TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
1642
+ LiquidityBufferRatioUpdated: TypedContractEvent<LiquidityBufferRatioUpdatedEvent.InputTuple, LiquidityBufferRatioUpdatedEvent.OutputTuple, LiquidityBufferRatioUpdatedEvent.OutputObject>;
1643
+ "LiquidityRebalanced(uint256,uint256)": TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
1644
+ LiquidityRebalanced: TypedContractEvent<LiquidityRebalancedEvent.InputTuple, LiquidityRebalancedEvent.OutputTuple, LiquidityRebalancedEvent.OutputObject>;
1645
+ "NFTDeposited(address,uint256)": TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
1646
+ NFTDeposited: TypedContractEvent<NFTDepositedEvent.InputTuple, NFTDepositedEvent.OutputTuple, NFTDepositedEvent.OutputObject>;
1647
+ "NFTWithdrawn(address,uint256)": TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
1648
+ NFTWithdrawn: TypedContractEvent<NFTWithdrawnEvent.InputTuple, NFTWithdrawnEvent.OutputTuple, NFTWithdrawnEvent.OutputObject>;
1649
+ "NotFeeCollector()": TypedContractEvent<NotFeeCollectorEvent.InputTuple, NotFeeCollectorEvent.OutputTuple, NotFeeCollectorEvent.OutputObject>;
1650
+ NotFeeCollector: TypedContractEvent<NotFeeCollectorEvent.InputTuple, NotFeeCollectorEvent.OutputTuple, NotFeeCollectorEvent.OutputObject>;
1651
+ "OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
1652
+ OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
1653
+ "Paused(address)": TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
1654
+ Paused: TypedContractEvent<PausedEvent.InputTuple, PausedEvent.OutputTuple, PausedEvent.OutputObject>;
1655
+ "PrimeRateUpdated(uint256,uint256)": TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
1656
+ PrimeRateUpdated: TypedContractEvent<PrimeRateUpdatedEvent.InputTuple, PrimeRateUpdatedEvent.OutputTuple, PrimeRateUpdatedEvent.OutputObject>;
1657
+ "ProtocolFeeRateUpdated(uint256,uint256)": TypedContractEvent<ProtocolFeeRateUpdatedEvent.InputTuple, ProtocolFeeRateUpdatedEvent.OutputTuple, ProtocolFeeRateUpdatedEvent.OutputObject>;
1658
+ ProtocolFeeRateUpdated: TypedContractEvent<ProtocolFeeRateUpdatedEvent.InputTuple, ProtocolFeeRateUpdatedEvent.OutputTuple, ProtocolFeeRateUpdatedEvent.OutputObject>;
1659
+ "ProtocolFeesCollected(uint256,uint256)": TypedContractEvent<ProtocolFeesCollectedEvent.InputTuple, ProtocolFeesCollectedEvent.OutputTuple, ProtocolFeesCollectedEvent.OutputObject>;
1660
+ ProtocolFeesCollected: TypedContractEvent<ProtocolFeesCollectedEvent.InputTuple, ProtocolFeesCollectedEvent.OutputTuple, ProtocolFeesCollectedEvent.OutputObject>;
1661
+ "ProtocolFeesWithdrawn(address,uint256)": TypedContractEvent<ProtocolFeesWithdrawnEvent.InputTuple, ProtocolFeesWithdrawnEvent.OutputTuple, ProtocolFeesWithdrawnEvent.OutputObject>;
1662
+ ProtocolFeesWithdrawn: TypedContractEvent<ProtocolFeesWithdrawnEvent.InputTuple, ProtocolFeesWithdrawnEvent.OutputTuple, ProtocolFeesWithdrawnEvent.OutputObject>;
1663
+ "Repay(address,address,uint256)": TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
1664
+ Repay: TypedContractEvent<RepayEvent.InputTuple, RepayEvent.OutputTuple, RepayEvent.OutputObject>;
1665
+ "ReserveInterestsUpdated(uint256,uint256)": TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
1666
+ ReserveInterestsUpdated: TypedContractEvent<ReserveInterestsUpdatedEvent.InputTuple, ReserveInterestsUpdatedEvent.OutputTuple, ReserveInterestsUpdatedEvent.OutputObject>;
1667
+ "RewardClaimed(address,address,uint256)": TypedContractEvent<RewardClaimedEvent.InputTuple, RewardClaimedEvent.OutputTuple, RewardClaimedEvent.OutputObject>;
1668
+ RewardClaimed: TypedContractEvent<RewardClaimedEvent.InputTuple, RewardClaimedEvent.OutputTuple, RewardClaimedEvent.OutputObject>;
1669
+ "RewardDistributed(address,uint256)": TypedContractEvent<RewardDistributedEvent.InputTuple, RewardDistributedEvent.OutputTuple, RewardDistributedEvent.OutputObject>;
1670
+ RewardDistributed: TypedContractEvent<RewardDistributedEvent.InputTuple, RewardDistributedEvent.OutputTuple, RewardDistributedEvent.OutputObject>;
1671
+ "RewardParametersUpdated(address,uint256,uint256)": TypedContractEvent<RewardParametersUpdatedEvent.InputTuple, RewardParametersUpdatedEvent.OutputTuple, RewardParametersUpdatedEvent.OutputObject>;
1672
+ RewardParametersUpdated: TypedContractEvent<RewardParametersUpdatedEvent.InputTuple, RewardParametersUpdatedEvent.OutputTuple, RewardParametersUpdatedEvent.OutputObject>;
1673
+ "RewardTokenAdded(address,uint256,uint256)": TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
1674
+ RewardTokenAdded: TypedContractEvent<RewardTokenAddedEvent.InputTuple, RewardTokenAddedEvent.OutputTuple, RewardTokenAddedEvent.OutputObject>;
1675
+ "RewardTokensDeposited(address,uint256)": TypedContractEvent<RewardTokensDepositedEvent.InputTuple, RewardTokensDepositedEvent.OutputTuple, RewardTokensDepositedEvent.OutputObject>;
1676
+ RewardTokensDeposited: TypedContractEvent<RewardTokensDepositedEvent.InputTuple, RewardTokensDepositedEvent.OutputTuple, RewardTokensDepositedEvent.OutputObject>;
1677
+ "StabilityPoolUpdated(address,address)": TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
1678
+ StabilityPoolUpdated: TypedContractEvent<StabilityPoolUpdatedEvent.InputTuple, StabilityPoolUpdatedEvent.OutputTuple, StabilityPoolUpdatedEvent.OutputObject>;
1679
+ "Unpaused(address)": TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
1680
+ Unpaused: TypedContractEvent<UnpausedEvent.InputTuple, UnpausedEvent.OutputTuple, UnpausedEvent.OutputObject>;
1681
+ "VaultRewardsClaimed(uint256)": TypedContractEvent<VaultRewardsClaimedEvent.InputTuple, VaultRewardsClaimedEvent.OutputTuple, VaultRewardsClaimedEvent.OutputObject>;
1682
+ VaultRewardsClaimed: TypedContractEvent<VaultRewardsClaimedEvent.InputTuple, VaultRewardsClaimedEvent.OutputTuple, VaultRewardsClaimedEvent.OutputObject>;
1683
+ "VaultUpdated(address,address)": TypedContractEvent<VaultUpdatedEvent.InputTuple, VaultUpdatedEvent.OutputTuple, VaultUpdatedEvent.OutputObject>;
1684
+ VaultUpdated: TypedContractEvent<VaultUpdatedEvent.InputTuple, VaultUpdatedEvent.OutputTuple, VaultUpdatedEvent.OutputObject>;
1685
+ "VaultWithdrawalFailed(address)": TypedContractEvent<VaultWithdrawalFailedEvent.InputTuple, VaultWithdrawalFailedEvent.OutputTuple, VaultWithdrawalFailedEvent.OutputObject>;
1686
+ VaultWithdrawalFailed: TypedContractEvent<VaultWithdrawalFailedEvent.InputTuple, VaultWithdrawalFailedEvent.OutputTuple, VaultWithdrawalFailedEvent.OutputObject>;
1687
+ "Withdraw(address,uint256)": TypedContractEvent<Withdraw_address_uint256_Event.InputTuple, Withdraw_address_uint256_Event.OutputTuple, Withdraw_address_uint256_Event.OutputObject>;
1688
+ "Withdraw(address,uint256,uint256)": TypedContractEvent<Withdraw_address_uint256_uint256_Event.InputTuple, Withdraw_address_uint256_uint256_Event.OutputTuple, Withdraw_address_uint256_uint256_Event.OutputObject>;
1689
+ "WithdrawFeeUpdated(uint256,uint256)": TypedContractEvent<WithdrawFeeUpdatedEvent.InputTuple, WithdrawFeeUpdatedEvent.OutputTuple, WithdrawFeeUpdatedEvent.OutputObject>;
1690
+ WithdrawFeeUpdated: TypedContractEvent<WithdrawFeeUpdatedEvent.InputTuple, WithdrawFeeUpdatedEvent.OutputTuple, WithdrawFeeUpdatedEvent.OutputObject>;
1691
+ "WithdrawalsPauseStatusChanged(bool)": TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
1692
+ WithdrawalsPauseStatusChanged: TypedContractEvent<WithdrawalsPauseStatusChangedEvent.InputTuple, WithdrawalsPauseStatusChangedEvent.OutputTuple, WithdrawalsPauseStatusChangedEvent.OutputObject>;
1693
+ };
1694
+ }