@defisaver/positions-sdk 0.0.1

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 (527) hide show
  1. package/cjs/aaveV2/index.d.ts +9 -0
  2. package/cjs/aaveV2/index.js +184 -0
  3. package/cjs/aaveV3/index.d.ts +33 -0
  4. package/cjs/aaveV3/index.js +395 -0
  5. package/cjs/assets/index.d.ts +4 -0
  6. package/cjs/assets/index.js +54 -0
  7. package/cjs/chickenBonds/index.d.ts +3 -0
  8. package/cjs/chickenBonds/index.js +24 -0
  9. package/cjs/compoundV2/index.d.ts +21 -0
  10. package/cjs/compoundV2/index.js +168 -0
  11. package/cjs/compoundV3/index.d.ts +37 -0
  12. package/cjs/compoundV3/index.js +208 -0
  13. package/cjs/config/contracts.d.ts +3028 -0
  14. package/cjs/config/contracts.js +596 -0
  15. package/cjs/constants/index.d.ts +4 -0
  16. package/cjs/constants/index.js +7 -0
  17. package/cjs/contracts.d.ts +40 -0
  18. package/cjs/contracts.js +65 -0
  19. package/cjs/curveUsd/index.d.ts +7 -0
  20. package/cjs/curveUsd/index.js +199 -0
  21. package/cjs/exchange/index.d.ts +3 -0
  22. package/cjs/exchange/index.js +23 -0
  23. package/cjs/helpers/aaveHelpers/index.d.ts +37 -0
  24. package/cjs/helpers/aaveHelpers/index.js +118 -0
  25. package/cjs/helpers/compoundHelpers/index.d.ts +20 -0
  26. package/cjs/helpers/compoundHelpers/index.js +141 -0
  27. package/cjs/helpers/curveUsdHelpers/index.d.ts +8 -0
  28. package/cjs/helpers/curveUsdHelpers/index.js +42 -0
  29. package/cjs/helpers/index.d.ts +5 -0
  30. package/cjs/helpers/index.js +31 -0
  31. package/cjs/helpers/makerHelpers/index.d.ts +5 -0
  32. package/cjs/helpers/makerHelpers/index.js +100 -0
  33. package/cjs/helpers/sparkHelpers/index.d.ts +21 -0
  34. package/cjs/helpers/sparkHelpers/index.js +96 -0
  35. package/cjs/index.d.ts +19 -0
  36. package/cjs/index.js +64 -0
  37. package/cjs/liquity/index.d.ts +7 -0
  38. package/cjs/liquity/index.js +103 -0
  39. package/cjs/maker/index.d.ts +5 -0
  40. package/cjs/maker/index.js +103 -0
  41. package/cjs/markets/aave/index.d.ts +12 -0
  42. package/cjs/markets/aave/index.js +76 -0
  43. package/cjs/markets/aave/marketAssets.d.ts +9 -0
  44. package/cjs/markets/aave/marketAssets.js +31 -0
  45. package/cjs/markets/compound/index.d.ts +12 -0
  46. package/cjs/markets/compound/index.js +85 -0
  47. package/cjs/markets/compound/marketsAssets.d.ts +19 -0
  48. package/cjs/markets/compound/marketsAssets.js +35 -0
  49. package/cjs/markets/curveUsd/index.d.ts +10 -0
  50. package/cjs/markets/curveUsd/index.js +47 -0
  51. package/cjs/markets/index.d.ts +4 -0
  52. package/cjs/markets/index.js +11 -0
  53. package/cjs/markets/spark/index.d.ts +9 -0
  54. package/cjs/markets/spark/index.js +31 -0
  55. package/cjs/markets/spark/marketAssets.d.ts +6 -0
  56. package/cjs/markets/spark/marketAssets.js +12 -0
  57. package/cjs/moneymarket/index.d.ts +1 -0
  58. package/cjs/moneymarket/index.js +17 -0
  59. package/cjs/moneymarket/moneymarketCommonService.d.ts +12 -0
  60. package/cjs/moneymarket/moneymarketCommonService.js +83 -0
  61. package/cjs/morphoAaveV2/index.d.ts +7 -0
  62. package/cjs/morphoAaveV2/index.js +209 -0
  63. package/cjs/morphoAaveV3/index.d.ts +7 -0
  64. package/cjs/morphoAaveV3/index.js +442 -0
  65. package/cjs/multicall/index.d.ts +3 -0
  66. package/cjs/multicall/index.js +31 -0
  67. package/cjs/services/dsrService.d.ts +3 -0
  68. package/cjs/services/dsrService.js +28 -0
  69. package/cjs/services/utils.d.ts +16 -0
  70. package/cjs/services/utils.js +41 -0
  71. package/cjs/spark/index.d.ts +34 -0
  72. package/cjs/spark/index.js +337 -0
  73. package/cjs/staking/index.d.ts +1 -0
  74. package/cjs/staking/index.js +17 -0
  75. package/cjs/staking/staking.d.ts +15 -0
  76. package/cjs/staking/staking.js +162 -0
  77. package/cjs/types/aave.d.ts +229 -0
  78. package/cjs/types/aave.js +10 -0
  79. package/cjs/types/common.d.ts +77 -0
  80. package/cjs/types/common.js +10 -0
  81. package/cjs/types/compound.d.ts +109 -0
  82. package/cjs/types/compound.js +10 -0
  83. package/cjs/types/contracts/generated/AaveLendingPoolV2.d.ts +312 -0
  84. package/cjs/types/contracts/generated/AaveLendingPoolV2.js +5 -0
  85. package/cjs/types/contracts/generated/AaveLoanInfoV2.d.ts +137 -0
  86. package/cjs/types/contracts/generated/AaveLoanInfoV2.js +5 -0
  87. package/cjs/types/contracts/generated/AaveProtocolDataProvider.d.ts +110 -0
  88. package/cjs/types/contracts/generated/AaveProtocolDataProvider.js +5 -0
  89. package/cjs/types/contracts/generated/AaveUiIncentiveDataProviderV3.d.ts +196 -0
  90. package/cjs/types/contracts/generated/AaveUiIncentiveDataProviderV3.js +5 -0
  91. package/cjs/types/contracts/generated/AaveV3LendingPool.d.ts +429 -0
  92. package/cjs/types/contracts/generated/AaveV3LendingPool.js +5 -0
  93. package/cjs/types/contracts/generated/AaveV3PoolAddressesProvider.d.ts +169 -0
  94. package/cjs/types/contracts/generated/AaveV3PoolAddressesProvider.js +5 -0
  95. package/cjs/types/contracts/generated/AaveV3ProtocolDataProvider.d.ts +131 -0
  96. package/cjs/types/contracts/generated/AaveV3ProtocolDataProvider.js +5 -0
  97. package/cjs/types/contracts/generated/AaveV3View.d.ts +301 -0
  98. package/cjs/types/contracts/generated/AaveV3View.js +5 -0
  99. package/cjs/types/contracts/generated/BalanceScanner.d.ts +37 -0
  100. package/cjs/types/contracts/generated/BalanceScanner.js +5 -0
  101. package/cjs/types/contracts/generated/CETHv3.d.ts +441 -0
  102. package/cjs/types/contracts/generated/CETHv3.js +5 -0
  103. package/cjs/types/contracts/generated/CUSDCv3.d.ts +441 -0
  104. package/cjs/types/contracts/generated/CUSDCv3.js +5 -0
  105. package/cjs/types/contracts/generated/CUSDbCv3.d.ts +441 -0
  106. package/cjs/types/contracts/generated/CUSDbCv3.js +5 -0
  107. package/cjs/types/contracts/generated/CbEth.d.ts +20 -0
  108. package/cjs/types/contracts/generated/CbEth.js +5 -0
  109. package/cjs/types/contracts/generated/ChickenBondsView.d.ts +67 -0
  110. package/cjs/types/contracts/generated/ChickenBondsView.js +5 -0
  111. package/cjs/types/contracts/generated/CollSurplusPool.d.ts +85 -0
  112. package/cjs/types/contracts/generated/CollSurplusPool.js +5 -0
  113. package/cjs/types/contracts/generated/CompV3ETHBulker.d.ts +45 -0
  114. package/cjs/types/contracts/generated/CompV3ETHBulker.js +5 -0
  115. package/cjs/types/contracts/generated/CompV3USDCBulker.d.ts +31 -0
  116. package/cjs/types/contracts/generated/CompV3USDCBulker.js +5 -0
  117. package/cjs/types/contracts/generated/CompV3USDbCBulker.d.ts +41 -0
  118. package/cjs/types/contracts/generated/CompV3USDbCBulker.js +5 -0
  119. package/cjs/types/contracts/generated/CompV3View.d.ts +249 -0
  120. package/cjs/types/contracts/generated/CompV3View.js +5 -0
  121. package/cjs/types/contracts/generated/CompoundLoanInfo.d.ts +128 -0
  122. package/cjs/types/contracts/generated/CompoundLoanInfo.js +5 -0
  123. package/cjs/types/contracts/generated/Comptroller.d.ts +317 -0
  124. package/cjs/types/contracts/generated/Comptroller.js +5 -0
  125. package/cjs/types/contracts/generated/CrvUSDETHAmm.d.ts +139 -0
  126. package/cjs/types/contracts/generated/CrvUSDETHAmm.js +5 -0
  127. package/cjs/types/contracts/generated/CrvUSDETHController.d.ts +204 -0
  128. package/cjs/types/contracts/generated/CrvUSDETHController.js +5 -0
  129. package/cjs/types/contracts/generated/CrvUSDFactory.d.ts +117 -0
  130. package/cjs/types/contracts/generated/CrvUSDFactory.js +5 -0
  131. package/cjs/types/contracts/generated/CrvUSDView.d.ts +209 -0
  132. package/cjs/types/contracts/generated/CrvUSDView.js +5 -0
  133. package/cjs/types/contracts/generated/CrvUSDWBTCAmm.d.ts +139 -0
  134. package/cjs/types/contracts/generated/CrvUSDWBTCAmm.js +5 -0
  135. package/cjs/types/contracts/generated/CrvUSDWBTCController.d.ts +204 -0
  136. package/cjs/types/contracts/generated/CrvUSDWBTCController.js +5 -0
  137. package/cjs/types/contracts/generated/CrvUSDwstETHAmm.d.ts +139 -0
  138. package/cjs/types/contracts/generated/CrvUSDwstETHAmm.js +5 -0
  139. package/cjs/types/contracts/generated/CrvUSDwstETHController.d.ts +204 -0
  140. package/cjs/types/contracts/generated/CrvUSDwstETHController.js +5 -0
  141. package/cjs/types/contracts/generated/Erc20.d.ts +119 -0
  142. package/cjs/types/contracts/generated/Erc20.js +5 -0
  143. package/cjs/types/contracts/generated/GHO.d.ts +136 -0
  144. package/cjs/types/contracts/generated/GHO.js +5 -0
  145. package/cjs/types/contracts/generated/GhoDiscountRateStrategy.d.ts +25 -0
  146. package/cjs/types/contracts/generated/GhoDiscountRateStrategy.js +5 -0
  147. package/cjs/types/contracts/generated/IAToken.d.ts +21 -0
  148. package/cjs/types/contracts/generated/IAToken.js +5 -0
  149. package/cjs/types/contracts/generated/IVariableDebtToken.d.ts +21 -0
  150. package/cjs/types/contracts/generated/IVariableDebtToken.js +5 -0
  151. package/cjs/types/contracts/generated/LendingPoolAddressesProvider.d.ts +135 -0
  152. package/cjs/types/contracts/generated/LendingPoolAddressesProvider.js +5 -0
  153. package/cjs/types/contracts/generated/Lido.d.ts +38 -0
  154. package/cjs/types/contracts/generated/Lido.js +5 -0
  155. package/cjs/types/contracts/generated/LiquityActivePool.d.ts +21 -0
  156. package/cjs/types/contracts/generated/LiquityActivePool.js +5 -0
  157. package/cjs/types/contracts/generated/LiquityView.d.ts +51 -0
  158. package/cjs/types/contracts/generated/LiquityView.js +5 -0
  159. package/cjs/types/contracts/generated/McdDog.d.ts +134 -0
  160. package/cjs/types/contracts/generated/McdDog.js +5 -0
  161. package/cjs/types/contracts/generated/McdJug.d.ts +50 -0
  162. package/cjs/types/contracts/generated/McdJug.js +5 -0
  163. package/cjs/types/contracts/generated/McdSpotter.d.ts +27 -0
  164. package/cjs/types/contracts/generated/McdSpotter.js +5 -0
  165. package/cjs/types/contracts/generated/McdVat.d.ts +78 -0
  166. package/cjs/types/contracts/generated/McdVat.js +5 -0
  167. package/cjs/types/contracts/generated/McdView.d.ts +61 -0
  168. package/cjs/types/contracts/generated/McdView.js +5 -0
  169. package/cjs/types/contracts/generated/MorphoAaveV2Proxy.d.ts +418 -0
  170. package/cjs/types/contracts/generated/MorphoAaveV2Proxy.js +5 -0
  171. package/cjs/types/contracts/generated/MorphoAaveV2View.d.ts +274 -0
  172. package/cjs/types/contracts/generated/MorphoAaveV2View.js +5 -0
  173. package/cjs/types/contracts/generated/MorphoAaveV3ProxyEthMarket.d.ts +202 -0
  174. package/cjs/types/contracts/generated/MorphoAaveV3ProxyEthMarket.js +5 -0
  175. package/cjs/types/contracts/generated/Pot.d.ts +49 -0
  176. package/cjs/types/contracts/generated/Pot.js +5 -0
  177. package/cjs/types/contracts/generated/PriceFeed.d.ts +61 -0
  178. package/cjs/types/contracts/generated/PriceFeed.js +5 -0
  179. package/cjs/types/contracts/generated/REth.d.ts +20 -0
  180. package/cjs/types/contracts/generated/REth.js +5 -0
  181. package/cjs/types/contracts/generated/SparkIncentiveDataProvider.d.ts +200 -0
  182. package/cjs/types/contracts/generated/SparkIncentiveDataProvider.js +5 -0
  183. package/cjs/types/contracts/generated/SparkLendingPool.d.ts +420 -0
  184. package/cjs/types/contracts/generated/SparkLendingPool.js +5 -0
  185. package/cjs/types/contracts/generated/SparkPoolAddressesProvider.d.ts +169 -0
  186. package/cjs/types/contracts/generated/SparkPoolAddressesProvider.js +5 -0
  187. package/cjs/types/contracts/generated/SparkProtocolDataProvider.d.ts +132 -0
  188. package/cjs/types/contracts/generated/SparkProtocolDataProvider.js +5 -0
  189. package/cjs/types/contracts/generated/SparkView.d.ts +300 -0
  190. package/cjs/types/contracts/generated/SparkView.js +5 -0
  191. package/cjs/types/contracts/generated/TroveManager.d.ts +346 -0
  192. package/cjs/types/contracts/generated/TroveManager.js +5 -0
  193. package/cjs/types/contracts/generated/UniMulticall.d.ts +55 -0
  194. package/cjs/types/contracts/generated/UniMulticall.js +5 -0
  195. package/cjs/types/contracts/generated/WstETH.d.ts +65 -0
  196. package/cjs/types/contracts/generated/WstETH.js +5 -0
  197. package/cjs/types/contracts/generated/index.d.ts +57 -0
  198. package/cjs/types/contracts/generated/index.js +2 -0
  199. package/cjs/types/contracts/generated/types.d.ts +54 -0
  200. package/cjs/types/contracts/generated/types.js +2 -0
  201. package/cjs/types/curveUsd.d.ts +101 -0
  202. package/cjs/types/curveUsd.js +17 -0
  203. package/cjs/types/index.d.ts +6 -0
  204. package/cjs/types/index.js +22 -0
  205. package/cjs/types/liquity.d.ts +28 -0
  206. package/cjs/types/liquity.js +18 -0
  207. package/cjs/types/maker.d.ts +49 -0
  208. package/cjs/types/maker.js +2 -0
  209. package/cjs/types/spark.d.ts +100 -0
  210. package/cjs/types/spark.js +7 -0
  211. package/esm/aaveV2/index.d.ts +9 -0
  212. package/esm/aaveV2/index.js +174 -0
  213. package/esm/aaveV3/index.d.ts +33 -0
  214. package/esm/aaveV3/index.js +382 -0
  215. package/esm/assets/index.d.ts +4 -0
  216. package/esm/assets/index.js +49 -0
  217. package/esm/chickenBonds/index.d.ts +3 -0
  218. package/esm/chickenBonds/index.js +20 -0
  219. package/esm/compoundV2/index.d.ts +21 -0
  220. package/esm/compoundV2/index.js +157 -0
  221. package/esm/compoundV3/index.d.ts +37 -0
  222. package/esm/compoundV3/index.js +198 -0
  223. package/esm/config/contracts.d.ts +3028 -0
  224. package/esm/config/contracts.js +595 -0
  225. package/esm/constants/index.d.ts +4 -0
  226. package/esm/constants/index.js +4 -0
  227. package/esm/contracts.d.ts +40 -0
  228. package/esm/contracts.js +55 -0
  229. package/esm/curveUsd/index.d.ts +7 -0
  230. package/esm/curveUsd/index.js +189 -0
  231. package/esm/exchange/index.d.ts +3 -0
  232. package/esm/exchange/index.js +19 -0
  233. package/esm/helpers/aaveHelpers/index.d.ts +37 -0
  234. package/esm/helpers/aaveHelpers/index.js +101 -0
  235. package/esm/helpers/compoundHelpers/index.d.ts +20 -0
  236. package/esm/helpers/compoundHelpers/index.js +130 -0
  237. package/esm/helpers/curveUsdHelpers/index.d.ts +8 -0
  238. package/esm/helpers/curveUsdHelpers/index.js +35 -0
  239. package/esm/helpers/index.d.ts +5 -0
  240. package/esm/helpers/index.js +5 -0
  241. package/esm/helpers/makerHelpers/index.d.ts +5 -0
  242. package/esm/helpers/makerHelpers/index.js +92 -0
  243. package/esm/helpers/sparkHelpers/index.d.ts +21 -0
  244. package/esm/helpers/sparkHelpers/index.js +84 -0
  245. package/esm/index.d.ts +19 -0
  246. package/esm/index.js +19 -0
  247. package/esm/liquity/index.d.ts +7 -0
  248. package/esm/liquity/index.js +95 -0
  249. package/esm/maker/index.d.ts +5 -0
  250. package/esm/maker/index.js +95 -0
  251. package/esm/markets/aave/index.d.ts +12 -0
  252. package/esm/markets/aave/index.js +70 -0
  253. package/esm/markets/aave/marketAssets.d.ts +9 -0
  254. package/esm/markets/aave/marketAssets.js +28 -0
  255. package/esm/markets/compound/index.d.ts +12 -0
  256. package/esm/markets/compound/index.js +78 -0
  257. package/esm/markets/compound/marketsAssets.d.ts +19 -0
  258. package/esm/markets/compound/marketsAssets.js +32 -0
  259. package/esm/markets/curveUsd/index.d.ts +10 -0
  260. package/esm/markets/curveUsd/index.js +40 -0
  261. package/esm/markets/index.d.ts +4 -0
  262. package/esm/markets/index.js +4 -0
  263. package/esm/markets/spark/index.d.ts +9 -0
  264. package/esm/markets/spark/index.js +26 -0
  265. package/esm/markets/spark/marketAssets.d.ts +6 -0
  266. package/esm/markets/spark/marketAssets.js +9 -0
  267. package/esm/moneymarket/index.d.ts +1 -0
  268. package/esm/moneymarket/index.js +1 -0
  269. package/esm/moneymarket/moneymarketCommonService.d.ts +12 -0
  270. package/esm/moneymarket/moneymarketCommonService.js +70 -0
  271. package/esm/morphoAaveV2/index.d.ts +7 -0
  272. package/esm/morphoAaveV2/index.js +199 -0
  273. package/esm/morphoAaveV3/index.d.ts +7 -0
  274. package/esm/morphoAaveV3/index.js +432 -0
  275. package/esm/multicall/index.d.ts +3 -0
  276. package/esm/multicall/index.js +27 -0
  277. package/esm/services/dsrService.d.ts +3 -0
  278. package/esm/services/dsrService.js +21 -0
  279. package/esm/services/utils.d.ts +16 -0
  280. package/esm/services/utils.js +21 -0
  281. package/esm/spark/index.d.ts +34 -0
  282. package/esm/spark/index.js +326 -0
  283. package/esm/staking/index.d.ts +1 -0
  284. package/esm/staking/index.js +1 -0
  285. package/esm/staking/staking.d.ts +15 -0
  286. package/esm/staking/staking.js +147 -0
  287. package/esm/types/aave.d.ts +229 -0
  288. package/esm/types/aave.js +7 -0
  289. package/esm/types/common.d.ts +77 -0
  290. package/esm/types/common.js +7 -0
  291. package/esm/types/compound.d.ts +109 -0
  292. package/esm/types/compound.js +7 -0
  293. package/esm/types/contracts/generated/AaveLendingPoolV2.d.ts +312 -0
  294. package/esm/types/contracts/generated/AaveLendingPoolV2.js +4 -0
  295. package/esm/types/contracts/generated/AaveLoanInfoV2.d.ts +137 -0
  296. package/esm/types/contracts/generated/AaveLoanInfoV2.js +4 -0
  297. package/esm/types/contracts/generated/AaveProtocolDataProvider.d.ts +110 -0
  298. package/esm/types/contracts/generated/AaveProtocolDataProvider.js +4 -0
  299. package/esm/types/contracts/generated/AaveUiIncentiveDataProviderV3.d.ts +196 -0
  300. package/esm/types/contracts/generated/AaveUiIncentiveDataProviderV3.js +4 -0
  301. package/esm/types/contracts/generated/AaveV3LendingPool.d.ts +429 -0
  302. package/esm/types/contracts/generated/AaveV3LendingPool.js +4 -0
  303. package/esm/types/contracts/generated/AaveV3PoolAddressesProvider.d.ts +169 -0
  304. package/esm/types/contracts/generated/AaveV3PoolAddressesProvider.js +4 -0
  305. package/esm/types/contracts/generated/AaveV3ProtocolDataProvider.d.ts +131 -0
  306. package/esm/types/contracts/generated/AaveV3ProtocolDataProvider.js +4 -0
  307. package/esm/types/contracts/generated/AaveV3View.d.ts +301 -0
  308. package/esm/types/contracts/generated/AaveV3View.js +4 -0
  309. package/esm/types/contracts/generated/BalanceScanner.d.ts +37 -0
  310. package/esm/types/contracts/generated/BalanceScanner.js +4 -0
  311. package/esm/types/contracts/generated/CETHv3.d.ts +441 -0
  312. package/esm/types/contracts/generated/CETHv3.js +4 -0
  313. package/esm/types/contracts/generated/CUSDCv3.d.ts +441 -0
  314. package/esm/types/contracts/generated/CUSDCv3.js +4 -0
  315. package/esm/types/contracts/generated/CUSDbCv3.d.ts +441 -0
  316. package/esm/types/contracts/generated/CUSDbCv3.js +4 -0
  317. package/esm/types/contracts/generated/CbEth.d.ts +20 -0
  318. package/esm/types/contracts/generated/CbEth.js +4 -0
  319. package/esm/types/contracts/generated/ChickenBondsView.d.ts +67 -0
  320. package/esm/types/contracts/generated/ChickenBondsView.js +4 -0
  321. package/esm/types/contracts/generated/CollSurplusPool.d.ts +85 -0
  322. package/esm/types/contracts/generated/CollSurplusPool.js +4 -0
  323. package/esm/types/contracts/generated/CompV3ETHBulker.d.ts +45 -0
  324. package/esm/types/contracts/generated/CompV3ETHBulker.js +4 -0
  325. package/esm/types/contracts/generated/CompV3USDCBulker.d.ts +31 -0
  326. package/esm/types/contracts/generated/CompV3USDCBulker.js +4 -0
  327. package/esm/types/contracts/generated/CompV3USDbCBulker.d.ts +41 -0
  328. package/esm/types/contracts/generated/CompV3USDbCBulker.js +4 -0
  329. package/esm/types/contracts/generated/CompV3View.d.ts +249 -0
  330. package/esm/types/contracts/generated/CompV3View.js +4 -0
  331. package/esm/types/contracts/generated/CompoundLoanInfo.d.ts +128 -0
  332. package/esm/types/contracts/generated/CompoundLoanInfo.js +4 -0
  333. package/esm/types/contracts/generated/Comptroller.d.ts +317 -0
  334. package/esm/types/contracts/generated/Comptroller.js +4 -0
  335. package/esm/types/contracts/generated/CrvUSDETHAmm.d.ts +139 -0
  336. package/esm/types/contracts/generated/CrvUSDETHAmm.js +4 -0
  337. package/esm/types/contracts/generated/CrvUSDETHController.d.ts +204 -0
  338. package/esm/types/contracts/generated/CrvUSDETHController.js +4 -0
  339. package/esm/types/contracts/generated/CrvUSDFactory.d.ts +117 -0
  340. package/esm/types/contracts/generated/CrvUSDFactory.js +4 -0
  341. package/esm/types/contracts/generated/CrvUSDView.d.ts +209 -0
  342. package/esm/types/contracts/generated/CrvUSDView.js +4 -0
  343. package/esm/types/contracts/generated/CrvUSDWBTCAmm.d.ts +139 -0
  344. package/esm/types/contracts/generated/CrvUSDWBTCAmm.js +4 -0
  345. package/esm/types/contracts/generated/CrvUSDWBTCController.d.ts +204 -0
  346. package/esm/types/contracts/generated/CrvUSDWBTCController.js +4 -0
  347. package/esm/types/contracts/generated/CrvUSDwstETHAmm.d.ts +139 -0
  348. package/esm/types/contracts/generated/CrvUSDwstETHAmm.js +4 -0
  349. package/esm/types/contracts/generated/CrvUSDwstETHController.d.ts +204 -0
  350. package/esm/types/contracts/generated/CrvUSDwstETHController.js +4 -0
  351. package/esm/types/contracts/generated/Erc20.d.ts +119 -0
  352. package/esm/types/contracts/generated/Erc20.js +4 -0
  353. package/esm/types/contracts/generated/GHO.d.ts +136 -0
  354. package/esm/types/contracts/generated/GHO.js +4 -0
  355. package/esm/types/contracts/generated/GhoDiscountRateStrategy.d.ts +25 -0
  356. package/esm/types/contracts/generated/GhoDiscountRateStrategy.js +4 -0
  357. package/esm/types/contracts/generated/IAToken.d.ts +21 -0
  358. package/esm/types/contracts/generated/IAToken.js +4 -0
  359. package/esm/types/contracts/generated/IVariableDebtToken.d.ts +21 -0
  360. package/esm/types/contracts/generated/IVariableDebtToken.js +4 -0
  361. package/esm/types/contracts/generated/LendingPoolAddressesProvider.d.ts +135 -0
  362. package/esm/types/contracts/generated/LendingPoolAddressesProvider.js +4 -0
  363. package/esm/types/contracts/generated/Lido.d.ts +38 -0
  364. package/esm/types/contracts/generated/Lido.js +4 -0
  365. package/esm/types/contracts/generated/LiquityActivePool.d.ts +21 -0
  366. package/esm/types/contracts/generated/LiquityActivePool.js +4 -0
  367. package/esm/types/contracts/generated/LiquityView.d.ts +51 -0
  368. package/esm/types/contracts/generated/LiquityView.js +4 -0
  369. package/esm/types/contracts/generated/McdDog.d.ts +134 -0
  370. package/esm/types/contracts/generated/McdDog.js +4 -0
  371. package/esm/types/contracts/generated/McdJug.d.ts +50 -0
  372. package/esm/types/contracts/generated/McdJug.js +4 -0
  373. package/esm/types/contracts/generated/McdSpotter.d.ts +27 -0
  374. package/esm/types/contracts/generated/McdSpotter.js +4 -0
  375. package/esm/types/contracts/generated/McdVat.d.ts +78 -0
  376. package/esm/types/contracts/generated/McdVat.js +4 -0
  377. package/esm/types/contracts/generated/McdView.d.ts +61 -0
  378. package/esm/types/contracts/generated/McdView.js +4 -0
  379. package/esm/types/contracts/generated/MorphoAaveV2Proxy.d.ts +418 -0
  380. package/esm/types/contracts/generated/MorphoAaveV2Proxy.js +4 -0
  381. package/esm/types/contracts/generated/MorphoAaveV2View.d.ts +274 -0
  382. package/esm/types/contracts/generated/MorphoAaveV2View.js +4 -0
  383. package/esm/types/contracts/generated/MorphoAaveV3ProxyEthMarket.d.ts +202 -0
  384. package/esm/types/contracts/generated/MorphoAaveV3ProxyEthMarket.js +4 -0
  385. package/esm/types/contracts/generated/Pot.d.ts +49 -0
  386. package/esm/types/contracts/generated/Pot.js +4 -0
  387. package/esm/types/contracts/generated/PriceFeed.d.ts +61 -0
  388. package/esm/types/contracts/generated/PriceFeed.js +4 -0
  389. package/esm/types/contracts/generated/REth.d.ts +20 -0
  390. package/esm/types/contracts/generated/REth.js +4 -0
  391. package/esm/types/contracts/generated/SparkIncentiveDataProvider.d.ts +200 -0
  392. package/esm/types/contracts/generated/SparkIncentiveDataProvider.js +4 -0
  393. package/esm/types/contracts/generated/SparkLendingPool.d.ts +420 -0
  394. package/esm/types/contracts/generated/SparkLendingPool.js +4 -0
  395. package/esm/types/contracts/generated/SparkPoolAddressesProvider.d.ts +169 -0
  396. package/esm/types/contracts/generated/SparkPoolAddressesProvider.js +4 -0
  397. package/esm/types/contracts/generated/SparkProtocolDataProvider.d.ts +132 -0
  398. package/esm/types/contracts/generated/SparkProtocolDataProvider.js +4 -0
  399. package/esm/types/contracts/generated/SparkView.d.ts +300 -0
  400. package/esm/types/contracts/generated/SparkView.js +4 -0
  401. package/esm/types/contracts/generated/TroveManager.d.ts +346 -0
  402. package/esm/types/contracts/generated/TroveManager.js +4 -0
  403. package/esm/types/contracts/generated/UniMulticall.d.ts +55 -0
  404. package/esm/types/contracts/generated/UniMulticall.js +4 -0
  405. package/esm/types/contracts/generated/WstETH.d.ts +65 -0
  406. package/esm/types/contracts/generated/WstETH.js +4 -0
  407. package/esm/types/contracts/generated/index.d.ts +57 -0
  408. package/esm/types/contracts/generated/index.js +1 -0
  409. package/esm/types/contracts/generated/types.d.ts +54 -0
  410. package/esm/types/contracts/generated/types.js +1 -0
  411. package/esm/types/curveUsd.d.ts +101 -0
  412. package/esm/types/curveUsd.js +14 -0
  413. package/esm/types/index.d.ts +6 -0
  414. package/esm/types/index.js +6 -0
  415. package/esm/types/liquity.d.ts +28 -0
  416. package/esm/types/liquity.js +15 -0
  417. package/esm/types/maker.d.ts +49 -0
  418. package/esm/types/maker.js +1 -0
  419. package/esm/types/spark.d.ts +100 -0
  420. package/esm/types/spark.js +4 -0
  421. package/package.json +40 -0
  422. package/src/aaveV2/index.ts +219 -0
  423. package/src/aaveV3/index.ts +538 -0
  424. package/src/assets/index.ts +61 -0
  425. package/src/chickenBonds/index.ts +20 -0
  426. package/src/compoundV2/index.ts +207 -0
  427. package/src/compoundV3/index.ts +259 -0
  428. package/src/config/contracts.js +595 -0
  429. package/src/constants/index.ts +4 -0
  430. package/src/contracts.ts +95 -0
  431. package/src/curveUsd/index.ts +229 -0
  432. package/src/exchange/index.ts +17 -0
  433. package/src/helpers/aaveHelpers/index.ts +138 -0
  434. package/src/helpers/compoundHelpers/index.ts +178 -0
  435. package/src/helpers/curveUsdHelpers/index.ts +33 -0
  436. package/src/helpers/index.ts +5 -0
  437. package/src/helpers/makerHelpers/index.ts +95 -0
  438. package/src/helpers/sparkHelpers/index.ts +119 -0
  439. package/src/index.ts +40 -0
  440. package/src/liquity/index.ts +104 -0
  441. package/src/maker/index.ts +102 -0
  442. package/src/markets/aave/index.ts +80 -0
  443. package/src/markets/aave/marketAssets.ts +33 -0
  444. package/src/markets/compound/index.ts +86 -0
  445. package/src/markets/compound/marketsAssets.ts +36 -0
  446. package/src/markets/curveUsd/index.ts +43 -0
  447. package/src/markets/index.ts +4 -0
  448. package/src/markets/spark/index.ts +30 -0
  449. package/src/markets/spark/marketAssets.ts +10 -0
  450. package/src/moneymarket/index.ts +1 -0
  451. package/src/moneymarket/moneymarketCommonService.ts +76 -0
  452. package/src/morpho/markets.ts +39 -0
  453. package/src/morphoAaveV2/index.ts +253 -0
  454. package/src/morphoAaveV3/index.ts +615 -0
  455. package/src/multicall/index.ts +23 -0
  456. package/src/services/dsrService.ts +16 -0
  457. package/src/services/utils.ts +35 -0
  458. package/src/spark/index.ts +414 -0
  459. package/src/staking/index.ts +1 -0
  460. package/src/staking/staking.ts +157 -0
  461. package/src/types/aave.ts +256 -0
  462. package/src/types/common.ts +84 -0
  463. package/src/types/compound.ts +122 -0
  464. package/src/types/contracts/generated/AaveLendingPoolV2.ts +510 -0
  465. package/src/types/contracts/generated/AaveLoanInfoV2.ts +175 -0
  466. package/src/types/contracts/generated/AaveProtocolDataProvider.ts +152 -0
  467. package/src/types/contracts/generated/AaveUiIncentiveDataProviderV3.ts +254 -0
  468. package/src/types/contracts/generated/AaveV3LendingPool.ts +805 -0
  469. package/src/types/contracts/generated/AaveV3PoolAddressesProvider.ts +340 -0
  470. package/src/types/contracts/generated/AaveV3ProtocolDataProvider.ts +186 -0
  471. package/src/types/contracts/generated/AaveV3View.ts +402 -0
  472. package/src/types/contracts/generated/BalanceScanner.ts +71 -0
  473. package/src/types/contracts/generated/CETHv3.ts +685 -0
  474. package/src/types/contracts/generated/CUSDCv3.ts +688 -0
  475. package/src/types/contracts/generated/CUSDbCv3.ts +685 -0
  476. package/src/types/contracts/generated/CbEth.ts +37 -0
  477. package/src/types/contracts/generated/ChickenBondsView.ts +90 -0
  478. package/src/types/contracts/generated/CollSurplusPool.ts +185 -0
  479. package/src/types/contracts/generated/CompV3ETHBulker.ts +93 -0
  480. package/src/types/contracts/generated/CompV3USDCBulker.ts +63 -0
  481. package/src/types/contracts/generated/CompV3USDbCBulker.ts +85 -0
  482. package/src/types/contracts/generated/CompV3View.ts +325 -0
  483. package/src/types/contracts/generated/CompoundLoanInfo.ts +160 -0
  484. package/src/types/contracts/generated/Comptroller.ts +727 -0
  485. package/src/types/contracts/generated/CrvUSDETHAmm.ts +286 -0
  486. package/src/types/contracts/generated/CrvUSDETHController.ts +397 -0
  487. package/src/types/contracts/generated/CrvUSDFactory.ts +242 -0
  488. package/src/types/contracts/generated/CrvUSDView.ts +277 -0
  489. package/src/types/contracts/generated/CrvUSDWBTCAmm.ts +286 -0
  490. package/src/types/contracts/generated/CrvUSDWBTCController.ts +397 -0
  491. package/src/types/contracts/generated/CrvUSDwstETHAmm.ts +286 -0
  492. package/src/types/contracts/generated/CrvUSDwstETHController.ts +397 -0
  493. package/src/types/contracts/generated/Erc20.ts +216 -0
  494. package/src/types/contracts/generated/GHO.ts +274 -0
  495. package/src/types/contracts/generated/GhoDiscountRateStrategy.ts +48 -0
  496. package/src/types/contracts/generated/IAToken.ts +39 -0
  497. package/src/types/contracts/generated/IVariableDebtToken.ts +39 -0
  498. package/src/types/contracts/generated/LendingPoolAddressesProvider.ts +308 -0
  499. package/src/types/contracts/generated/Lido.ts +65 -0
  500. package/src/types/contracts/generated/LiquityActivePool.ts +39 -0
  501. package/src/types/contracts/generated/LiquityView.ts +66 -0
  502. package/src/types/contracts/generated/McdDog.ts +217 -0
  503. package/src/types/contracts/generated/McdJug.ts +86 -0
  504. package/src/types/contracts/generated/McdSpotter.ts +43 -0
  505. package/src/types/contracts/generated/McdVat.ts +170 -0
  506. package/src/types/contracts/generated/McdView.ts +100 -0
  507. package/src/types/contracts/generated/MorphoAaveV2Proxy.ts +870 -0
  508. package/src/types/contracts/generated/MorphoAaveV2View.ts +330 -0
  509. package/src/types/contracts/generated/MorphoAaveV3ProxyEthMarket.ts +338 -0
  510. package/src/types/contracts/generated/Pot.ts +88 -0
  511. package/src/types/contracts/generated/PriceFeed.ts +127 -0
  512. package/src/types/contracts/generated/REth.ts +37 -0
  513. package/src/types/contracts/generated/SparkIncentiveDataProvider.ts +264 -0
  514. package/src/types/contracts/generated/SparkLendingPool.ts +760 -0
  515. package/src/types/contracts/generated/SparkPoolAddressesProvider.ts +340 -0
  516. package/src/types/contracts/generated/SparkProtocolDataProvider.ts +188 -0
  517. package/src/types/contracts/generated/SparkView.ts +400 -0
  518. package/src/types/contracts/generated/TroveManager.ts +760 -0
  519. package/src/types/contracts/generated/UniMulticall.ts +83 -0
  520. package/src/types/contracts/generated/WstETH.ts +141 -0
  521. package/src/types/contracts/generated/index.ts +60 -0
  522. package/src/types/contracts/generated/types.ts +73 -0
  523. package/src/types/curveUsd.ts +111 -0
  524. package/src/types/index.ts +6 -0
  525. package/src/types/liquity.ts +30 -0
  526. package/src/types/maker.ts +51 -0
  527. package/src/types/spark.ts +107 -0
@@ -0,0 +1,3028 @@
1
+ export namespace AaveV3View {
2
+ let abi: ({
3
+ inputs: {
4
+ internalType: string;
5
+ name: string;
6
+ type: string;
7
+ }[];
8
+ name: string;
9
+ outputs: {
10
+ internalType: string;
11
+ name: string;
12
+ type: string;
13
+ }[];
14
+ stateMutability: string;
15
+ type: string;
16
+ } | {
17
+ inputs: {
18
+ internalType: string;
19
+ name: string;
20
+ type: string;
21
+ }[];
22
+ name: string;
23
+ outputs: {
24
+ components: {
25
+ internalType: string;
26
+ name: string;
27
+ type: string;
28
+ }[];
29
+ internalType: string;
30
+ name: string;
31
+ type: string;
32
+ }[];
33
+ stateMutability: string;
34
+ type: string;
35
+ } | {
36
+ inputs: {
37
+ components: {
38
+ internalType: string;
39
+ name: string;
40
+ type: string;
41
+ }[];
42
+ internalType: string;
43
+ name: string;
44
+ type: string;
45
+ }[];
46
+ name: string;
47
+ outputs: {
48
+ internalType: string;
49
+ name: string;
50
+ type: string;
51
+ }[];
52
+ stateMutability: string;
53
+ type: string;
54
+ })[];
55
+ let networks: {
56
+ "1": {
57
+ address: string;
58
+ createdBlock: number;
59
+ oldVersions: {
60
+ "16483408": string;
61
+ "16690564": string;
62
+ };
63
+ };
64
+ "10": {
65
+ address: string;
66
+ createdBlock: number;
67
+ oldVersions: {
68
+ "6723401": string;
69
+ "6926482": string;
70
+ "8908372": string;
71
+ "13445522": string;
72
+ "18286606": string;
73
+ "23450199": string;
74
+ "76015698": string;
75
+ "106560861": string;
76
+ };
77
+ };
78
+ "42161": {
79
+ address: string;
80
+ createdBlock: number;
81
+ oldVersions: {
82
+ "12855842": string;
83
+ "16400389": string;
84
+ "18522551": string;
85
+ "19702666": string;
86
+ "24918146": string;
87
+ "63484252": string;
88
+ "108724549": string;
89
+ };
90
+ };
91
+ "8453": {
92
+ address: string;
93
+ createdBlock: number;
94
+ };
95
+ };
96
+ }
97
+ export namespace AaveV3PoolAddressesProvider {
98
+ let abi_1: ({
99
+ inputs: {
100
+ internalType: string;
101
+ name: string;
102
+ type: string;
103
+ }[];
104
+ stateMutability: string;
105
+ type: string;
106
+ anonymous?: undefined;
107
+ name?: undefined;
108
+ outputs?: undefined;
109
+ } | {
110
+ anonymous: boolean;
111
+ inputs: {
112
+ indexed: boolean;
113
+ internalType: string;
114
+ name: string;
115
+ type: string;
116
+ }[];
117
+ name: string;
118
+ type: string;
119
+ stateMutability?: undefined;
120
+ outputs?: undefined;
121
+ } | {
122
+ inputs: {
123
+ internalType: string;
124
+ name: string;
125
+ type: string;
126
+ }[];
127
+ name: string;
128
+ outputs: {
129
+ internalType: string;
130
+ name: string;
131
+ type: string;
132
+ }[];
133
+ stateMutability: string;
134
+ type: string;
135
+ anonymous?: undefined;
136
+ })[];
137
+ export { abi_1 as abi };
138
+ let networks_1: {
139
+ "1": {
140
+ address: string;
141
+ };
142
+ "10": {
143
+ address: string;
144
+ };
145
+ "42161": {
146
+ address: string;
147
+ };
148
+ "8453": {
149
+ address: string;
150
+ };
151
+ };
152
+ export { networks_1 as networks };
153
+ }
154
+ export namespace AaveV3LendingPool {
155
+ let abi_2: ({
156
+ anonymous: boolean;
157
+ inputs: {
158
+ indexed: boolean;
159
+ internalType: string;
160
+ name: string;
161
+ type: string;
162
+ }[];
163
+ name: string;
164
+ type: string;
165
+ outputs?: undefined;
166
+ stateMutability?: undefined;
167
+ } | {
168
+ inputs: ({
169
+ internalType: string;
170
+ name: string;
171
+ type: string;
172
+ components?: undefined;
173
+ } | {
174
+ components: {
175
+ internalType: string;
176
+ name: string;
177
+ type: string;
178
+ }[];
179
+ internalType: string;
180
+ name: string;
181
+ type: string;
182
+ })[];
183
+ name: string;
184
+ outputs: never[];
185
+ stateMutability: string;
186
+ type: string;
187
+ anonymous?: undefined;
188
+ } | {
189
+ inputs: {
190
+ internalType: string;
191
+ name: string;
192
+ type: string;
193
+ }[];
194
+ name: string;
195
+ outputs: {
196
+ internalType: string;
197
+ name: string;
198
+ type: string;
199
+ }[];
200
+ stateMutability: string;
201
+ type: string;
202
+ anonymous?: undefined;
203
+ } | {
204
+ inputs: {
205
+ internalType: string;
206
+ name: string;
207
+ type: string;
208
+ }[];
209
+ name: string;
210
+ outputs: {
211
+ components: ({
212
+ components: {
213
+ internalType: string;
214
+ name: string;
215
+ type: string;
216
+ }[];
217
+ internalType: string;
218
+ name: string;
219
+ type: string;
220
+ } | {
221
+ internalType: string;
222
+ name: string;
223
+ type: string;
224
+ components?: undefined;
225
+ })[];
226
+ internalType: string;
227
+ name: string;
228
+ type: string;
229
+ }[];
230
+ stateMutability: string;
231
+ type: string;
232
+ anonymous?: undefined;
233
+ })[];
234
+ export { abi_2 as abi };
235
+ let networks_2: {
236
+ "1": {
237
+ address: string;
238
+ };
239
+ "10": {
240
+ address: string;
241
+ };
242
+ "42161": {
243
+ address: string;
244
+ };
245
+ "8453": {
246
+ address: string;
247
+ };
248
+ };
249
+ export { networks_2 as networks };
250
+ }
251
+ export namespace AaveV3ProtocolDataProvider {
252
+ let abi_3: ({
253
+ inputs: {
254
+ internalType: string;
255
+ name: string;
256
+ type: string;
257
+ }[];
258
+ stateMutability: string;
259
+ type: string;
260
+ name?: undefined;
261
+ outputs?: undefined;
262
+ } | {
263
+ inputs: {
264
+ internalType: string;
265
+ name: string;
266
+ type: string;
267
+ }[];
268
+ name: string;
269
+ outputs: {
270
+ internalType: string;
271
+ name: string;
272
+ type: string;
273
+ }[];
274
+ stateMutability: string;
275
+ type: string;
276
+ } | {
277
+ inputs: never[];
278
+ name: string;
279
+ outputs: {
280
+ components: {
281
+ internalType: string;
282
+ name: string;
283
+ type: string;
284
+ }[];
285
+ internalType: string;
286
+ name: string;
287
+ type: string;
288
+ }[];
289
+ stateMutability: string;
290
+ type: string;
291
+ })[];
292
+ export { abi_3 as abi };
293
+ let networks_3: {
294
+ "1": {
295
+ address: string;
296
+ };
297
+ "10": {
298
+ address: string;
299
+ };
300
+ "42161": {
301
+ address: string;
302
+ };
303
+ "8453": {
304
+ address: string;
305
+ };
306
+ };
307
+ export { networks_3 as networks };
308
+ }
309
+ export namespace AaveUiIncentiveDataProviderV3 {
310
+ let abi_4: {
311
+ inputs: {
312
+ internalType: string;
313
+ name: string;
314
+ type: string;
315
+ }[];
316
+ name: string;
317
+ outputs: {
318
+ components: ({
319
+ internalType: string;
320
+ name: string;
321
+ type: string;
322
+ components?: undefined;
323
+ } | {
324
+ components: ({
325
+ internalType: string;
326
+ name: string;
327
+ type: string;
328
+ components?: undefined;
329
+ } | {
330
+ components: {
331
+ internalType: string;
332
+ name: string;
333
+ type: string;
334
+ }[];
335
+ internalType: string;
336
+ name: string;
337
+ type: string;
338
+ })[];
339
+ internalType: string;
340
+ name: string;
341
+ type: string;
342
+ })[];
343
+ internalType: string;
344
+ name: string;
345
+ type: string;
346
+ }[];
347
+ stateMutability: string;
348
+ type: string;
349
+ }[];
350
+ export { abi_4 as abi };
351
+ let networks_4: {
352
+ "10": {
353
+ address: string;
354
+ };
355
+ };
356
+ export { networks_4 as networks };
357
+ }
358
+ export namespace Lido {
359
+ let abi_5: {
360
+ anonymous: boolean;
361
+ inputs: {
362
+ indexed: boolean;
363
+ name: string;
364
+ type: string;
365
+ }[];
366
+ name: string;
367
+ type: string;
368
+ }[];
369
+ export { abi_5 as abi };
370
+ let networks_5: {
371
+ "1": {
372
+ address: string;
373
+ };
374
+ };
375
+ export { networks_5 as networks };
376
+ }
377
+ export namespace CbEth {
378
+ let abi_6: {
379
+ inputs: never[];
380
+ name: string;
381
+ outputs: {
382
+ internalType: string;
383
+ name: string;
384
+ type: string;
385
+ }[];
386
+ stateMutability: string;
387
+ type: string;
388
+ }[];
389
+ export { abi_6 as abi };
390
+ let networks_6: {
391
+ "1": {
392
+ address: string;
393
+ };
394
+ };
395
+ export { networks_6 as networks };
396
+ }
397
+ export namespace REth {
398
+ let abi_7: {
399
+ inputs: never[];
400
+ name: string;
401
+ outputs: {
402
+ internalType: string;
403
+ name: string;
404
+ type: string;
405
+ }[];
406
+ stateMutability: string;
407
+ type: string;
408
+ }[];
409
+ export { abi_7 as abi };
410
+ let networks_7: {
411
+ "1": {
412
+ address: string;
413
+ };
414
+ };
415
+ export { networks_7 as networks };
416
+ }
417
+ export namespace GhoDiscountRateStrategy {
418
+ let abi_8: {
419
+ inputs: {
420
+ internalType: string;
421
+ name: string;
422
+ type: string;
423
+ }[];
424
+ name: string;
425
+ outputs: {
426
+ internalType: string;
427
+ name: string;
428
+ type: string;
429
+ }[];
430
+ stateMutability: string;
431
+ type: string;
432
+ }[];
433
+ export { abi_8 as abi };
434
+ let networks_8: {
435
+ "1": {
436
+ address: string;
437
+ };
438
+ };
439
+ export { networks_8 as networks };
440
+ }
441
+ export namespace GHO {
442
+ let abi_9: ({
443
+ inputs: never[];
444
+ stateMutability: string;
445
+ type: string;
446
+ anonymous?: undefined;
447
+ name?: undefined;
448
+ outputs?: undefined;
449
+ } | {
450
+ anonymous: boolean;
451
+ inputs: {
452
+ indexed: boolean;
453
+ internalType: string;
454
+ name: string;
455
+ type: string;
456
+ }[];
457
+ name: string;
458
+ type: string;
459
+ stateMutability?: undefined;
460
+ outputs?: undefined;
461
+ } | {
462
+ inputs: {
463
+ internalType: string;
464
+ name: string;
465
+ type: string;
466
+ }[];
467
+ name: string;
468
+ outputs: {
469
+ internalType: string;
470
+ name: string;
471
+ type: string;
472
+ }[];
473
+ stateMutability: string;
474
+ type: string;
475
+ anonymous?: undefined;
476
+ } | {
477
+ inputs: {
478
+ internalType: string;
479
+ name: string;
480
+ type: string;
481
+ }[];
482
+ name: string;
483
+ outputs: {
484
+ components: {
485
+ internalType: string;
486
+ name: string;
487
+ type: string;
488
+ }[];
489
+ internalType: string;
490
+ name: string;
491
+ type: string;
492
+ }[];
493
+ stateMutability: string;
494
+ type: string;
495
+ anonymous?: undefined;
496
+ })[];
497
+ export { abi_9 as abi };
498
+ let networks_9: {
499
+ "1": {
500
+ address: string;
501
+ };
502
+ };
503
+ export { networks_9 as networks };
504
+ }
505
+ export namespace UniMulticall {
506
+ let abi_10: ({
507
+ inputs: {
508
+ internalType: string;
509
+ name: string;
510
+ type: string;
511
+ }[];
512
+ name: string;
513
+ outputs: {
514
+ internalType: string;
515
+ name: string;
516
+ type: string;
517
+ }[];
518
+ stateMutability: string;
519
+ type: string;
520
+ } | {
521
+ inputs: {
522
+ components: {
523
+ internalType: string;
524
+ name: string;
525
+ type: string;
526
+ }[];
527
+ internalType: string;
528
+ name: string;
529
+ type: string;
530
+ }[];
531
+ name: string;
532
+ outputs: ({
533
+ internalType: string;
534
+ name: string;
535
+ type: string;
536
+ components?: undefined;
537
+ } | {
538
+ components: {
539
+ internalType: string;
540
+ name: string;
541
+ type: string;
542
+ }[];
543
+ internalType: string;
544
+ name: string;
545
+ type: string;
546
+ })[];
547
+ stateMutability: string;
548
+ type: string;
549
+ })[];
550
+ export { abi_10 as abi };
551
+ let networks_10: {
552
+ "1": {
553
+ address: string;
554
+ };
555
+ "10": {
556
+ address: string;
557
+ };
558
+ "42161": {
559
+ address: string;
560
+ };
561
+ "8453": {
562
+ address: string;
563
+ };
564
+ };
565
+ export { networks_10 as networks };
566
+ }
567
+ export namespace BalanceScanner {
568
+ let abi_11: {
569
+ inputs: {
570
+ internalType: string;
571
+ name: string;
572
+ type: string;
573
+ }[];
574
+ name: string;
575
+ outputs: {
576
+ components: {
577
+ internalType: string;
578
+ name: string;
579
+ type: string;
580
+ }[];
581
+ internalType: string;
582
+ name: string;
583
+ type: string;
584
+ }[];
585
+ stateMutability: string;
586
+ type: string;
587
+ }[];
588
+ export { abi_11 as abi };
589
+ let networks_11: {
590
+ "1": {
591
+ address: string;
592
+ createdBlock: number;
593
+ };
594
+ "10": {
595
+ address: string;
596
+ };
597
+ "42161": {
598
+ address: string;
599
+ };
600
+ "8453": {
601
+ address: string;
602
+ };
603
+ };
604
+ export { networks_11 as networks };
605
+ }
606
+ export namespace Erc20 {
607
+ let abi_12: ({
608
+ constant: boolean;
609
+ inputs: {
610
+ name: string;
611
+ type: string;
612
+ }[];
613
+ name: string;
614
+ outputs: {
615
+ name: string;
616
+ type: string;
617
+ }[];
618
+ payable: boolean;
619
+ stateMutability: string;
620
+ type: string;
621
+ anonymous?: undefined;
622
+ } | {
623
+ inputs: {
624
+ name: string;
625
+ type: string;
626
+ }[];
627
+ payable: boolean;
628
+ stateMutability: string;
629
+ type: string;
630
+ constant?: undefined;
631
+ name?: undefined;
632
+ outputs?: undefined;
633
+ anonymous?: undefined;
634
+ } | {
635
+ anonymous: boolean;
636
+ inputs: {
637
+ indexed: boolean;
638
+ name: string;
639
+ type: string;
640
+ }[];
641
+ name: string;
642
+ type: string;
643
+ constant?: undefined;
644
+ outputs?: undefined;
645
+ payable?: undefined;
646
+ stateMutability?: undefined;
647
+ })[];
648
+ export { abi_12 as abi };
649
+ let networks_12: {};
650
+ export { networks_12 as networks };
651
+ }
652
+ export namespace cUSDCv3 {
653
+ let abi_13: ({
654
+ inputs: {
655
+ components: ({
656
+ internalType: string;
657
+ name: string;
658
+ type: string;
659
+ components?: undefined;
660
+ } | {
661
+ components: {
662
+ internalType: string;
663
+ name: string;
664
+ type: string;
665
+ }[];
666
+ internalType: string;
667
+ name: string;
668
+ type: string;
669
+ })[];
670
+ internalType: string;
671
+ name: string;
672
+ type: string;
673
+ }[];
674
+ stateMutability: string;
675
+ type: string;
676
+ name?: undefined;
677
+ anonymous?: undefined;
678
+ outputs?: undefined;
679
+ } | {
680
+ inputs: never[];
681
+ name: string;
682
+ type: string;
683
+ stateMutability?: undefined;
684
+ anonymous?: undefined;
685
+ outputs?: undefined;
686
+ } | {
687
+ anonymous: boolean;
688
+ inputs: {
689
+ indexed: boolean;
690
+ internalType: string;
691
+ name: string;
692
+ type: string;
693
+ }[];
694
+ name: string;
695
+ type: string;
696
+ stateMutability?: undefined;
697
+ outputs?: undefined;
698
+ } | {
699
+ stateMutability: string;
700
+ type: string;
701
+ inputs?: undefined;
702
+ name?: undefined;
703
+ anonymous?: undefined;
704
+ outputs?: undefined;
705
+ } | {
706
+ inputs: {
707
+ internalType: string;
708
+ name: string;
709
+ type: string;
710
+ }[];
711
+ name: string;
712
+ outputs: {
713
+ internalType: string;
714
+ name: string;
715
+ type: string;
716
+ }[];
717
+ stateMutability: string;
718
+ type: string;
719
+ anonymous?: undefined;
720
+ } | {
721
+ inputs: {
722
+ internalType: string;
723
+ name: string;
724
+ type: string;
725
+ }[];
726
+ name: string;
727
+ outputs: {
728
+ components: {
729
+ internalType: string;
730
+ name: string;
731
+ type: string;
732
+ }[];
733
+ internalType: string;
734
+ name: string;
735
+ type: string;
736
+ }[];
737
+ stateMutability: string;
738
+ type: string;
739
+ anonymous?: undefined;
740
+ })[];
741
+ export { abi_13 as abi };
742
+ let networks_13: {
743
+ "1": {
744
+ address: string;
745
+ };
746
+ };
747
+ export { networks_13 as networks };
748
+ }
749
+ export namespace cUSDbCv3 {
750
+ let abi_14: ({
751
+ inputs: {
752
+ components: ({
753
+ internalType: string;
754
+ name: string;
755
+ type: string;
756
+ components?: undefined;
757
+ } | {
758
+ components: {
759
+ internalType: string;
760
+ name: string;
761
+ type: string;
762
+ }[];
763
+ internalType: string;
764
+ name: string;
765
+ type: string;
766
+ })[];
767
+ internalType: string;
768
+ name: string;
769
+ type: string;
770
+ }[];
771
+ stateMutability: string;
772
+ type: string;
773
+ name?: undefined;
774
+ anonymous?: undefined;
775
+ outputs?: undefined;
776
+ } | {
777
+ inputs: never[];
778
+ name: string;
779
+ type: string;
780
+ stateMutability?: undefined;
781
+ anonymous?: undefined;
782
+ outputs?: undefined;
783
+ } | {
784
+ anonymous: boolean;
785
+ inputs: {
786
+ indexed: boolean;
787
+ internalType: string;
788
+ name: string;
789
+ type: string;
790
+ }[];
791
+ name: string;
792
+ type: string;
793
+ stateMutability?: undefined;
794
+ outputs?: undefined;
795
+ } | {
796
+ stateMutability: string;
797
+ type: string;
798
+ inputs?: undefined;
799
+ name?: undefined;
800
+ anonymous?: undefined;
801
+ outputs?: undefined;
802
+ } | {
803
+ inputs: {
804
+ internalType: string;
805
+ name: string;
806
+ type: string;
807
+ }[];
808
+ name: string;
809
+ outputs: {
810
+ internalType: string;
811
+ name: string;
812
+ type: string;
813
+ }[];
814
+ stateMutability: string;
815
+ type: string;
816
+ anonymous?: undefined;
817
+ } | {
818
+ inputs: {
819
+ internalType: string;
820
+ name: string;
821
+ type: string;
822
+ }[];
823
+ name: string;
824
+ outputs: {
825
+ components: {
826
+ internalType: string;
827
+ name: string;
828
+ type: string;
829
+ }[];
830
+ internalType: string;
831
+ name: string;
832
+ type: string;
833
+ }[];
834
+ stateMutability: string;
835
+ type: string;
836
+ anonymous?: undefined;
837
+ })[];
838
+ export { abi_14 as abi };
839
+ let networks_14: {
840
+ "8453": {
841
+ address: string;
842
+ };
843
+ };
844
+ export { networks_14 as networks };
845
+ }
846
+ export namespace cETHv3 {
847
+ let abi_15: ({
848
+ inputs: {
849
+ components: ({
850
+ internalType: string;
851
+ name: string;
852
+ type: string;
853
+ components?: undefined;
854
+ } | {
855
+ components: {
856
+ internalType: string;
857
+ name: string;
858
+ type: string;
859
+ }[];
860
+ internalType: string;
861
+ name: string;
862
+ type: string;
863
+ })[];
864
+ internalType: string;
865
+ name: string;
866
+ type: string;
867
+ }[];
868
+ stateMutability: string;
869
+ type: string;
870
+ name?: undefined;
871
+ anonymous?: undefined;
872
+ outputs?: undefined;
873
+ } | {
874
+ inputs: never[];
875
+ name: string;
876
+ type: string;
877
+ stateMutability?: undefined;
878
+ anonymous?: undefined;
879
+ outputs?: undefined;
880
+ } | {
881
+ anonymous: boolean;
882
+ inputs: {
883
+ indexed: boolean;
884
+ internalType: string;
885
+ name: string;
886
+ type: string;
887
+ }[];
888
+ name: string;
889
+ type: string;
890
+ stateMutability?: undefined;
891
+ outputs?: undefined;
892
+ } | {
893
+ stateMutability: string;
894
+ type: string;
895
+ inputs?: undefined;
896
+ name?: undefined;
897
+ anonymous?: undefined;
898
+ outputs?: undefined;
899
+ } | {
900
+ inputs: {
901
+ internalType: string;
902
+ name: string;
903
+ type: string;
904
+ }[];
905
+ name: string;
906
+ outputs: {
907
+ internalType: string;
908
+ name: string;
909
+ type: string;
910
+ }[];
911
+ stateMutability: string;
912
+ type: string;
913
+ anonymous?: undefined;
914
+ } | {
915
+ inputs: {
916
+ internalType: string;
917
+ name: string;
918
+ type: string;
919
+ }[];
920
+ name: string;
921
+ outputs: {
922
+ components: {
923
+ internalType: string;
924
+ name: string;
925
+ type: string;
926
+ }[];
927
+ internalType: string;
928
+ name: string;
929
+ type: string;
930
+ }[];
931
+ stateMutability: string;
932
+ type: string;
933
+ anonymous?: undefined;
934
+ })[];
935
+ export { abi_15 as abi };
936
+ let networks_15: {
937
+ "1": {
938
+ address: string;
939
+ };
940
+ "8453": {
941
+ address: string;
942
+ };
943
+ };
944
+ export { networks_15 as networks };
945
+ }
946
+ export namespace CompV3View {
947
+ let abi_16: ({
948
+ inputs: {
949
+ internalType: string;
950
+ name: string;
951
+ type: string;
952
+ }[];
953
+ name: string;
954
+ outputs: {
955
+ internalType: string;
956
+ name: string;
957
+ type: string;
958
+ }[];
959
+ stateMutability: string;
960
+ type: string;
961
+ } | {
962
+ inputs: {
963
+ internalType: string;
964
+ name: string;
965
+ type: string;
966
+ }[];
967
+ name: string;
968
+ outputs: {
969
+ components: {
970
+ internalType: string;
971
+ name: string;
972
+ type: string;
973
+ }[];
974
+ internalType: string;
975
+ name: string;
976
+ type: string;
977
+ }[];
978
+ stateMutability: string;
979
+ type: string;
980
+ })[];
981
+ export { abi_16 as abi };
982
+ let networks_16: {
983
+ "1": {
984
+ address: string;
985
+ createdBlock: number;
986
+ oldVersions: {
987
+ "15520449": string;
988
+ };
989
+ };
990
+ "8453": {
991
+ address: string;
992
+ };
993
+ };
994
+ export { networks_16 as networks };
995
+ }
996
+ export namespace CompV3USDCBulker {
997
+ let abi_17: ({
998
+ inputs: {
999
+ internalType: string;
1000
+ name: string;
1001
+ type: string;
1002
+ }[];
1003
+ stateMutability: string;
1004
+ type: string;
1005
+ name?: undefined;
1006
+ outputs?: undefined;
1007
+ } | {
1008
+ inputs: never[];
1009
+ name: string;
1010
+ type: string;
1011
+ stateMutability?: undefined;
1012
+ outputs?: undefined;
1013
+ } | {
1014
+ inputs: never[];
1015
+ name: string;
1016
+ outputs: {
1017
+ internalType: string;
1018
+ name: string;
1019
+ type: string;
1020
+ }[];
1021
+ stateMutability: string;
1022
+ type: string;
1023
+ } | {
1024
+ inputs: {
1025
+ internalType: string;
1026
+ name: string;
1027
+ type: string;
1028
+ }[];
1029
+ name: string;
1030
+ outputs: never[];
1031
+ stateMutability: string;
1032
+ type: string;
1033
+ } | {
1034
+ stateMutability: string;
1035
+ type: string;
1036
+ inputs?: undefined;
1037
+ name?: undefined;
1038
+ outputs?: undefined;
1039
+ })[];
1040
+ export { abi_17 as abi };
1041
+ let networks_17: {
1042
+ "1": {
1043
+ address: string;
1044
+ };
1045
+ };
1046
+ export { networks_17 as networks };
1047
+ }
1048
+ export namespace CompV3USDbCBulker {
1049
+ let abi_18: ({
1050
+ inputs: {
1051
+ internalType: string;
1052
+ name: string;
1053
+ type: string;
1054
+ }[];
1055
+ stateMutability: string;
1056
+ type: string;
1057
+ name?: undefined;
1058
+ anonymous?: undefined;
1059
+ outputs?: undefined;
1060
+ } | {
1061
+ inputs: never[];
1062
+ name: string;
1063
+ type: string;
1064
+ stateMutability?: undefined;
1065
+ anonymous?: undefined;
1066
+ outputs?: undefined;
1067
+ } | {
1068
+ anonymous: boolean;
1069
+ inputs: {
1070
+ indexed: boolean;
1071
+ internalType: string;
1072
+ name: string;
1073
+ type: string;
1074
+ }[];
1075
+ name: string;
1076
+ type: string;
1077
+ stateMutability?: undefined;
1078
+ outputs?: undefined;
1079
+ } | {
1080
+ inputs: never[];
1081
+ name: string;
1082
+ outputs: {
1083
+ internalType: string;
1084
+ name: string;
1085
+ type: string;
1086
+ }[];
1087
+ stateMutability: string;
1088
+ type: string;
1089
+ anonymous?: undefined;
1090
+ } | {
1091
+ inputs: {
1092
+ internalType: string;
1093
+ name: string;
1094
+ type: string;
1095
+ }[];
1096
+ name: string;
1097
+ outputs: never[];
1098
+ stateMutability: string;
1099
+ type: string;
1100
+ anonymous?: undefined;
1101
+ } | {
1102
+ stateMutability: string;
1103
+ type: string;
1104
+ inputs?: undefined;
1105
+ name?: undefined;
1106
+ anonymous?: undefined;
1107
+ outputs?: undefined;
1108
+ })[];
1109
+ export { abi_18 as abi };
1110
+ let networks_18: {
1111
+ "8453": {
1112
+ address: string;
1113
+ };
1114
+ };
1115
+ export { networks_18 as networks };
1116
+ }
1117
+ export namespace CompV3ETHBulker {
1118
+ let abi_19: ({
1119
+ inputs: {
1120
+ internalType: string;
1121
+ name: string;
1122
+ type: string;
1123
+ }[];
1124
+ stateMutability: string;
1125
+ type: string;
1126
+ name?: undefined;
1127
+ anonymous?: undefined;
1128
+ outputs?: undefined;
1129
+ } | {
1130
+ inputs: never[];
1131
+ name: string;
1132
+ type: string;
1133
+ stateMutability?: undefined;
1134
+ anonymous?: undefined;
1135
+ outputs?: undefined;
1136
+ } | {
1137
+ anonymous: boolean;
1138
+ inputs: {
1139
+ indexed: boolean;
1140
+ internalType: string;
1141
+ name: string;
1142
+ type: string;
1143
+ }[];
1144
+ name: string;
1145
+ type: string;
1146
+ stateMutability?: undefined;
1147
+ outputs?: undefined;
1148
+ } | {
1149
+ inputs: never[];
1150
+ name: string;
1151
+ outputs: {
1152
+ internalType: string;
1153
+ name: string;
1154
+ type: string;
1155
+ }[];
1156
+ stateMutability: string;
1157
+ type: string;
1158
+ anonymous?: undefined;
1159
+ } | {
1160
+ inputs: {
1161
+ internalType: string;
1162
+ name: string;
1163
+ type: string;
1164
+ }[];
1165
+ name: string;
1166
+ outputs: never[];
1167
+ stateMutability: string;
1168
+ type: string;
1169
+ anonymous?: undefined;
1170
+ } | {
1171
+ stateMutability: string;
1172
+ type: string;
1173
+ inputs?: undefined;
1174
+ name?: undefined;
1175
+ anonymous?: undefined;
1176
+ outputs?: undefined;
1177
+ })[];
1178
+ export { abi_19 as abi };
1179
+ let networks_19: {
1180
+ "1": {
1181
+ address: string;
1182
+ };
1183
+ "8453": {
1184
+ address: string;
1185
+ };
1186
+ };
1187
+ export { networks_19 as networks };
1188
+ }
1189
+ export namespace wstETH {
1190
+ let abi_20: ({
1191
+ inputs: {
1192
+ internalType: string;
1193
+ name: string;
1194
+ type: string;
1195
+ }[];
1196
+ stateMutability: string;
1197
+ type: string;
1198
+ anonymous?: undefined;
1199
+ name?: undefined;
1200
+ outputs?: undefined;
1201
+ } | {
1202
+ anonymous: boolean;
1203
+ inputs: {
1204
+ indexed: boolean;
1205
+ internalType: string;
1206
+ name: string;
1207
+ type: string;
1208
+ }[];
1209
+ name: string;
1210
+ type: string;
1211
+ stateMutability?: undefined;
1212
+ outputs?: undefined;
1213
+ } | {
1214
+ inputs: {
1215
+ internalType: string;
1216
+ name: string;
1217
+ type: string;
1218
+ }[];
1219
+ name: string;
1220
+ outputs: {
1221
+ internalType: string;
1222
+ name: string;
1223
+ type: string;
1224
+ }[];
1225
+ stateMutability: string;
1226
+ type: string;
1227
+ anonymous?: undefined;
1228
+ } | {
1229
+ stateMutability: string;
1230
+ type: string;
1231
+ inputs?: undefined;
1232
+ anonymous?: undefined;
1233
+ name?: undefined;
1234
+ outputs?: undefined;
1235
+ })[];
1236
+ export { abi_20 as abi };
1237
+ let networks_20: {
1238
+ "1": {
1239
+ address: string;
1240
+ };
1241
+ };
1242
+ export { networks_20 as networks };
1243
+ }
1244
+ export namespace AaveLoanInfoV2 {
1245
+ let abi_21: ({
1246
+ inputs: {
1247
+ internalType: string;
1248
+ name: string;
1249
+ type: string;
1250
+ }[];
1251
+ name: string;
1252
+ outputs: {
1253
+ components: {
1254
+ internalType: string;
1255
+ name: string;
1256
+ type: string;
1257
+ }[];
1258
+ internalType: string;
1259
+ name: string;
1260
+ type: string;
1261
+ }[];
1262
+ stateMutability: string;
1263
+ type: string;
1264
+ } | {
1265
+ inputs: {
1266
+ internalType: string;
1267
+ name: string;
1268
+ type: string;
1269
+ }[];
1270
+ name: string;
1271
+ outputs: {
1272
+ internalType: string;
1273
+ name: string;
1274
+ type: string;
1275
+ }[];
1276
+ stateMutability: string;
1277
+ type: string;
1278
+ })[];
1279
+ export { abi_21 as abi };
1280
+ let networks_21: {
1281
+ "1": {
1282
+ address: string;
1283
+ createdBlock: number;
1284
+ oldVersions: {
1285
+ "11374778": string;
1286
+ "11375123": string;
1287
+ "11375721": string;
1288
+ "11377499": string;
1289
+ "11420152": string;
1290
+ "11637629": string;
1291
+ "12317383": string;
1292
+ "15484097": string;
1293
+ };
1294
+ };
1295
+ };
1296
+ export { networks_21 as networks };
1297
+ }
1298
+ export namespace LendingPoolAddressesProvider {
1299
+ let abi_22: ({
1300
+ anonymous: boolean;
1301
+ inputs: {
1302
+ indexed: boolean;
1303
+ internalType: string;
1304
+ name: string;
1305
+ type: string;
1306
+ }[];
1307
+ name: string;
1308
+ type: string;
1309
+ outputs?: undefined;
1310
+ stateMutability?: undefined;
1311
+ } | {
1312
+ inputs: {
1313
+ internalType: string;
1314
+ name: string;
1315
+ type: string;
1316
+ }[];
1317
+ name: string;
1318
+ outputs: {
1319
+ internalType: string;
1320
+ name: string;
1321
+ type: string;
1322
+ }[];
1323
+ stateMutability: string;
1324
+ type: string;
1325
+ anonymous?: undefined;
1326
+ })[];
1327
+ export { abi_22 as abi };
1328
+ let networks_22: {
1329
+ "1": {
1330
+ address: string;
1331
+ };
1332
+ };
1333
+ export { networks_22 as networks };
1334
+ }
1335
+ export namespace AaveProtocolDataProvider {
1336
+ let abi_23: ({
1337
+ inputs: {
1338
+ internalType: string;
1339
+ name: string;
1340
+ type: string;
1341
+ }[];
1342
+ stateMutability: string;
1343
+ type: string;
1344
+ name?: undefined;
1345
+ outputs?: undefined;
1346
+ } | {
1347
+ inputs: never[];
1348
+ name: string;
1349
+ outputs: {
1350
+ components: {
1351
+ internalType: string;
1352
+ name: string;
1353
+ type: string;
1354
+ }[];
1355
+ internalType: string;
1356
+ name: string;
1357
+ type: string;
1358
+ }[];
1359
+ stateMutability: string;
1360
+ type: string;
1361
+ } | {
1362
+ inputs: {
1363
+ internalType: string;
1364
+ name: string;
1365
+ type: string;
1366
+ }[];
1367
+ name: string;
1368
+ outputs: {
1369
+ internalType: string;
1370
+ name: string;
1371
+ type: string;
1372
+ }[];
1373
+ stateMutability: string;
1374
+ type: string;
1375
+ })[];
1376
+ export { abi_23 as abi };
1377
+ let networks_23: {
1378
+ "1": {
1379
+ address: string;
1380
+ };
1381
+ };
1382
+ export { networks_23 as networks };
1383
+ }
1384
+ export namespace AaveLendingPoolV2 {
1385
+ let abi_24: ({
1386
+ anonymous: boolean;
1387
+ inputs: {
1388
+ indexed: boolean;
1389
+ internalType: string;
1390
+ name: string;
1391
+ type: string;
1392
+ }[];
1393
+ name: string;
1394
+ type: string;
1395
+ outputs?: undefined;
1396
+ stateMutability?: undefined;
1397
+ } | {
1398
+ inputs: {
1399
+ internalType: string;
1400
+ name: string;
1401
+ type: string;
1402
+ }[];
1403
+ name: string;
1404
+ outputs: {
1405
+ components: ({
1406
+ components: {
1407
+ internalType: string;
1408
+ name: string;
1409
+ type: string;
1410
+ }[];
1411
+ internalType: string;
1412
+ name: string;
1413
+ type: string;
1414
+ } | {
1415
+ internalType: string;
1416
+ name: string;
1417
+ type: string;
1418
+ components?: undefined;
1419
+ })[];
1420
+ internalType: string;
1421
+ name: string;
1422
+ type: string;
1423
+ }[];
1424
+ stateMutability: string;
1425
+ type: string;
1426
+ anonymous?: undefined;
1427
+ } | {
1428
+ inputs: {
1429
+ internalType: string;
1430
+ name: string;
1431
+ type: string;
1432
+ }[];
1433
+ name: string;
1434
+ outputs: {
1435
+ internalType: string;
1436
+ name: string;
1437
+ type: string;
1438
+ }[];
1439
+ stateMutability: string;
1440
+ type: string;
1441
+ anonymous?: undefined;
1442
+ })[];
1443
+ export { abi_24 as abi };
1444
+ let networks_24: {
1445
+ "1": {
1446
+ address: string;
1447
+ };
1448
+ };
1449
+ export { networks_24 as networks };
1450
+ }
1451
+ export namespace CompoundLoanInfo {
1452
+ let abi_25: ({
1453
+ inputs: {
1454
+ internalType: string;
1455
+ name: string;
1456
+ type: string;
1457
+ }[];
1458
+ name: string;
1459
+ outputs: {
1460
+ components: {
1461
+ internalType: string;
1462
+ name: string;
1463
+ type: string;
1464
+ }[];
1465
+ internalType: string;
1466
+ name: string;
1467
+ type: string;
1468
+ }[];
1469
+ stateMutability: string;
1470
+ type: string;
1471
+ } | {
1472
+ inputs: {
1473
+ internalType: string;
1474
+ name: string;
1475
+ type: string;
1476
+ }[];
1477
+ name: string;
1478
+ outputs: {
1479
+ internalType: string;
1480
+ name: string;
1481
+ type: string;
1482
+ }[];
1483
+ stateMutability: string;
1484
+ type: string;
1485
+ })[];
1486
+ export { abi_25 as abi };
1487
+ let networks_25: {
1488
+ "1": {
1489
+ address: string;
1490
+ createdBlock: number;
1491
+ oldVersions: {
1492
+ "10024350": string;
1493
+ "10027063": string;
1494
+ "10052917": string;
1495
+ "10411281": string;
1496
+ "10684038": string;
1497
+ "12503103": string;
1498
+ "13416222": string;
1499
+ "15442192": string;
1500
+ };
1501
+ };
1502
+ };
1503
+ export { networks_25 as networks };
1504
+ }
1505
+ export namespace Comptroller {
1506
+ let abi_26: ({
1507
+ inputs: never[];
1508
+ payable: boolean;
1509
+ stateMutability: string;
1510
+ type: string;
1511
+ anonymous?: undefined;
1512
+ name?: undefined;
1513
+ constant?: undefined;
1514
+ outputs?: undefined;
1515
+ } | {
1516
+ anonymous: boolean;
1517
+ inputs: {
1518
+ indexed: boolean;
1519
+ internalType: string;
1520
+ name: string;
1521
+ type: string;
1522
+ }[];
1523
+ name: string;
1524
+ type: string;
1525
+ payable?: undefined;
1526
+ stateMutability?: undefined;
1527
+ constant?: undefined;
1528
+ outputs?: undefined;
1529
+ } | {
1530
+ constant: boolean;
1531
+ inputs: {
1532
+ internalType: string;
1533
+ name: string;
1534
+ type: string;
1535
+ }[];
1536
+ name: string;
1537
+ outputs: {
1538
+ internalType: string;
1539
+ name: string;
1540
+ type: string;
1541
+ }[];
1542
+ payable: boolean;
1543
+ stateMutability: string;
1544
+ type: string;
1545
+ anonymous?: undefined;
1546
+ })[];
1547
+ export { abi_26 as abi };
1548
+ let networks_26: {
1549
+ "1": {
1550
+ createdBlock: number;
1551
+ address: string;
1552
+ };
1553
+ };
1554
+ export { networks_26 as networks };
1555
+ }
1556
+ export namespace IVariableDebtToken {
1557
+ let abi_27: {
1558
+ inputs: {
1559
+ internalType: string;
1560
+ name: string;
1561
+ type: string;
1562
+ }[];
1563
+ name: string;
1564
+ outputs: {
1565
+ internalType: string;
1566
+ name: string;
1567
+ type: string;
1568
+ }[];
1569
+ stateMutability: string;
1570
+ type: string;
1571
+ }[];
1572
+ export { abi_27 as abi };
1573
+ let networks_27: {
1574
+ "1": {
1575
+ address: string;
1576
+ };
1577
+ };
1578
+ export { networks_27 as networks };
1579
+ }
1580
+ export namespace IAToken {
1581
+ let abi_28: {
1582
+ inputs: {
1583
+ internalType: string;
1584
+ name: string;
1585
+ type: string;
1586
+ }[];
1587
+ name: string;
1588
+ outputs: {
1589
+ internalType: string;
1590
+ name: string;
1591
+ type: string;
1592
+ }[];
1593
+ stateMutability: string;
1594
+ type: string;
1595
+ }[];
1596
+ export { abi_28 as abi };
1597
+ let networks_28: {
1598
+ "1": {
1599
+ address: string;
1600
+ };
1601
+ };
1602
+ export { networks_28 as networks };
1603
+ }
1604
+ export namespace MorphoAaveV2Proxy {
1605
+ let abi_29: ({
1606
+ inputs: never[];
1607
+ name: string;
1608
+ type: string;
1609
+ anonymous?: undefined;
1610
+ outputs?: undefined;
1611
+ stateMutability?: undefined;
1612
+ } | {
1613
+ anonymous: boolean;
1614
+ inputs: {
1615
+ indexed: boolean;
1616
+ internalType: string;
1617
+ name: string;
1618
+ type: string;
1619
+ }[];
1620
+ name: string;
1621
+ type: string;
1622
+ outputs?: undefined;
1623
+ stateMutability?: undefined;
1624
+ } | {
1625
+ anonymous: boolean;
1626
+ inputs: {
1627
+ components: {
1628
+ internalType: string;
1629
+ name: string;
1630
+ type: string;
1631
+ }[];
1632
+ indexed: boolean;
1633
+ internalType: string;
1634
+ name: string;
1635
+ type: string;
1636
+ }[];
1637
+ name: string;
1638
+ type: string;
1639
+ outputs?: undefined;
1640
+ stateMutability?: undefined;
1641
+ } | {
1642
+ inputs: {
1643
+ internalType: string;
1644
+ name: string;
1645
+ type: string;
1646
+ }[];
1647
+ name: string;
1648
+ outputs: {
1649
+ internalType: string;
1650
+ name: string;
1651
+ type: string;
1652
+ }[];
1653
+ stateMutability: string;
1654
+ type: string;
1655
+ anonymous?: undefined;
1656
+ } | {
1657
+ inputs: ({
1658
+ internalType: string;
1659
+ name: string;
1660
+ type: string;
1661
+ components?: undefined;
1662
+ } | {
1663
+ components: {
1664
+ internalType: string;
1665
+ name: string;
1666
+ type: string;
1667
+ }[];
1668
+ internalType: string;
1669
+ name: string;
1670
+ type: string;
1671
+ })[];
1672
+ name: string;
1673
+ outputs: never[];
1674
+ stateMutability: string;
1675
+ type: string;
1676
+ anonymous?: undefined;
1677
+ })[];
1678
+ export { abi_29 as abi };
1679
+ let networks_29: {
1680
+ "1": {
1681
+ address: string;
1682
+ };
1683
+ };
1684
+ export { networks_29 as networks };
1685
+ }
1686
+ export namespace MorphoAaveV3ProxyEthMarket {
1687
+ let abi_30: ({
1688
+ inputs: {
1689
+ internalType: string;
1690
+ name: string;
1691
+ type: string;
1692
+ }[];
1693
+ name: string;
1694
+ outputs: {
1695
+ components: ({
1696
+ components: {
1697
+ components: {
1698
+ internalType: string;
1699
+ name: string;
1700
+ type: string;
1701
+ }[];
1702
+ internalType: string;
1703
+ name: string;
1704
+ type: string;
1705
+ }[];
1706
+ internalType: string;
1707
+ name: string;
1708
+ type: string;
1709
+ } | {
1710
+ internalType: string;
1711
+ name: string;
1712
+ type: string;
1713
+ components?: undefined;
1714
+ } | {
1715
+ components: {
1716
+ internalType: string;
1717
+ name: string;
1718
+ type: string;
1719
+ }[];
1720
+ internalType: string;
1721
+ name: string;
1722
+ type: string;
1723
+ })[];
1724
+ internalType: string;
1725
+ name: string;
1726
+ type: string;
1727
+ }[];
1728
+ stateMutability: string;
1729
+ type: string;
1730
+ } | {
1731
+ inputs: ({
1732
+ internalType: string;
1733
+ name: string;
1734
+ type: string;
1735
+ components?: undefined;
1736
+ } | {
1737
+ components: {
1738
+ internalType: string;
1739
+ name: string;
1740
+ type: string;
1741
+ }[];
1742
+ internalType: string;
1743
+ name: string;
1744
+ type: string;
1745
+ })[];
1746
+ name: string;
1747
+ outputs: {
1748
+ internalType: string;
1749
+ name: string;
1750
+ type: string;
1751
+ }[];
1752
+ stateMutability: string;
1753
+ type: string;
1754
+ })[];
1755
+ export { abi_30 as abi };
1756
+ let networks_30: {
1757
+ "1": {
1758
+ address: string;
1759
+ };
1760
+ };
1761
+ export { networks_30 as networks };
1762
+ }
1763
+ export namespace Pot {
1764
+ let abi_31: ({
1765
+ inputs: {
1766
+ internalType: string;
1767
+ name: string;
1768
+ type: string;
1769
+ }[];
1770
+ payable: boolean;
1771
+ stateMutability: string;
1772
+ type: string;
1773
+ anonymous?: undefined;
1774
+ name?: undefined;
1775
+ constant?: undefined;
1776
+ outputs?: undefined;
1777
+ } | {
1778
+ anonymous: boolean;
1779
+ inputs: {
1780
+ indexed: boolean;
1781
+ internalType: string;
1782
+ name: string;
1783
+ type: string;
1784
+ }[];
1785
+ name: string;
1786
+ type: string;
1787
+ payable?: undefined;
1788
+ stateMutability?: undefined;
1789
+ constant?: undefined;
1790
+ outputs?: undefined;
1791
+ } | {
1792
+ constant: boolean;
1793
+ inputs: {
1794
+ internalType: string;
1795
+ name: string;
1796
+ type: string;
1797
+ }[];
1798
+ name: string;
1799
+ outputs: {
1800
+ internalType: string;
1801
+ name: string;
1802
+ type: string;
1803
+ }[];
1804
+ payable: boolean;
1805
+ stateMutability: string;
1806
+ type: string;
1807
+ anonymous?: undefined;
1808
+ })[];
1809
+ export { abi_31 as abi };
1810
+ let networks_31: {
1811
+ "1": {
1812
+ address: string;
1813
+ createdBlock: number;
1814
+ };
1815
+ };
1816
+ export { networks_31 as networks };
1817
+ }
1818
+ export namespace MorphoAaveV2View {
1819
+ let abi_32: ({
1820
+ inputs: never[];
1821
+ name: string;
1822
+ outputs: {
1823
+ internalType: string;
1824
+ name: string;
1825
+ type: string;
1826
+ }[];
1827
+ stateMutability: string;
1828
+ type: string;
1829
+ } | {
1830
+ inputs: {
1831
+ internalType: string;
1832
+ name: string;
1833
+ type: string;
1834
+ }[];
1835
+ name: string;
1836
+ outputs: {
1837
+ components: ({
1838
+ internalType: string;
1839
+ name: string;
1840
+ type: string;
1841
+ components?: undefined;
1842
+ } | {
1843
+ components: {
1844
+ internalType: string;
1845
+ name: string;
1846
+ type: string;
1847
+ }[];
1848
+ internalType: string;
1849
+ name: string;
1850
+ type: string;
1851
+ })[];
1852
+ internalType: string;
1853
+ name: string;
1854
+ type: string;
1855
+ }[];
1856
+ stateMutability: string;
1857
+ type: string;
1858
+ })[];
1859
+ export { abi_32 as abi };
1860
+ let networks_32: {
1861
+ "1": {
1862
+ address: string;
1863
+ createdBlock: number;
1864
+ oldVersions: {
1865
+ "16586304": string;
1866
+ };
1867
+ };
1868
+ };
1869
+ export { networks_32 as networks };
1870
+ }
1871
+ export namespace SparkView {
1872
+ let abi_33: ({
1873
+ inputs: {
1874
+ internalType: string;
1875
+ name: string;
1876
+ type: string;
1877
+ }[];
1878
+ name: string;
1879
+ outputs: {
1880
+ internalType: string;
1881
+ name: string;
1882
+ type: string;
1883
+ }[];
1884
+ stateMutability: string;
1885
+ type: string;
1886
+ } | {
1887
+ inputs: {
1888
+ internalType: string;
1889
+ name: string;
1890
+ type: string;
1891
+ }[];
1892
+ name: string;
1893
+ outputs: {
1894
+ components: {
1895
+ internalType: string;
1896
+ name: string;
1897
+ type: string;
1898
+ }[];
1899
+ internalType: string;
1900
+ name: string;
1901
+ type: string;
1902
+ }[];
1903
+ stateMutability: string;
1904
+ type: string;
1905
+ } | {
1906
+ inputs: {
1907
+ components: {
1908
+ internalType: string;
1909
+ name: string;
1910
+ type: string;
1911
+ }[];
1912
+ internalType: string;
1913
+ name: string;
1914
+ type: string;
1915
+ }[];
1916
+ name: string;
1917
+ outputs: {
1918
+ internalType: string;
1919
+ name: string;
1920
+ type: string;
1921
+ }[];
1922
+ stateMutability: string;
1923
+ type: string;
1924
+ })[];
1925
+ export { abi_33 as abi };
1926
+ let networks_33: {
1927
+ "1": {
1928
+ address: string;
1929
+ createdBlock: number;
1930
+ oldVersions: {
1931
+ "17734126": string;
1932
+ };
1933
+ };
1934
+ };
1935
+ export { networks_33 as networks };
1936
+ }
1937
+ export namespace SparkIncentiveDataProvider {
1938
+ let abi_34: {
1939
+ inputs: {
1940
+ internalType: string;
1941
+ name: string;
1942
+ type: string;
1943
+ }[];
1944
+ name: string;
1945
+ outputs: {
1946
+ components: ({
1947
+ internalType: string;
1948
+ name: string;
1949
+ type: string;
1950
+ components?: undefined;
1951
+ } | {
1952
+ components: ({
1953
+ internalType: string;
1954
+ name: string;
1955
+ type: string;
1956
+ components?: undefined;
1957
+ } | {
1958
+ components: {
1959
+ internalType: string;
1960
+ name: string;
1961
+ type: string;
1962
+ }[];
1963
+ internalType: string;
1964
+ name: string;
1965
+ type: string;
1966
+ })[];
1967
+ internalType: string;
1968
+ name: string;
1969
+ type: string;
1970
+ })[];
1971
+ internalType: string;
1972
+ name: string;
1973
+ type: string;
1974
+ }[];
1975
+ stateMutability: string;
1976
+ type: string;
1977
+ }[];
1978
+ export { abi_34 as abi };
1979
+ let networks_34: {
1980
+ "1": {
1981
+ address: string;
1982
+ };
1983
+ };
1984
+ export { networks_34 as networks };
1985
+ }
1986
+ export namespace SparkLendingPool {
1987
+ let abi_35: ({
1988
+ inputs: {
1989
+ internalType: string;
1990
+ name: string;
1991
+ type: string;
1992
+ }[];
1993
+ stateMutability: string;
1994
+ type: string;
1995
+ anonymous?: undefined;
1996
+ name?: undefined;
1997
+ outputs?: undefined;
1998
+ } | {
1999
+ anonymous: boolean;
2000
+ inputs: {
2001
+ indexed: boolean;
2002
+ internalType: string;
2003
+ name: string;
2004
+ type: string;
2005
+ }[];
2006
+ name: string;
2007
+ type: string;
2008
+ stateMutability?: undefined;
2009
+ outputs?: undefined;
2010
+ } | {
2011
+ inputs: {
2012
+ internalType: string;
2013
+ name: string;
2014
+ type: string;
2015
+ }[];
2016
+ name: string;
2017
+ outputs: {
2018
+ internalType: string;
2019
+ name: string;
2020
+ type: string;
2021
+ }[];
2022
+ stateMutability: string;
2023
+ type: string;
2024
+ anonymous?: undefined;
2025
+ } | {
2026
+ inputs: ({
2027
+ internalType: string;
2028
+ name: string;
2029
+ type: string;
2030
+ components?: undefined;
2031
+ } | {
2032
+ components: {
2033
+ internalType: string;
2034
+ name: string;
2035
+ type: string;
2036
+ }[];
2037
+ internalType: string;
2038
+ name: string;
2039
+ type: string;
2040
+ })[];
2041
+ name: string;
2042
+ outputs: never[];
2043
+ stateMutability: string;
2044
+ type: string;
2045
+ anonymous?: undefined;
2046
+ } | {
2047
+ inputs: {
2048
+ internalType: string;
2049
+ name: string;
2050
+ type: string;
2051
+ }[];
2052
+ name: string;
2053
+ outputs: {
2054
+ components: ({
2055
+ components: {
2056
+ internalType: string;
2057
+ name: string;
2058
+ type: string;
2059
+ }[];
2060
+ internalType: string;
2061
+ name: string;
2062
+ type: string;
2063
+ } | {
2064
+ internalType: string;
2065
+ name: string;
2066
+ type: string;
2067
+ components?: undefined;
2068
+ })[];
2069
+ internalType: string;
2070
+ name: string;
2071
+ type: string;
2072
+ }[];
2073
+ stateMutability: string;
2074
+ type: string;
2075
+ anonymous?: undefined;
2076
+ })[];
2077
+ export { abi_35 as abi };
2078
+ let networks_35: {
2079
+ "1": {
2080
+ address: string;
2081
+ };
2082
+ };
2083
+ export { networks_35 as networks };
2084
+ }
2085
+ export namespace SparkPoolAddressesProvider {
2086
+ let abi_36: ({
2087
+ inputs: {
2088
+ internalType: string;
2089
+ name: string;
2090
+ type: string;
2091
+ }[];
2092
+ stateMutability: string;
2093
+ type: string;
2094
+ anonymous?: undefined;
2095
+ name?: undefined;
2096
+ outputs?: undefined;
2097
+ } | {
2098
+ anonymous: boolean;
2099
+ inputs: {
2100
+ indexed: boolean;
2101
+ internalType: string;
2102
+ name: string;
2103
+ type: string;
2104
+ }[];
2105
+ name: string;
2106
+ type: string;
2107
+ stateMutability?: undefined;
2108
+ outputs?: undefined;
2109
+ } | {
2110
+ inputs: {
2111
+ internalType: string;
2112
+ name: string;
2113
+ type: string;
2114
+ }[];
2115
+ name: string;
2116
+ outputs: {
2117
+ internalType: string;
2118
+ name: string;
2119
+ type: string;
2120
+ }[];
2121
+ stateMutability: string;
2122
+ type: string;
2123
+ anonymous?: undefined;
2124
+ })[];
2125
+ export { abi_36 as abi };
2126
+ let networks_36: {
2127
+ "1": {
2128
+ address: string;
2129
+ };
2130
+ };
2131
+ export { networks_36 as networks };
2132
+ }
2133
+ export namespace SparkProtocolDataProvider {
2134
+ let abi_37: ({
2135
+ inputs: {
2136
+ internalType: string;
2137
+ name: string;
2138
+ type: string;
2139
+ }[];
2140
+ stateMutability: string;
2141
+ type: string;
2142
+ name?: undefined;
2143
+ outputs?: undefined;
2144
+ } | {
2145
+ inputs: {
2146
+ internalType: string;
2147
+ name: string;
2148
+ type: string;
2149
+ }[];
2150
+ name: string;
2151
+ outputs: {
2152
+ internalType: string;
2153
+ name: string;
2154
+ type: string;
2155
+ }[];
2156
+ stateMutability: string;
2157
+ type: string;
2158
+ } | {
2159
+ inputs: never[];
2160
+ name: string;
2161
+ outputs: {
2162
+ components: {
2163
+ internalType: string;
2164
+ name: string;
2165
+ type: string;
2166
+ }[];
2167
+ internalType: string;
2168
+ name: string;
2169
+ type: string;
2170
+ }[];
2171
+ stateMutability: string;
2172
+ type: string;
2173
+ })[];
2174
+ export { abi_37 as abi };
2175
+ let networks_37: {
2176
+ "1": {
2177
+ address: string;
2178
+ };
2179
+ };
2180
+ export { networks_37 as networks };
2181
+ }
2182
+ export namespace crvUSDwstETHController {
2183
+ let abi_38: ({
2184
+ name: string;
2185
+ inputs: {
2186
+ name: string;
2187
+ type: string;
2188
+ indexed: boolean;
2189
+ }[];
2190
+ anonymous: boolean;
2191
+ type: string;
2192
+ stateMutability?: undefined;
2193
+ outputs?: undefined;
2194
+ } | {
2195
+ stateMutability: string;
2196
+ type: string;
2197
+ inputs: {
2198
+ name: string;
2199
+ type: string;
2200
+ }[];
2201
+ outputs: never[];
2202
+ name?: undefined;
2203
+ anonymous?: undefined;
2204
+ } | {
2205
+ stateMutability: string;
2206
+ type: string;
2207
+ name?: undefined;
2208
+ inputs?: undefined;
2209
+ anonymous?: undefined;
2210
+ outputs?: undefined;
2211
+ } | {
2212
+ stateMutability: string;
2213
+ type: string;
2214
+ name: string;
2215
+ inputs: {
2216
+ name: string;
2217
+ type: string;
2218
+ }[];
2219
+ outputs: {
2220
+ name: string;
2221
+ type: string;
2222
+ }[];
2223
+ anonymous?: undefined;
2224
+ } | {
2225
+ stateMutability: string;
2226
+ type: string;
2227
+ name: string;
2228
+ inputs: {
2229
+ name: string;
2230
+ type: string;
2231
+ }[];
2232
+ outputs: {
2233
+ name: string;
2234
+ type: string;
2235
+ components: {
2236
+ name: string;
2237
+ type: string;
2238
+ }[];
2239
+ }[];
2240
+ anonymous?: undefined;
2241
+ })[];
2242
+ export { abi_38 as abi };
2243
+ let networks_38: {
2244
+ "1": {
2245
+ address: string;
2246
+ };
2247
+ };
2248
+ export { networks_38 as networks };
2249
+ }
2250
+ export namespace crvUSDETHController {
2251
+ let abi_39: ({
2252
+ name: string;
2253
+ inputs: {
2254
+ name: string;
2255
+ type: string;
2256
+ indexed: boolean;
2257
+ }[];
2258
+ anonymous: boolean;
2259
+ type: string;
2260
+ stateMutability?: undefined;
2261
+ outputs?: undefined;
2262
+ } | {
2263
+ stateMutability: string;
2264
+ type: string;
2265
+ inputs: {
2266
+ name: string;
2267
+ type: string;
2268
+ }[];
2269
+ outputs: never[];
2270
+ name?: undefined;
2271
+ anonymous?: undefined;
2272
+ } | {
2273
+ stateMutability: string;
2274
+ type: string;
2275
+ name?: undefined;
2276
+ inputs?: undefined;
2277
+ anonymous?: undefined;
2278
+ outputs?: undefined;
2279
+ } | {
2280
+ stateMutability: string;
2281
+ type: string;
2282
+ name: string;
2283
+ inputs: {
2284
+ name: string;
2285
+ type: string;
2286
+ }[];
2287
+ outputs: {
2288
+ name: string;
2289
+ type: string;
2290
+ }[];
2291
+ anonymous?: undefined;
2292
+ } | {
2293
+ stateMutability: string;
2294
+ type: string;
2295
+ name: string;
2296
+ inputs: {
2297
+ name: string;
2298
+ type: string;
2299
+ }[];
2300
+ outputs: {
2301
+ name: string;
2302
+ type: string;
2303
+ components: {
2304
+ name: string;
2305
+ type: string;
2306
+ }[];
2307
+ }[];
2308
+ anonymous?: undefined;
2309
+ })[];
2310
+ export { abi_39 as abi };
2311
+ let networks_39: {
2312
+ "1": {
2313
+ address: string;
2314
+ };
2315
+ };
2316
+ export { networks_39 as networks };
2317
+ }
2318
+ export namespace crvUSDWBTCController {
2319
+ let abi_40: ({
2320
+ name: string;
2321
+ inputs: {
2322
+ name: string;
2323
+ type: string;
2324
+ indexed: boolean;
2325
+ }[];
2326
+ anonymous: boolean;
2327
+ type: string;
2328
+ stateMutability?: undefined;
2329
+ outputs?: undefined;
2330
+ } | {
2331
+ stateMutability: string;
2332
+ type: string;
2333
+ inputs: {
2334
+ name: string;
2335
+ type: string;
2336
+ }[];
2337
+ outputs: never[];
2338
+ name?: undefined;
2339
+ anonymous?: undefined;
2340
+ } | {
2341
+ stateMutability: string;
2342
+ type: string;
2343
+ name?: undefined;
2344
+ inputs?: undefined;
2345
+ anonymous?: undefined;
2346
+ outputs?: undefined;
2347
+ } | {
2348
+ stateMutability: string;
2349
+ type: string;
2350
+ name: string;
2351
+ inputs: {
2352
+ name: string;
2353
+ type: string;
2354
+ }[];
2355
+ outputs: {
2356
+ name: string;
2357
+ type: string;
2358
+ }[];
2359
+ anonymous?: undefined;
2360
+ } | {
2361
+ stateMutability: string;
2362
+ type: string;
2363
+ name: string;
2364
+ inputs: {
2365
+ name: string;
2366
+ type: string;
2367
+ }[];
2368
+ outputs: {
2369
+ name: string;
2370
+ type: string;
2371
+ components: {
2372
+ name: string;
2373
+ type: string;
2374
+ }[];
2375
+ }[];
2376
+ anonymous?: undefined;
2377
+ })[];
2378
+ export { abi_40 as abi };
2379
+ let networks_40: {
2380
+ "1": {
2381
+ address: string;
2382
+ };
2383
+ };
2384
+ export { networks_40 as networks };
2385
+ }
2386
+ export namespace crvUSDwstETHAmm {
2387
+ let abi_41: ({
2388
+ name: string;
2389
+ inputs: {
2390
+ name: string;
2391
+ type: string;
2392
+ indexed: boolean;
2393
+ }[];
2394
+ anonymous: boolean;
2395
+ type: string;
2396
+ stateMutability?: undefined;
2397
+ outputs?: undefined;
2398
+ } | {
2399
+ stateMutability: string;
2400
+ type: string;
2401
+ inputs: {
2402
+ name: string;
2403
+ type: string;
2404
+ }[];
2405
+ outputs: never[];
2406
+ name?: undefined;
2407
+ anonymous?: undefined;
2408
+ } | {
2409
+ stateMutability: string;
2410
+ type: string;
2411
+ name: string;
2412
+ inputs: {
2413
+ name: string;
2414
+ type: string;
2415
+ }[];
2416
+ outputs: {
2417
+ name: string;
2418
+ type: string;
2419
+ }[];
2420
+ anonymous?: undefined;
2421
+ })[];
2422
+ export { abi_41 as abi };
2423
+ let networks_41: {
2424
+ "1": {
2425
+ address: string;
2426
+ };
2427
+ };
2428
+ export { networks_41 as networks };
2429
+ }
2430
+ export namespace crvUSDETHAmm {
2431
+ let abi_42: ({
2432
+ name: string;
2433
+ inputs: {
2434
+ name: string;
2435
+ type: string;
2436
+ indexed: boolean;
2437
+ }[];
2438
+ anonymous: boolean;
2439
+ type: string;
2440
+ stateMutability?: undefined;
2441
+ outputs?: undefined;
2442
+ } | {
2443
+ stateMutability: string;
2444
+ type: string;
2445
+ inputs: {
2446
+ name: string;
2447
+ type: string;
2448
+ }[];
2449
+ outputs: never[];
2450
+ name?: undefined;
2451
+ anonymous?: undefined;
2452
+ } | {
2453
+ stateMutability: string;
2454
+ type: string;
2455
+ name: string;
2456
+ inputs: {
2457
+ name: string;
2458
+ type: string;
2459
+ }[];
2460
+ outputs: {
2461
+ name: string;
2462
+ type: string;
2463
+ }[];
2464
+ anonymous?: undefined;
2465
+ })[];
2466
+ export { abi_42 as abi };
2467
+ let networks_42: {
2468
+ "1": {
2469
+ address: string;
2470
+ };
2471
+ };
2472
+ export { networks_42 as networks };
2473
+ }
2474
+ export namespace crvUSDWBTCAmm {
2475
+ let abi_43: ({
2476
+ name: string;
2477
+ inputs: {
2478
+ name: string;
2479
+ type: string;
2480
+ indexed: boolean;
2481
+ }[];
2482
+ anonymous: boolean;
2483
+ type: string;
2484
+ stateMutability?: undefined;
2485
+ outputs?: undefined;
2486
+ } | {
2487
+ stateMutability: string;
2488
+ type: string;
2489
+ inputs: {
2490
+ name: string;
2491
+ type: string;
2492
+ }[];
2493
+ outputs: never[];
2494
+ name?: undefined;
2495
+ anonymous?: undefined;
2496
+ } | {
2497
+ stateMutability: string;
2498
+ type: string;
2499
+ name: string;
2500
+ inputs: {
2501
+ name: string;
2502
+ type: string;
2503
+ }[];
2504
+ outputs: {
2505
+ name: string;
2506
+ type: string;
2507
+ }[];
2508
+ anonymous?: undefined;
2509
+ })[];
2510
+ export { abi_43 as abi };
2511
+ let networks_43: {
2512
+ "1": {
2513
+ address: string;
2514
+ };
2515
+ };
2516
+ export { networks_43 as networks };
2517
+ }
2518
+ export namespace crvUSDView {
2519
+ let abi_44: ({
2520
+ inputs: {
2521
+ internalType: string;
2522
+ name: string;
2523
+ type: string;
2524
+ }[];
2525
+ name: string;
2526
+ outputs: {
2527
+ components: ({
2528
+ internalType: string;
2529
+ name: string;
2530
+ type: string;
2531
+ components?: undefined;
2532
+ } | {
2533
+ components: {
2534
+ internalType: string;
2535
+ name: string;
2536
+ type: string;
2537
+ }[];
2538
+ internalType: string;
2539
+ name: string;
2540
+ type: string;
2541
+ })[];
2542
+ internalType: string;
2543
+ name: string;
2544
+ type: string;
2545
+ }[];
2546
+ stateMutability: string;
2547
+ type: string;
2548
+ } | {
2549
+ inputs: {
2550
+ internalType: string;
2551
+ name: string;
2552
+ type: string;
2553
+ }[];
2554
+ name: string;
2555
+ outputs: {
2556
+ internalType: string;
2557
+ name: string;
2558
+ type: string;
2559
+ }[];
2560
+ stateMutability: string;
2561
+ type: string;
2562
+ })[];
2563
+ export { abi_44 as abi };
2564
+ let networks_44: {
2565
+ "1": {
2566
+ address: string;
2567
+ createdBlock: number;
2568
+ oldVersions: {
2569
+ "17657253": string;
2570
+ };
2571
+ };
2572
+ };
2573
+ export { networks_44 as networks };
2574
+ }
2575
+ export namespace crvUSDFactory {
2576
+ let abi_45: ({
2577
+ name: string;
2578
+ inputs: {
2579
+ name: string;
2580
+ type: string;
2581
+ indexed: boolean;
2582
+ }[];
2583
+ anonymous: boolean;
2584
+ type: string;
2585
+ stateMutability?: undefined;
2586
+ outputs?: undefined;
2587
+ } | {
2588
+ stateMutability: string;
2589
+ type: string;
2590
+ inputs: {
2591
+ name: string;
2592
+ type: string;
2593
+ }[];
2594
+ outputs: never[];
2595
+ name?: undefined;
2596
+ anonymous?: undefined;
2597
+ } | {
2598
+ stateMutability: string;
2599
+ type: string;
2600
+ name: string;
2601
+ inputs: {
2602
+ name: string;
2603
+ type: string;
2604
+ }[];
2605
+ outputs: {
2606
+ name: string;
2607
+ type: string;
2608
+ }[];
2609
+ anonymous?: undefined;
2610
+ })[];
2611
+ export { abi_45 as abi };
2612
+ let networks_45: {
2613
+ "1": {
2614
+ address: string;
2615
+ };
2616
+ };
2617
+ export { networks_45 as networks };
2618
+ }
2619
+ export namespace LiquityView {
2620
+ let abi_46: {
2621
+ inputs: {
2622
+ internalType: string;
2623
+ name: string;
2624
+ type: string;
2625
+ }[];
2626
+ name: string;
2627
+ outputs: {
2628
+ internalType: string;
2629
+ name: string;
2630
+ type: string;
2631
+ }[];
2632
+ stateMutability: string;
2633
+ type: string;
2634
+ }[];
2635
+ export { abi_46 as abi };
2636
+ let networks_46: {
2637
+ "1": {
2638
+ address: string;
2639
+ createdBlock: number;
2640
+ oldVersions: {
2641
+ "12549073": string;
2642
+ "12567960": string;
2643
+ "12638758": string;
2644
+ "12746821": string;
2645
+ };
2646
+ };
2647
+ };
2648
+ export { networks_46 as networks };
2649
+ }
2650
+ export namespace CollSurplusPool {
2651
+ let abi_47: ({
2652
+ anonymous: boolean;
2653
+ inputs: {
2654
+ indexed: boolean;
2655
+ internalType: string;
2656
+ name: string;
2657
+ type: string;
2658
+ }[];
2659
+ name: string;
2660
+ type: string;
2661
+ outputs?: undefined;
2662
+ stateMutability?: undefined;
2663
+ } | {
2664
+ inputs: {
2665
+ internalType: string;
2666
+ name: string;
2667
+ type: string;
2668
+ }[];
2669
+ name: string;
2670
+ outputs: {
2671
+ internalType: string;
2672
+ name: string;
2673
+ type: string;
2674
+ }[];
2675
+ stateMutability: string;
2676
+ type: string;
2677
+ anonymous?: undefined;
2678
+ } | {
2679
+ stateMutability: string;
2680
+ type: string;
2681
+ anonymous?: undefined;
2682
+ inputs?: undefined;
2683
+ name?: undefined;
2684
+ outputs?: undefined;
2685
+ })[];
2686
+ export { abi_47 as abi };
2687
+ let networks_47: {
2688
+ "1": {
2689
+ address: string;
2690
+ };
2691
+ };
2692
+ export { networks_47 as networks };
2693
+ }
2694
+ export namespace TroveManager {
2695
+ let abi_48: ({
2696
+ anonymous: boolean;
2697
+ inputs: {
2698
+ indexed: boolean;
2699
+ internalType: string;
2700
+ name: string;
2701
+ type: string;
2702
+ }[];
2703
+ name: string;
2704
+ type: string;
2705
+ outputs?: undefined;
2706
+ stateMutability?: undefined;
2707
+ } | {
2708
+ inputs: {
2709
+ internalType: string;
2710
+ name: string;
2711
+ type: string;
2712
+ }[];
2713
+ name: string;
2714
+ outputs: {
2715
+ internalType: string;
2716
+ name: string;
2717
+ type: string;
2718
+ }[];
2719
+ stateMutability: string;
2720
+ type: string;
2721
+ anonymous?: undefined;
2722
+ })[];
2723
+ export { abi_48 as abi };
2724
+ let networks_48: {
2725
+ "1": {
2726
+ address: string;
2727
+ };
2728
+ };
2729
+ export { networks_48 as networks };
2730
+ }
2731
+ export namespace PriceFeed {
2732
+ let abi_49: ({
2733
+ anonymous: boolean;
2734
+ inputs: {
2735
+ indexed: boolean;
2736
+ internalType: string;
2737
+ name: string;
2738
+ type: string;
2739
+ }[];
2740
+ name: string;
2741
+ type: string;
2742
+ outputs?: undefined;
2743
+ stateMutability?: undefined;
2744
+ } | {
2745
+ inputs: never[];
2746
+ name: string;
2747
+ outputs: {
2748
+ internalType: string;
2749
+ name: string;
2750
+ type: string;
2751
+ }[];
2752
+ stateMutability: string;
2753
+ type: string;
2754
+ anonymous?: undefined;
2755
+ } | {
2756
+ inputs: {
2757
+ internalType: string;
2758
+ name: string;
2759
+ type: string;
2760
+ }[];
2761
+ name: string;
2762
+ outputs: never[];
2763
+ stateMutability: string;
2764
+ type: string;
2765
+ anonymous?: undefined;
2766
+ })[];
2767
+ export { abi_49 as abi };
2768
+ let networks_49: {
2769
+ "1": {
2770
+ address: string;
2771
+ };
2772
+ };
2773
+ export { networks_49 as networks };
2774
+ }
2775
+ export namespace LiquityActivePool {
2776
+ let abi_50: {
2777
+ inputs: never[];
2778
+ name: string;
2779
+ outputs: {
2780
+ internalType: string;
2781
+ name: string;
2782
+ type: string;
2783
+ }[];
2784
+ stateMutability: string;
2785
+ type: string;
2786
+ }[];
2787
+ export { abi_50 as abi };
2788
+ let networks_50: {
2789
+ "1": {
2790
+ address: string;
2791
+ };
2792
+ };
2793
+ export { networks_50 as networks };
2794
+ }
2795
+ export namespace McdView {
2796
+ let abi_51: {
2797
+ inputs: {
2798
+ internalType: string;
2799
+ name: string;
2800
+ type: string;
2801
+ }[];
2802
+ name: string;
2803
+ outputs: {
2804
+ internalType: string;
2805
+ name: string;
2806
+ type: string;
2807
+ }[];
2808
+ stateMutability: string;
2809
+ type: string;
2810
+ }[];
2811
+ export { abi_51 as abi };
2812
+ let networks_51: {
2813
+ "1": {
2814
+ address: string;
2815
+ createdBlock: number;
2816
+ oldVersions: {
2817
+ "14384301": string;
2818
+ };
2819
+ };
2820
+ };
2821
+ export { networks_51 as networks };
2822
+ }
2823
+ export namespace McdSpotter {
2824
+ let abi_52: {
2825
+ constant: boolean;
2826
+ inputs: {
2827
+ name: string;
2828
+ type: string;
2829
+ }[];
2830
+ name: string;
2831
+ outputs: {
2832
+ name: string;
2833
+ type: string;
2834
+ }[];
2835
+ payable: boolean;
2836
+ stateMutability: string;
2837
+ type: string;
2838
+ }[];
2839
+ export { abi_52 as abi };
2840
+ let networks_52: {
2841
+ "1": {
2842
+ address: string;
2843
+ };
2844
+ };
2845
+ export { networks_52 as networks };
2846
+ }
2847
+ export namespace McdVat {
2848
+ let abi_53: ({
2849
+ inputs: never[];
2850
+ payable: boolean;
2851
+ stateMutability: string;
2852
+ type: string;
2853
+ anonymous?: undefined;
2854
+ name?: undefined;
2855
+ constant?: undefined;
2856
+ outputs?: undefined;
2857
+ } | {
2858
+ anonymous: boolean;
2859
+ inputs: {
2860
+ indexed: boolean;
2861
+ internalType: string;
2862
+ name: string;
2863
+ type: string;
2864
+ }[];
2865
+ name: string;
2866
+ type: string;
2867
+ payable?: undefined;
2868
+ stateMutability?: undefined;
2869
+ constant?: undefined;
2870
+ outputs?: undefined;
2871
+ } | {
2872
+ constant: boolean;
2873
+ inputs: {
2874
+ internalType: string;
2875
+ name: string;
2876
+ type: string;
2877
+ }[];
2878
+ name: string;
2879
+ outputs: {
2880
+ internalType: string;
2881
+ name: string;
2882
+ type: string;
2883
+ }[];
2884
+ payable: boolean;
2885
+ stateMutability: string;
2886
+ type: string;
2887
+ anonymous?: undefined;
2888
+ })[];
2889
+ export { abi_53 as abi };
2890
+ let networks_53: {
2891
+ "1": {
2892
+ address: string;
2893
+ };
2894
+ };
2895
+ export { networks_53 as networks };
2896
+ }
2897
+ export namespace McdJug {
2898
+ let abi_54: ({
2899
+ inputs: {
2900
+ internalType: string;
2901
+ name: string;
2902
+ type: string;
2903
+ }[];
2904
+ payable: boolean;
2905
+ stateMutability: string;
2906
+ type: string;
2907
+ anonymous?: undefined;
2908
+ name?: undefined;
2909
+ constant?: undefined;
2910
+ outputs?: undefined;
2911
+ } | {
2912
+ anonymous: boolean;
2913
+ inputs: {
2914
+ indexed: boolean;
2915
+ internalType: string;
2916
+ name: string;
2917
+ type: string;
2918
+ }[];
2919
+ name: string;
2920
+ type: string;
2921
+ payable?: undefined;
2922
+ stateMutability?: undefined;
2923
+ constant?: undefined;
2924
+ outputs?: undefined;
2925
+ } | {
2926
+ constant: boolean;
2927
+ inputs: {
2928
+ internalType: string;
2929
+ name: string;
2930
+ type: string;
2931
+ }[];
2932
+ name: string;
2933
+ outputs: {
2934
+ internalType: string;
2935
+ name: string;
2936
+ type: string;
2937
+ }[];
2938
+ payable: boolean;
2939
+ stateMutability: string;
2940
+ type: string;
2941
+ anonymous?: undefined;
2942
+ })[];
2943
+ export { abi_54 as abi };
2944
+ let networks_54: {
2945
+ "1": {
2946
+ address: string;
2947
+ };
2948
+ };
2949
+ export { networks_54 as networks };
2950
+ }
2951
+ export namespace McdDog {
2952
+ let abi_55: ({
2953
+ inputs: {
2954
+ internalType: string;
2955
+ name: string;
2956
+ type: string;
2957
+ }[];
2958
+ stateMutability: string;
2959
+ type: string;
2960
+ anonymous?: undefined;
2961
+ name?: undefined;
2962
+ outputs?: undefined;
2963
+ } | {
2964
+ anonymous: boolean;
2965
+ inputs: {
2966
+ indexed: boolean;
2967
+ internalType: string;
2968
+ name: string;
2969
+ type: string;
2970
+ }[];
2971
+ name: string;
2972
+ type: string;
2973
+ stateMutability?: undefined;
2974
+ outputs?: undefined;
2975
+ } | {
2976
+ inputs: {
2977
+ internalType: string;
2978
+ name: string;
2979
+ type: string;
2980
+ }[];
2981
+ name: string;
2982
+ outputs: {
2983
+ internalType: string;
2984
+ name: string;
2985
+ type: string;
2986
+ }[];
2987
+ stateMutability: string;
2988
+ type: string;
2989
+ anonymous?: undefined;
2990
+ })[];
2991
+ export { abi_55 as abi };
2992
+ let networks_55: {
2993
+ "1": {
2994
+ address: string;
2995
+ };
2996
+ };
2997
+ export { networks_55 as networks };
2998
+ }
2999
+ export namespace ChickenBondsView {
3000
+ let abi_56: {
3001
+ inputs: {
3002
+ internalType: string;
3003
+ name: string;
3004
+ type: string;
3005
+ }[];
3006
+ name: string;
3007
+ outputs: {
3008
+ components: {
3009
+ internalType: string;
3010
+ name: string;
3011
+ type: string;
3012
+ }[];
3013
+ internalType: string;
3014
+ name: string;
3015
+ type: string;
3016
+ }[];
3017
+ stateMutability: string;
3018
+ type: string;
3019
+ }[];
3020
+ export { abi_56 as abi };
3021
+ let networks_56: {
3022
+ "1": {
3023
+ address: string;
3024
+ createdBlock: number;
3025
+ };
3026
+ };
3027
+ export { networks_56 as networks };
3028
+ }