@gearbox-protocol/sdk 2.1.37 → 3.0.0-draft.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1336) hide show
  1. package/contracts/IAirdropDistributor.sol +55 -0
  2. package/contracts/IDegenDistributor.sol +28 -0
  3. package/contracts/IOffchainOracle.sol +17 -0
  4. package/contracts/IWETHGateway.sol +33 -0
  5. package/contracts/IwstETHGateway.sol +24 -0
  6. package/contracts/SignUpRepository.sol +85 -0
  7. package/contracts/index.sol +84 -1
  8. package/lib/apy/index.d.ts +11 -9
  9. package/lib/apy/index.js +95 -24
  10. package/lib/contracts/contractsRegister.d.ts +18 -10
  11. package/lib/contracts/contractsRegister.js +62 -10
  12. package/lib/core/assets.d.ts +18 -12
  13. package/lib/core/assets.js +41 -17
  14. package/lib/core/bot.d.ts +12 -0
  15. package/lib/core/bot.js +23 -0
  16. package/lib/core/creditAccount.d.ts +135 -45
  17. package/lib/core/creditAccount.js +328 -110
  18. package/lib/core/creditAccount.spec.js +1553 -52
  19. package/lib/core/creditManager.d.ts +57 -45
  20. package/lib/core/creditManager.js +264 -146
  21. package/lib/core/creditSession.d.ts +35 -13
  22. package/lib/core/creditSession.js +60 -37
  23. package/lib/core/endpoint.d.ts +23 -0
  24. package/lib/core/endpoint.js +89 -0
  25. package/lib/core/eventOrTx.d.ts +5 -5
  26. package/lib/core/events.d.ts +163 -162
  27. package/lib/core/events.js +69 -70
  28. package/lib/core/gauge.d.ts +40 -0
  29. package/lib/core/gauge.js +64 -0
  30. package/lib/core/gaugeMath.d.ts +41 -0
  31. package/lib/core/gaugeMath.js +105 -0
  32. package/lib/core/gaugeMath.spec.js +388 -0
  33. package/lib/core/pool.d.ts +150 -0
  34. package/lib/core/pool.js +324 -0
  35. package/lib/core/priceOracle.d.ts +1 -1
  36. package/lib/core/priceOracle.js +4 -5
  37. package/lib/core/protocols.d.ts +9 -0
  38. package/lib/core/protocols.js +173 -0
  39. package/lib/core/rewardClaimer/aura.d.ts +1 -0
  40. package/lib/core/rewardClaimer/aura.js +23 -0
  41. package/lib/core/rewardClaimer/auraAbi.d.ts +15 -0
  42. package/lib/core/rewardClaimer/auraAbi.js +24 -0
  43. package/lib/core/rewardClaimer/convex.d.ts +1 -0
  44. package/lib/core/rewardClaimer/convex.js +18 -0
  45. package/lib/core/rewardClaimer/index.d.ts +25 -0
  46. package/lib/core/rewardClaimer/index.js +34 -0
  47. package/lib/core/rewardClaimer/rewardConvex.d.ts +42 -0
  48. package/lib/core/rewardClaimer/rewardConvex.js +250 -0
  49. package/lib/core/rewardClaimer/rewardConvex.spec.js +112 -0
  50. package/lib/core/rewardClaimer/stakingRewards.d.ts +34 -0
  51. package/lib/core/rewardClaimer/stakingRewards.js +133 -0
  52. package/lib/core/strategy.d.ts +13 -29
  53. package/lib/core/strategy.js +26 -52
  54. package/lib/core/trade.d.ts +16 -34
  55. package/lib/core/trade.js +41 -93
  56. package/lib/core/transactions.d.ts +224 -69
  57. package/lib/core/transactions.js +346 -134
  58. package/lib/gearboxRewards/api.d.ts +104 -0
  59. package/lib/gearboxRewards/api.js +359 -0
  60. package/lib/gearboxRewards/apy.d.ts +53 -0
  61. package/lib/gearboxRewards/apy.js +116 -0
  62. package/lib/gearboxRewards/extraAPY.d.ts +32 -0
  63. package/lib/gearboxRewards/extraAPY.js +71 -0
  64. package/lib/gearboxRewards/index.d.ts +3 -0
  65. package/lib/gearboxRewards/index.js +19 -0
  66. package/lib/gearboxRewards/merklAPI.d.ts +138 -0
  67. package/lib/gearboxRewards/merklAPI.js +10 -0
  68. package/lib/index.d.ts +18 -30
  69. package/lib/index.js +18 -36
  70. package/lib/parsers/ERC20Parser.d.ts +3 -2
  71. package/lib/parsers/ERC20Parser.js +12 -12
  72. package/lib/parsers/aaveV2LendingPoolAdapterParser.d.ts +8 -0
  73. package/lib/parsers/aaveV2LendingPoolAdapterParser.js +21 -0
  74. package/lib/parsers/aaveV2WrappedATokenAdapterParser.d.ts +8 -0
  75. package/lib/parsers/aaveV2WrappedATokenAdapterParser.js +21 -0
  76. package/lib/parsers/abstractParser.d.ts +22 -16
  77. package/lib/parsers/abstractParser.js +34 -19
  78. package/lib/parsers/balancerV2VaultParser.d.ts +8 -0
  79. package/lib/parsers/balancerV2VaultParser.js +32 -0
  80. package/lib/parsers/compoundV2CTokenAdapterParser.d.ts +8 -0
  81. package/lib/parsers/compoundV2CTokenAdapterParser.js +21 -0
  82. package/lib/parsers/convexBaseRewardPoolAdapterParser.d.ts +4 -3
  83. package/lib/parsers/convexBaseRewardPoolAdapterParser.js +23 -19
  84. package/lib/parsers/convexBoosterAdapterParser.d.ts +3 -3
  85. package/lib/parsers/convexBoosterAdapterParser.js +17 -17
  86. package/lib/parsers/convextRewardPoolParser.d.ts +3 -2
  87. package/lib/parsers/convextRewardPoolParser.js +5 -5
  88. package/lib/parsers/creditFacadeParser.d.ts +6 -4
  89. package/lib/parsers/creditFacadeParser.js +51 -14
  90. package/lib/parsers/creditManagerParser.d.ts +2 -1
  91. package/lib/parsers/creditManagerParser.js +5 -8
  92. package/lib/parsers/curveAdapterParser.d.ts +4 -4
  93. package/lib/parsers/curveAdapterParser.js +46 -42
  94. package/lib/parsers/erc626AdapterParser.d.ts +8 -0
  95. package/lib/parsers/erc626AdapterParser.js +21 -0
  96. package/lib/parsers/iParser.d.ts +4 -7
  97. package/lib/parsers/lidoAdapterParser.d.ts +3 -2
  98. package/lib/parsers/lidoAdapterParser.js +9 -8
  99. package/lib/parsers/lidoSTETHParser.d.ts +3 -2
  100. package/lib/parsers/lidoSTETHParser.js +12 -12
  101. package/lib/parsers/priceOracleParser.d.ts +2 -1
  102. package/lib/parsers/priceOracleParser.js +6 -6
  103. package/lib/parsers/stakingRewardsAdapterParser.d.ts +10 -0
  104. package/lib/parsers/stakingRewardsAdapterParser.js +35 -0
  105. package/lib/parsers/txParser.d.ts +23 -32
  106. package/lib/parsers/txParser.js +60 -51
  107. package/lib/parsers/uniV2AdapterParser.d.ts +3 -3
  108. package/lib/parsers/uniV2AdapterParser.js +13 -15
  109. package/lib/parsers/uniV2AdapterParser.spec.js +44 -32
  110. package/lib/parsers/uniV3AdapterParser.d.ts +5 -4
  111. package/lib/parsers/uniV3AdapterParser.js +27 -19
  112. package/lib/parsers/uniV3AdapterParser.spec.js +54 -78
  113. package/lib/parsers/wstETHAdapterParser.d.ts +3 -2
  114. package/lib/parsers/wstETHAdapterParser.js +21 -21
  115. package/lib/parsers/wstETHAdapterParser.spec.js +24 -8
  116. package/lib/parsers/yearnAdapterParser.spec.js +43 -25
  117. package/lib/parsers/yearnV2AdapterParser.d.ts +3 -2
  118. package/lib/parsers/yearnV2AdapterParser.js +25 -15
  119. package/lib/pathfinder/balancerVault.d.ts +33 -0
  120. package/lib/pathfinder/balancerVault.js +59 -0
  121. package/lib/pathfinder/core.d.ts +18 -8
  122. package/lib/pathfinder/index.d.ts +4 -0
  123. package/lib/pathfinder/index.js +20 -0
  124. package/lib/pathfinder/pathOptions.d.ts +8 -7
  125. package/lib/pathfinder/pathOptions.js +44 -33
  126. package/lib/pathfinder/pathOptions.spec.js +57 -55
  127. package/lib/pathfinder/pathfinder.d.ts +61 -23
  128. package/lib/pathfinder/pathfinder.js +167 -82
  129. package/lib/pathfinder/pathfinder.spec.js +31 -19
  130. package/lib/pathfinder/utils.d.ts +34 -0
  131. package/lib/pathfinder/utils.js +186 -0
  132. package/lib/payload/bot.d.ts +13 -0
  133. package/lib/payload/creditAccount.d.ts +41 -4
  134. package/lib/payload/creditManager.d.ts +58 -15
  135. package/lib/payload/creditSession.d.ts +31 -16
  136. package/lib/payload/gauge.d.ts +40 -0
  137. package/lib/payload/graphPayload.d.ts +3 -2
  138. package/lib/payload/pool.d.ts +111 -27
  139. package/lib/payload/token.d.ts +5 -2
  140. package/lib/redstone/api.d.ts +42 -0
  141. package/lib/redstone/api.js +384 -0
  142. package/lib/redstone/index.d.ts +1 -0
  143. package/lib/redstone/index.js +17 -0
  144. package/lib/tokens/tokenData.d.ts +7 -6
  145. package/lib/tokens/tokenData.js +25 -21
  146. package/lib/types/CompositePriceFeed.d.ts +182 -0
  147. package/lib/types/CompositePriceFeed.js +123 -0
  148. package/lib/types/IAaveV2_LendingPoolAdapter.d.ts +151 -0
  149. package/lib/types/IAaveV2_LendingPoolAdapter.js +98 -0
  150. package/lib/types/IAaveV2_WrappedATokenAdapter.d.ts +245 -0
  151. package/lib/types/IAaveV2_WrappedATokenAdapter.js +166 -0
  152. package/lib/types/IAddressProviderV3.d.ts +85 -0
  153. package/lib/types/IAddressProviderV3.js +66 -0
  154. package/lib/types/IAirdropDistributor.d.ts +112 -0
  155. package/lib/types/IAirdropDistributor.js +105 -0
  156. package/lib/types/IBalancerV2VaultAdapter.d.ts +507 -0
  157. package/lib/types/IBalancerV2VaultAdapter.js +322 -0
  158. package/lib/types/IBaseRewardPool.d.ts +391 -0
  159. package/lib/types/IBaseRewardPool.js +251 -0
  160. package/lib/types/ICompoundV2_CTokenAdapter.d.ts +189 -0
  161. package/lib/types/ICompoundV2_CTokenAdapter.js +130 -0
  162. package/lib/types/IConvexToken.d.ts +201 -0
  163. package/lib/types/IConvexToken.js +145 -0
  164. package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +299 -0
  165. package/lib/types/IConvexV1BaseRewardPoolAdapter.js +204 -0
  166. package/lib/types/IConvexV1BoosterAdapter.d.ts +182 -0
  167. package/lib/types/IConvexV1BoosterAdapter.js +125 -0
  168. package/lib/types/ICreditConfiguratorV3.d.ts +598 -0
  169. package/lib/types/ICreditConfiguratorV3.js +601 -0
  170. package/lib/types/ICreditFacadeV2Extended.d.ts +74 -0
  171. package/lib/types/ICreditFacadeV2Extended.js +63 -0
  172. package/lib/types/ICreditFacadeV3.d.ts +543 -0
  173. package/lib/types/ICreditFacadeV3.js +491 -0
  174. package/lib/types/ICreditFacadeV3Multicall.d.ts +197 -0
  175. package/lib/types/ICreditFacadeV3Multicall.js +144 -0
  176. package/lib/types/ICreditManagerV2.d.ts +700 -0
  177. package/lib/types/ICreditManagerV2.js +443 -0
  178. package/lib/types/ICreditManagerV3.d.ts +1016 -0
  179. package/lib/types/ICreditManagerV3.js +672 -0
  180. package/lib/types/ICurvePool.d.ts +559 -0
  181. package/lib/types/ICurvePool.js +334 -0
  182. package/lib/types/ICurveV1_2AssetsAdapter.d.ts +665 -0
  183. package/lib/types/ICurveV1_2AssetsAdapter.js +406 -0
  184. package/lib/types/ICurveV1_3AssetsAdapter.d.ts +665 -0
  185. package/lib/types/ICurveV1_3AssetsAdapter.js +406 -0
  186. package/lib/types/ICurveV1_4AssetsAdapter.d.ts +665 -0
  187. package/lib/types/ICurveV1_4AssetsAdapter.js +406 -0
  188. package/lib/types/IDataCompressorV2_1.d.ts +1165 -0
  189. package/lib/types/IDataCompressorV2_1.js +720 -0
  190. package/lib/types/IDataCompressorV3.d.ts +1573 -0
  191. package/lib/types/IDataCompressorV3.js +959 -0
  192. package/lib/types/IDegenDistributor.d.ts +77 -0
  193. package/lib/types/IDegenDistributor.js +72 -0
  194. package/lib/types/IERC20.d.ts +141 -0
  195. package/lib/types/IERC20.js +103 -0
  196. package/lib/types/IERC20Permit.d.ts +59 -0
  197. package/lib/types/IERC20Permit.js +37 -0
  198. package/lib/types/IERC20ZapperDeposits.d.ts +193 -0
  199. package/lib/types/IERC20ZapperDeposits.js +101 -0
  200. package/lib/types/IERC4626Adapter.d.ts +213 -0
  201. package/lib/types/IERC4626Adapter.js +142 -0
  202. package/lib/types/IETHZapperDeposits.d.ts +33 -0
  203. package/lib/types/IETHZapperDeposits.js +29 -0
  204. package/lib/types/IFarmingPool.d.ts +292 -0
  205. package/lib/types/IFarmingPool.js +231 -0
  206. package/lib/types/IGearStakingV3.d.ts +497 -0
  207. package/lib/types/IGearStakingV3.js +368 -0
  208. package/lib/types/IInterestRateModel.d.ts +29 -0
  209. package/lib/types/IInterestRateModel.js +25 -0
  210. package/lib/types/ILidoV1Adapter.d.ts +137 -0
  211. package/lib/types/ILidoV1Adapter.js +100 -0
  212. package/lib/types/IMulticall3.d.ts +332 -0
  213. package/lib/types/IMulticall3.js +244 -0
  214. package/lib/types/IOffchainOracle.d.ts +41 -0
  215. package/lib/types/IOffchainOracle.js +33 -0
  216. package/lib/types/IPToken.d.ts +21 -0
  217. package/lib/types/IPToken.js +22 -0
  218. package/lib/types/IPartialLiquidationBotV3.d.ts +210 -0
  219. package/lib/types/IPartialLiquidationBotV3.js +143 -0
  220. package/lib/types/IPendleMarket.d.ts +19 -0
  221. package/lib/types/IPendleMarket.js +19 -0
  222. package/lib/types/IPendleRouter.d.ts +536 -0
  223. package/lib/types/IPendleRouter.js +370 -0
  224. package/lib/types/IPendleRouterAdapter.d.ts +831 -0
  225. package/lib/types/IPendleRouterAdapter.js +572 -0
  226. package/lib/types/IPendleRouterAdapterEvents.d.ts +26 -0
  227. package/lib/types/IPendleRouterAdapterEvents.js +39 -0
  228. package/lib/types/IPendleRouterAdapterExceptions.d.ts +9 -0
  229. package/lib/types/IPendleRouterAdapterExceptions.js +10 -0
  230. package/lib/types/IPoolV3.d.ts +1061 -0
  231. package/lib/types/IPoolV3.js +806 -0
  232. package/lib/types/IPriceFeed.d.ts +77 -0
  233. package/lib/types/IPriceFeed.js +56 -0
  234. package/lib/types/IPriceOracleBase.d.ts +97 -0
  235. package/lib/types/IPriceOracleBase.js +60 -0
  236. package/lib/types/IPriceOracleV3.d.ts +319 -0
  237. package/lib/types/IPriceOracleV3.js +210 -0
  238. package/lib/types/IRouterComponent.d.ts +31 -0
  239. package/lib/types/IRouterComponent.js +29 -0
  240. package/lib/types/IRouterStatic.d.ts +128 -0
  241. package/lib/types/IRouterStatic.js +68 -0
  242. package/lib/types/IRouterV3.d.ts +505 -0
  243. package/lib/types/IRouterV3.js +328 -0
  244. package/lib/types/IStakingRewardsAdapter.d.ts +197 -0
  245. package/lib/types/IStakingRewardsAdapter.js +139 -0
  246. package/lib/types/ISwapper.d.ts +100 -0
  247. package/lib/types/ISwapper.js +75 -0
  248. package/lib/types/IUniswapV2Adapter.d.ts +214 -0
  249. package/lib/types/IUniswapV2Adapter.js +139 -0
  250. package/lib/types/IUniswapV3Adapter.d.ts +391 -0
  251. package/lib/types/IUniswapV3Adapter.js +260 -0
  252. package/lib/types/IUpdatablePriceFeed.d.ts +97 -0
  253. package/lib/types/IUpdatablePriceFeed.js +70 -0
  254. package/lib/types/IYToken.d.ts +21 -0
  255. package/lib/types/IYToken.js +22 -0
  256. package/lib/types/IYearnV2Adapter.d.ts +223 -0
  257. package/lib/types/IYearnV2Adapter.js +148 -0
  258. package/lib/types/IZapper.d.ts +159 -0
  259. package/lib/types/IZapper.js +103 -0
  260. package/lib/types/IstETH.d.ts +257 -0
  261. package/lib/types/IstETH.js +175 -0
  262. package/lib/types/IwstETH.d.ts +257 -0
  263. package/lib/types/IwstETH.js +181 -0
  264. package/lib/types/IwstETHV1Adapter.d.ts +153 -0
  265. package/lib/types/IwstETHV1Adapter.js +108 -0
  266. package/lib/types/PendleSwapper.d.ts +182 -0
  267. package/lib/types/PendleSwapper.js +130 -0
  268. package/lib/types/PendleTWAPPTPriceFeed.d.ts +201 -0
  269. package/lib/types/PendleTWAPPTPriceFeed.js +131 -0
  270. package/lib/types/RedstonePriceFeed.d.ts +423 -0
  271. package/lib/types/RedstonePriceFeed.js +287 -0
  272. package/lib/types/RouterComponentConfigurator.d.ts +61 -0
  273. package/lib/types/RouterComponentConfigurator.js +48 -0
  274. package/lib/types/SignUpRepository.d.ts +161 -0
  275. package/lib/types/SignUpRepository.js +137 -0
  276. package/lib/types/index.d.ts +65 -301
  277. package/lib/types/index.js +67 -307
  278. package/lib/utils/calls.d.ts +31 -0
  279. package/lib/utils/calls.js +73 -0
  280. package/lib/utils/formatter.d.ts +2 -6
  281. package/lib/utils/formatter.js +7 -80
  282. package/lib/utils/math.d.ts +3 -1
  283. package/lib/utils/math.js +8 -7
  284. package/lib/utils/price.js +4 -4
  285. package/lib/utils/types.d.ts +1 -10
  286. package/package.json +30 -22
  287. package/lib/apy/convexAPY.d.ts +0 -50
  288. package/lib/apy/convexAPY.js +0 -189
  289. package/lib/apy/curveAPY.d.ts +0 -11
  290. package/lib/apy/curveAPY.js +0 -88
  291. package/lib/apy/lidoAPY.d.ts +0 -1
  292. package/lib/apy/lidoAPY.js +0 -22
  293. package/lib/apy/yearnAPY.d.ts +0 -3
  294. package/lib/apy/yearnAPY.js +0 -34
  295. package/lib/config.d.ts +0 -2
  296. package/lib/config.js +0 -5
  297. package/lib/contracts/adapters.d.ts +0 -1
  298. package/lib/contracts/adapters.js +0 -17
  299. package/lib/contracts/contracts.d.ts +0 -1
  300. package/lib/contracts/contracts.js +0 -17
  301. package/lib/contracts/protocols.d.ts +0 -1
  302. package/lib/contracts/protocols.js +0 -17
  303. package/lib/contracts/utilsContracts.d.ts +0 -1
  304. package/lib/contracts/utilsContracts.js +0 -17
  305. package/lib/core/chains.d.ts +0 -23
  306. package/lib/core/chains.js +0 -63
  307. package/lib/core/constants.d.ts +0 -21
  308. package/lib/core/constants.js +0 -31
  309. package/lib/core/errors.d.ts +0 -14
  310. package/lib/core/errors.js +0 -17
  311. package/lib/core/pool/data.d.ts +0 -109
  312. package/lib/core/pool/data.js +0 -224
  313. package/lib/core/pool/index.d.ts +0 -1
  314. package/lib/core/pool/index.js +0 -17
  315. package/lib/core/rewardClaimer.d.ts +0 -20
  316. package/lib/core/rewardClaimer.js +0 -10
  317. package/lib/core/rewardConvex.d.ts +0 -27
  318. package/lib/core/rewardConvex.js +0 -104
  319. package/lib/core/rewardConvex.spec.js +0 -145
  320. package/lib/core/strategy.spec.js +0 -64
  321. package/lib/parsers/addressProviderParser.d.ts +0 -6
  322. package/lib/parsers/addressProviderParser.js +0 -27
  323. package/lib/parsers/airdropDistributorParser.d.ts +0 -6
  324. package/lib/parsers/airdropDistributorParser.js +0 -22
  325. package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.d.ts +0 -1
  326. package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.js +0 -24
  327. package/lib/parsers/convexBoosterAdapterParser.spec.d.ts +0 -1
  328. package/lib/parsers/convexBoosterAdapterParser.spec.js +0 -20
  329. package/lib/parsers/creditFacadeParser.spec.d.ts +0 -1
  330. package/lib/parsers/creditFacadeParser.spec.js +0 -26
  331. package/lib/parsers/curveAdapterParser.spec.d.ts +0 -1
  332. package/lib/parsers/curveAdapterParser.spec.js +0 -42
  333. package/lib/parsers/dataCompressorParser.d.ts +0 -6
  334. package/lib/parsers/dataCompressorParser.js +0 -23
  335. package/lib/parsers/lidoAdapterParser.spec.d.ts +0 -1
  336. package/lib/parsers/lidoAdapterParser.spec.js +0 -17
  337. package/lib/parsers/lidoOracleParser.d.ts +0 -6
  338. package/lib/parsers/lidoOracleParser.js +0 -21
  339. package/lib/parsers/multicallParser.d.ts +0 -6
  340. package/lib/parsers/multicallParser.js +0 -30
  341. package/lib/parsers/offchainOracleParser.d.ts +0 -6
  342. package/lib/parsers/offchainOracleParser.js +0 -23
  343. package/lib/parsers/poolParser.d.ts +0 -6
  344. package/lib/parsers/poolParser.js +0 -19
  345. package/lib/tokens/aave.d.ts +0 -1
  346. package/lib/tokens/aave.js +0 -17
  347. package/lib/tokens/balancer.d.ts +0 -1
  348. package/lib/tokens/balancer.js +0 -17
  349. package/lib/tokens/compound.d.ts +0 -1
  350. package/lib/tokens/compound.js +0 -17
  351. package/lib/tokens/convex.d.ts +0 -1
  352. package/lib/tokens/convex.js +0 -17
  353. package/lib/tokens/curveLP.d.ts +0 -1
  354. package/lib/tokens/curveLP.js +0 -17
  355. package/lib/tokens/decimals.d.ts +0 -1
  356. package/lib/tokens/decimals.js +0 -17
  357. package/lib/tokens/gear.d.ts +0 -1
  358. package/lib/tokens/gear.js +0 -17
  359. package/lib/tokens/index.d.ts +0 -3
  360. package/lib/tokens/index.js +0 -19
  361. package/lib/tokens/normal.d.ts +0 -1
  362. package/lib/tokens/normal.js +0 -17
  363. package/lib/tokens/quoted.d.ts +0 -1
  364. package/lib/tokens/quoted.js +0 -17
  365. package/lib/tokens/token.d.ts +0 -1
  366. package/lib/tokens/token.js +0 -17
  367. package/lib/tokens/tokenType.d.ts +0 -1
  368. package/lib/tokens/tokenType.js +0 -17
  369. package/lib/tokens/yearn.d.ts +0 -1
  370. package/lib/tokens/yearn.js +0 -17
  371. package/lib/types/@chainlink/contracts/index.d.ts +0 -2
  372. package/lib/types/@chainlink/contracts/src/index.d.ts +0 -2
  373. package/lib/types/@chainlink/contracts/src/v0.8/index.d.ts +0 -2
  374. package/lib/types/@chainlink/contracts/src/v0.8/index.js +0 -2
  375. package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface.d.ts +0 -106
  376. package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface.js +0 -2
  377. package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface.d.ts +0 -218
  378. package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface.js +0 -2
  379. package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.d.ts +0 -146
  380. package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.js +0 -2
  381. package/lib/types/@chainlink/contracts/src/v0.8/interfaces/index.d.ts +0 -3
  382. package/lib/types/@chainlink/contracts/src/v0.8/interfaces/index.js +0 -2
  383. package/lib/types/@chainlink/index.d.ts +0 -2
  384. package/lib/types/@chainlink/index.js +0 -2
  385. package/lib/types/@gearbox-protocol/core-v2/contracts/index.d.ts +0 -6
  386. package/lib/types/@gearbox-protocol/core-v2/contracts/index.js +0 -2
  387. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/BalanceOps.d.ts +0 -27
  388. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/BalanceOps.js +0 -2
  389. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/index.d.ts +0 -1
  390. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/index.js +0 -2
  391. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL.d.ts +0 -120
  392. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL.js +0 -2
  393. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents.d.ts +0 -74
  394. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents.js +0 -2
  395. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions.d.ts +0 -27
  396. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions.js +0 -2
  397. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/index.d.ts +0 -3
  398. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/index.js +0 -2
  399. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory.d.ts +0 -183
  400. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory.js +0 -2
  401. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents.d.ts +0 -89
  402. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents.js +0 -2
  403. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters.d.ts +0 -82
  404. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters.js +0 -2
  405. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/index.d.ts +0 -3
  406. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/index.js +0 -2
  407. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProvider.d.ts +0 -137
  408. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProvider.js +0 -2
  409. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProviderEvents.d.ts +0 -43
  410. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProviderEvents.js +0 -2
  411. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.d.ts +0 -2
  412. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.js +0 -2
  413. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor.d.ts +0 -119
  414. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor.js +0 -2
  415. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +0 -73
  416. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents.js +0 -2
  417. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.d.ts +0 -2
  418. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.js +0 -2
  419. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister.d.ts +0 -144
  420. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister.js +0 -2
  421. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents.d.ts +0 -50
  422. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents.js +0 -2
  423. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.d.ts +0 -2
  424. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.js +0 -2
  425. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions.d.ts +0 -27
  426. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions.js +0 -2
  427. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount.d.ts +0 -178
  428. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount.js +0 -2
  429. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.d.ts +0 -2
  430. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.js +0 -2
  431. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator.d.ts +0 -631
  432. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator.js +0 -2
  433. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents.d.ts +0 -251
  434. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents.js +0 -2
  435. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions.d.ts +0 -27
  436. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions.js +0 -2
  437. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.d.ts +0 -3
  438. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.js +0 -2
  439. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade.d.ts +0 -665
  440. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade.js +0 -2
  441. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents.d.ts +0 -244
  442. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents.js +0 -2
  443. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions.d.ts +0 -27
  444. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions.js +0 -2
  445. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended.d.ts +0 -138
  446. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended.js +0 -2
  447. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeV2.d.ts +0 -66
  448. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeV2.js +0 -2
  449. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.d.ts +0 -5
  450. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.js +0 -2
  451. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2.d.ts +0 -610
  452. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2.js +0 -2
  453. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Events.d.ts +0 -54
  454. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Events.js +0 -2
  455. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Exceptions.d.ts +0 -27
  456. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Exceptions.js +0 -2
  457. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/index.d.ts +0 -3
  458. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/index.js +0 -2
  459. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor.d.ts +0 -326
  460. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor.js +0 -2
  461. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions.d.ts +0 -27
  462. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions.js +0 -2
  463. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.d.ts +0 -2
  464. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.js +0 -2
  465. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor.d.ts +0 -99
  466. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor.js +0 -2
  467. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +0 -53
  468. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents.js +0 -2
  469. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.d.ts +0 -2
  470. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.js +0 -2
  471. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT.d.ts +0 -326
  472. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT.js +0 -2
  473. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents.d.ts +0 -61
  474. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents.js +0 -2
  475. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions.d.ts +0 -27
  476. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions.js +0 -2
  477. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.d.ts +0 -3
  478. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.js +0 -2
  479. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken.d.ts +0 -146
  480. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken.js +0 -2
  481. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions.d.ts +0 -27
  482. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions.js +0 -2
  483. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.d.ts +0 -2
  484. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.js +0 -2
  485. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel.d.ts +0 -50
  486. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel.js +0 -2
  487. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed.d.ts +0 -217
  488. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed.js +0 -2
  489. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents.d.ts +0 -43
  490. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents.js +0 -2
  491. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +0 -27
  492. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions.js +0 -2
  493. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.d.ts +0 -3
  494. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.js +0 -2
  495. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20.d.ts +0 -170
  496. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20.js +0 -2
  497. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolService.d.ts +0 -384
  498. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolService.js +0 -2
  499. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents.d.ts +0 -162
  500. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents.js +0 -2
  501. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.d.ts +0 -2
  502. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.js +0 -2
  503. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType.d.ts +0 -50
  504. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType.js +0 -2
  505. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2.d.ts +0 -157
  506. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2.js +0 -2
  507. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events.d.ts +0 -43
  508. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events.js +0 -2
  509. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions.d.ts +0 -27
  510. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions.js +0 -2
  511. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext.d.ts +0 -173
  512. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext.js +0 -2
  513. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.d.ts +0 -4
  514. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.js +0 -2
  515. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IVersion.d.ts +0 -42
  516. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IVersion.js +0 -2
  517. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway.d.ts +0 -82
  518. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway.js +0 -2
  519. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter.d.ts +0 -482
  520. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter.js +0 -2
  521. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager.d.ts +0 -523
  522. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager.js +0 -2
  523. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.d.ts +0 -2
  524. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.js +0 -2
  525. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter.d.ts +0 -66
  526. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter.js +0 -2
  527. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions.d.ts +0 -27
  528. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions.js +0 -2
  529. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.d.ts +0 -2
  530. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.js +0 -2
  531. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter.d.ts +0 -106
  532. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter.js +0 -2
  533. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions.d.ts +0 -27
  534. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions.js +0 -2
  535. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.d.ts +0 -2
  536. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.js +0 -2
  537. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.d.ts +0 -4
  538. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.js +0 -2
  539. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH.d.ts +0 -82
  540. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH.js +0 -2
  541. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/external/index.d.ts +0 -1
  542. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/external/index.js +0 -2
  543. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/index.d.ts +0 -43
  544. package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/index.js +0 -2
  545. package/lib/types/@gearbox-protocol/core-v2/contracts/pool/PoolService.d.ts +0 -570
  546. package/lib/types/@gearbox-protocol/core-v2/contracts/pool/PoolService.js +0 -2
  547. package/lib/types/@gearbox-protocol/core-v2/contracts/pool/index.d.ts +0 -1
  548. package/lib/types/@gearbox-protocol/core-v2/contracts/pool/index.js +0 -2
  549. package/lib/types/@gearbox-protocol/core-v2/contracts/test/index.d.ts +0 -2
  550. package/lib/types/@gearbox-protocol/core-v2/contracts/test/index.js +0 -2
  551. package/lib/types/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite.d.ts +0 -148
  552. package/lib/types/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite.js +0 -2
  553. package/lib/types/@gearbox-protocol/core-v2/contracts/test/interfaces/index.d.ts +0 -1
  554. package/lib/types/@gearbox-protocol/core-v2/contracts/test/interfaces/index.js +0 -2
  555. package/lib/types/@gearbox-protocol/core-v2/index.d.ts +0 -2
  556. package/lib/types/@gearbox-protocol/core-v2/index.js +0 -2
  557. package/lib/types/@gearbox-protocol/index.d.ts +0 -6
  558. package/lib/types/@gearbox-protocol/index.js +0 -2
  559. package/lib/types/@gearbox-protocol/integrations-v2/contracts/index.d.ts +0 -6
  560. package/lib/types/@gearbox-protocol/integrations-v2/contracts/index.js +0 -2
  561. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool.d.ts +0 -378
  562. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool.js +0 -2
  563. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster.d.ts +0 -195
  564. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster.js +0 -2
  565. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap.d.ts +0 -76
  566. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap.js +0 -2
  567. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken.d.ts +0 -178
  568. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken.js +0 -2
  569. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards.d.ts +0 -98
  570. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards.js +0 -2
  571. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards.d.ts +0 -186
  572. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards.js +0 -2
  573. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.d.ts +0 -2
  574. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.js +0 -2
  575. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit.d.ts +0 -58
  576. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit.js +0 -2
  577. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge.d.ts +0 -114
  578. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge.js +0 -2
  579. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow.d.ts +0 -106
  580. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow.js +0 -2
  581. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit.d.ts +0 -162
  582. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit.js +0 -2
  583. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro.d.ts +0 -58
  584. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro.js +0 -2
  585. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter.d.ts +0 -50
  586. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter.js +0 -2
  587. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools.d.ts +0 -122
  588. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools.js +0 -2
  589. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry.d.ts +0 -74
  590. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry.js +0 -2
  591. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory.d.ts +0 -122
  592. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory.js +0 -2
  593. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards.d.ts +0 -186
  594. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards.js +0 -2
  595. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker.d.ts +0 -290
  596. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker.js +0 -2
  597. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash.d.ts +0 -98
  598. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash.js +0 -2
  599. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory.d.ts +0 -50
  600. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory.js +0 -2
  601. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory.d.ts +0 -50
  602. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory.js +0 -2
  603. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter.d.ts +0 -66
  604. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter.js +0 -2
  605. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow.d.ts +0 -50
  606. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow.js +0 -2
  607. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting.d.ts +0 -107
  608. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting.js +0 -2
  609. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker.d.ts +0 -42
  610. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker.js +0 -2
  611. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.d.ts +0 -18
  612. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.js +0 -2
  613. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.d.ts +0 -8
  614. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.js +0 -2
  615. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool.d.ts +0 -306
  616. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool.js +0 -2
  617. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH.d.ts +0 -282
  618. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH.js +0 -2
  619. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets.d.ts +0 -404
  620. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets.js +0 -2
  621. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/index.d.ts +0 -1
  622. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/index.js +0 -2
  623. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets.d.ts +0 -406
  624. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets.js +0 -2
  625. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/index.d.ts +0 -1
  626. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/index.js +0 -2
  627. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets.d.ts +0 -432
  628. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets.js +0 -2
  629. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/index.d.ts +0 -1
  630. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/index.js +0 -2
  631. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry.d.ts +0 -58
  632. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry.js +0 -2
  633. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.d.ts +0 -9
  634. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.js +0 -2
  635. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/index.d.ts +0 -10
  636. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/index.js +0 -2
  637. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle.d.ts +0 -66
  638. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle.js +0 -2
  639. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH.d.ts +0 -226
  640. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH.js +0 -2
  641. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters.d.ts +0 -210
  642. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters.js +0 -2
  643. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/index.d.ts +0 -2
  644. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/index.js +0 -2
  645. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH.d.ts +0 -234
  646. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH.js +0 -2
  647. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters.d.ts +0 -202
  648. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters.js +0 -2
  649. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/index.d.ts +0 -2
  650. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/index.js +0 -2
  651. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay.d.ts +0 -66
  652. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay.js +0 -2
  653. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.d.ts +0 -1
  654. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.js +0 -2
  655. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.d.ts +0 -7
  656. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.js +0 -2
  657. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter.d.ts +0 -98
  658. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter.js +0 -2
  659. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01.d.ts +0 -386
  660. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01.js +0 -2
  661. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02.d.ts +0 -484
  662. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02.js +0 -2
  663. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter.d.ts +0 -198
  664. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter.js +0 -2
  665. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.d.ts +0 -1
  666. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.js +0 -2
  667. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.d.ts +0 -5
  668. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.js +0 -2
  669. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault.d.ts +0 -290
  670. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault.js +0 -2
  671. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.d.ts +0 -1
  672. package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.js +0 -2
  673. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter.d.ts +0 -450
  674. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter.js +0 -2
  675. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors.d.ts +0 -27
  676. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors.js +0 -2
  677. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.d.ts +0 -2
  678. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.js +0 -2
  679. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter.d.ts +0 -243
  680. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter.js +0 -2
  681. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.d.ts +0 -3
  682. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.js +0 -2
  683. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter.d.ts +0 -514
  684. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter.js +0 -2
  685. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions.d.ts +0 -27
  686. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions.js +0 -2
  687. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.d.ts +0 -2
  688. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.js +0 -2
  689. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter.d.ts +0 -612
  690. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter.js +0 -2
  691. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter.d.ts +0 -614
  692. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter.js +0 -2
  693. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter.d.ts +0 -640
  694. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter.js +0 -2
  695. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.d.ts +0 -5
  696. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.js +0 -2
  697. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/index.d.ts +0 -10
  698. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/index.js +0 -2
  699. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter.d.ts +0 -237
  700. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter.js +0 -2
  701. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents.d.ts +0 -39
  702. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents.js +0 -2
  703. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.d.ts +0 -27
  704. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.js +0 -2
  705. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.d.ts +0 -3
  706. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.js +0 -2
  707. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter.d.ts +0 -218
  708. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter.js +0 -2
  709. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.d.ts +0 -3
  710. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.js +0 -2
  711. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker.d.ts +0 -106
  712. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker.js +0 -2
  713. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +0 -532
  714. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter.js +0 -2
  715. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.d.ts +0 -27
  716. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.js +0 -2
  717. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.d.ts +0 -2
  718. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.js +0 -2
  719. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +0 -301
  720. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter.js +0 -2
  721. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.d.ts +0 -27
  722. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.js +0 -2
  723. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.d.ts +0 -2
  724. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.js +0 -2
  725. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.d.ts +0 -5
  726. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.js +0 -2
  727. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter.d.ts +0 -322
  728. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter.js +0 -2
  729. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.d.ts +0 -1
  730. package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.js +0 -2
  731. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts.d.ts +0 -66
  732. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts.js +0 -2
  733. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.d.ts +0 -1
  734. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.js +0 -2
  735. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/index.d.ts +0 -2
  736. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/index.js +0 -2
  737. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/index.d.ts +0 -4
  738. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/index.js +0 -2
  739. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.d.ts +0 -2
  740. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.js +0 -2
  741. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents.d.ts +0 -45
  742. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents.js +0 -2
  743. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.d.ts +0 -1
  744. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.js +0 -2
  745. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.d.ts +0 -2
  746. package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.js +0 -2
  747. package/lib/types/@gearbox-protocol/integrations-v2/index.d.ts +0 -2
  748. package/lib/types/@gearbox-protocol/integrations-v2/index.js +0 -2
  749. package/lib/types/@gearbox-protocol/router/contracts/index.d.ts +0 -2
  750. package/lib/types/@gearbox-protocol/router/contracts/index.js +0 -2
  751. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver.d.ts +0 -146
  752. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver.js +0 -2
  753. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor.d.ts +0 -180
  754. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor.js +0 -2
  755. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions.d.ts +0 -209
  756. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions.js +0 -2
  757. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.d.ts +0 -2
  758. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.js +0 -2
  759. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IGasPricer.d.ts +0 -44
  760. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IGasPricer.js +0 -2
  761. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker.d.ts +0 -134
  762. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker.js +0 -2
  763. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions.d.ts +0 -140
  764. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions.js +0 -2
  765. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.d.ts +0 -2
  766. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.js +0 -2
  767. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IPathResolver.d.ts +0 -152
  768. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IPathResolver.js +0 -2
  769. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouter.d.ts +0 -265
  770. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouter.js +0 -2
  771. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouterComponent.d.ts +0 -50
  772. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouterComponent.js +0 -2
  773. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator.d.ts +0 -314
  774. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator.js +0 -2
  775. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapper.d.ts +0 -136
  776. package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapper.js +0 -2
  777. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer.d.ts +0 -188
  778. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer.js +0 -2
  779. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions.d.ts +0 -204
  780. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions.js +0 -2
  781. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.d.ts +0 -2
  782. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.js +0 -2
  783. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWrapper.d.ts +0 -152
  784. package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWrapper.js +0 -2
  785. package/lib/types/@gearbox-protocol/router/contracts/interfaces/index.d.ts +0 -14
  786. package/lib/types/@gearbox-protocol/router/contracts/interfaces/index.js +0 -2
  787. package/lib/types/@gearbox-protocol/router/index.d.ts +0 -2
  788. package/lib/types/@gearbox-protocol/router/index.js +0 -2
  789. package/lib/types/@openzeppelin/contracts/index.d.ts +0 -4
  790. package/lib/types/@openzeppelin/contracts/index.js +0 -2
  791. package/lib/types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -138
  792. package/lib/types/@openzeppelin/contracts/token/ERC20/IERC20.js +0 -2
  793. package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -162
  794. package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.js +0 -2
  795. package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
  796. package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/index.js +0 -2
  797. package/lib/types/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -3
  798. package/lib/types/@openzeppelin/contracts/token/ERC20/index.js +0 -2
  799. package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -207
  800. package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721.js +0 -2
  801. package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -50
  802. package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.js +0 -2
  803. package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -231
  804. package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.js +0 -2
  805. package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
  806. package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/index.js +0 -2
  807. package/lib/types/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -4
  808. package/lib/types/@openzeppelin/contracts/token/ERC721/index.js +0 -2
  809. package/lib/types/@openzeppelin/contracts/token/index.d.ts +0 -4
  810. package/lib/types/@openzeppelin/contracts/token/index.js +0 -2
  811. package/lib/types/@openzeppelin/contracts/utils/index.d.ts +0 -2
  812. package/lib/types/@openzeppelin/contracts/utils/index.js +0 -2
  813. package/lib/types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -42
  814. package/lib/types/@openzeppelin/contracts/utils/introspection/IERC165.js +0 -2
  815. package/lib/types/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -1
  816. package/lib/types/@openzeppelin/contracts/utils/introspection/index.js +0 -2
  817. package/lib/types/@openzeppelin/index.d.ts +0 -2
  818. package/lib/types/@openzeppelin/index.js +0 -2
  819. package/lib/types/common.d.ts +0 -21
  820. package/lib/types/common.js +0 -2
  821. package/lib/types/contracts/IGas.d.ts +0 -50
  822. package/lib/types/contracts/IGas.js +0 -2
  823. package/lib/types/contracts/IGnosisSafeSignatureValidator.d.ts +0 -42
  824. package/lib/types/contracts/IGnosisSafeSignatureValidator.js +0 -2
  825. package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributor.d.ts +0 -198
  826. package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributor.js +0 -2
  827. package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributorEvents.d.ts +0 -86
  828. package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributorEvents.js +0 -2
  829. package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributorExceptions.d.ts +0 -27
  830. package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributorExceptions.js +0 -2
  831. package/lib/types/contracts/ITokenDistributor.sol/index.d.ts +0 -3
  832. package/lib/types/contracts/ITokenDistributor.sol/index.js +0 -2
  833. package/lib/types/contracts/index.d.ts +0 -6
  834. package/lib/types/contracts/index.js +0 -2
  835. package/lib/types/contracts/support/IOffchainOracle.d.ts +0 -54
  836. package/lib/types/contracts/support/IOffchainOracle.js +0 -2
  837. package/lib/types/contracts/support/MultiCall.sol/Multicall2.d.ts +0 -218
  838. package/lib/types/contracts/support/MultiCall.sol/Multicall2.js +0 -2
  839. package/lib/types/contracts/support/MultiCall.sol/index.d.ts +0 -1
  840. package/lib/types/contracts/support/MultiCall.sol/index.js +0 -2
  841. package/lib/types/contracts/support/index.d.ts +0 -3
  842. package/lib/types/contracts/support/index.js +0 -2
  843. package/lib/types/factories/@chainlink/contracts/index.d.ts +0 -1
  844. package/lib/types/factories/@chainlink/contracts/index.js +0 -30
  845. package/lib/types/factories/@chainlink/contracts/src/index.d.ts +0 -1
  846. package/lib/types/factories/@chainlink/contracts/src/index.js +0 -30
  847. package/lib/types/factories/@chainlink/contracts/src/v0.8/index.d.ts +0 -1
  848. package/lib/types/factories/@chainlink/contracts/src/v0.8/index.js +0 -30
  849. package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface__factory.d.ts +0 -35
  850. package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface__factory.js +0 -146
  851. package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface__factory.d.ts +0 -35
  852. package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface__factory.js +0 -257
  853. package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface__factory.d.ts +0 -22
  854. package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface__factory.js +0 -130
  855. package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/index.d.ts +0 -3
  856. package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/index.js +0 -12
  857. package/lib/types/factories/@chainlink/index.d.ts +0 -1
  858. package/lib/types/factories/@chainlink/index.js +0 -30
  859. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/index.d.ts +0 -3
  860. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/index.js +0 -32
  861. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/BalanceOps__factory.d.ts +0 -28
  862. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/BalanceOps__factory.js +0 -53
  863. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/index.d.ts +0 -1
  864. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/index.js +0 -8
  865. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents__factory.d.ts +0 -18
  866. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents__factory.js +0 -71
  867. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions__factory.d.ts +0 -16
  868. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions__factory.js +0 -41
  869. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL__factory.d.ts +0 -46
  870. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL__factory.js +0 -176
  871. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/index.d.ts +0 -3
  872. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/index.js +0 -12
  873. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents__factory.d.ts +0 -18
  874. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents__factory.js +0 -96
  875. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters__factory.d.ts +0 -22
  876. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters__factory.js +0 -109
  877. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory__factory.d.ts +0 -35
  878. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory__factory.js +0 -236
  879. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/index.d.ts +0 -3
  880. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/index.js +0 -12
  881. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProviderEvents__factory.d.ts +0 -18
  882. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProviderEvents__factory.js +0 -38
  883. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProvider__factory.d.ts +0 -31
  884. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProvider__factory.js +0 -181
  885. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.d.ts +0 -2
  886. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.js +0 -10
  887. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +0 -18
  888. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.js +0 -88
  889. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +0 -35
  890. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor__factory.js +0 -161
  891. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.d.ts +0 -2
  892. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.js +0 -10
  893. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents__factory.d.ts +0 -18
  894. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents__factory.js +0 -45
  895. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister__factory.d.ts +0 -35
  896. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister__factory.js +0 -186
  897. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.d.ts +0 -2
  898. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.js +0 -10
  899. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions__factory.d.ts +0 -12
  900. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions__factory.js +0 -29
  901. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount__factory.d.ts +0 -28
  902. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount__factory.js +0 -220
  903. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.d.ts +0 -2
  904. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.js +0 -10
  905. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents__factory.d.ts +0 -18
  906. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents__factory.js +0 -308
  907. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions__factory.d.ts +0 -12
  908. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions__factory.js +0 -64
  909. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator__factory.d.ts +0 -49
  910. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator__factory.js +0 -730
  911. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.d.ts +0 -3
  912. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.js +0 -12
  913. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents__factory.d.ts +0 -18
  914. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents__factory.js +0 -340
  915. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions__factory.d.ts +0 -16
  916. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions__factory.js +0 -185
  917. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended__factory.d.ts +0 -33
  918. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended__factory.js +0 -114
  919. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeV2__factory.d.ts +0 -18
  920. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeV2__factory.js +0 -42
  921. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade__factory.d.ts +0 -67
  922. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade__factory.js +0 -1163
  923. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.d.ts +0 -5
  924. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.js +0 -16
  925. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Events__factory.d.ts +0 -18
  926. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Events__factory.js +0 -51
  927. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.d.ts +0 -12
  928. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.js +0 -84
  929. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2__factory.d.ts +0 -42
  930. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2__factory.js +0 -932
  931. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/index.d.ts +0 -3
  932. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/index.js +0 -12
  933. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions__factory.d.ts +0 -12
  934. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions__factory.js +0 -29
  935. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor__factory.d.ts +0 -57
  936. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor__factory.js +0 -887
  937. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.d.ts +0 -2
  938. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.js +0 -10
  939. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +0 -18
  940. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents__factory.js +0 -57
  941. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +0 -35
  942. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor__factory.js +0 -130
  943. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.d.ts +0 -2
  944. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.js +0 -10
  945. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents__factory.d.ts +0 -18
  946. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents__factory.js +0 -58
  947. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions__factory.d.ts +0 -12
  948. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions__factory.js +0 -39
  949. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT__factory.d.ts +0 -42
  950. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT__factory.js +0 -496
  951. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.d.ts +0 -3
  952. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.js +0 -12
  953. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions__factory.d.ts +0 -12
  954. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions__factory.js +0 -24
  955. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken__factory.d.ts +0 -42
  956. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken__factory.js +0 -220
  957. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.d.ts +0 -2
  958. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.js +0 -10
  959. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel__factory.d.ts +0 -22
  960. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel__factory.js +0 -56
  961. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +0 -18
  962. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +0 -38
  963. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +0 -12
  964. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +0 -29
  965. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +0 -42
  966. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed__factory.js +0 -237
  967. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.d.ts +0 -3
  968. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.js +0 -12
  969. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20__factory.d.ts +0 -35
  970. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20__factory.js +0 -254
  971. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents__factory.d.ts +0 -18
  972. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents__factory.js +0 -215
  973. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolService__factory.d.ts +0 -35
  974. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolService__factory.js +0 -574
  975. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.d.ts +0 -2
  976. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.js +0 -10
  977. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType__factory.d.ts +0 -18
  978. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType__factory.js +0 -45
  979. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events__factory.d.ts +0 -18
  980. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events__factory.js +0 -38
  981. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.d.ts +0 -12
  982. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.js +0 -34
  983. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext__factory.d.ts +0 -42
  984. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext__factory.js +0 -267
  985. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2__factory.d.ts +0 -42
  986. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2__factory.js +0 -249
  987. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.d.ts +0 -4
  988. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.js +0 -14
  989. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IVersion__factory.d.ts +0 -18
  990. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IVersion__factory.js +0 -32
  991. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway__factory.d.ts +0 -18
  992. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway__factory.js +0 -83
  993. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter__factory.d.ts +0 -35
  994. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter__factory.js +0 -697
  995. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager__factory.d.ts +0 -56
  996. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager__factory.js +0 -766
  997. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.d.ts +0 -2
  998. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.js +0 -10
  999. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions__factory.d.ts +0 -16
  1000. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions__factory.js +0 -30
  1001. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter__factory.d.ts +0 -28
  1002. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter__factory.js +0 -82
  1003. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.d.ts +0 -2
  1004. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.js +0 -10
  1005. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions__factory.d.ts +0 -16
  1006. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions__factory.js +0 -35
  1007. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter__factory.d.ts +0 -48
  1008. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter__factory.js +0 -153
  1009. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.d.ts +0 -2
  1010. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.js +0 -10
  1011. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.d.ts +0 -2
  1012. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.js +0 -31
  1013. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH__factory.d.ts +0 -22
  1014. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH__factory.js +0 -63
  1015. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/index.d.ts +0 -1
  1016. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/index.js +0 -8
  1017. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/index.d.ts +0 -24
  1018. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/index.js +0 -58
  1019. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/PoolService__factory.d.ts +0 -65
  1020. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/PoolService__factory.js +0 -861
  1021. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/index.d.ts +0 -1
  1022. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/index.js +0 -8
  1023. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/index.d.ts +0 -1
  1024. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/index.js +0 -30
  1025. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite__factory.d.ts +0 -22
  1026. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite__factory.js +0 -178
  1027. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/index.d.ts +0 -1
  1028. package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/index.js +0 -8
  1029. package/lib/types/factories/@gearbox-protocol/core-v2/index.d.ts +0 -1
  1030. package/lib/types/factories/@gearbox-protocol/core-v2/index.js +0 -30
  1031. package/lib/types/factories/@gearbox-protocol/index.d.ts +0 -3
  1032. package/lib/types/factories/@gearbox-protocol/index.js +0 -32
  1033. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/index.d.ts +0 -3
  1034. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/index.js +0 -32
  1035. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool__factory.d.ts +0 -22
  1036. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool__factory.js +0 -534
  1037. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster__factory.d.ts +0 -41
  1038. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster__factory.js +0 -270
  1039. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap__factory.d.ts +0 -28
  1040. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap__factory.js +0 -98
  1041. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken__factory.d.ts +0 -35
  1042. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken__factory.js +0 -267
  1043. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards__factory.d.ts +0 -18
  1044. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards__factory.js +0 -86
  1045. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards__factory.d.ts +0 -22
  1046. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards__factory.js +0 -183
  1047. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.d.ts +0 -2
  1048. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.js +0 -10
  1049. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit__factory.d.ts +0 -28
  1050. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit__factory.js +0 -50
  1051. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge__factory.d.ts +0 -22
  1052. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge__factory.js +0 -116
  1053. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow__factory.d.ts +0 -28
  1054. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow__factory.js +0 -83
  1055. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit__factory.d.ts +0 -22
  1056. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit__factory.js +0 -223
  1057. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro__factory.d.ts +0 -18
  1058. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro__factory.js +0 -39
  1059. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter__factory.d.ts +0 -18
  1060. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter__factory.js +0 -32
  1061. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools__factory.d.ts +0 -22
  1062. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools__factory.js +0 -185
  1063. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry__factory.d.ts +0 -22
  1064. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry__factory.js +0 -107
  1065. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory__factory.d.ts +0 -22
  1066. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory__factory.js +0 -157
  1067. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards__factory.d.ts +0 -22
  1068. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards__factory.js +0 -183
  1069. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker__factory.d.ts +0 -22
  1070. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker__factory.js +0 -317
  1071. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory__factory.d.ts +0 -22
  1072. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory__factory.js +0 -53
  1073. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash__factory.d.ts +0 -28
  1074. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash__factory.js +0 -91
  1075. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory__factory.d.ts +0 -22
  1076. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory__factory.js +0 -38
  1077. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter__factory.d.ts +0 -18
  1078. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter__factory.js +0 -55
  1079. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow__factory.d.ts +0 -22
  1080. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow__factory.js +0 -43
  1081. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting__factory.d.ts +0 -22
  1082. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting__factory.js +0 -124
  1083. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker__factory.d.ts +0 -22
  1084. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker__factory.js +0 -38
  1085. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.d.ts +0 -18
  1086. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.js +0 -42
  1087. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.d.ts +0 -6
  1088. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.js +0 -39
  1089. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH__factory.d.ts +0 -22
  1090. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH__factory.js +0 -471
  1091. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets__factory.d.ts +0 -22
  1092. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets__factory.js +0 -710
  1093. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/index.d.ts +0 -1
  1094. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/index.js +0 -8
  1095. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets__factory.d.ts +0 -22
  1096. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets__factory.js +0 -710
  1097. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/index.d.ts +0 -1
  1098. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/index.js +0 -8
  1099. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets__factory.d.ts +0 -22
  1100. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets__factory.js +0 -710
  1101. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/index.d.ts +0 -1
  1102. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/index.js +0 -8
  1103. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool__factory.d.ts +0 -22
  1104. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool__factory.js +0 -564
  1105. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry__factory.d.ts +0 -22
  1106. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry__factory.js +0 -76
  1107. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.d.ts +0 -6
  1108. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.js +0 -38
  1109. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/index.d.ts +0 -5
  1110. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/index.js +0 -34
  1111. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle__factory.d.ts +0 -18
  1112. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle__factory.js +0 -42
  1113. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters__factory.d.ts +0 -35
  1114. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters__factory.js +0 -337
  1115. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH__factory.d.ts +0 -35
  1116. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH__factory.js +0 -356
  1117. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/index.d.ts +0 -2
  1118. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/index.js +0 -10
  1119. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters__factory.d.ts +0 -35
  1120. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters__factory.js +0 -318
  1121. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH__factory.d.ts +0 -35
  1122. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH__factory.js +0 -356
  1123. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/index.d.ts +0 -2
  1124. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/index.js +0 -10
  1125. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay__factory.d.ts +0 -28
  1126. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay__factory.js +0 -71
  1127. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.d.ts +0 -1
  1128. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.js +0 -8
  1129. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.d.ts +0 -4
  1130. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.js +0 -34
  1131. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter__factory.d.ts +0 -22
  1132. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter__factory.js +0 -145
  1133. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01__factory.d.ts +0 -22
  1134. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01__factory.js +0 -768
  1135. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02__factory.d.ts +0 -22
  1136. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02__factory.js +0 -970
  1137. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter__factory.d.ts +0 -27
  1138. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter__factory.js +0 -233
  1139. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.d.ts +0 -1
  1140. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.js +0 -8
  1141. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.d.ts +0 -4
  1142. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.js +0 -36
  1143. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault__factory.d.ts +0 -35
  1144. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault__factory.js +0 -408
  1145. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.d.ts +0 -1
  1146. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.js +0 -8
  1147. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors__factory.d.ts +0 -16
  1148. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors__factory.js +0 -30
  1149. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter__factory.d.ts +0 -32
  1150. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter__factory.js +0 -673
  1151. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.d.ts +0 -2
  1152. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.js +0 -10
  1153. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter__factory.d.ts +0 -51
  1154. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter__factory.js +0 -340
  1155. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.d.ts +0 -2
  1156. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.js +0 -32
  1157. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions__factory.d.ts +0 -12
  1158. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions__factory.js +0 -24
  1159. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter__factory.d.ts +0 -32
  1160. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter__factory.js +0 -904
  1161. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.d.ts +0 -2
  1162. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.js +0 -10
  1163. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter__factory.d.ts +0 -32
  1164. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter__factory.js +0 -1050
  1165. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter__factory.d.ts +0 -32
  1166. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter__factory.js +0 -1050
  1167. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter__factory.d.ts +0 -32
  1168. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter__factory.js +0 -1050
  1169. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.d.ts +0 -4
  1170. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.js +0 -36
  1171. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/index.d.ts +0 -5
  1172. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/index.js +0 -34
  1173. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.d.ts +0 -18
  1174. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.js +0 -32
  1175. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions__factory.d.ts +0 -12
  1176. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions__factory.js +0 -24
  1177. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter__factory.d.ts +0 -46
  1178. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter__factory.js +0 -362
  1179. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.d.ts +0 -3
  1180. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.js +0 -12
  1181. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter__factory.d.ts +0 -32
  1182. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter__factory.js +0 -318
  1183. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.d.ts +0 -2
  1184. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.js +0 -32
  1185. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker__factory.d.ts +0 -22
  1186. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker__factory.js +0 -96
  1187. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.d.ts +0 -12
  1188. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.js +0 -24
  1189. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.d.ts +0 -32
  1190. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +0 -1067
  1191. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.d.ts +0 -2
  1192. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.js +0 -10
  1193. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.d.ts +0 -12
  1194. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.js +0 -24
  1195. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +0 -37
  1196. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +0 -388
  1197. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.d.ts +0 -2
  1198. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.js +0 -10
  1199. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.d.ts +0 -3
  1200. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.js +0 -33
  1201. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter__factory.d.ts +0 -46
  1202. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter__factory.js +0 -471
  1203. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.d.ts +0 -1
  1204. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.js +0 -8
  1205. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts__factory.d.ts +0 -22
  1206. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts__factory.js +0 -89
  1207. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.d.ts +0 -1
  1208. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.js +0 -8
  1209. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/index.d.ts +0 -1
  1210. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/index.js +0 -30
  1211. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/index.d.ts +0 -2
  1212. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/index.js +0 -31
  1213. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.d.ts +0 -1
  1214. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.js +0 -30
  1215. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents__factory.d.ts +0 -18
  1216. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents__factory.js +0 -44
  1217. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.d.ts +0 -1
  1218. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.js +0 -8
  1219. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.d.ts +0 -1
  1220. package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.js +0 -30
  1221. package/lib/types/factories/@gearbox-protocol/integrations-v2/index.d.ts +0 -1
  1222. package/lib/types/factories/@gearbox-protocol/integrations-v2/index.js +0 -30
  1223. package/lib/types/factories/@gearbox-protocol/router/contracts/index.d.ts +0 -1
  1224. package/lib/types/factories/@gearbox-protocol/router/contracts/index.js +0 -30
  1225. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver__factory.d.ts +0 -67
  1226. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver__factory.js +0 -307
  1227. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions__factory.d.ts +0 -62
  1228. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions__factory.js +0 -1055
  1229. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor__factory.d.ts +0 -62
  1230. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor__factory.js +0 -785
  1231. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.d.ts +0 -2
  1232. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.js +0 -10
  1233. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IGasPricer__factory.d.ts +0 -22
  1234. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IGasPricer__factory.js +0 -38
  1235. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions__factory.d.ts +0 -62
  1236. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions__factory.js +0 -295
  1237. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker__factory.d.ts +0 -62
  1238. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker__factory.js +0 -290
  1239. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.d.ts +0 -2
  1240. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.js +0 -10
  1241. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IPathResolver__factory.d.ts +0 -67
  1242. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IPathResolver__factory.js +0 -530
  1243. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouterComponent__factory.d.ts +0 -18
  1244. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouterComponent__factory.js +0 -45
  1245. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouter__factory.d.ts +0 -65
  1246. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouter__factory.js +0 -526
  1247. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator__factory.d.ts +0 -62
  1248. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator__factory.js +0 -1750
  1249. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapper__factory.d.ts +0 -57
  1250. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapper__factory.js +0 -245
  1251. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions__factory.d.ts +0 -62
  1252. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions__factory.js +0 -1067
  1253. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer__factory.d.ts +0 -62
  1254. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer__factory.js +0 -1020
  1255. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.d.ts +0 -2
  1256. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.js +0 -10
  1257. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWrapper__factory.d.ts +0 -61
  1258. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWrapper__factory.js +0 -293
  1259. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/index.d.ts +0 -11
  1260. package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/index.js +0 -48
  1261. package/lib/types/factories/@gearbox-protocol/router/index.d.ts +0 -1
  1262. package/lib/types/factories/@gearbox-protocol/router/index.js +0 -30
  1263. package/lib/types/factories/@openzeppelin/contracts/index.d.ts +0 -2
  1264. package/lib/types/factories/@openzeppelin/contracts/index.js +0 -31
  1265. package/lib/types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -35
  1266. package/lib/types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.js +0 -202
  1267. package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -35
  1268. package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.js +0 -241
  1269. package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
  1270. package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.js +0 -8
  1271. package/lib/types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -2
  1272. package/lib/types/factories/@openzeppelin/contracts/token/ERC20/index.js +0 -32
  1273. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -22
  1274. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.js +0 -53
  1275. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -35
  1276. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.js +0 -304
  1277. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -35
  1278. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.js +0 -349
  1279. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
  1280. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.js +0 -8
  1281. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -3
  1282. package/lib/types/factories/@openzeppelin/contracts/token/ERC721/index.js +0 -34
  1283. package/lib/types/factories/@openzeppelin/contracts/token/index.d.ts +0 -2
  1284. package/lib/types/factories/@openzeppelin/contracts/token/index.js +0 -31
  1285. package/lib/types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -1
  1286. package/lib/types/factories/@openzeppelin/contracts/utils/index.js +0 -30
  1287. package/lib/types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -22
  1288. package/lib/types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.js +0 -38
  1289. package/lib/types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -1
  1290. package/lib/types/factories/@openzeppelin/contracts/utils/introspection/index.js +0 -8
  1291. package/lib/types/factories/@openzeppelin/index.d.ts +0 -1
  1292. package/lib/types/factories/@openzeppelin/index.js +0 -30
  1293. package/lib/types/factories/contracts/IGas__factory.d.ts +0 -18
  1294. package/lib/types/factories/contracts/IGas__factory.js +0 -32
  1295. package/lib/types/factories/contracts/IGnosisSafeSignatureValidator__factory.d.ts +0 -22
  1296. package/lib/types/factories/contracts/IGnosisSafeSignatureValidator__factory.js +0 -43
  1297. package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorEvents__factory.d.ts +0 -18
  1298. package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorEvents__factory.js +0 -107
  1299. package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorExceptions__factory.d.ts +0 -16
  1300. package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorExceptions__factory.js +0 -61
  1301. package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributor__factory.d.ts +0 -46
  1302. package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributor__factory.js +0 -294
  1303. package/lib/types/factories/contracts/ITokenDistributor.sol/index.d.ts +0 -3
  1304. package/lib/types/factories/contracts/ITokenDistributor.sol/index.js +0 -12
  1305. package/lib/types/factories/contracts/index.d.ts +0 -4
  1306. package/lib/types/factories/contracts/index.js +0 -35
  1307. package/lib/types/factories/contracts/support/IOffchainOracle__factory.d.ts +0 -22
  1308. package/lib/types/factories/contracts/support/IOffchainOracle__factory.js +0 -72
  1309. package/lib/types/factories/contracts/support/MultiCall.sol/Multicall2__factory.d.ts +0 -54
  1310. package/lib/types/factories/contracts/support/MultiCall.sol/Multicall2__factory.js +0 -353
  1311. package/lib/types/factories/contracts/support/MultiCall.sol/index.d.ts +0 -1
  1312. package/lib/types/factories/contracts/support/MultiCall.sol/index.js +0 -8
  1313. package/lib/types/factories/contracts/support/index.d.ts +0 -2
  1314. package/lib/types/factories/contracts/support/index.js +0 -32
  1315. package/lib/types/factories/index.d.ts +0 -4
  1316. package/lib/types/factories/index.js +0 -33
  1317. package/lib/utils/mappers.d.ts +0 -8
  1318. package/lib/utils/mappers.js +0 -13
  1319. package/lib/utils/multicall.d.ts +0 -36
  1320. package/lib/utils/multicall.js +0 -90
  1321. package/lib/utils/repeater.d.ts +0 -1
  1322. package/lib/utils/repeater.js +0 -19
  1323. package/lib/utils/safeEnum.d.ts +0 -1
  1324. package/lib/utils/safeEnum.js +0 -10
  1325. package/lib/watchers/creditAccountWatcher.d.ts +0 -36
  1326. package/lib/watchers/creditAccountWatcher.js +0 -237
  1327. package/lib/watchers/creditAccountWatcher.spec.d.ts +0 -1
  1328. package/lib/watchers/creditAccountWatcher.spec.js +0 -208
  1329. package/lib/watchers/creditManagerWatcher.d.ts +0 -8
  1330. package/lib/watchers/creditManagerWatcher.js +0 -36
  1331. package/lib/watchers/creditManagerWatcher.spec.d.ts +0 -1
  1332. package/lib/watchers/creditManagerWatcher.spec.js +0 -107
  1333. /package/lib/core/{rewardConvex.spec.d.ts → gaugeMath.spec.d.ts} +0 -0
  1334. /package/lib/core/{strategy.spec.d.ts → rewardClaimer/rewardConvex.spec.d.ts} +0 -0
  1335. /package/lib/{types/@chainlink/contracts/index.js → payload/bot.js} +0 -0
  1336. /package/lib/{types/@chainlink/contracts/src/index.js → payload/gauge.js} +0 -0
@@ -1,1750 +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.ISwapAggregator__factory = void 0;
7
- const ethers_1 = require("ethers");
8
- const _abi = [
9
- {
10
- inputs: [
11
- {
12
- internalType: "address",
13
- name: "tokenIn",
14
- type: "address",
15
- },
16
- {
17
- internalType: "uint256",
18
- name: "amountIn",
19
- type: "uint256",
20
- },
21
- {
22
- internalType: "bool",
23
- name: "isAll",
24
- type: "bool",
25
- },
26
- {
27
- components: [
28
- {
29
- internalType: "address",
30
- name: "creditAccount",
31
- type: "address",
32
- },
33
- {
34
- components: [
35
- {
36
- internalType: "address",
37
- name: "token",
38
- type: "address",
39
- },
40
- {
41
- internalType: "uint256",
42
- name: "balance",
43
- type: "uint256",
44
- },
45
- ],
46
- internalType: "struct Balance[]",
47
- name: "balances",
48
- type: "tuple[]",
49
- },
50
- {
51
- internalType: "address",
52
- name: "target",
53
- type: "address",
54
- },
55
- {
56
- internalType: "address[]",
57
- name: "connectors",
58
- type: "address[]",
59
- },
60
- {
61
- internalType: "address[]",
62
- name: "adapters",
63
- type: "address[]",
64
- },
65
- {
66
- internalType: "uint256",
67
- name: "slippagePerStep",
68
- type: "uint256",
69
- },
70
- {
71
- internalType: "bool",
72
- name: "force",
73
- type: "bool",
74
- },
75
- {
76
- internalType: "enum TokenType",
77
- name: "targetType",
78
- type: "uint8",
79
- },
80
- {
81
- components: [
82
- {
83
- internalType: "address",
84
- name: "token",
85
- type: "address",
86
- },
87
- {
88
- internalType: "address",
89
- name: "depositAdapter",
90
- type: "address",
91
- },
92
- {
93
- internalType: "address",
94
- name: "withdrawAdapter",
95
- type: "address",
96
- },
97
- ],
98
- internalType: "struct TokenAdapters[]",
99
- name: "foundAdapters",
100
- type: "tuple[]",
101
- },
102
- {
103
- internalType: "uint256",
104
- name: "gasPriceTargetRAY",
105
- type: "uint256",
106
- },
107
- {
108
- internalType: "uint256",
109
- name: "gasUsage",
110
- type: "uint256",
111
- },
112
- {
113
- internalType: "uint256",
114
- name: "initTargetBalance",
115
- type: "uint256",
116
- },
117
- {
118
- components: [
119
- {
120
- internalType: "address",
121
- name: "target",
122
- type: "address",
123
- },
124
- {
125
- internalType: "bytes",
126
- name: "callData",
127
- type: "bytes",
128
- },
129
- ],
130
- internalType: "struct MultiCall[]",
131
- name: "calls",
132
- type: "tuple[]",
133
- },
134
- ],
135
- internalType: "struct StrategyPathTask",
136
- name: "task",
137
- type: "tuple",
138
- },
139
- ],
140
- name: "findAllSwaps",
141
- outputs: [
142
- {
143
- components: [
144
- {
145
- internalType: "address",
146
- name: "creditAccount",
147
- type: "address",
148
- },
149
- {
150
- components: [
151
- {
152
- internalType: "address",
153
- name: "token",
154
- type: "address",
155
- },
156
- {
157
- internalType: "uint256",
158
- name: "balance",
159
- type: "uint256",
160
- },
161
- ],
162
- internalType: "struct Balance[]",
163
- name: "balances",
164
- type: "tuple[]",
165
- },
166
- {
167
- internalType: "address",
168
- name: "target",
169
- type: "address",
170
- },
171
- {
172
- internalType: "address[]",
173
- name: "connectors",
174
- type: "address[]",
175
- },
176
- {
177
- internalType: "address[]",
178
- name: "adapters",
179
- type: "address[]",
180
- },
181
- {
182
- internalType: "uint256",
183
- name: "slippagePerStep",
184
- type: "uint256",
185
- },
186
- {
187
- internalType: "bool",
188
- name: "force",
189
- type: "bool",
190
- },
191
- {
192
- internalType: "enum TokenType",
193
- name: "targetType",
194
- type: "uint8",
195
- },
196
- {
197
- components: [
198
- {
199
- internalType: "address",
200
- name: "token",
201
- type: "address",
202
- },
203
- {
204
- internalType: "address",
205
- name: "depositAdapter",
206
- type: "address",
207
- },
208
- {
209
- internalType: "address",
210
- name: "withdrawAdapter",
211
- type: "address",
212
- },
213
- ],
214
- internalType: "struct TokenAdapters[]",
215
- name: "foundAdapters",
216
- type: "tuple[]",
217
- },
218
- {
219
- internalType: "uint256",
220
- name: "gasPriceTargetRAY",
221
- type: "uint256",
222
- },
223
- {
224
- internalType: "uint256",
225
- name: "gasUsage",
226
- type: "uint256",
227
- },
228
- {
229
- internalType: "uint256",
230
- name: "initTargetBalance",
231
- type: "uint256",
232
- },
233
- {
234
- components: [
235
- {
236
- internalType: "address",
237
- name: "target",
238
- type: "address",
239
- },
240
- {
241
- internalType: "bytes",
242
- name: "callData",
243
- type: "bytes",
244
- },
245
- ],
246
- internalType: "struct MultiCall[]",
247
- name: "calls",
248
- type: "tuple[]",
249
- },
250
- ],
251
- internalType: "struct StrategyPathTask[]",
252
- name: "",
253
- type: "tuple[]",
254
- },
255
- ],
256
- stateMutability: "nonpayable",
257
- type: "function",
258
- },
259
- {
260
- inputs: [
261
- {
262
- internalType: "address",
263
- name: "tokenIn",
264
- type: "address",
265
- },
266
- {
267
- internalType: "address",
268
- name: "tokenOut",
269
- type: "address",
270
- },
271
- {
272
- components: [
273
- {
274
- internalType: "address",
275
- name: "creditAccount",
276
- type: "address",
277
- },
278
- {
279
- components: [
280
- {
281
- internalType: "address",
282
- name: "token",
283
- type: "address",
284
- },
285
- {
286
- internalType: "uint256",
287
- name: "balance",
288
- type: "uint256",
289
- },
290
- ],
291
- internalType: "struct Balance[]",
292
- name: "balances",
293
- type: "tuple[]",
294
- },
295
- {
296
- internalType: "address",
297
- name: "target",
298
- type: "address",
299
- },
300
- {
301
- internalType: "address[]",
302
- name: "connectors",
303
- type: "address[]",
304
- },
305
- {
306
- internalType: "address[]",
307
- name: "adapters",
308
- type: "address[]",
309
- },
310
- {
311
- internalType: "uint256",
312
- name: "slippagePerStep",
313
- type: "uint256",
314
- },
315
- {
316
- internalType: "bool",
317
- name: "force",
318
- type: "bool",
319
- },
320
- {
321
- internalType: "enum TokenType",
322
- name: "targetType",
323
- type: "uint8",
324
- },
325
- {
326
- components: [
327
- {
328
- internalType: "address",
329
- name: "token",
330
- type: "address",
331
- },
332
- {
333
- internalType: "address",
334
- name: "depositAdapter",
335
- type: "address",
336
- },
337
- {
338
- internalType: "address",
339
- name: "withdrawAdapter",
340
- type: "address",
341
- },
342
- ],
343
- internalType: "struct TokenAdapters[]",
344
- name: "foundAdapters",
345
- type: "tuple[]",
346
- },
347
- {
348
- internalType: "uint256",
349
- name: "gasPriceTargetRAY",
350
- type: "uint256",
351
- },
352
- {
353
- internalType: "uint256",
354
- name: "gasUsage",
355
- type: "uint256",
356
- },
357
- {
358
- internalType: "uint256",
359
- name: "initTargetBalance",
360
- type: "uint256",
361
- },
362
- {
363
- components: [
364
- {
365
- internalType: "address",
366
- name: "target",
367
- type: "address",
368
- },
369
- {
370
- internalType: "bytes",
371
- name: "callData",
372
- type: "bytes",
373
- },
374
- ],
375
- internalType: "struct MultiCall[]",
376
- name: "calls",
377
- type: "tuple[]",
378
- },
379
- ],
380
- internalType: "struct StrategyPathTask",
381
- name: "task",
382
- type: "tuple",
383
- },
384
- ],
385
- name: "findBestAllInputSwap",
386
- outputs: [
387
- {
388
- internalType: "uint256",
389
- name: "amountOut",
390
- type: "uint256",
391
- },
392
- {
393
- components: [
394
- {
395
- internalType: "address",
396
- name: "creditAccount",
397
- type: "address",
398
- },
399
- {
400
- components: [
401
- {
402
- internalType: "address",
403
- name: "token",
404
- type: "address",
405
- },
406
- {
407
- internalType: "uint256",
408
- name: "balance",
409
- type: "uint256",
410
- },
411
- ],
412
- internalType: "struct Balance[]",
413
- name: "balances",
414
- type: "tuple[]",
415
- },
416
- {
417
- internalType: "address",
418
- name: "target",
419
- type: "address",
420
- },
421
- {
422
- internalType: "address[]",
423
- name: "connectors",
424
- type: "address[]",
425
- },
426
- {
427
- internalType: "address[]",
428
- name: "adapters",
429
- type: "address[]",
430
- },
431
- {
432
- internalType: "uint256",
433
- name: "slippagePerStep",
434
- type: "uint256",
435
- },
436
- {
437
- internalType: "bool",
438
- name: "force",
439
- type: "bool",
440
- },
441
- {
442
- internalType: "enum TokenType",
443
- name: "targetType",
444
- type: "uint8",
445
- },
446
- {
447
- components: [
448
- {
449
- internalType: "address",
450
- name: "token",
451
- type: "address",
452
- },
453
- {
454
- internalType: "address",
455
- name: "depositAdapter",
456
- type: "address",
457
- },
458
- {
459
- internalType: "address",
460
- name: "withdrawAdapter",
461
- type: "address",
462
- },
463
- ],
464
- internalType: "struct TokenAdapters[]",
465
- name: "foundAdapters",
466
- type: "tuple[]",
467
- },
468
- {
469
- internalType: "uint256",
470
- name: "gasPriceTargetRAY",
471
- type: "uint256",
472
- },
473
- {
474
- internalType: "uint256",
475
- name: "gasUsage",
476
- type: "uint256",
477
- },
478
- {
479
- internalType: "uint256",
480
- name: "initTargetBalance",
481
- type: "uint256",
482
- },
483
- {
484
- components: [
485
- {
486
- internalType: "address",
487
- name: "target",
488
- type: "address",
489
- },
490
- {
491
- internalType: "bytes",
492
- name: "callData",
493
- type: "bytes",
494
- },
495
- ],
496
- internalType: "struct MultiCall[]",
497
- name: "calls",
498
- type: "tuple[]",
499
- },
500
- ],
501
- internalType: "struct StrategyPathTask",
502
- name: "",
503
- type: "tuple",
504
- },
505
- ],
506
- stateMutability: "nonpayable",
507
- type: "function",
508
- },
509
- {
510
- inputs: [
511
- {
512
- internalType: "address",
513
- name: "tokenIn",
514
- type: "address",
515
- },
516
- {
517
- internalType: "address",
518
- name: "tokenOut",
519
- type: "address",
520
- },
521
- {
522
- components: [
523
- {
524
- internalType: "address",
525
- name: "creditAccount",
526
- type: "address",
527
- },
528
- {
529
- components: [
530
- {
531
- internalType: "address",
532
- name: "token",
533
- type: "address",
534
- },
535
- {
536
- internalType: "uint256",
537
- name: "balance",
538
- type: "uint256",
539
- },
540
- ],
541
- internalType: "struct Balance[]",
542
- name: "balances",
543
- type: "tuple[]",
544
- },
545
- {
546
- internalType: "address",
547
- name: "target",
548
- type: "address",
549
- },
550
- {
551
- internalType: "address[]",
552
- name: "connectors",
553
- type: "address[]",
554
- },
555
- {
556
- internalType: "address[]",
557
- name: "adapters",
558
- type: "address[]",
559
- },
560
- {
561
- internalType: "uint256",
562
- name: "slippagePerStep",
563
- type: "uint256",
564
- },
565
- {
566
- internalType: "bool",
567
- name: "force",
568
- type: "bool",
569
- },
570
- {
571
- internalType: "enum TokenType",
572
- name: "targetType",
573
- type: "uint8",
574
- },
575
- {
576
- components: [
577
- {
578
- internalType: "address",
579
- name: "token",
580
- type: "address",
581
- },
582
- {
583
- internalType: "address",
584
- name: "depositAdapter",
585
- type: "address",
586
- },
587
- {
588
- internalType: "address",
589
- name: "withdrawAdapter",
590
- type: "address",
591
- },
592
- ],
593
- internalType: "struct TokenAdapters[]",
594
- name: "foundAdapters",
595
- type: "tuple[]",
596
- },
597
- {
598
- internalType: "uint256",
599
- name: "gasPriceTargetRAY",
600
- type: "uint256",
601
- },
602
- {
603
- internalType: "uint256",
604
- name: "gasUsage",
605
- type: "uint256",
606
- },
607
- {
608
- internalType: "uint256",
609
- name: "initTargetBalance",
610
- type: "uint256",
611
- },
612
- {
613
- components: [
614
- {
615
- internalType: "address",
616
- name: "target",
617
- type: "address",
618
- },
619
- {
620
- internalType: "bytes",
621
- name: "callData",
622
- type: "bytes",
623
- },
624
- ],
625
- internalType: "struct MultiCall[]",
626
- name: "calls",
627
- type: "tuple[]",
628
- },
629
- ],
630
- internalType: "struct StrategyPathTask",
631
- name: "task",
632
- type: "tuple",
633
- },
634
- ],
635
- name: "findBestAllInputSwapOrRevert",
636
- outputs: [
637
- {
638
- internalType: "uint256",
639
- name: "amountOut",
640
- type: "uint256",
641
- },
642
- {
643
- components: [
644
- {
645
- internalType: "address",
646
- name: "creditAccount",
647
- type: "address",
648
- },
649
- {
650
- components: [
651
- {
652
- internalType: "address",
653
- name: "token",
654
- type: "address",
655
- },
656
- {
657
- internalType: "uint256",
658
- name: "balance",
659
- type: "uint256",
660
- },
661
- ],
662
- internalType: "struct Balance[]",
663
- name: "balances",
664
- type: "tuple[]",
665
- },
666
- {
667
- internalType: "address",
668
- name: "target",
669
- type: "address",
670
- },
671
- {
672
- internalType: "address[]",
673
- name: "connectors",
674
- type: "address[]",
675
- },
676
- {
677
- internalType: "address[]",
678
- name: "adapters",
679
- type: "address[]",
680
- },
681
- {
682
- internalType: "uint256",
683
- name: "slippagePerStep",
684
- type: "uint256",
685
- },
686
- {
687
- internalType: "bool",
688
- name: "force",
689
- type: "bool",
690
- },
691
- {
692
- internalType: "enum TokenType",
693
- name: "targetType",
694
- type: "uint8",
695
- },
696
- {
697
- components: [
698
- {
699
- internalType: "address",
700
- name: "token",
701
- type: "address",
702
- },
703
- {
704
- internalType: "address",
705
- name: "depositAdapter",
706
- type: "address",
707
- },
708
- {
709
- internalType: "address",
710
- name: "withdrawAdapter",
711
- type: "address",
712
- },
713
- ],
714
- internalType: "struct TokenAdapters[]",
715
- name: "foundAdapters",
716
- type: "tuple[]",
717
- },
718
- {
719
- internalType: "uint256",
720
- name: "gasPriceTargetRAY",
721
- type: "uint256",
722
- },
723
- {
724
- internalType: "uint256",
725
- name: "gasUsage",
726
- type: "uint256",
727
- },
728
- {
729
- internalType: "uint256",
730
- name: "initTargetBalance",
731
- type: "uint256",
732
- },
733
- {
734
- components: [
735
- {
736
- internalType: "address",
737
- name: "target",
738
- type: "address",
739
- },
740
- {
741
- internalType: "bytes",
742
- name: "callData",
743
- type: "bytes",
744
- },
745
- ],
746
- internalType: "struct MultiCall[]",
747
- name: "calls",
748
- type: "tuple[]",
749
- },
750
- ],
751
- internalType: "struct StrategyPathTask",
752
- name: "",
753
- type: "tuple",
754
- },
755
- ],
756
- stateMutability: "nonpayable",
757
- type: "function",
758
- },
759
- {
760
- inputs: [
761
- {
762
- internalType: "address",
763
- name: "tokenIn",
764
- type: "address",
765
- },
766
- {
767
- internalType: "uint256",
768
- name: "amountIn",
769
- type: "uint256",
770
- },
771
- {
772
- internalType: "address",
773
- name: "tokenOut",
774
- type: "address",
775
- },
776
- {
777
- components: [
778
- {
779
- internalType: "address",
780
- name: "creditAccount",
781
- type: "address",
782
- },
783
- {
784
- components: [
785
- {
786
- internalType: "address",
787
- name: "token",
788
- type: "address",
789
- },
790
- {
791
- internalType: "uint256",
792
- name: "balance",
793
- type: "uint256",
794
- },
795
- ],
796
- internalType: "struct Balance[]",
797
- name: "balances",
798
- type: "tuple[]",
799
- },
800
- {
801
- internalType: "address",
802
- name: "target",
803
- type: "address",
804
- },
805
- {
806
- internalType: "address[]",
807
- name: "connectors",
808
- type: "address[]",
809
- },
810
- {
811
- internalType: "address[]",
812
- name: "adapters",
813
- type: "address[]",
814
- },
815
- {
816
- internalType: "uint256",
817
- name: "slippagePerStep",
818
- type: "uint256",
819
- },
820
- {
821
- internalType: "bool",
822
- name: "force",
823
- type: "bool",
824
- },
825
- {
826
- internalType: "enum TokenType",
827
- name: "targetType",
828
- type: "uint8",
829
- },
830
- {
831
- components: [
832
- {
833
- internalType: "address",
834
- name: "token",
835
- type: "address",
836
- },
837
- {
838
- internalType: "address",
839
- name: "depositAdapter",
840
- type: "address",
841
- },
842
- {
843
- internalType: "address",
844
- name: "withdrawAdapter",
845
- type: "address",
846
- },
847
- ],
848
- internalType: "struct TokenAdapters[]",
849
- name: "foundAdapters",
850
- type: "tuple[]",
851
- },
852
- {
853
- internalType: "uint256",
854
- name: "gasPriceTargetRAY",
855
- type: "uint256",
856
- },
857
- {
858
- internalType: "uint256",
859
- name: "gasUsage",
860
- type: "uint256",
861
- },
862
- {
863
- internalType: "uint256",
864
- name: "initTargetBalance",
865
- type: "uint256",
866
- },
867
- {
868
- components: [
869
- {
870
- internalType: "address",
871
- name: "target",
872
- type: "address",
873
- },
874
- {
875
- internalType: "bytes",
876
- name: "callData",
877
- type: "bytes",
878
- },
879
- ],
880
- internalType: "struct MultiCall[]",
881
- name: "calls",
882
- type: "tuple[]",
883
- },
884
- ],
885
- internalType: "struct StrategyPathTask",
886
- name: "task",
887
- type: "tuple",
888
- },
889
- ],
890
- name: "findBestSwap",
891
- outputs: [
892
- {
893
- internalType: "uint256",
894
- name: "amountOut",
895
- type: "uint256",
896
- },
897
- {
898
- components: [
899
- {
900
- internalType: "address",
901
- name: "creditAccount",
902
- type: "address",
903
- },
904
- {
905
- components: [
906
- {
907
- internalType: "address",
908
- name: "token",
909
- type: "address",
910
- },
911
- {
912
- internalType: "uint256",
913
- name: "balance",
914
- type: "uint256",
915
- },
916
- ],
917
- internalType: "struct Balance[]",
918
- name: "balances",
919
- type: "tuple[]",
920
- },
921
- {
922
- internalType: "address",
923
- name: "target",
924
- type: "address",
925
- },
926
- {
927
- internalType: "address[]",
928
- name: "connectors",
929
- type: "address[]",
930
- },
931
- {
932
- internalType: "address[]",
933
- name: "adapters",
934
- type: "address[]",
935
- },
936
- {
937
- internalType: "uint256",
938
- name: "slippagePerStep",
939
- type: "uint256",
940
- },
941
- {
942
- internalType: "bool",
943
- name: "force",
944
- type: "bool",
945
- },
946
- {
947
- internalType: "enum TokenType",
948
- name: "targetType",
949
- type: "uint8",
950
- },
951
- {
952
- components: [
953
- {
954
- internalType: "address",
955
- name: "token",
956
- type: "address",
957
- },
958
- {
959
- internalType: "address",
960
- name: "depositAdapter",
961
- type: "address",
962
- },
963
- {
964
- internalType: "address",
965
- name: "withdrawAdapter",
966
- type: "address",
967
- },
968
- ],
969
- internalType: "struct TokenAdapters[]",
970
- name: "foundAdapters",
971
- type: "tuple[]",
972
- },
973
- {
974
- internalType: "uint256",
975
- name: "gasPriceTargetRAY",
976
- type: "uint256",
977
- },
978
- {
979
- internalType: "uint256",
980
- name: "gasUsage",
981
- type: "uint256",
982
- },
983
- {
984
- internalType: "uint256",
985
- name: "initTargetBalance",
986
- type: "uint256",
987
- },
988
- {
989
- components: [
990
- {
991
- internalType: "address",
992
- name: "target",
993
- type: "address",
994
- },
995
- {
996
- internalType: "bytes",
997
- name: "callData",
998
- type: "bytes",
999
- },
1000
- ],
1001
- internalType: "struct MultiCall[]",
1002
- name: "calls",
1003
- type: "tuple[]",
1004
- },
1005
- ],
1006
- internalType: "struct StrategyPathTask",
1007
- name: "",
1008
- type: "tuple",
1009
- },
1010
- ],
1011
- stateMutability: "nonpayable",
1012
- type: "function",
1013
- },
1014
- {
1015
- inputs: [
1016
- {
1017
- internalType: "address",
1018
- name: "tokenIn",
1019
- type: "address",
1020
- },
1021
- {
1022
- internalType: "uint256",
1023
- name: "amountIn",
1024
- type: "uint256",
1025
- },
1026
- {
1027
- internalType: "address",
1028
- name: "tokenOut",
1029
- type: "address",
1030
- },
1031
- {
1032
- components: [
1033
- {
1034
- internalType: "address",
1035
- name: "creditAccount",
1036
- type: "address",
1037
- },
1038
- {
1039
- components: [
1040
- {
1041
- internalType: "address",
1042
- name: "token",
1043
- type: "address",
1044
- },
1045
- {
1046
- internalType: "uint256",
1047
- name: "balance",
1048
- type: "uint256",
1049
- },
1050
- ],
1051
- internalType: "struct Balance[]",
1052
- name: "balances",
1053
- type: "tuple[]",
1054
- },
1055
- {
1056
- internalType: "address",
1057
- name: "target",
1058
- type: "address",
1059
- },
1060
- {
1061
- internalType: "address[]",
1062
- name: "connectors",
1063
- type: "address[]",
1064
- },
1065
- {
1066
- internalType: "address[]",
1067
- name: "adapters",
1068
- type: "address[]",
1069
- },
1070
- {
1071
- internalType: "uint256",
1072
- name: "slippagePerStep",
1073
- type: "uint256",
1074
- },
1075
- {
1076
- internalType: "bool",
1077
- name: "force",
1078
- type: "bool",
1079
- },
1080
- {
1081
- internalType: "enum TokenType",
1082
- name: "targetType",
1083
- type: "uint8",
1084
- },
1085
- {
1086
- components: [
1087
- {
1088
- internalType: "address",
1089
- name: "token",
1090
- type: "address",
1091
- },
1092
- {
1093
- internalType: "address",
1094
- name: "depositAdapter",
1095
- type: "address",
1096
- },
1097
- {
1098
- internalType: "address",
1099
- name: "withdrawAdapter",
1100
- type: "address",
1101
- },
1102
- ],
1103
- internalType: "struct TokenAdapters[]",
1104
- name: "foundAdapters",
1105
- type: "tuple[]",
1106
- },
1107
- {
1108
- internalType: "uint256",
1109
- name: "gasPriceTargetRAY",
1110
- type: "uint256",
1111
- },
1112
- {
1113
- internalType: "uint256",
1114
- name: "gasUsage",
1115
- type: "uint256",
1116
- },
1117
- {
1118
- internalType: "uint256",
1119
- name: "initTargetBalance",
1120
- type: "uint256",
1121
- },
1122
- {
1123
- components: [
1124
- {
1125
- internalType: "address",
1126
- name: "target",
1127
- type: "address",
1128
- },
1129
- {
1130
- internalType: "bytes",
1131
- name: "callData",
1132
- type: "bytes",
1133
- },
1134
- ],
1135
- internalType: "struct MultiCall[]",
1136
- name: "calls",
1137
- type: "tuple[]",
1138
- },
1139
- ],
1140
- internalType: "struct StrategyPathTask",
1141
- name: "task",
1142
- type: "tuple",
1143
- },
1144
- ],
1145
- name: "findBestSwapOrRevert",
1146
- outputs: [
1147
- {
1148
- internalType: "uint256",
1149
- name: "amountOut",
1150
- type: "uint256",
1151
- },
1152
- {
1153
- components: [
1154
- {
1155
- internalType: "address",
1156
- name: "creditAccount",
1157
- type: "address",
1158
- },
1159
- {
1160
- components: [
1161
- {
1162
- internalType: "address",
1163
- name: "token",
1164
- type: "address",
1165
- },
1166
- {
1167
- internalType: "uint256",
1168
- name: "balance",
1169
- type: "uint256",
1170
- },
1171
- ],
1172
- internalType: "struct Balance[]",
1173
- name: "balances",
1174
- type: "tuple[]",
1175
- },
1176
- {
1177
- internalType: "address",
1178
- name: "target",
1179
- type: "address",
1180
- },
1181
- {
1182
- internalType: "address[]",
1183
- name: "connectors",
1184
- type: "address[]",
1185
- },
1186
- {
1187
- internalType: "address[]",
1188
- name: "adapters",
1189
- type: "address[]",
1190
- },
1191
- {
1192
- internalType: "uint256",
1193
- name: "slippagePerStep",
1194
- type: "uint256",
1195
- },
1196
- {
1197
- internalType: "bool",
1198
- name: "force",
1199
- type: "bool",
1200
- },
1201
- {
1202
- internalType: "enum TokenType",
1203
- name: "targetType",
1204
- type: "uint8",
1205
- },
1206
- {
1207
- components: [
1208
- {
1209
- internalType: "address",
1210
- name: "token",
1211
- type: "address",
1212
- },
1213
- {
1214
- internalType: "address",
1215
- name: "depositAdapter",
1216
- type: "address",
1217
- },
1218
- {
1219
- internalType: "address",
1220
- name: "withdrawAdapter",
1221
- type: "address",
1222
- },
1223
- ],
1224
- internalType: "struct TokenAdapters[]",
1225
- name: "foundAdapters",
1226
- type: "tuple[]",
1227
- },
1228
- {
1229
- internalType: "uint256",
1230
- name: "gasPriceTargetRAY",
1231
- type: "uint256",
1232
- },
1233
- {
1234
- internalType: "uint256",
1235
- name: "gasUsage",
1236
- type: "uint256",
1237
- },
1238
- {
1239
- internalType: "uint256",
1240
- name: "initTargetBalance",
1241
- type: "uint256",
1242
- },
1243
- {
1244
- components: [
1245
- {
1246
- internalType: "address",
1247
- name: "target",
1248
- type: "address",
1249
- },
1250
- {
1251
- internalType: "bytes",
1252
- name: "callData",
1253
- type: "bytes",
1254
- },
1255
- ],
1256
- internalType: "struct MultiCall[]",
1257
- name: "calls",
1258
- type: "tuple[]",
1259
- },
1260
- ],
1261
- internalType: "struct StrategyPathTask",
1262
- name: "",
1263
- type: "tuple",
1264
- },
1265
- ],
1266
- stateMutability: "nonpayable",
1267
- type: "function",
1268
- },
1269
- {
1270
- inputs: [
1271
- {
1272
- components: [
1273
- {
1274
- internalType: "enum SwapOperation",
1275
- name: "swapOperation",
1276
- type: "uint8",
1277
- },
1278
- {
1279
- internalType: "address",
1280
- name: "creditAccount",
1281
- type: "address",
1282
- },
1283
- {
1284
- internalType: "address",
1285
- name: "tokenIn",
1286
- type: "address",
1287
- },
1288
- {
1289
- internalType: "address",
1290
- name: "tokenOut",
1291
- type: "address",
1292
- },
1293
- {
1294
- internalType: "address[]",
1295
- name: "connectors",
1296
- type: "address[]",
1297
- },
1298
- {
1299
- internalType: "uint256",
1300
- name: "amount",
1301
- type: "uint256",
1302
- },
1303
- {
1304
- internalType: "uint256",
1305
- name: "slippage",
1306
- type: "uint256",
1307
- },
1308
- {
1309
- internalType: "bool",
1310
- name: "externalSlippage",
1311
- type: "bool",
1312
- },
1313
- ],
1314
- internalType: "struct SwapTask",
1315
- name: "swapTask",
1316
- type: "tuple",
1317
- },
1318
- {
1319
- internalType: "address[]",
1320
- name: "adapters",
1321
- type: "address[]",
1322
- },
1323
- ],
1324
- name: "findBestSwapQuote",
1325
- outputs: [
1326
- {
1327
- components: [
1328
- {
1329
- components: [
1330
- {
1331
- internalType: "address",
1332
- name: "target",
1333
- type: "address",
1334
- },
1335
- {
1336
- internalType: "bytes",
1337
- name: "callData",
1338
- type: "bytes",
1339
- },
1340
- ],
1341
- internalType: "struct MultiCall",
1342
- name: "multiCall",
1343
- type: "tuple",
1344
- },
1345
- {
1346
- internalType: "uint256",
1347
- name: "amount",
1348
- type: "uint256",
1349
- },
1350
- {
1351
- internalType: "bool",
1352
- name: "found",
1353
- type: "bool",
1354
- },
1355
- {
1356
- internalType: "uint256",
1357
- name: "gasUsage",
1358
- type: "uint256",
1359
- },
1360
- ],
1361
- internalType: "struct SwapQuote",
1362
- name: "bestQuote",
1363
- type: "tuple",
1364
- },
1365
- ],
1366
- stateMutability: "nonpayable",
1367
- type: "function",
1368
- },
1369
- {
1370
- inputs: [
1371
- {
1372
- components: [
1373
- {
1374
- internalType: "enum SwapOperation",
1375
- name: "swapOperation",
1376
- type: "uint8",
1377
- },
1378
- {
1379
- internalType: "address",
1380
- name: "creditAccount",
1381
- type: "address",
1382
- },
1383
- {
1384
- internalType: "address",
1385
- name: "tokenIn",
1386
- type: "address",
1387
- },
1388
- {
1389
- internalType: "address",
1390
- name: "tokenOut",
1391
- type: "address",
1392
- },
1393
- {
1394
- internalType: "address[]",
1395
- name: "connectors",
1396
- type: "address[]",
1397
- },
1398
- {
1399
- internalType: "uint256",
1400
- name: "amount",
1401
- type: "uint256",
1402
- },
1403
- {
1404
- internalType: "uint256",
1405
- name: "slippage",
1406
- type: "uint256",
1407
- },
1408
- {
1409
- internalType: "bool",
1410
- name: "externalSlippage",
1411
- type: "bool",
1412
- },
1413
- ],
1414
- internalType: "struct SwapTask",
1415
- name: "swapTask",
1416
- type: "tuple",
1417
- },
1418
- {
1419
- internalType: "address[]",
1420
- name: "adapters",
1421
- type: "address[]",
1422
- },
1423
- {
1424
- internalType: "uint256",
1425
- name: "gasPriceInTokenOut",
1426
- type: "uint256",
1427
- },
1428
- ],
1429
- name: "getBestDirectPairSwap",
1430
- outputs: [
1431
- {
1432
- components: [
1433
- {
1434
- components: [
1435
- {
1436
- internalType: "address",
1437
- name: "target",
1438
- type: "address",
1439
- },
1440
- {
1441
- internalType: "bytes",
1442
- name: "callData",
1443
- type: "bytes",
1444
- },
1445
- ],
1446
- internalType: "struct MultiCall",
1447
- name: "multiCall",
1448
- type: "tuple",
1449
- },
1450
- {
1451
- internalType: "uint256",
1452
- name: "amount",
1453
- type: "uint256",
1454
- },
1455
- {
1456
- internalType: "bool",
1457
- name: "found",
1458
- type: "bool",
1459
- },
1460
- {
1461
- internalType: "uint256",
1462
- name: "gasUsage",
1463
- type: "uint256",
1464
- },
1465
- ],
1466
- internalType: "struct SwapQuote",
1467
- name: "quote",
1468
- type: "tuple",
1469
- },
1470
- ],
1471
- stateMutability: "nonpayable",
1472
- type: "function",
1473
- },
1474
- {
1475
- inputs: [],
1476
- name: "getComponentId",
1477
- outputs: [
1478
- {
1479
- internalType: "enum RouterComponent",
1480
- name: "",
1481
- type: "uint8",
1482
- },
1483
- ],
1484
- stateMutability: "view",
1485
- type: "function",
1486
- },
1487
- {
1488
- inputs: [
1489
- {
1490
- components: [
1491
- {
1492
- internalType: "address",
1493
- name: "creditAccount",
1494
- type: "address",
1495
- },
1496
- {
1497
- components: [
1498
- {
1499
- internalType: "address",
1500
- name: "token",
1501
- type: "address",
1502
- },
1503
- {
1504
- internalType: "uint256",
1505
- name: "balance",
1506
- type: "uint256",
1507
- },
1508
- ],
1509
- internalType: "struct Balance[]",
1510
- name: "balances",
1511
- type: "tuple[]",
1512
- },
1513
- {
1514
- internalType: "address",
1515
- name: "target",
1516
- type: "address",
1517
- },
1518
- {
1519
- internalType: "address[]",
1520
- name: "connectors",
1521
- type: "address[]",
1522
- },
1523
- {
1524
- internalType: "address[]",
1525
- name: "adapters",
1526
- type: "address[]",
1527
- },
1528
- {
1529
- internalType: "uint256",
1530
- name: "slippagePerStep",
1531
- type: "uint256",
1532
- },
1533
- {
1534
- internalType: "bool",
1535
- name: "force",
1536
- type: "bool",
1537
- },
1538
- {
1539
- internalType: "enum TokenType",
1540
- name: "targetType",
1541
- type: "uint8",
1542
- },
1543
- {
1544
- components: [
1545
- {
1546
- internalType: "address",
1547
- name: "token",
1548
- type: "address",
1549
- },
1550
- {
1551
- internalType: "address",
1552
- name: "depositAdapter",
1553
- type: "address",
1554
- },
1555
- {
1556
- internalType: "address",
1557
- name: "withdrawAdapter",
1558
- type: "address",
1559
- },
1560
- ],
1561
- internalType: "struct TokenAdapters[]",
1562
- name: "foundAdapters",
1563
- type: "tuple[]",
1564
- },
1565
- {
1566
- internalType: "uint256",
1567
- name: "gasPriceTargetRAY",
1568
- type: "uint256",
1569
- },
1570
- {
1571
- internalType: "uint256",
1572
- name: "gasUsage",
1573
- type: "uint256",
1574
- },
1575
- {
1576
- internalType: "uint256",
1577
- name: "initTargetBalance",
1578
- type: "uint256",
1579
- },
1580
- {
1581
- components: [
1582
- {
1583
- internalType: "address",
1584
- name: "target",
1585
- type: "address",
1586
- },
1587
- {
1588
- internalType: "bytes",
1589
- name: "callData",
1590
- type: "bytes",
1591
- },
1592
- ],
1593
- internalType: "struct MultiCall[]",
1594
- name: "calls",
1595
- type: "tuple[]",
1596
- },
1597
- ],
1598
- internalType: "struct StrategyPathTask",
1599
- name: "task",
1600
- type: "tuple",
1601
- },
1602
- {
1603
- internalType: "address",
1604
- name: "target",
1605
- type: "address",
1606
- },
1607
- ],
1608
- name: "swapAllNormalTokens",
1609
- outputs: [
1610
- {
1611
- components: [
1612
- {
1613
- internalType: "address",
1614
- name: "creditAccount",
1615
- type: "address",
1616
- },
1617
- {
1618
- components: [
1619
- {
1620
- internalType: "address",
1621
- name: "token",
1622
- type: "address",
1623
- },
1624
- {
1625
- internalType: "uint256",
1626
- name: "balance",
1627
- type: "uint256",
1628
- },
1629
- ],
1630
- internalType: "struct Balance[]",
1631
- name: "balances",
1632
- type: "tuple[]",
1633
- },
1634
- {
1635
- internalType: "address",
1636
- name: "target",
1637
- type: "address",
1638
- },
1639
- {
1640
- internalType: "address[]",
1641
- name: "connectors",
1642
- type: "address[]",
1643
- },
1644
- {
1645
- internalType: "address[]",
1646
- name: "adapters",
1647
- type: "address[]",
1648
- },
1649
- {
1650
- internalType: "uint256",
1651
- name: "slippagePerStep",
1652
- type: "uint256",
1653
- },
1654
- {
1655
- internalType: "bool",
1656
- name: "force",
1657
- type: "bool",
1658
- },
1659
- {
1660
- internalType: "enum TokenType",
1661
- name: "targetType",
1662
- type: "uint8",
1663
- },
1664
- {
1665
- components: [
1666
- {
1667
- internalType: "address",
1668
- name: "token",
1669
- type: "address",
1670
- },
1671
- {
1672
- internalType: "address",
1673
- name: "depositAdapter",
1674
- type: "address",
1675
- },
1676
- {
1677
- internalType: "address",
1678
- name: "withdrawAdapter",
1679
- type: "address",
1680
- },
1681
- ],
1682
- internalType: "struct TokenAdapters[]",
1683
- name: "foundAdapters",
1684
- type: "tuple[]",
1685
- },
1686
- {
1687
- internalType: "uint256",
1688
- name: "gasPriceTargetRAY",
1689
- type: "uint256",
1690
- },
1691
- {
1692
- internalType: "uint256",
1693
- name: "gasUsage",
1694
- type: "uint256",
1695
- },
1696
- {
1697
- internalType: "uint256",
1698
- name: "initTargetBalance",
1699
- type: "uint256",
1700
- },
1701
- {
1702
- components: [
1703
- {
1704
- internalType: "address",
1705
- name: "target",
1706
- type: "address",
1707
- },
1708
- {
1709
- internalType: "bytes",
1710
- name: "callData",
1711
- type: "bytes",
1712
- },
1713
- ],
1714
- internalType: "struct MultiCall[]",
1715
- name: "calls",
1716
- type: "tuple[]",
1717
- },
1718
- ],
1719
- internalType: "struct StrategyPathTask",
1720
- name: "",
1721
- type: "tuple",
1722
- },
1723
- ],
1724
- stateMutability: "nonpayable",
1725
- type: "function",
1726
- },
1727
- {
1728
- inputs: [],
1729
- name: "version",
1730
- outputs: [
1731
- {
1732
- internalType: "uint256",
1733
- name: "",
1734
- type: "uint256",
1735
- },
1736
- ],
1737
- stateMutability: "view",
1738
- type: "function",
1739
- },
1740
- ];
1741
- class ISwapAggregator__factory {
1742
- static abi = _abi;
1743
- static createInterface() {
1744
- return new ethers_1.utils.Interface(_abi);
1745
- }
1746
- static connect(address, signerOrProvider) {
1747
- return new ethers_1.Contract(address, _abi, signerOrProvider);
1748
- }
1749
- }
1750
- exports.ISwapAggregator__factory = ISwapAggregator__factory;