@gearbox-protocol/sdk 3.0.0-next.204 → 3.0.0-next.206

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 (917) hide show
  1. package/contracts/SignUpRepository.sol +85 -0
  2. package/contracts/index.sol +2 -0
  3. package/lib/apy/auraAbi.d.ts +15 -17
  4. package/lib/apy/auraAbi.js +1 -3
  5. package/lib/apy/convexAPY.d.ts +1186 -10
  6. package/lib/apy/convexAPY.js +35 -29
  7. package/lib/apy/curveAPY.d.ts +9 -8
  8. package/lib/contracts/contractsRegister.d.ts +6 -5
  9. package/lib/contracts/contractsRegister.js +1 -1
  10. package/lib/core/assets.d.ts +10 -9
  11. package/lib/core/bot.d.ts +2 -1
  12. package/lib/core/creditAccount.d.ts +46 -45
  13. package/lib/core/creditAccount.js +4 -3
  14. package/lib/core/creditManager.d.ts +29 -35
  15. package/lib/core/creditManager.js +66 -59
  16. package/lib/core/creditSession.d.ts +14 -13
  17. package/lib/core/eventOrTx.d.ts +3 -2
  18. package/lib/core/events.d.ts +163 -162
  19. package/lib/core/gauge.d.ts +19 -5
  20. package/lib/core/gauge.js +9 -8
  21. package/lib/core/gaugeMath.d.ts +4 -3
  22. package/lib/core/pool.d.ts +37 -25
  23. package/lib/core/pool.js +18 -18
  24. package/lib/core/priceOracle.d.ts +1 -1
  25. package/lib/core/rewardClaimer.d.ts +4 -4
  26. package/lib/core/rewardConvex.d.ts +13 -11
  27. package/lib/core/rewardConvex.js +26 -16
  28. package/lib/core/rewardConvex.spec.js +12 -6
  29. package/lib/core/strategy.d.ts +5 -4
  30. package/lib/core/trade.d.ts +7 -6
  31. package/lib/core/transactions.d.ts +78 -77
  32. package/lib/gearboxRewards/api.d.ts +30 -27
  33. package/lib/gearboxRewards/api.js +91 -57
  34. package/lib/gearboxRewards/apy.d.ts +7 -6
  35. package/lib/gearboxRewards/extraAPY.d.ts +8 -7
  36. package/lib/gearboxRewards/merklAPI.d.ts +1 -1
  37. package/lib/index.d.ts +0 -2
  38. package/lib/index.js +0 -4
  39. package/lib/parsers/ERC20Parser.d.ts +2 -1
  40. package/lib/parsers/ERC20Parser.js +7 -7
  41. package/lib/parsers/aaveV2LendingPoolAdapterParser.d.ts +2 -1
  42. package/lib/parsers/aaveV2LendingPoolAdapterParser.js +4 -4
  43. package/lib/parsers/aaveV2WrappedATokenAdapterParser.d.ts +2 -1
  44. package/lib/parsers/aaveV2WrappedATokenAdapterParser.js +4 -4
  45. package/lib/parsers/abstractParser.d.ts +21 -17
  46. package/lib/parsers/abstractParser.js +22 -17
  47. package/lib/parsers/balancerV2VaultParser.d.ts +2 -1
  48. package/lib/parsers/balancerV2VaultParser.js +6 -8
  49. package/lib/parsers/compoundV2CTokenAdapterParser.d.ts +2 -1
  50. package/lib/parsers/compoundV2CTokenAdapterParser.js +4 -4
  51. package/lib/parsers/convexBaseRewardPoolAdapterParser.d.ts +3 -2
  52. package/lib/parsers/convexBaseRewardPoolAdapterParser.js +8 -8
  53. package/lib/parsers/convexBoosterAdapterParser.d.ts +3 -3
  54. package/lib/parsers/convexBoosterAdapterParser.js +8 -8
  55. package/lib/parsers/convextRewardPoolParser.d.ts +2 -1
  56. package/lib/parsers/convextRewardPoolParser.js +4 -4
  57. package/lib/parsers/creditFacadeParser.d.ts +3 -2
  58. package/lib/parsers/creditFacadeParser.js +15 -17
  59. package/lib/parsers/creditManagerParser.d.ts +2 -1
  60. package/lib/parsers/creditManagerParser.js +4 -7
  61. package/lib/parsers/curveAdapterParser.d.ts +3 -2
  62. package/lib/parsers/curveAdapterParser.js +21 -21
  63. package/lib/parsers/erc626AdapterParser.d.ts +2 -1
  64. package/lib/parsers/erc626AdapterParser.js +4 -4
  65. package/lib/parsers/iParser.d.ts +4 -7
  66. package/lib/parsers/lidoAdapterParser.d.ts +2 -1
  67. package/lib/parsers/lidoAdapterParser.js +6 -6
  68. package/lib/parsers/lidoSTETHParser.d.ts +2 -1
  69. package/lib/parsers/lidoSTETHParser.js +7 -7
  70. package/lib/parsers/priceOracleParser.d.ts +2 -1
  71. package/lib/parsers/priceOracleParser.js +5 -5
  72. package/lib/parsers/txParser.d.ts +15 -24
  73. package/lib/parsers/txParser.js +2 -10
  74. package/lib/parsers/uniV2AdapterParser.d.ts +2 -2
  75. package/lib/parsers/uniV2AdapterParser.js +7 -10
  76. package/lib/parsers/uniV2AdapterParser.spec.js +42 -30
  77. package/lib/parsers/uniV3AdapterParser.d.ts +4 -3
  78. package/lib/parsers/uniV3AdapterParser.js +16 -10
  79. package/lib/parsers/uniV3AdapterParser.spec.js +52 -76
  80. package/lib/parsers/wstETHAdapterParser.d.ts +2 -1
  81. package/lib/parsers/wstETHAdapterParser.js +11 -13
  82. package/lib/parsers/wstETHAdapterParser.spec.js +21 -5
  83. package/lib/parsers/yearnAdapterParser.spec.js +37 -19
  84. package/lib/parsers/yearnV2AdapterParser.d.ts +2 -1
  85. package/lib/parsers/yearnV2AdapterParser.js +9 -9
  86. package/lib/pathfinder/core.d.ts +21 -9
  87. package/lib/pathfinder/pathOptions.d.ts +5 -4
  88. package/lib/pathfinder/pathfinder.d.ts +18 -19
  89. package/lib/pathfinder/pathfinder.js +42 -32
  90. package/lib/pathfinder/pathfinder.spec.js +3 -3
  91. package/lib/pathfinder/utils.d.ts +15 -16
  92. package/lib/pathfinder/utils.js +29 -24
  93. package/lib/payload/bot.d.ts +6 -6
  94. package/lib/payload/creditAccount.d.ts +48 -5
  95. package/lib/payload/creditManager.d.ts +55 -17
  96. package/lib/payload/creditSession.d.ts +18 -17
  97. package/lib/payload/gauge.d.ts +38 -9
  98. package/lib/payload/pool.d.ts +78 -21
  99. package/lib/payload/token.d.ts +2 -1
  100. package/lib/redstone/api.d.ts +10 -10
  101. package/lib/redstone/api.js +114 -94
  102. package/lib/tokens/tokenData.d.ts +2 -1
  103. package/lib/types/CompositePriceFeed.d.ts +182 -90
  104. package/lib/types/CompositePriceFeed.js +121 -0
  105. package/lib/types/IAaveV2_LendingPoolAdapter.d.ts +151 -127
  106. package/lib/types/IAaveV2_LendingPoolAdapter.js +96 -0
  107. package/lib/types/IAaveV2_WrappedATokenAdapter.d.ts +245 -205
  108. package/lib/types/IAaveV2_WrappedATokenAdapter.js +164 -0
  109. package/lib/types/IAddressProviderV3.d.ts +85 -0
  110. package/lib/types/IAddressProviderV3.js +66 -0
  111. package/lib/types/IAirdropDistributor.d.ts +112 -0
  112. package/lib/types/{factories/IAirdropDistributor.sol/IAirdropDistributor__factory.js → IAirdropDistributor.js} +30 -86
  113. package/lib/types/IBalancerV2VaultAdapter.d.ts +507 -0
  114. package/lib/types/IBalancerV2VaultAdapter.js +322 -0
  115. package/lib/types/IBaseRewardPool.d.ts +391 -201
  116. package/lib/types/IBaseRewardPool.js +249 -0
  117. package/lib/types/ICompoundV2_CTokenAdapter.d.ts +189 -0
  118. package/lib/types/ICompoundV2_CTokenAdapter.js +130 -0
  119. package/lib/types/IConvexToken.d.ts +201 -153
  120. package/lib/types/IConvexToken.js +143 -0
  121. package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +299 -217
  122. package/lib/types/IConvexV1BaseRewardPoolAdapter.js +202 -0
  123. package/lib/types/IConvexV1BoosterAdapter.d.ts +182 -0
  124. package/lib/types/IConvexV1BoosterAdapter.js +125 -0
  125. package/lib/types/ICreditConfiguratorV3.d.ts +598 -0
  126. package/lib/types/{factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.js → ICreditConfiguratorV3.js} +134 -318
  127. package/lib/types/ICreditFacadeV2Extended.d.ts +74 -0
  128. package/lib/types/ICreditFacadeV2Extended.js +63 -0
  129. package/lib/types/ICreditFacadeV3.d.ts +543 -0
  130. package/lib/types/{factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js → ICreditFacadeV3.js} +123 -347
  131. package/lib/types/ICreditFacadeV3Multicall.d.ts +197 -194
  132. package/lib/types/ICreditFacadeV3Multicall.js +142 -0
  133. package/lib/types/ICreditManagerV2.d.ts +700 -0
  134. package/lib/types/ICreditManagerV2.js +443 -0
  135. package/lib/types/ICreditManagerV3.d.ts +1016 -0
  136. package/lib/types/ICreditManagerV3.js +672 -0
  137. package/lib/types/ICurvePool.d.ts +559 -347
  138. package/lib/types/ICurvePool.js +332 -0
  139. package/lib/types/ICurveV1_2AssetsAdapter.d.ts +665 -457
  140. package/lib/types/ICurveV1_2AssetsAdapter.js +404 -0
  141. package/lib/types/ICurveV1_3AssetsAdapter.d.ts +665 -457
  142. package/lib/types/ICurveV1_3AssetsAdapter.js +404 -0
  143. package/lib/types/ICurveV1_4AssetsAdapter.d.ts +665 -481
  144. package/lib/types/ICurveV1_4AssetsAdapter.js +404 -0
  145. package/lib/types/IDataCompressorV2_1.d.ts +1165 -491
  146. package/lib/types/IDataCompressorV2_1.js +718 -0
  147. package/lib/types/IDataCompressorV3.d.ts +1573 -581
  148. package/lib/types/IDataCompressorV3.js +957 -0
  149. package/lib/types/IDegenDistributor.d.ts +77 -0
  150. package/lib/types/IDegenDistributor.js +72 -0
  151. package/lib/types/IERC20.d.ts +141 -129
  152. package/lib/types/IERC20.js +101 -0
  153. package/lib/types/IERC20Permit.d.ts +59 -61
  154. package/lib/types/IERC20Permit.js +35 -0
  155. package/lib/types/IERC20ZapperDeposits.d.ts +113 -112
  156. package/lib/types/IERC20ZapperDeposits.js +64 -0
  157. package/lib/types/IERC4626Adapter.d.ts +213 -173
  158. package/lib/types/IERC4626Adapter.js +140 -0
  159. package/lib/types/IETHZapperDeposits.d.ts +33 -39
  160. package/lib/types/IETHZapperDeposits.js +27 -0
  161. package/lib/types/IFarmingPool.d.ts +292 -245
  162. package/lib/types/IFarmingPool.js +229 -0
  163. package/lib/types/IGearStakingV3.d.ts +497 -0
  164. package/lib/types/IGearStakingV3.js +368 -0
  165. package/lib/types/IInterestRateModel.d.ts +29 -39
  166. package/lib/types/IInterestRateModel.js +23 -0
  167. package/lib/types/ILidoV1Adapter.d.ts +137 -97
  168. package/lib/types/ILidoV1Adapter.js +98 -0
  169. package/lib/types/IMulticall3.d.ts +332 -0
  170. package/lib/types/IMulticall3.js +244 -0
  171. package/lib/types/IOffchainOracle.d.ts +41 -51
  172. package/lib/types/IOffchainOracle.js +31 -0
  173. package/lib/types/IPartialLiquidationBotV3.d.ts +210 -154
  174. package/lib/types/IPartialLiquidationBotV3.js +141 -0
  175. package/lib/types/IPoolV3.d.ts +1061 -0
  176. package/lib/types/IPoolV3.js +806 -0
  177. package/lib/types/IPriceFeed.d.ts +77 -0
  178. package/lib/types/IPriceFeed.js +56 -0
  179. package/lib/types/IPriceOracleBase.d.ts +97 -77
  180. package/lib/types/IPriceOracleBase.js +58 -0
  181. package/lib/types/IPriceOracleV3.d.ts +319 -0
  182. package/lib/types/IPriceOracleV3.js +210 -0
  183. package/lib/types/IRouterV3.d.ts +505 -333
  184. package/lib/types/IRouterV3.js +326 -0
  185. package/lib/types/IUniswapV2Adapter.d.ts +214 -0
  186. package/lib/types/IUniswapV2Adapter.js +139 -0
  187. package/lib/types/IUniswapV3Adapter.d.ts +391 -0
  188. package/lib/types/IUniswapV3Adapter.js +260 -0
  189. package/lib/types/IUpdatablePriceFeed.d.ts +97 -0
  190. package/lib/types/IUpdatablePriceFeed.js +70 -0
  191. package/lib/types/IYearnV2Adapter.d.ts +223 -187
  192. package/lib/types/IYearnV2Adapter.js +146 -0
  193. package/lib/types/IZapper.d.ts +121 -96
  194. package/lib/types/IZapper.js +84 -0
  195. package/lib/types/IstETH.d.ts +257 -0
  196. package/lib/types/IstETH.js +175 -0
  197. package/lib/types/IwstETH.d.ts +257 -0
  198. package/lib/types/IwstETH.js +181 -0
  199. package/lib/types/IwstETHV1Adapter.d.ts +153 -125
  200. package/lib/types/IwstETHV1Adapter.js +106 -0
  201. package/lib/types/RedstonePriceFeed.d.ts +423 -0
  202. package/lib/types/RedstonePriceFeed.js +287 -0
  203. package/lib/types/SignUpRepository.d.ts +161 -0
  204. package/lib/types/SignUpRepository.js +137 -0
  205. package/lib/types/index.d.ts +51 -371
  206. package/lib/types/index.js +53 -307
  207. package/lib/utils/calls.d.ts +28 -4
  208. package/lib/utils/calls.js +65 -21
  209. package/lib/utils/formatter.d.ts +1 -1
  210. package/package.json +7 -7
  211. package/lib/core/errors.d.ts +0 -5
  212. package/lib/core/errors.js +0 -2
  213. package/lib/parsers/addressProviderParser.d.ts +0 -6
  214. package/lib/parsers/addressProviderParser.js +0 -27
  215. package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.d.ts +0 -1
  216. package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.js +0 -27
  217. package/lib/parsers/convexBoosterAdapterParser.spec.d.ts +0 -1
  218. package/lib/parsers/convexBoosterAdapterParser.spec.js +0 -20
  219. package/lib/parsers/creditFacadeParser.spec.d.ts +0 -1
  220. package/lib/parsers/creditFacadeParser.spec.js +0 -25
  221. package/lib/parsers/curveAdapterParser.spec.d.ts +0 -1
  222. package/lib/parsers/curveAdapterParser.spec.js +0 -46
  223. package/lib/parsers/lidoAdapterParser.spec.d.ts +0 -1
  224. package/lib/parsers/lidoAdapterParser.spec.js +0 -17
  225. package/lib/parsers/poolParser.d.ts +0 -6
  226. package/lib/parsers/poolParser.js +0 -19
  227. package/lib/pathfinder/v1/core.d.ts +0 -16
  228. package/lib/pathfinder/v1/core.js +0 -2
  229. package/lib/pathfinder/v1/pathfinderv1.d.ts +0 -46
  230. package/lib/pathfinder/v1/pathfinderv1.js +0 -154
  231. package/lib/pathfinder/v1/pathfinderv1.spec.d.ts +0 -1
  232. package/lib/pathfinder/v1/pathfinderv1.spec.js +0 -39
  233. package/lib/types/AddressProvider.d.ts +0 -201
  234. package/lib/types/AddressProvider.js +0 -2
  235. package/lib/types/Balances.sol/BalanceOps.d.ts +0 -20
  236. package/lib/types/Balances.sol/BalanceOps.js +0 -2
  237. package/lib/types/Balances.sol/index.d.ts +0 -1
  238. package/lib/types/Balances.sol/index.js +0 -2
  239. package/lib/types/CalldataExtractor.d.ts +0 -28
  240. package/lib/types/CalldataExtractor.js +0 -2
  241. package/lib/types/Claimable.d.ts +0 -62
  242. package/lib/types/Claimable.js +0 -2
  243. package/lib/types/ContractsRegisterTrait.d.ts +0 -25
  244. package/lib/types/ContractsRegisterTrait.js +0 -2
  245. package/lib/types/ERC20.d.ts +0 -169
  246. package/lib/types/ERC20.js +0 -2
  247. package/lib/types/Errors.d.ts +0 -177
  248. package/lib/types/Errors.js +0 -2
  249. package/lib/types/FarmAccounting.d.ts +0 -20
  250. package/lib/types/FarmAccounting.js +0 -2
  251. package/lib/types/IAdapter.d.ts +0 -41
  252. package/lib/types/IAdapter.js +0 -2
  253. package/lib/types/IAddressProvider.sol/IAddressProvider.d.ts +0 -82
  254. package/lib/types/IAddressProvider.sol/IAddressProvider.js +0 -2
  255. package/lib/types/IAddressProvider.sol/IAddressProviderEvents.d.ts +0 -37
  256. package/lib/types/IAddressProvider.sol/IAddressProviderEvents.js +0 -2
  257. package/lib/types/IAddressProvider.sol/index.d.ts +0 -2
  258. package/lib/types/IAddressProvider.sol/index.js +0 -2
  259. package/lib/types/IAddressProviderV3.sol/IAddressProviderV3.d.ts +0 -91
  260. package/lib/types/IAddressProviderV3.sol/IAddressProviderV3.js +0 -2
  261. package/lib/types/IAddressProviderV3.sol/IAddressProviderV3Events.d.ts +0 -42
  262. package/lib/types/IAddressProviderV3.sol/IAddressProviderV3Events.js +0 -2
  263. package/lib/types/IAddressProviderV3.sol/index.d.ts +0 -2
  264. package/lib/types/IAddressProviderV3.sol/index.js +0 -2
  265. package/lib/types/IAirdropDistributor.sol/IAirdropDistributor.d.ts +0 -116
  266. package/lib/types/IAirdropDistributor.sol/IAirdropDistributor.js +0 -2
  267. package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +0 -85
  268. package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.js +0 -2
  269. package/lib/types/IAirdropDistributor.sol/index.d.ts +0 -2
  270. package/lib/types/IAirdropDistributor.sol/index.js +0 -2
  271. package/lib/types/IBalancerV2Vault.sol/IBalancerV2Vault.d.ts +0 -287
  272. package/lib/types/IBalancerV2Vault.sol/IBalancerV2Vault.js +0 -2
  273. package/lib/types/IBalancerV2Vault.sol/IBalancerV2VaultGetters.d.ts +0 -87
  274. package/lib/types/IBalancerV2Vault.sol/IBalancerV2VaultGetters.js +0 -2
  275. package/lib/types/IBalancerV2Vault.sol/index.d.ts +0 -2
  276. package/lib/types/IBalancerV2Vault.sol/index.js +0 -2
  277. package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.d.ts +0 -415
  278. package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.js +0 -2
  279. package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.d.ts +0 -37
  280. package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.js +0 -2
  281. package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.d.ts +0 -20
  282. package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.js +0 -2
  283. package/lib/types/IBalancerV2VaultAdapter.sol/index.d.ts +0 -3
  284. package/lib/types/IBalancerV2VaultAdapter.sol/index.js +0 -2
  285. package/lib/types/IBotListV3.sol/IBotListV3.d.ts +0 -300
  286. package/lib/types/IBotListV3.sol/IBotListV3.js +0 -2
  287. package/lib/types/IBotListV3.sol/IBotListV3Events.d.ts +0 -127
  288. package/lib/types/IBotListV3.sol/IBotListV3Events.js +0 -2
  289. package/lib/types/IBotListV3.sol/index.d.ts +0 -2
  290. package/lib/types/IBotListV3.sol/index.js +0 -2
  291. package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.d.ts +0 -147
  292. package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.js +0 -2
  293. package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.d.ts +0 -20
  294. package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.js +0 -2
  295. package/lib/types/ICompoundV2_CTokenAdapter.sol/index.d.ts +0 -2
  296. package/lib/types/ICompoundV2_CTokenAdapter.sol/index.js +0 -2
  297. package/lib/types/IContractsRegister.sol/IContractsRegister.d.ts +0 -87
  298. package/lib/types/IContractsRegister.sol/IContractsRegister.js +0 -2
  299. package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.d.ts +0 -50
  300. package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.js +0 -2
  301. package/lib/types/IContractsRegister.sol/index.d.ts +0 -2
  302. package/lib/types/IContractsRegister.sol/index.js +0 -2
  303. package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3.d.ts +0 -416
  304. package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3.js +0 -2
  305. package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3Events.d.ts +0 -97
  306. package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3Events.js +0 -2
  307. package/lib/types/IControllerTimelockV3.sol/index.d.ts +0 -2
  308. package/lib/types/IControllerTimelockV3.sol/index.js +0 -2
  309. package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.d.ts +0 -154
  310. package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.js +0 -2
  311. package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.d.ts +0 -37
  312. package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.js +0 -2
  313. package/lib/types/IConvexV1BoosterAdapter.sol/index.d.ts +0 -2
  314. package/lib/types/IConvexV1BoosterAdapter.sol/index.js +0 -2
  315. package/lib/types/ICreditAccountV3.sol/ICreditAccountBase.d.ts +0 -59
  316. package/lib/types/ICreditAccountV3.sol/ICreditAccountBase.js +0 -2
  317. package/lib/types/ICreditAccountV3.sol/ICreditAccountV3.d.ts +0 -77
  318. package/lib/types/ICreditAccountV3.sol/ICreditAccountV3.js +0 -2
  319. package/lib/types/ICreditAccountV3.sol/index.d.ts +0 -2
  320. package/lib/types/ICreditAccountV3.sol/index.js +0 -2
  321. package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2.d.ts +0 -588
  322. package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2.js +0 -2
  323. package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.d.ts +0 -371
  324. package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.js +0 -2
  325. package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.d.ts +0 -20
  326. package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.js +0 -2
  327. package/lib/types/ICreditConfiguratorV2.sol/index.d.ts +0 -3
  328. package/lib/types/ICreditConfiguratorV2.sol/index.js +0 -2
  329. package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.d.ts +0 -617
  330. package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.js +0 -2
  331. package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.d.ts +0 -354
  332. package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.js +0 -2
  333. package/lib/types/ICreditConfiguratorV3.sol/index.d.ts +0 -2
  334. package/lib/types/ICreditConfiguratorV3.sol/index.js +0 -2
  335. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2.d.ts +0 -662
  336. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2.js +0 -2
  337. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Events.d.ts +0 -299
  338. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Events.js +0 -2
  339. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.d.ts +0 -20
  340. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.js +0 -2
  341. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.d.ts +0 -75
  342. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.js +0 -2
  343. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2V2.d.ts +0 -47
  344. package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2V2.js +0 -2
  345. package/lib/types/ICreditFacadeV2.sol/index.d.ts +0 -5
  346. package/lib/types/ICreditFacadeV2.sol/index.js +0 -2
  347. package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.d.ts +0 -481
  348. package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.js +0 -2
  349. package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +0 -218
  350. package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.js +0 -2
  351. package/lib/types/ICreditFacadeV3.sol/index.d.ts +0 -2
  352. package/lib/types/ICreditFacadeV3.sol/index.js +0 -2
  353. package/lib/types/ICreditManagerV2.sol/ICreditManagerV2.d.ts +0 -510
  354. package/lib/types/ICreditManagerV2.sol/ICreditManagerV2.js +0 -2
  355. package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Events.d.ts +0 -51
  356. package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Events.js +0 -2
  357. package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Exceptions.d.ts +0 -20
  358. package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Exceptions.js +0 -2
  359. package/lib/types/ICreditManagerV2.sol/index.d.ts +0 -3
  360. package/lib/types/ICreditManagerV2.sol/index.js +0 -2
  361. package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.d.ts +0 -758
  362. package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.js +0 -2
  363. package/lib/types/ICreditManagerV3.sol/ICreditManagerV3Events.d.ts +0 -36
  364. package/lib/types/ICreditManagerV3.sol/ICreditManagerV3Events.js +0 -2
  365. package/lib/types/ICreditManagerV3.sol/index.d.ts +0 -2
  366. package/lib/types/ICreditManagerV3.sol/index.js +0 -2
  367. package/lib/types/ICurvePool_2.sol/ICurvePool2Assets.d.ts +0 -444
  368. package/lib/types/ICurvePool_2.sol/ICurvePool2Assets.js +0 -2
  369. package/lib/types/ICurvePool_2.sol/index.d.ts +0 -1
  370. package/lib/types/ICurvePool_2.sol/index.js +0 -2
  371. package/lib/types/ICurvePool_3.sol/ICurvePool3Assets.d.ts +0 -449
  372. package/lib/types/ICurvePool_3.sol/ICurvePool3Assets.js +0 -2
  373. package/lib/types/ICurvePool_3.sol/index.d.ts +0 -1
  374. package/lib/types/ICurvePool_3.sol/index.js +0 -2
  375. package/lib/types/ICurvePool_4.sol/ICurvePool4Assets.d.ts +0 -478
  376. package/lib/types/ICurvePool_4.sol/ICurvePool4Assets.js +0 -2
  377. package/lib/types/ICurvePool_4.sol/index.d.ts +0 -1
  378. package/lib/types/ICurvePool_4.sol/index.js +0 -2
  379. package/lib/types/ICurveV1Adapter.d.ts +0 -397
  380. package/lib/types/ICurveV1Adapter.js +0 -2
  381. package/lib/types/IDaiLikePermit.d.ts +0 -56
  382. package/lib/types/IDaiLikePermit.js +0 -2
  383. package/lib/types/IDegenDistributor.sol/IDegenDistributor.d.ts +0 -79
  384. package/lib/types/IDegenDistributor.sol/IDegenDistributor.js +0 -2
  385. package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +0 -52
  386. package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.js +0 -2
  387. package/lib/types/IDegenDistributor.sol/index.d.ts +0 -2
  388. package/lib/types/IDegenDistributor.sol/index.js +0 -2
  389. package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.d.ts +0 -297
  390. package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.js +0 -2
  391. package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.d.ts +0 -64
  392. package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.js +0 -2
  393. package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Exceptions.d.ts +0 -20
  394. package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Exceptions.js +0 -2
  395. package/lib/types/IDegenNFTV2.sol/index.d.ts +0 -3
  396. package/lib/types/IDegenNFTV2.sol/index.js +0 -2
  397. package/lib/types/IERC165.d.ts +0 -29
  398. package/lib/types/IERC165.js +0 -2
  399. package/lib/types/IERC20Metadata.d.ts +0 -141
  400. package/lib/types/IERC20Metadata.js +0 -2
  401. package/lib/types/IERC4626.d.ts +0 -318
  402. package/lib/types/IERC4626.js +0 -2
  403. package/lib/types/IERC721.d.ts +0 -199
  404. package/lib/types/IERC721.js +0 -2
  405. package/lib/types/IERC721Metadata.d.ts +0 -211
  406. package/lib/types/IERC721Metadata.js +0 -2
  407. package/lib/types/IGasPricer.d.ts +0 -29
  408. package/lib/types/IGasPricer.js +0 -2
  409. package/lib/types/IGaugeV3.sol/IGaugeV3.d.ts +0 -309
  410. package/lib/types/IGaugeV3.sol/IGaugeV3.js +0 -2
  411. package/lib/types/IGaugeV3.sol/IGaugeV3Events.d.ts +0 -144
  412. package/lib/types/IGaugeV3.sol/IGaugeV3Events.js +0 -2
  413. package/lib/types/IGaugeV3.sol/index.d.ts +0 -2
  414. package/lib/types/IGaugeV3.sol/index.js +0 -2
  415. package/lib/types/IGearStakingV3.sol/IGearStakingV3.d.ts +0 -354
  416. package/lib/types/IGearStakingV3.sol/IGearStakingV3.js +0 -2
  417. package/lib/types/IGearStakingV3.sol/IGearStakingV3Events.d.ts +0 -135
  418. package/lib/types/IGearStakingV3.sol/IGearStakingV3Events.js +0 -2
  419. package/lib/types/IGearStakingV3.sol/index.d.ts +0 -2
  420. package/lib/types/IGearStakingV3.sol/index.js +0 -2
  421. package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.d.ts +0 -164
  422. package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.js +0 -2
  423. package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.d.ts +0 -51
  424. package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.js +0 -2
  425. package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +0 -20
  426. package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.js +0 -2
  427. package/lib/types/ILPPriceFeed.sol/index.d.ts +0 -3
  428. package/lib/types/ILPPriceFeed.sol/index.js +0 -2
  429. package/lib/types/ILinearInterestRateModelV3.d.ts +0 -97
  430. package/lib/types/ILinearInterestRateModelV3.js +0 -2
  431. package/lib/types/IPermit2.d.ts +0 -118
  432. package/lib/types/IPermit2.js +0 -2
  433. package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.d.ts +0 -380
  434. package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.js +0 -2
  435. package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.d.ts +0 -133
  436. package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.js +0 -2
  437. package/lib/types/IPoolQuotaKeeperV3.sol/index.d.ts +0 -2
  438. package/lib/types/IPoolQuotaKeeperV3.sol/index.js +0 -2
  439. package/lib/types/IPoolService.sol/IPoolService.d.ts +0 -346
  440. package/lib/types/IPoolService.sol/IPoolService.js +0 -2
  441. package/lib/types/IPoolService.sol/IPoolServiceEvents.d.ts +0 -205
  442. package/lib/types/IPoolService.sol/IPoolServiceEvents.js +0 -2
  443. package/lib/types/IPoolService.sol/index.d.ts +0 -2
  444. package/lib/types/IPoolService.sol/index.js +0 -2
  445. package/lib/types/IPoolV3.sol/IPoolV3.d.ts +0 -773
  446. package/lib/types/IPoolV3.sol/IPoolV3.js +0 -2
  447. package/lib/types/IPoolV3.sol/IPoolV3Events.d.ts +0 -197
  448. package/lib/types/IPoolV3.sol/IPoolV3Events.js +0 -2
  449. package/lib/types/IPoolV3.sol/index.d.ts +0 -2
  450. package/lib/types/IPoolV3.sol/index.js +0 -2
  451. package/lib/types/IPriceFeed.sol/IPriceFeed.d.ts +0 -69
  452. package/lib/types/IPriceFeed.sol/IPriceFeed.js +0 -2
  453. package/lib/types/IPriceFeed.sol/IUpdatablePriceFeed.d.ts +0 -77
  454. package/lib/types/IPriceFeed.sol/IUpdatablePriceFeed.js +0 -2
  455. package/lib/types/IPriceFeed.sol/index.d.ts +0 -2
  456. package/lib/types/IPriceFeed.sol/index.js +0 -2
  457. package/lib/types/IPriceOracle.sol/IPriceOracleV2.d.ts +0 -146
  458. package/lib/types/IPriceOracle.sol/IPriceOracleV2.js +0 -2
  459. package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.d.ts +0 -37
  460. package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.js +0 -2
  461. package/lib/types/IPriceOracle.sol/IPriceOracleV2Exceptions.d.ts +0 -20
  462. package/lib/types/IPriceOracle.sol/IPriceOracleV2Exceptions.js +0 -2
  463. package/lib/types/IPriceOracle.sol/IPriceOracleV2Ext.d.ts +0 -160
  464. package/lib/types/IPriceOracle.sol/IPriceOracleV2Ext.js +0 -2
  465. package/lib/types/IPriceOracle.sol/index.d.ts +0 -4
  466. package/lib/types/IPriceOracle.sol/index.js +0 -2
  467. package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.d.ts +0 -281
  468. package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.js +0 -2
  469. package/lib/types/IPriceOracleV3.sol/IPriceOracleV3Events.d.ts +0 -94
  470. package/lib/types/IPriceOracleV3.sol/IPriceOracleV3Events.js +0 -2
  471. package/lib/types/IPriceOracleV3.sol/index.d.ts +0 -2
  472. package/lib/types/IPriceOracleV3.sol/index.js +0 -2
  473. package/lib/types/IRouter.d.ts +0 -286
  474. package/lib/types/IRouter.js +0 -2
  475. package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +0 -191
  476. package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.js +0 -2
  477. package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.d.ts +0 -42
  478. package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.js +0 -2
  479. package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.d.ts +0 -20
  480. package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.js +0 -2
  481. package/lib/types/IUniswapV2Adapter.sol/index.d.ts +0 -3
  482. package/lib/types/IUniswapV2Adapter.sol/index.js +0 -2
  483. package/lib/types/IUniswapV3.sol/ISwapRouter.d.ts +0 -169
  484. package/lib/types/IUniswapV3.sol/ISwapRouter.js +0 -2
  485. package/lib/types/IUniswapV3.sol/index.d.ts +0 -1
  486. package/lib/types/IUniswapV3.sol/index.js +0 -2
  487. package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +0 -368
  488. package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.js +0 -2
  489. package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.d.ts +0 -49
  490. package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.js +0 -2
  491. package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.d.ts +0 -20
  492. package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.js +0 -2
  493. package/lib/types/IUniswapV3Adapter.sol/index.d.ts +0 -3
  494. package/lib/types/IUniswapV3Adapter.sol/index.js +0 -2
  495. package/lib/types/IVersion.d.ts +0 -25
  496. package/lib/types/IVersion.js +0 -2
  497. package/lib/types/IVotingContractV3.d.ts +0 -53
  498. package/lib/types/IVotingContractV3.js +0 -2
  499. package/lib/types/IWETH.d.ts +0 -167
  500. package/lib/types/IWETH.js +0 -2
  501. package/lib/types/IWETHGateway.d.ts +0 -67
  502. package/lib/types/IWETHGateway.js +0 -2
  503. package/lib/types/IYVault.d.ts +0 -217
  504. package/lib/types/IYVault.js +0 -2
  505. package/lib/types/IZapperRegister.d.ts +0 -55
  506. package/lib/types/IZapperRegister.js +0 -2
  507. package/lib/types/IstETH.sol/IstETH.d.ts +0 -177
  508. package/lib/types/IstETH.sol/IstETH.js +0 -2
  509. package/lib/types/IstETH.sol/IstETHGetters.d.ts +0 -173
  510. package/lib/types/IstETH.sol/IstETHGetters.js +0 -2
  511. package/lib/types/IstETH.sol/index.d.ts +0 -2
  512. package/lib/types/IstETH.sol/index.js +0 -2
  513. package/lib/types/IwstETH.sol/IwstETH.d.ts +0 -185
  514. package/lib/types/IwstETH.sol/IwstETH.js +0 -2
  515. package/lib/types/IwstETH.sol/IwstETHGetters.d.ts +0 -169
  516. package/lib/types/IwstETH.sol/IwstETHGetters.js +0 -2
  517. package/lib/types/IwstETH.sol/index.d.ts +0 -2
  518. package/lib/types/IwstETH.sol/index.js +0 -2
  519. package/lib/types/IwstETHGateway.sol/IwstETHGateWay.d.ts +0 -51
  520. package/lib/types/IwstETHGateway.sol/IwstETHGateWay.js +0 -2
  521. package/lib/types/IwstETHGateway.sol/index.d.ts +0 -1
  522. package/lib/types/IwstETHGateway.sol/index.js +0 -2
  523. package/lib/types/NumericArrayLib.d.ts +0 -20
  524. package/lib/types/NumericArrayLib.js +0 -2
  525. package/lib/types/Ownable.d.ts +0 -54
  526. package/lib/types/Ownable.js +0 -2
  527. package/lib/types/PartialLiquidationBotV3.d.ts +0 -158
  528. package/lib/types/PartialLiquidationBotV3.js +0 -2
  529. package/lib/types/RedstoneConstants.d.ts +0 -20
  530. package/lib/types/RedstoneConstants.js +0 -2
  531. package/lib/types/RedstoneConsumerBase.d.ts +0 -64
  532. package/lib/types/RedstoneConsumerBase.js +0 -2
  533. package/lib/types/RedstoneConsumerNumericBase.d.ts +0 -64
  534. package/lib/types/RedstoneConsumerNumericBase.js +0 -2
  535. package/lib/types/RedstoneDefaultsLib.d.ts +0 -20
  536. package/lib/types/RedstoneDefaultsLib.js +0 -2
  537. package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedEvents.d.ts +0 -36
  538. package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedEvents.js +0 -2
  539. package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions.d.ts +0 -20
  540. package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions.js +0 -2
  541. package/lib/types/RedstonePriceFeed.sol/RedstonePriceFeed.d.ts +0 -174
  542. package/lib/types/RedstonePriceFeed.sol/RedstonePriceFeed.js +0 -2
  543. package/lib/types/RedstonePriceFeed.sol/index.d.ts +0 -3
  544. package/lib/types/RedstonePriceFeed.sol/index.js +0 -2
  545. package/lib/types/SafeERC20.d.ts +0 -20
  546. package/lib/types/SafeERC20.js +0 -2
  547. package/lib/types/common.d.ts +0 -50
  548. package/lib/types/common.js +0 -2
  549. package/lib/types/factories/AddressProvider__factory.d.ts +0 -322
  550. package/lib/types/factories/AddressProvider__factory.js +0 -427
  551. package/lib/types/factories/Balances.sol/BalanceOps__factory.d.ts +0 -30
  552. package/lib/types/factories/Balances.sol/BalanceOps__factory.js +0 -50
  553. package/lib/types/factories/Balances.sol/index.d.ts +0 -1
  554. package/lib/types/factories/Balances.sol/index.js +0 -8
  555. package/lib/types/factories/CalldataExtractor__factory.d.ts +0 -88
  556. package/lib/types/factories/CalldataExtractor__factory.js +0 -124
  557. package/lib/types/factories/Claimable__factory.d.ts +0 -79
  558. package/lib/types/factories/Claimable__factory.js +0 -111
  559. package/lib/types/factories/CompositePriceFeed__factory.d.ts +0 -203
  560. package/lib/types/factories/CompositePriceFeed__factory.js +0 -274
  561. package/lib/types/factories/ContractsRegisterTrait__factory.d.ts +0 -21
  562. package/lib/types/factories/ContractsRegisterTrait__factory.js +0 -37
  563. package/lib/types/factories/ERC20__factory.d.ts +0 -240
  564. package/lib/types/factories/ERC20__factory.js +0 -325
  565. package/lib/types/factories/Errors__factory.d.ts +0 -352
  566. package/lib/types/factories/Errors__factory.js +0 -468
  567. package/lib/types/factories/FarmAccounting__factory.d.ts +0 -34
  568. package/lib/types/factories/FarmAccounting__factory.js +0 -54
  569. package/lib/types/factories/IAaveV2_LendingPoolAdapter__factory.d.ts +0 -157
  570. package/lib/types/factories/IAaveV2_LendingPoolAdapter__factory.js +0 -215
  571. package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.d.ts +0 -251
  572. package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.js +0 -341
  573. package/lib/types/factories/IAdapter__factory.d.ts +0 -57
  574. package/lib/types/factories/IAdapter__factory.js +0 -84
  575. package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.d.ts +0 -22
  576. package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.js +0 -38
  577. package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.d.ts +0 -132
  578. package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.js +0 -181
  579. package/lib/types/factories/IAddressProvider.sol/index.d.ts +0 -2
  580. package/lib/types/factories/IAddressProvider.sol/index.js +0 -10
  581. package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.d.ts +0 -27
  582. package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.js +0 -44
  583. package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.d.ts +0 -91
  584. package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.js +0 -128
  585. package/lib/types/factories/IAddressProviderV3.sol/index.d.ts +0 -2
  586. package/lib/types/factories/IAddressProviderV3.sol/index.js +0 -10
  587. package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +0 -62
  588. package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.js +0 -88
  589. package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +0 -118
  590. package/lib/types/factories/IAirdropDistributor.sol/index.d.ts +0 -2
  591. package/lib/types/factories/IAirdropDistributor.sol/index.js +0 -10
  592. package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.d.ts +0 -77
  593. package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.js +0 -111
  594. package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.d.ts +0 -359
  595. package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.js +0 -475
  596. package/lib/types/factories/IBalancerV2Vault.sol/index.d.ts +0 -2
  597. package/lib/types/factories/IBalancerV2Vault.sol/index.js +0 -10
  598. package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.d.ts +0 -22
  599. package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.js +0 -38
  600. package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.d.ts +0 -11
  601. package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.js +0 -24
  602. package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.d.ts +0 -513
  603. package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.js +0 -675
  604. package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.d.ts +0 -3
  605. package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.js +0 -12
  606. package/lib/types/factories/IBaseRewardPool__factory.d.ts +0 -397
  607. package/lib/types/factories/IBaseRewardPool__factory.js +0 -534
  608. package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.d.ts +0 -102
  609. package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.js +0 -138
  610. package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.d.ts +0 -314
  611. package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.js +0 -416
  612. package/lib/types/factories/IBotListV3.sol/index.d.ts +0 -2
  613. package/lib/types/factories/IBotListV3.sol/index.js +0 -10
  614. package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.d.ts +0 -195
  615. package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.js +0 -267
  616. package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.d.ts +0 -15
  617. package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.js +0 -30
  618. package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.d.ts +0 -2
  619. package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.js +0 -10
  620. package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.d.ts +0 -27
  621. package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.js +0 -45
  622. package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.d.ts +0 -133
  623. package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.js +0 -186
  624. package/lib/types/factories/IContractsRegister.sol/index.d.ts +0 -2
  625. package/lib/types/factories/IContractsRegister.sol/index.js +0 -10
  626. package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.d.ts +0 -72
  627. package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.js +0 -101
  628. package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.d.ts +0 -426
  629. package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.js +0 -556
  630. package/lib/types/factories/IControllerTimelockV3.sol/index.d.ts +0 -2
  631. package/lib/types/factories/IControllerTimelockV3.sol/index.js +0 -10
  632. package/lib/types/factories/IConvexToken__factory.d.ts +0 -207
  633. package/lib/types/factories/IConvexToken__factory.js +0 -280
  634. package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.d.ts +0 -305
  635. package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.js +0 -409
  636. package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.d.ts +0 -22
  637. package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.js +0 -38
  638. package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.d.ts +0 -188
  639. package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.js +0 -255
  640. package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.d.ts +0 -2
  641. package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.js +0 -10
  642. package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountBase__factory.d.ts +0 -63
  643. package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountBase__factory.js +0 -92
  644. package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountV3__factory.d.ts +0 -87
  645. package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountV3__factory.js +0 -123
  646. package/lib/types/factories/ICreditAccountV3.sol/index.d.ts +0 -2
  647. package/lib/types/factories/ICreditAccountV3.sol/index.js +0 -10
  648. package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.d.ts +0 -267
  649. package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.js +0 -353
  650. package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.d.ts +0 -43
  651. package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.js +0 -64
  652. package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.d.ts +0 -575
  653. package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.js +0 -749
  654. package/lib/types/factories/ICreditConfiguratorV2.sol/index.d.ts +0 -3
  655. package/lib/types/factories/ICreditConfiguratorV2.sol/index.js +0 -12
  656. package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.d.ts +0 -272
  657. package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.js +0 -357
  658. package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.d.ts +0 -604
  659. package/lib/types/factories/ICreditConfiguratorV3.sol/index.d.ts +0 -2
  660. package/lib/types/factories/ICreditConfiguratorV3.sol/index.js +0 -10
  661. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.d.ts +0 -262
  662. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.js +0 -340
  663. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.d.ts +0 -139
  664. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.js +0 -185
  665. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.d.ts +0 -80
  666. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.js +0 -114
  667. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.d.ts +0 -25
  668. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.js +0 -42
  669. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.d.ts +0 -900
  670. package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.js +0 -1163
  671. package/lib/types/factories/ICreditFacadeV2.sol/index.d.ts +0 -5
  672. package/lib/types/factories/ICreditFacadeV2.sol/index.js +0 -16
  673. package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.d.ts +0 -182
  674. package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +0 -238
  675. package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +0 -549
  676. package/lib/types/factories/ICreditFacadeV3.sol/index.d.ts +0 -2
  677. package/lib/types/factories/ICreditFacadeV3.sol/index.js +0 -10
  678. package/lib/types/factories/ICreditFacadeV3Multicall__factory.d.ts +0 -203
  679. package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +0 -271
  680. package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.d.ts +0 -32
  681. package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.js +0 -51
  682. package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.d.ts +0 -59
  683. package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.js +0 -84
  684. package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.d.ts +0 -706
  685. package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.js +0 -932
  686. package/lib/types/factories/ICreditManagerV2.sol/index.d.ts +0 -3
  687. package/lib/types/factories/ICreditManagerV2.sol/index.js +0 -12
  688. package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.d.ts +0 -17
  689. package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.js +0 -32
  690. package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.d.ts +0 -1022
  691. package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.js +0 -1341
  692. package/lib/types/factories/ICreditManagerV3.sol/index.d.ts +0 -2
  693. package/lib/types/factories/ICreditManagerV3.sol/index.js +0 -10
  694. package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.d.ts +0 -677
  695. package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.js +0 -897
  696. package/lib/types/factories/ICurvePool_2.sol/index.d.ts +0 -1
  697. package/lib/types/factories/ICurvePool_2.sol/index.js +0 -8
  698. package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.d.ts +0 -677
  699. package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.js +0 -897
  700. package/lib/types/factories/ICurvePool_3.sol/index.d.ts +0 -1
  701. package/lib/types/factories/ICurvePool_3.sol/index.js +0 -8
  702. package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.d.ts +0 -677
  703. package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.js +0 -897
  704. package/lib/types/factories/ICurvePool_4.sol/index.d.ts +0 -1
  705. package/lib/types/factories/ICurvePool_4.sol/index.js +0 -8
  706. package/lib/types/factories/ICurvePool__factory.d.ts +0 -565
  707. package/lib/types/factories/ICurvePool__factory.js +0 -751
  708. package/lib/types/factories/ICurveV1Adapter__factory.d.ts +0 -605
  709. package/lib/types/factories/ICurveV1Adapter__factory.js +0 -798
  710. package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.d.ts +0 -671
  711. package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.js +0 -885
  712. package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.d.ts +0 -671
  713. package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.js +0 -885
  714. package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.d.ts +0 -671
  715. package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.js +0 -885
  716. package/lib/types/factories/IDaiLikePermit__factory.d.ts +0 -45
  717. package/lib/types/factories/IDaiLikePermit__factory.js +0 -67
  718. package/lib/types/factories/IDataCompressorV2_1__factory.d.ts +0 -1171
  719. package/lib/types/factories/IDataCompressorV2_1__factory.js +0 -1501
  720. package/lib/types/factories/IDataCompressorV3__factory.d.ts +0 -1579
  721. package/lib/types/factories/IDataCompressorV3__factory.js +0 -2020
  722. package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +0 -37
  723. package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.js +0 -57
  724. package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +0 -83
  725. package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.js +0 -117
  726. package/lib/types/factories/IDegenDistributor.sol/index.d.ts +0 -2
  727. package/lib/types/factories/IDegenDistributor.sol/index.js +0 -10
  728. package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.d.ts +0 -37
  729. package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.js +0 -58
  730. package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.d.ts +0 -23
  731. package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.js +0 -39
  732. package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2__factory.d.ts +0 -375
  733. package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2__factory.js +0 -496
  734. package/lib/types/factories/IDegenNFTV2.sol/index.d.ts +0 -3
  735. package/lib/types/factories/IDegenNFTV2.sol/index.js +0 -12
  736. package/lib/types/factories/IERC165__factory.d.ts +0 -21
  737. package/lib/types/factories/IERC165__factory.js +0 -38
  738. package/lib/types/factories/IERC20Metadata__factory.d.ts +0 -177
  739. package/lib/types/factories/IERC20Metadata__factory.js +0 -241
  740. package/lib/types/factories/IERC20Permit__factory.d.ts +0 -65
  741. package/lib/types/factories/IERC20Permit__factory.js +0 -94
  742. package/lib/types/factories/IERC20ZapperDeposits__factory.d.ts +0 -119
  743. package/lib/types/factories/IERC20ZapperDeposits__factory.js +0 -165
  744. package/lib/types/factories/IERC20__factory.d.ts +0 -147
  745. package/lib/types/factories/IERC20__factory.js +0 -202
  746. package/lib/types/factories/IERC4626Adapter__factory.d.ts +0 -219
  747. package/lib/types/factories/IERC4626Adapter__factory.js +0 -297
  748. package/lib/types/factories/IERC4626__factory.d.ts +0 -472
  749. package/lib/types/factories/IERC4626__factory.js +0 -631
  750. package/lib/types/factories/IERC721Metadata__factory.d.ts +0 -261
  751. package/lib/types/factories/IERC721Metadata__factory.js +0 -349
  752. package/lib/types/factories/IERC721__factory.d.ts +0 -227
  753. package/lib/types/factories/IERC721__factory.js +0 -304
  754. package/lib/types/factories/IETHZapperDeposits__factory.d.ts +0 -39
  755. package/lib/types/factories/IETHZapperDeposits__factory.js +0 -62
  756. package/lib/types/factories/IFarmingPool__factory.d.ts +0 -298
  757. package/lib/types/factories/IFarmingPool__factory.js +0 -396
  758. package/lib/types/factories/IGasPricer__factory.d.ts +0 -21
  759. package/lib/types/factories/IGasPricer__factory.js +0 -38
  760. package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.d.ts +0 -117
  761. package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.js +0 -157
  762. package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.d.ts +0 -341
  763. package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.js +0 -448
  764. package/lib/types/factories/IGaugeV3.sol/index.d.ts +0 -2
  765. package/lib/types/factories/IGaugeV3.sol/index.js +0 -10
  766. package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3Events__factory.d.ts +0 -112
  767. package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3Events__factory.js +0 -152
  768. package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.d.ts +0 -503
  769. package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.js +0 -660
  770. package/lib/types/factories/IGearStakingV3.sol/index.d.ts +0 -2
  771. package/lib/types/factories/IGearStakingV3.sol/index.js +0 -10
  772. package/lib/types/factories/IInterestRateModel__factory.d.ts +0 -35
  773. package/lib/types/factories/IInterestRateModel__factory.js +0 -56
  774. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +0 -32
  775. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +0 -51
  776. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +0 -27
  777. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +0 -44
  778. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +0 -260
  779. package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.js +0 -344
  780. package/lib/types/factories/ILPPriceFeed.sol/index.d.ts +0 -3
  781. package/lib/types/factories/ILPPriceFeed.sol/index.js +0 -12
  782. package/lib/types/factories/ILidoV1Adapter__factory.d.ts +0 -143
  783. package/lib/types/factories/ILidoV1Adapter__factory.js +0 -197
  784. package/lib/types/factories/ILinearInterestRateModelV3__factory.d.ts +0 -97
  785. package/lib/types/factories/ILinearInterestRateModelV3__factory.js +0 -136
  786. package/lib/types/factories/IOffchainOracle__factory.d.ts +0 -47
  787. package/lib/types/factories/IOffchainOracle__factory.js +0 -72
  788. package/lib/types/factories/IPartialLiquidationBotV3__factory.d.ts +0 -216
  789. package/lib/types/factories/IPartialLiquidationBotV3__factory.js +0 -287
  790. package/lib/types/factories/IPermit2__factory.d.ts +0 -112
  791. package/lib/types/factories/IPermit2__factory.js +0 -155
  792. package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.d.ts +0 -102
  793. package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.js +0 -140
  794. package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.d.ts +0 -440
  795. package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.js +0 -580
  796. package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.d.ts +0 -2
  797. package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.js +0 -10
  798. package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.d.ts +0 -162
  799. package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.js +0 -215
  800. package/lib/types/factories/IPoolService.sol/IPoolService__factory.d.ts +0 -436
  801. package/lib/types/factories/IPoolService.sol/IPoolService__factory.js +0 -574
  802. package/lib/types/factories/IPoolService.sol/index.d.ts +0 -2
  803. package/lib/types/factories/IPoolService.sol/index.js +0 -10
  804. package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.d.ts +0 -152
  805. package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.js +0 -203
  806. package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.d.ts +0 -1067
  807. package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.js +0 -1402
  808. package/lib/types/factories/IPoolV3.sol/index.d.ts +0 -2
  809. package/lib/types/factories/IPoolV3.sol/index.js +0 -10
  810. package/lib/types/factories/IPriceFeed.sol/IPriceFeed__factory.d.ts +0 -83
  811. package/lib/types/factories/IPriceFeed.sol/IPriceFeed__factory.js +0 -117
  812. package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.d.ts +0 -103
  813. package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.js +0 -143
  814. package/lib/types/factories/IPriceFeed.sol/index.d.ts +0 -2
  815. package/lib/types/factories/IPriceFeed.sol/index.js +0 -10
  816. package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Events__factory.d.ts +0 -22
  817. package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Events__factory.js +0 -38
  818. package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.d.ts +0 -19
  819. package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.js +0 -34
  820. package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Ext__factory.d.ts +0 -196
  821. package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Ext__factory.js +0 -267
  822. package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2__factory.d.ts +0 -182
  823. package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2__factory.js +0 -249
  824. package/lib/types/factories/IPriceOracle.sol/index.d.ts +0 -4
  825. package/lib/types/factories/IPriceOracle.sol/index.js +0 -14
  826. package/lib/types/factories/IPriceOracleBase__factory.d.ts +0 -103
  827. package/lib/types/factories/IPriceOracleBase__factory.js +0 -147
  828. package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.d.ts +0 -77
  829. package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.js +0 -106
  830. package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.d.ts +0 -325
  831. package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.js +0 -433
  832. package/lib/types/factories/IPriceOracleV3.sol/index.d.ts +0 -2
  833. package/lib/types/factories/IPriceOracleV3.sol/index.js +0 -10
  834. package/lib/types/factories/IRouterV3__factory.d.ts +0 -511
  835. package/lib/types/factories/IRouterV3__factory.js +0 -676
  836. package/lib/types/factories/IRouter__factory.d.ts +0 -395
  837. package/lib/types/factories/IRouter__factory.js +0 -526
  838. package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.d.ts +0 -27
  839. package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.js +0 -44
  840. package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.d.ts +0 -11
  841. package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.js +0 -24
  842. package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.d.ts +0 -220
  843. package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +0 -295
  844. package/lib/types/factories/IUniswapV2Adapter.sol/index.d.ts +0 -3
  845. package/lib/types/factories/IUniswapV2Adapter.sol/index.js +0 -12
  846. package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.d.ts +0 -171
  847. package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.js +0 -233
  848. package/lib/types/factories/IUniswapV3.sol/index.d.ts +0 -1
  849. package/lib/types/factories/IUniswapV3.sol/index.js +0 -8
  850. package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.d.ts +0 -32
  851. package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.js +0 -50
  852. package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.d.ts +0 -11
  853. package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.js +0 -24
  854. package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +0 -397
  855. package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +0 -525
  856. package/lib/types/factories/IUniswapV3Adapter.sol/index.d.ts +0 -3
  857. package/lib/types/factories/IUniswapV3Adapter.sol/index.js +0 -12
  858. package/lib/types/factories/IVersion__factory.d.ts +0 -17
  859. package/lib/types/factories/IVersion__factory.js +0 -32
  860. package/lib/types/factories/IVotingContractV3__factory.d.ts +0 -43
  861. package/lib/types/factories/IVotingContractV3__factory.js +0 -65
  862. package/lib/types/factories/IWETHGateway__factory.d.ts +0 -57
  863. package/lib/types/factories/IWETHGateway__factory.js +0 -83
  864. package/lib/types/factories/IWETH__factory.d.ts +0 -193
  865. package/lib/types/factories/IWETH__factory.js +0 -260
  866. package/lib/types/factories/IYVault__factory.d.ts +0 -303
  867. package/lib/types/factories/IYVault__factory.js +0 -408
  868. package/lib/types/factories/IYearnV2Adapter__factory.d.ts +0 -229
  869. package/lib/types/factories/IYearnV2Adapter__factory.js +0 -311
  870. package/lib/types/factories/IZapperRegister__factory.d.ts +0 -41
  871. package/lib/types/factories/IZapperRegister__factory.js +0 -64
  872. package/lib/types/factories/IZapper__factory.d.ts +0 -127
  873. package/lib/types/factories/IZapper__factory.js +0 -177
  874. package/lib/types/factories/IstETH.sol/IstETHGetters__factory.d.ts +0 -249
  875. package/lib/types/factories/IstETH.sol/IstETHGetters__factory.js +0 -337
  876. package/lib/types/factories/IstETH.sol/IstETH__factory.d.ts +0 -263
  877. package/lib/types/factories/IstETH.sol/IstETH__factory.js +0 -356
  878. package/lib/types/factories/IstETH.sol/index.d.ts +0 -2
  879. package/lib/types/factories/IstETH.sol/index.js +0 -10
  880. package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.d.ts +0 -235
  881. package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.js +0 -318
  882. package/lib/types/factories/IwstETH.sol/IwstETH__factory.d.ts +0 -263
  883. package/lib/types/factories/IwstETH.sol/IwstETH__factory.js +0 -356
  884. package/lib/types/factories/IwstETH.sol/index.d.ts +0 -2
  885. package/lib/types/factories/IwstETH.sol/index.js +0 -10
  886. package/lib/types/factories/IwstETHGateway.sol/IwstETHGateWay__factory.d.ts +0 -47
  887. package/lib/types/factories/IwstETHGateway.sol/IwstETHGateWay__factory.js +0 -71
  888. package/lib/types/factories/IwstETHGateway.sol/index.d.ts +0 -1
  889. package/lib/types/factories/IwstETHGateway.sol/index.js +0 -8
  890. package/lib/types/factories/IwstETHV1Adapter__factory.d.ts +0 -159
  891. package/lib/types/factories/IwstETHV1Adapter__factory.js +0 -219
  892. package/lib/types/factories/NumericArrayLib__factory.d.ts +0 -26
  893. package/lib/types/factories/NumericArrayLib__factory.js +0 -44
  894. package/lib/types/factories/Ownable__factory.d.ts +0 -48
  895. package/lib/types/factories/Ownable__factory.js +0 -71
  896. package/lib/types/factories/PartialLiquidationBotV3__factory.d.ts +0 -285
  897. package/lib/types/factories/PartialLiquidationBotV3__factory.js +0 -376
  898. package/lib/types/factories/RedstoneConstants__factory.d.ts +0 -66
  899. package/lib/types/factories/RedstoneConstants__factory.js +0 -96
  900. package/lib/types/factories/RedstoneConsumerBase__factory.d.ts +0 -163
  901. package/lib/types/factories/RedstoneConsumerBase__factory.js +0 -223
  902. package/lib/types/factories/RedstoneConsumerNumericBase__factory.d.ts +0 -163
  903. package/lib/types/factories/RedstoneConsumerNumericBase__factory.js +0 -223
  904. package/lib/types/factories/RedstoneDefaultsLib__factory.d.ts +0 -46
  905. package/lib/types/factories/RedstoneDefaultsLib__factory.js +0 -71
  906. package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedEvents__factory.d.ts +0 -17
  907. package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedEvents__factory.js +0 -32
  908. package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions__factory.d.ts +0 -27
  909. package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions__factory.js +0 -44
  910. package/lib/types/factories/RedstonePriceFeed.sol/RedstonePriceFeed__factory.d.ts +0 -444
  911. package/lib/types/factories/RedstonePriceFeed.sol/RedstonePriceFeed__factory.js +0 -586
  912. package/lib/types/factories/RedstonePriceFeed.sol/index.d.ts +0 -3
  913. package/lib/types/factories/RedstonePriceFeed.sol/index.js +0 -12
  914. package/lib/types/factories/SafeERC20__factory.d.ts +0 -50
  915. package/lib/types/factories/SafeERC20__factory.js +0 -74
  916. package/lib/types/factories/index.d.ts +0 -100
  917. package/lib/types/factories/index.js +0 -191
@@ -1,1501 +0,0 @@
1
- "use strict";
2
- /* Autogenerated file. Do not edit manually. */
3
- /* tslint:disable */
4
- /* eslint-disable */
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.IDataCompressorV2_1__factory = void 0;
7
- const ethers_1 = require("ethers");
8
- const _abi = [
9
- {
10
- type: "function",
11
- name: "getAdapter",
12
- inputs: [
13
- {
14
- name: "_creditManager",
15
- type: "address",
16
- internalType: "address",
17
- },
18
- {
19
- name: "_allowedContract",
20
- type: "address",
21
- internalType: "address",
22
- },
23
- ],
24
- outputs: [
25
- {
26
- name: "adapter",
27
- type: "address",
28
- internalType: "address",
29
- },
30
- ],
31
- stateMutability: "view",
32
- },
33
- {
34
- type: "function",
35
- name: "getCreditAccountData",
36
- inputs: [
37
- {
38
- name: "_creditManager",
39
- type: "address",
40
- internalType: "address",
41
- },
42
- {
43
- name: "borrower",
44
- type: "address",
45
- internalType: "address",
46
- },
47
- ],
48
- outputs: [
49
- {
50
- name: "",
51
- type: "tuple",
52
- internalType: "struct CreditAccountData",
53
- components: [
54
- {
55
- name: "isSuccessful",
56
- type: "bool",
57
- internalType: "bool",
58
- },
59
- {
60
- name: "priceFeedsNeeded",
61
- type: "address[]",
62
- internalType: "address[]",
63
- },
64
- {
65
- name: "addr",
66
- type: "address",
67
- internalType: "address",
68
- },
69
- {
70
- name: "borrower",
71
- type: "address",
72
- internalType: "address",
73
- },
74
- {
75
- name: "creditManager",
76
- type: "address",
77
- internalType: "address",
78
- },
79
- {
80
- name: "cmName",
81
- type: "string",
82
- internalType: "string",
83
- },
84
- {
85
- name: "creditFacade",
86
- type: "address",
87
- internalType: "address",
88
- },
89
- {
90
- name: "underlying",
91
- type: "address",
92
- internalType: "address",
93
- },
94
- {
95
- name: "debt",
96
- type: "uint256",
97
- internalType: "uint256",
98
- },
99
- {
100
- name: "cumulativeIndexLastUpdate",
101
- type: "uint256",
102
- internalType: "uint256",
103
- },
104
- {
105
- name: "cumulativeQuotaInterest",
106
- type: "uint128",
107
- internalType: "uint128",
108
- },
109
- {
110
- name: "accruedInterest",
111
- type: "uint256",
112
- internalType: "uint256",
113
- },
114
- {
115
- name: "accruedFees",
116
- type: "uint256",
117
- internalType: "uint256",
118
- },
119
- {
120
- name: "totalDebtUSD",
121
- type: "uint256",
122
- internalType: "uint256",
123
- },
124
- {
125
- name: "totalValue",
126
- type: "uint256",
127
- internalType: "uint256",
128
- },
129
- {
130
- name: "totalValueUSD",
131
- type: "uint256",
132
- internalType: "uint256",
133
- },
134
- {
135
- name: "twvUSD",
136
- type: "uint256",
137
- internalType: "uint256",
138
- },
139
- {
140
- name: "enabledTokensMask",
141
- type: "uint256",
142
- internalType: "uint256",
143
- },
144
- {
145
- name: "healthFactor",
146
- type: "uint256",
147
- internalType: "uint256",
148
- },
149
- {
150
- name: "baseBorrowRate",
151
- type: "uint256",
152
- internalType: "uint256",
153
- },
154
- {
155
- name: "aggregatedBorrowRate",
156
- type: "uint256",
157
- internalType: "uint256",
158
- },
159
- {
160
- name: "balances",
161
- type: "tuple[]",
162
- internalType: "struct TokenBalance[]",
163
- components: [
164
- {
165
- name: "token",
166
- type: "address",
167
- internalType: "address",
168
- },
169
- {
170
- name: "balance",
171
- type: "uint256",
172
- internalType: "uint256",
173
- },
174
- {
175
- name: "isForbidden",
176
- type: "bool",
177
- internalType: "bool",
178
- },
179
- {
180
- name: "isEnabled",
181
- type: "bool",
182
- internalType: "bool",
183
- },
184
- {
185
- name: "isQuoted",
186
- type: "bool",
187
- internalType: "bool",
188
- },
189
- {
190
- name: "quota",
191
- type: "uint256",
192
- internalType: "uint256",
193
- },
194
- {
195
- name: "quotaRate",
196
- type: "uint16",
197
- internalType: "uint16",
198
- },
199
- {
200
- name: "quotaCumulativeIndexLU",
201
- type: "uint256",
202
- internalType: "uint256",
203
- },
204
- ],
205
- },
206
- {
207
- name: "since",
208
- type: "uint64",
209
- internalType: "uint64",
210
- },
211
- {
212
- name: "cfVersion",
213
- type: "uint256",
214
- internalType: "uint256",
215
- },
216
- {
217
- name: "expirationDate",
218
- type: "uint40",
219
- internalType: "uint40",
220
- },
221
- {
222
- name: "activeBots",
223
- type: "address[]",
224
- internalType: "address[]",
225
- },
226
- ],
227
- },
228
- ],
229
- stateMutability: "view",
230
- },
231
- {
232
- type: "function",
233
- name: "getCreditAccountsByBorrower",
234
- inputs: [
235
- {
236
- name: "borrower",
237
- type: "address",
238
- internalType: "address",
239
- },
240
- ],
241
- outputs: [
242
- {
243
- name: "",
244
- type: "tuple[]",
245
- internalType: "struct CreditAccountData[]",
246
- components: [
247
- {
248
- name: "isSuccessful",
249
- type: "bool",
250
- internalType: "bool",
251
- },
252
- {
253
- name: "priceFeedsNeeded",
254
- type: "address[]",
255
- internalType: "address[]",
256
- },
257
- {
258
- name: "addr",
259
- type: "address",
260
- internalType: "address",
261
- },
262
- {
263
- name: "borrower",
264
- type: "address",
265
- internalType: "address",
266
- },
267
- {
268
- name: "creditManager",
269
- type: "address",
270
- internalType: "address",
271
- },
272
- {
273
- name: "cmName",
274
- type: "string",
275
- internalType: "string",
276
- },
277
- {
278
- name: "creditFacade",
279
- type: "address",
280
- internalType: "address",
281
- },
282
- {
283
- name: "underlying",
284
- type: "address",
285
- internalType: "address",
286
- },
287
- {
288
- name: "debt",
289
- type: "uint256",
290
- internalType: "uint256",
291
- },
292
- {
293
- name: "cumulativeIndexLastUpdate",
294
- type: "uint256",
295
- internalType: "uint256",
296
- },
297
- {
298
- name: "cumulativeQuotaInterest",
299
- type: "uint128",
300
- internalType: "uint128",
301
- },
302
- {
303
- name: "accruedInterest",
304
- type: "uint256",
305
- internalType: "uint256",
306
- },
307
- {
308
- name: "accruedFees",
309
- type: "uint256",
310
- internalType: "uint256",
311
- },
312
- {
313
- name: "totalDebtUSD",
314
- type: "uint256",
315
- internalType: "uint256",
316
- },
317
- {
318
- name: "totalValue",
319
- type: "uint256",
320
- internalType: "uint256",
321
- },
322
- {
323
- name: "totalValueUSD",
324
- type: "uint256",
325
- internalType: "uint256",
326
- },
327
- {
328
- name: "twvUSD",
329
- type: "uint256",
330
- internalType: "uint256",
331
- },
332
- {
333
- name: "enabledTokensMask",
334
- type: "uint256",
335
- internalType: "uint256",
336
- },
337
- {
338
- name: "healthFactor",
339
- type: "uint256",
340
- internalType: "uint256",
341
- },
342
- {
343
- name: "baseBorrowRate",
344
- type: "uint256",
345
- internalType: "uint256",
346
- },
347
- {
348
- name: "aggregatedBorrowRate",
349
- type: "uint256",
350
- internalType: "uint256",
351
- },
352
- {
353
- name: "balances",
354
- type: "tuple[]",
355
- internalType: "struct TokenBalance[]",
356
- components: [
357
- {
358
- name: "token",
359
- type: "address",
360
- internalType: "address",
361
- },
362
- {
363
- name: "balance",
364
- type: "uint256",
365
- internalType: "uint256",
366
- },
367
- {
368
- name: "isForbidden",
369
- type: "bool",
370
- internalType: "bool",
371
- },
372
- {
373
- name: "isEnabled",
374
- type: "bool",
375
- internalType: "bool",
376
- },
377
- {
378
- name: "isQuoted",
379
- type: "bool",
380
- internalType: "bool",
381
- },
382
- {
383
- name: "quota",
384
- type: "uint256",
385
- internalType: "uint256",
386
- },
387
- {
388
- name: "quotaRate",
389
- type: "uint16",
390
- internalType: "uint16",
391
- },
392
- {
393
- name: "quotaCumulativeIndexLU",
394
- type: "uint256",
395
- internalType: "uint256",
396
- },
397
- ],
398
- },
399
- {
400
- name: "since",
401
- type: "uint64",
402
- internalType: "uint64",
403
- },
404
- {
405
- name: "cfVersion",
406
- type: "uint256",
407
- internalType: "uint256",
408
- },
409
- {
410
- name: "expirationDate",
411
- type: "uint40",
412
- internalType: "uint40",
413
- },
414
- {
415
- name: "activeBots",
416
- type: "address[]",
417
- internalType: "address[]",
418
- },
419
- ],
420
- },
421
- ],
422
- stateMutability: "view",
423
- },
424
- {
425
- type: "function",
426
- name: "getCreditManagerData",
427
- inputs: [
428
- {
429
- name: "_creditManager",
430
- type: "address",
431
- internalType: "address",
432
- },
433
- ],
434
- outputs: [
435
- {
436
- name: "",
437
- type: "tuple",
438
- internalType: "struct CreditManagerData",
439
- components: [
440
- {
441
- name: "addr",
442
- type: "address",
443
- internalType: "address",
444
- },
445
- {
446
- name: "name",
447
- type: "string",
448
- internalType: "string",
449
- },
450
- {
451
- name: "cfVersion",
452
- type: "uint256",
453
- internalType: "uint256",
454
- },
455
- {
456
- name: "creditFacade",
457
- type: "address",
458
- internalType: "address",
459
- },
460
- {
461
- name: "creditConfigurator",
462
- type: "address",
463
- internalType: "address",
464
- },
465
- {
466
- name: "underlying",
467
- type: "address",
468
- internalType: "address",
469
- },
470
- {
471
- name: "pool",
472
- type: "address",
473
- internalType: "address",
474
- },
475
- {
476
- name: "totalDebt",
477
- type: "uint256",
478
- internalType: "uint256",
479
- },
480
- {
481
- name: "totalDebtLimit",
482
- type: "uint256",
483
- internalType: "uint256",
484
- },
485
- {
486
- name: "baseBorrowRate",
487
- type: "uint256",
488
- internalType: "uint256",
489
- },
490
- {
491
- name: "minDebt",
492
- type: "uint256",
493
- internalType: "uint256",
494
- },
495
- {
496
- name: "maxDebt",
497
- type: "uint256",
498
- internalType: "uint256",
499
- },
500
- {
501
- name: "availableToBorrow",
502
- type: "uint256",
503
- internalType: "uint256",
504
- },
505
- {
506
- name: "collateralTokens",
507
- type: "address[]",
508
- internalType: "address[]",
509
- },
510
- {
511
- name: "adapters",
512
- type: "tuple[]",
513
- internalType: "struct ContractAdapter[]",
514
- components: [
515
- {
516
- name: "targetContract",
517
- type: "address",
518
- internalType: "address",
519
- },
520
- {
521
- name: "adapter",
522
- type: "address",
523
- internalType: "address",
524
- },
525
- ],
526
- },
527
- {
528
- name: "liquidationThresholds",
529
- type: "uint256[]",
530
- internalType: "uint256[]",
531
- },
532
- {
533
- name: "isDegenMode",
534
- type: "bool",
535
- internalType: "bool",
536
- },
537
- {
538
- name: "degenNFT",
539
- type: "address",
540
- internalType: "address",
541
- },
542
- {
543
- name: "forbiddenTokenMask",
544
- type: "uint256",
545
- internalType: "uint256",
546
- },
547
- {
548
- name: "maxEnabledTokensLength",
549
- type: "uint8",
550
- internalType: "uint8",
551
- },
552
- {
553
- name: "feeInterest",
554
- type: "uint16",
555
- internalType: "uint16",
556
- },
557
- {
558
- name: "feeLiquidation",
559
- type: "uint16",
560
- internalType: "uint16",
561
- },
562
- {
563
- name: "liquidationDiscount",
564
- type: "uint16",
565
- internalType: "uint16",
566
- },
567
- {
568
- name: "feeLiquidationExpired",
569
- type: "uint16",
570
- internalType: "uint16",
571
- },
572
- {
573
- name: "liquidationDiscountExpired",
574
- type: "uint16",
575
- internalType: "uint16",
576
- },
577
- {
578
- name: "quotas",
579
- type: "tuple[]",
580
- internalType: "struct QuotaInfo[]",
581
- components: [
582
- {
583
- name: "token",
584
- type: "address",
585
- internalType: "address",
586
- },
587
- {
588
- name: "rate",
589
- type: "uint16",
590
- internalType: "uint16",
591
- },
592
- {
593
- name: "quotaIncreaseFee",
594
- type: "uint16",
595
- internalType: "uint16",
596
- },
597
- {
598
- name: "totalQuoted",
599
- type: "uint96",
600
- internalType: "uint96",
601
- },
602
- {
603
- name: "limit",
604
- type: "uint96",
605
- internalType: "uint96",
606
- },
607
- {
608
- name: "isActive",
609
- type: "bool",
610
- internalType: "bool",
611
- },
612
- ],
613
- },
614
- {
615
- name: "lirm",
616
- type: "tuple",
617
- internalType: "struct LinearModel",
618
- components: [
619
- {
620
- name: "interestModel",
621
- type: "address",
622
- internalType: "address",
623
- },
624
- {
625
- name: "version",
626
- type: "uint256",
627
- internalType: "uint256",
628
- },
629
- {
630
- name: "U_1",
631
- type: "uint16",
632
- internalType: "uint16",
633
- },
634
- {
635
- name: "U_2",
636
- type: "uint16",
637
- internalType: "uint16",
638
- },
639
- {
640
- name: "R_base",
641
- type: "uint16",
642
- internalType: "uint16",
643
- },
644
- {
645
- name: "R_slope1",
646
- type: "uint16",
647
- internalType: "uint16",
648
- },
649
- {
650
- name: "R_slope2",
651
- type: "uint16",
652
- internalType: "uint16",
653
- },
654
- {
655
- name: "R_slope3",
656
- type: "uint16",
657
- internalType: "uint16",
658
- },
659
- {
660
- name: "isBorrowingMoreU2Forbidden",
661
- type: "bool",
662
- internalType: "bool",
663
- },
664
- ],
665
- },
666
- {
667
- name: "isPaused",
668
- type: "bool",
669
- internalType: "bool",
670
- },
671
- ],
672
- },
673
- ],
674
- stateMutability: "view",
675
- },
676
- {
677
- type: "function",
678
- name: "getCreditManagersV2List",
679
- inputs: [],
680
- outputs: [
681
- {
682
- name: "",
683
- type: "tuple[]",
684
- internalType: "struct CreditManagerData[]",
685
- components: [
686
- {
687
- name: "addr",
688
- type: "address",
689
- internalType: "address",
690
- },
691
- {
692
- name: "name",
693
- type: "string",
694
- internalType: "string",
695
- },
696
- {
697
- name: "cfVersion",
698
- type: "uint256",
699
- internalType: "uint256",
700
- },
701
- {
702
- name: "creditFacade",
703
- type: "address",
704
- internalType: "address",
705
- },
706
- {
707
- name: "creditConfigurator",
708
- type: "address",
709
- internalType: "address",
710
- },
711
- {
712
- name: "underlying",
713
- type: "address",
714
- internalType: "address",
715
- },
716
- {
717
- name: "pool",
718
- type: "address",
719
- internalType: "address",
720
- },
721
- {
722
- name: "totalDebt",
723
- type: "uint256",
724
- internalType: "uint256",
725
- },
726
- {
727
- name: "totalDebtLimit",
728
- type: "uint256",
729
- internalType: "uint256",
730
- },
731
- {
732
- name: "baseBorrowRate",
733
- type: "uint256",
734
- internalType: "uint256",
735
- },
736
- {
737
- name: "minDebt",
738
- type: "uint256",
739
- internalType: "uint256",
740
- },
741
- {
742
- name: "maxDebt",
743
- type: "uint256",
744
- internalType: "uint256",
745
- },
746
- {
747
- name: "availableToBorrow",
748
- type: "uint256",
749
- internalType: "uint256",
750
- },
751
- {
752
- name: "collateralTokens",
753
- type: "address[]",
754
- internalType: "address[]",
755
- },
756
- {
757
- name: "adapters",
758
- type: "tuple[]",
759
- internalType: "struct ContractAdapter[]",
760
- components: [
761
- {
762
- name: "targetContract",
763
- type: "address",
764
- internalType: "address",
765
- },
766
- {
767
- name: "adapter",
768
- type: "address",
769
- internalType: "address",
770
- },
771
- ],
772
- },
773
- {
774
- name: "liquidationThresholds",
775
- type: "uint256[]",
776
- internalType: "uint256[]",
777
- },
778
- {
779
- name: "isDegenMode",
780
- type: "bool",
781
- internalType: "bool",
782
- },
783
- {
784
- name: "degenNFT",
785
- type: "address",
786
- internalType: "address",
787
- },
788
- {
789
- name: "forbiddenTokenMask",
790
- type: "uint256",
791
- internalType: "uint256",
792
- },
793
- {
794
- name: "maxEnabledTokensLength",
795
- type: "uint8",
796
- internalType: "uint8",
797
- },
798
- {
799
- name: "feeInterest",
800
- type: "uint16",
801
- internalType: "uint16",
802
- },
803
- {
804
- name: "feeLiquidation",
805
- type: "uint16",
806
- internalType: "uint16",
807
- },
808
- {
809
- name: "liquidationDiscount",
810
- type: "uint16",
811
- internalType: "uint16",
812
- },
813
- {
814
- name: "feeLiquidationExpired",
815
- type: "uint16",
816
- internalType: "uint16",
817
- },
818
- {
819
- name: "liquidationDiscountExpired",
820
- type: "uint16",
821
- internalType: "uint16",
822
- },
823
- {
824
- name: "quotas",
825
- type: "tuple[]",
826
- internalType: "struct QuotaInfo[]",
827
- components: [
828
- {
829
- name: "token",
830
- type: "address",
831
- internalType: "address",
832
- },
833
- {
834
- name: "rate",
835
- type: "uint16",
836
- internalType: "uint16",
837
- },
838
- {
839
- name: "quotaIncreaseFee",
840
- type: "uint16",
841
- internalType: "uint16",
842
- },
843
- {
844
- name: "totalQuoted",
845
- type: "uint96",
846
- internalType: "uint96",
847
- },
848
- {
849
- name: "limit",
850
- type: "uint96",
851
- internalType: "uint96",
852
- },
853
- {
854
- name: "isActive",
855
- type: "bool",
856
- internalType: "bool",
857
- },
858
- ],
859
- },
860
- {
861
- name: "lirm",
862
- type: "tuple",
863
- internalType: "struct LinearModel",
864
- components: [
865
- {
866
- name: "interestModel",
867
- type: "address",
868
- internalType: "address",
869
- },
870
- {
871
- name: "version",
872
- type: "uint256",
873
- internalType: "uint256",
874
- },
875
- {
876
- name: "U_1",
877
- type: "uint16",
878
- internalType: "uint16",
879
- },
880
- {
881
- name: "U_2",
882
- type: "uint16",
883
- internalType: "uint16",
884
- },
885
- {
886
- name: "R_base",
887
- type: "uint16",
888
- internalType: "uint16",
889
- },
890
- {
891
- name: "R_slope1",
892
- type: "uint16",
893
- internalType: "uint16",
894
- },
895
- {
896
- name: "R_slope2",
897
- type: "uint16",
898
- internalType: "uint16",
899
- },
900
- {
901
- name: "R_slope3",
902
- type: "uint16",
903
- internalType: "uint16",
904
- },
905
- {
906
- name: "isBorrowingMoreU2Forbidden",
907
- type: "bool",
908
- internalType: "bool",
909
- },
910
- ],
911
- },
912
- {
913
- name: "isPaused",
914
- type: "bool",
915
- internalType: "bool",
916
- },
917
- ],
918
- },
919
- ],
920
- stateMutability: "view",
921
- },
922
- {
923
- type: "function",
924
- name: "getPoolData",
925
- inputs: [
926
- {
927
- name: "_pool",
928
- type: "address",
929
- internalType: "address",
930
- },
931
- ],
932
- outputs: [
933
- {
934
- name: "",
935
- type: "tuple",
936
- internalType: "struct PoolData",
937
- components: [
938
- {
939
- name: "addr",
940
- type: "address",
941
- internalType: "address",
942
- },
943
- {
944
- name: "underlying",
945
- type: "address",
946
- internalType: "address",
947
- },
948
- {
949
- name: "dieselToken",
950
- type: "address",
951
- internalType: "address",
952
- },
953
- {
954
- name: "symbol",
955
- type: "string",
956
- internalType: "string",
957
- },
958
- {
959
- name: "name",
960
- type: "string",
961
- internalType: "string",
962
- },
963
- {
964
- name: "baseInterestIndex",
965
- type: "uint256",
966
- internalType: "uint256",
967
- },
968
- {
969
- name: "availableLiquidity",
970
- type: "uint256",
971
- internalType: "uint256",
972
- },
973
- {
974
- name: "expectedLiquidity",
975
- type: "uint256",
976
- internalType: "uint256",
977
- },
978
- {
979
- name: "totalBorrowed",
980
- type: "uint256",
981
- internalType: "uint256",
982
- },
983
- {
984
- name: "totalDebtLimit",
985
- type: "uint256",
986
- internalType: "uint256",
987
- },
988
- {
989
- name: "creditManagerDebtParams",
990
- type: "tuple[]",
991
- internalType: "struct CreditManagerDebtParams[]",
992
- components: [
993
- {
994
- name: "creditManager",
995
- type: "address",
996
- internalType: "address",
997
- },
998
- {
999
- name: "borrowed",
1000
- type: "uint256",
1001
- internalType: "uint256",
1002
- },
1003
- {
1004
- name: "limit",
1005
- type: "uint256",
1006
- internalType: "uint256",
1007
- },
1008
- {
1009
- name: "availableToBorrow",
1010
- type: "uint256",
1011
- internalType: "uint256",
1012
- },
1013
- ],
1014
- },
1015
- {
1016
- name: "totalAssets",
1017
- type: "uint256",
1018
- internalType: "uint256",
1019
- },
1020
- {
1021
- name: "totalSupply",
1022
- type: "uint256",
1023
- internalType: "uint256",
1024
- },
1025
- {
1026
- name: "supplyRate",
1027
- type: "uint256",
1028
- internalType: "uint256",
1029
- },
1030
- {
1031
- name: "baseInterestRate",
1032
- type: "uint256",
1033
- internalType: "uint256",
1034
- },
1035
- {
1036
- name: "dieselRate_RAY",
1037
- type: "uint256",
1038
- internalType: "uint256",
1039
- },
1040
- {
1041
- name: "withdrawFee",
1042
- type: "uint256",
1043
- internalType: "uint256",
1044
- },
1045
- {
1046
- name: "lastBaseInterestUpdate",
1047
- type: "uint256",
1048
- internalType: "uint256",
1049
- },
1050
- {
1051
- name: "baseInterestIndexLU",
1052
- type: "uint256",
1053
- internalType: "uint256",
1054
- },
1055
- {
1056
- name: "version",
1057
- type: "uint256",
1058
- internalType: "uint256",
1059
- },
1060
- {
1061
- name: "poolQuotaKeeper",
1062
- type: "address",
1063
- internalType: "address",
1064
- },
1065
- {
1066
- name: "gauge",
1067
- type: "address",
1068
- internalType: "address",
1069
- },
1070
- {
1071
- name: "quotas",
1072
- type: "tuple[]",
1073
- internalType: "struct QuotaInfo[]",
1074
- components: [
1075
- {
1076
- name: "token",
1077
- type: "address",
1078
- internalType: "address",
1079
- },
1080
- {
1081
- name: "rate",
1082
- type: "uint16",
1083
- internalType: "uint16",
1084
- },
1085
- {
1086
- name: "quotaIncreaseFee",
1087
- type: "uint16",
1088
- internalType: "uint16",
1089
- },
1090
- {
1091
- name: "totalQuoted",
1092
- type: "uint96",
1093
- internalType: "uint96",
1094
- },
1095
- {
1096
- name: "limit",
1097
- type: "uint96",
1098
- internalType: "uint96",
1099
- },
1100
- {
1101
- name: "isActive",
1102
- type: "bool",
1103
- internalType: "bool",
1104
- },
1105
- ],
1106
- },
1107
- {
1108
- name: "zappers",
1109
- type: "tuple[]",
1110
- internalType: "struct ZapperInfo[]",
1111
- components: [
1112
- {
1113
- name: "zapper",
1114
- type: "address",
1115
- internalType: "address",
1116
- },
1117
- {
1118
- name: "tokenIn",
1119
- type: "address",
1120
- internalType: "address",
1121
- },
1122
- {
1123
- name: "tokenOut",
1124
- type: "address",
1125
- internalType: "address",
1126
- },
1127
- ],
1128
- },
1129
- {
1130
- name: "lirm",
1131
- type: "tuple",
1132
- internalType: "struct LinearModel",
1133
- components: [
1134
- {
1135
- name: "interestModel",
1136
- type: "address",
1137
- internalType: "address",
1138
- },
1139
- {
1140
- name: "version",
1141
- type: "uint256",
1142
- internalType: "uint256",
1143
- },
1144
- {
1145
- name: "U_1",
1146
- type: "uint16",
1147
- internalType: "uint16",
1148
- },
1149
- {
1150
- name: "U_2",
1151
- type: "uint16",
1152
- internalType: "uint16",
1153
- },
1154
- {
1155
- name: "R_base",
1156
- type: "uint16",
1157
- internalType: "uint16",
1158
- },
1159
- {
1160
- name: "R_slope1",
1161
- type: "uint16",
1162
- internalType: "uint16",
1163
- },
1164
- {
1165
- name: "R_slope2",
1166
- type: "uint16",
1167
- internalType: "uint16",
1168
- },
1169
- {
1170
- name: "R_slope3",
1171
- type: "uint16",
1172
- internalType: "uint16",
1173
- },
1174
- {
1175
- name: "isBorrowingMoreU2Forbidden",
1176
- type: "bool",
1177
- internalType: "bool",
1178
- },
1179
- ],
1180
- },
1181
- {
1182
- name: "isPaused",
1183
- type: "bool",
1184
- internalType: "bool",
1185
- },
1186
- ],
1187
- },
1188
- ],
1189
- stateMutability: "view",
1190
- },
1191
- {
1192
- type: "function",
1193
- name: "getPoolsV1List",
1194
- inputs: [],
1195
- outputs: [
1196
- {
1197
- name: "",
1198
- type: "tuple[]",
1199
- internalType: "struct PoolData[]",
1200
- components: [
1201
- {
1202
- name: "addr",
1203
- type: "address",
1204
- internalType: "address",
1205
- },
1206
- {
1207
- name: "underlying",
1208
- type: "address",
1209
- internalType: "address",
1210
- },
1211
- {
1212
- name: "dieselToken",
1213
- type: "address",
1214
- internalType: "address",
1215
- },
1216
- {
1217
- name: "symbol",
1218
- type: "string",
1219
- internalType: "string",
1220
- },
1221
- {
1222
- name: "name",
1223
- type: "string",
1224
- internalType: "string",
1225
- },
1226
- {
1227
- name: "baseInterestIndex",
1228
- type: "uint256",
1229
- internalType: "uint256",
1230
- },
1231
- {
1232
- name: "availableLiquidity",
1233
- type: "uint256",
1234
- internalType: "uint256",
1235
- },
1236
- {
1237
- name: "expectedLiquidity",
1238
- type: "uint256",
1239
- internalType: "uint256",
1240
- },
1241
- {
1242
- name: "totalBorrowed",
1243
- type: "uint256",
1244
- internalType: "uint256",
1245
- },
1246
- {
1247
- name: "totalDebtLimit",
1248
- type: "uint256",
1249
- internalType: "uint256",
1250
- },
1251
- {
1252
- name: "creditManagerDebtParams",
1253
- type: "tuple[]",
1254
- internalType: "struct CreditManagerDebtParams[]",
1255
- components: [
1256
- {
1257
- name: "creditManager",
1258
- type: "address",
1259
- internalType: "address",
1260
- },
1261
- {
1262
- name: "borrowed",
1263
- type: "uint256",
1264
- internalType: "uint256",
1265
- },
1266
- {
1267
- name: "limit",
1268
- type: "uint256",
1269
- internalType: "uint256",
1270
- },
1271
- {
1272
- name: "availableToBorrow",
1273
- type: "uint256",
1274
- internalType: "uint256",
1275
- },
1276
- ],
1277
- },
1278
- {
1279
- name: "totalAssets",
1280
- type: "uint256",
1281
- internalType: "uint256",
1282
- },
1283
- {
1284
- name: "totalSupply",
1285
- type: "uint256",
1286
- internalType: "uint256",
1287
- },
1288
- {
1289
- name: "supplyRate",
1290
- type: "uint256",
1291
- internalType: "uint256",
1292
- },
1293
- {
1294
- name: "baseInterestRate",
1295
- type: "uint256",
1296
- internalType: "uint256",
1297
- },
1298
- {
1299
- name: "dieselRate_RAY",
1300
- type: "uint256",
1301
- internalType: "uint256",
1302
- },
1303
- {
1304
- name: "withdrawFee",
1305
- type: "uint256",
1306
- internalType: "uint256",
1307
- },
1308
- {
1309
- name: "lastBaseInterestUpdate",
1310
- type: "uint256",
1311
- internalType: "uint256",
1312
- },
1313
- {
1314
- name: "baseInterestIndexLU",
1315
- type: "uint256",
1316
- internalType: "uint256",
1317
- },
1318
- {
1319
- name: "version",
1320
- type: "uint256",
1321
- internalType: "uint256",
1322
- },
1323
- {
1324
- name: "poolQuotaKeeper",
1325
- type: "address",
1326
- internalType: "address",
1327
- },
1328
- {
1329
- name: "gauge",
1330
- type: "address",
1331
- internalType: "address",
1332
- },
1333
- {
1334
- name: "quotas",
1335
- type: "tuple[]",
1336
- internalType: "struct QuotaInfo[]",
1337
- components: [
1338
- {
1339
- name: "token",
1340
- type: "address",
1341
- internalType: "address",
1342
- },
1343
- {
1344
- name: "rate",
1345
- type: "uint16",
1346
- internalType: "uint16",
1347
- },
1348
- {
1349
- name: "quotaIncreaseFee",
1350
- type: "uint16",
1351
- internalType: "uint16",
1352
- },
1353
- {
1354
- name: "totalQuoted",
1355
- type: "uint96",
1356
- internalType: "uint96",
1357
- },
1358
- {
1359
- name: "limit",
1360
- type: "uint96",
1361
- internalType: "uint96",
1362
- },
1363
- {
1364
- name: "isActive",
1365
- type: "bool",
1366
- internalType: "bool",
1367
- },
1368
- ],
1369
- },
1370
- {
1371
- name: "zappers",
1372
- type: "tuple[]",
1373
- internalType: "struct ZapperInfo[]",
1374
- components: [
1375
- {
1376
- name: "zapper",
1377
- type: "address",
1378
- internalType: "address",
1379
- },
1380
- {
1381
- name: "tokenIn",
1382
- type: "address",
1383
- internalType: "address",
1384
- },
1385
- {
1386
- name: "tokenOut",
1387
- type: "address",
1388
- internalType: "address",
1389
- },
1390
- ],
1391
- },
1392
- {
1393
- name: "lirm",
1394
- type: "tuple",
1395
- internalType: "struct LinearModel",
1396
- components: [
1397
- {
1398
- name: "interestModel",
1399
- type: "address",
1400
- internalType: "address",
1401
- },
1402
- {
1403
- name: "version",
1404
- type: "uint256",
1405
- internalType: "uint256",
1406
- },
1407
- {
1408
- name: "U_1",
1409
- type: "uint16",
1410
- internalType: "uint16",
1411
- },
1412
- {
1413
- name: "U_2",
1414
- type: "uint16",
1415
- internalType: "uint16",
1416
- },
1417
- {
1418
- name: "R_base",
1419
- type: "uint16",
1420
- internalType: "uint16",
1421
- },
1422
- {
1423
- name: "R_slope1",
1424
- type: "uint16",
1425
- internalType: "uint16",
1426
- },
1427
- {
1428
- name: "R_slope2",
1429
- type: "uint16",
1430
- internalType: "uint16",
1431
- },
1432
- {
1433
- name: "R_slope3",
1434
- type: "uint16",
1435
- internalType: "uint16",
1436
- },
1437
- {
1438
- name: "isBorrowingMoreU2Forbidden",
1439
- type: "bool",
1440
- internalType: "bool",
1441
- },
1442
- ],
1443
- },
1444
- {
1445
- name: "isPaused",
1446
- type: "bool",
1447
- internalType: "bool",
1448
- },
1449
- ],
1450
- },
1451
- ],
1452
- stateMutability: "view",
1453
- },
1454
- {
1455
- type: "function",
1456
- name: "hasOpenedCreditAccount",
1457
- inputs: [
1458
- {
1459
- name: "creditManager",
1460
- type: "address",
1461
- internalType: "address",
1462
- },
1463
- {
1464
- name: "borrower",
1465
- type: "address",
1466
- internalType: "address",
1467
- },
1468
- ],
1469
- outputs: [
1470
- {
1471
- name: "",
1472
- type: "bool",
1473
- internalType: "bool",
1474
- },
1475
- ],
1476
- stateMutability: "view",
1477
- },
1478
- {
1479
- type: "function",
1480
- name: "version",
1481
- inputs: [],
1482
- outputs: [
1483
- {
1484
- name: "",
1485
- type: "uint256",
1486
- internalType: "uint256",
1487
- },
1488
- ],
1489
- stateMutability: "view",
1490
- },
1491
- ];
1492
- class IDataCompressorV2_1__factory {
1493
- static abi = _abi;
1494
- static createInterface() {
1495
- return new ethers_1.Interface(_abi);
1496
- }
1497
- static connect(address, runner) {
1498
- return new ethers_1.Contract(address, _abi, runner);
1499
- }
1500
- }
1501
- exports.IDataCompressorV2_1__factory = IDataCompressorV2_1__factory;