@gearbox-protocol/sdk 3.0.0-next.4 → 3.0.0-next.5
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.
- package/contracts/IRouter.sol +100 -0
- package/contracts/index.sol +46 -0
- package/lib/apy/convexAPY.d.ts +1 -1
- package/lib/apy/convexAPY.js +8 -9
- package/lib/core/creditAccount.d.ts +27 -20
- package/lib/core/creditAccount.js +83 -54
- package/lib/core/creditManager.d.ts +17 -27
- package/lib/core/creditManager.js +80 -109
- package/lib/core/creditSession.js +17 -18
- package/lib/core/errors.d.ts +0 -9
- package/lib/core/errors.js +0 -15
- package/lib/core/events.js +19 -19
- package/lib/core/pool/data.d.ts +12 -7
- package/lib/core/pool/data.js +76 -42
- package/lib/core/priceOracle.js +1 -2
- package/lib/core/rewardConvex.d.ts +3 -3
- package/lib/core/rewardConvex.js +2 -3
- package/lib/core/trade.d.ts +2 -2
- package/lib/core/trade.js +1 -1
- package/lib/index.d.ts +10 -9
- package/lib/index.js +11 -38
- package/lib/parsers/ERC20Parser.js +2 -2
- package/lib/parsers/abstractParser.js +1 -1
- package/lib/parsers/creditFacadeParser.js +1 -1
- package/lib/parsers/creditFacadeParser.spec.js +1 -1
- package/lib/parsers/creditManagerParser.js +3 -3
- package/lib/parsers/curveAdapterParser.js +5 -0
- package/lib/parsers/curveAdapterParser.spec.js +5 -5
- package/lib/parsers/lidoSTETHParser.js +2 -2
- package/lib/parsers/poolParser.js +1 -1
- package/lib/parsers/priceOracleParser.js +1 -1
- package/lib/parsers/txParser.d.ts +5 -9
- package/lib/parsers/txParser.js +0 -21
- package/lib/parsers/wstETHAdapterParser.js +2 -2
- package/lib/pathfinder/pathOptions.d.ts +4 -3
- package/lib/pathfinder/pathOptions.js +3 -4
- package/lib/pathfinder/pathOptions.spec.js +28 -28
- package/lib/pathfinder/pathfinder.d.ts +1 -1
- package/lib/pathfinder/pathfinder.js +8 -8
- package/lib/payload/creditAccount.d.ts +4 -2
- package/lib/payload/creditManager.d.ts +7 -6
- package/lib/payload/pool.d.ts +5 -2
- package/lib/types/AaveV2_WrappedAToken.sol/IWrappedATokenEvents.d.ts +60 -0
- package/lib/types/AaveV2_WrappedAToken.sol/WrappedAToken.d.ts +332 -0
- package/lib/types/AaveV2_WrappedAToken.sol/index.d.ts +2 -0
- package/lib/types/AddressProvider.d.ts +382 -0
- package/lib/types/Balances.sol/BalanceOps.d.ts +27 -0
- package/lib/types/Balances.sol/index.d.ts +1 -0
- package/lib/types/Claimable.d.ts +113 -0
- package/lib/types/ERC20.d.ts +198 -0
- package/lib/types/Errors.d.ts +298 -0
- package/lib/types/IAToken.d.ts +182 -0
- package/lib/types/IAdapter.d.ts +74 -0
- package/lib/types/IAddressProvider.sol/IAddressProvider.d.ts +137 -0
- package/lib/types/IAddressProvider.sol/IAddressProviderEvents.d.ts +43 -0
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3.d.ts +97 -0
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3Events.d.ts +45 -0
- package/lib/types/IAddressProviderV3.sol/index.d.ts +2 -0
- package/lib/types/IBaseRewardPool.d.ts +378 -0
- package/lib/types/IConvexToken.d.ts +182 -0
- package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +284 -0
- package/lib/types/IConvexV1BoosterAdapter.d.ts +190 -0
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2.d.ts +641 -0
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.d.ts +293 -0
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.d.ts +27 -0
- package/lib/types/ICreditConfiguratorV2.sol/index.d.ts +3 -0
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2.d.ts +710 -0
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Events.d.ts +244 -0
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.d.ts +27 -0
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.d.ts +142 -0
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2V2.d.ts +66 -0
- package/lib/types/ICreditFacadeV2.sol/index.d.ts +5 -0
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.d.ts +427 -0
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +170 -0
- package/lib/types/ICreditFacadeV3.sol/index.d.ts +2 -0
- package/lib/types/ICreditFacadeV3Multicall.d.ts +246 -0
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2.d.ts +639 -0
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Events.d.ts +54 -0
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Exceptions.d.ts +27 -0
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.d.ts +713 -0
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3Events.d.ts +41 -0
- package/lib/types/ICreditManagerV3.sol/index.d.ts +2 -0
- package/lib/types/ICurvePool.d.ts +438 -0
- package/lib/types/ICurvePool_2.sol/ICurvePool2Assets.d.ts +590 -0
- package/lib/types/ICurvePool_3.sol/ICurvePool3Assets.d.ts +686 -0
- package/lib/types/ICurvePool_4.sol/ICurvePool4Assets.d.ts +722 -0
- package/lib/types/ICurveV1Adapter.d.ts +614 -0
- package/lib/types/ICurveV1_2AssetsAdapter.d.ts +698 -0
- package/lib/types/ICurveV1_3AssetsAdapter.d.ts +761 -0
- package/lib/types/ICurveV1_4AssetsAdapter.d.ts +779 -0
- package/lib/types/IDaiLikePermit.d.ts +59 -0
- package/lib/types/IDataCompressorV2_10.d.ts +477 -0
- package/lib/types/IDataCompressorV3_00.d.ts +499 -0
- package/lib/types/IERC20.d.ts +142 -0
- package/lib/types/IERC20Metadata.d.ts +166 -0
- package/lib/types/IERC4626.d.ts +394 -0
- package/lib/types/IInterestRateModel.d.ts +50 -0
- package/lib/types/ILendingPool.d.ts +140 -0
- package/lib/types/ILidoV1Adapter.sol/ILidoV1Adapter.d.ts +193 -0
- package/lib/types/ILidoV1Adapter.sol/ILidoV1AdapterEvents.d.ts +39 -0
- package/lib/types/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.d.ts +27 -0
- package/lib/types/IPermit2.d.ts +130 -0
- package/lib/types/IPoolService.sol/IPoolService.d.ts +392 -0
- package/lib/types/IPoolService.sol/IPoolServiceEvents.d.ts +162 -0
- package/lib/types/IPoolV3.sol/IPoolBase.d.ts +102 -0
- package/lib/types/IPoolV3.sol/IPoolV3.d.ts +904 -0
- package/lib/types/IPoolV3.sol/IPoolV3Events.d.ts +158 -0
- package/lib/types/IPoolV3.sol/index.d.ts +3 -0
- package/lib/types/IPriceOracleBase.d.ts +88 -0
- package/lib/types/IRouter.d.ts +268 -0
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +207 -0
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.d.ts +45 -0
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.d.ts +27 -0
- package/lib/types/IUniswapV2Adapter.sol/index.d.ts +3 -0
- package/lib/types/IUniswapV3.sol/ISwapRouter.d.ts +198 -0
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +409 -0
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.d.ts +47 -0
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.d.ts +27 -0
- package/lib/types/IUniswapV3Adapter.sol/index.d.ts +3 -0
- package/lib/types/IVersion.d.ts +42 -0
- package/lib/types/IWETH.d.ts +197 -0
- package/lib/types/IWithdrawalManagerV3.sol/IWithdrawalManagerV3.d.ts +370 -0
- package/lib/types/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events.d.ts +133 -0
- package/lib/types/IWithdrawalManagerV3.sol/index.d.ts +2 -0
- package/lib/types/IYVault.d.ts +298 -0
- package/lib/types/IYearnV2Adapter.d.ts +256 -0
- package/lib/types/IstETH.sol/IstETH.d.ts +230 -0
- package/lib/types/IstETH.sol/IstETHGetters.d.ts +214 -0
- package/lib/types/IwstETH.sol/IwstETH.d.ts +238 -0
- package/lib/types/IwstETH.sol/IwstETHGetters.d.ts +206 -0
- package/lib/types/IwstETHV1Adapter.d.ts +186 -0
- package/lib/types/Ownable.d.ts +89 -0
- package/lib/types/SafeERC20.d.ts +27 -0
- package/lib/types/WATokenZapper.d.ts +134 -0
- package/lib/types/WERC20ZapperBase.d.ts +134 -0
- package/lib/types/WETHZapper.d.ts +122 -0
- package/lib/types/WstETHZapper.d.ts +134 -0
- package/lib/types/ZapperBase.d.ts +70 -0
- package/lib/types/common.d.ts +1 -0
- package/lib/types/draft-IERC20Permit.sol/IERC20Permit.d.ts +74 -0
- package/lib/types/draft-IERC20Permit.sol/index.d.ts +1 -0
- package/lib/types/factories/AaveV2_WrappedAToken.sol/IWrappedATokenEvents__factory.d.ts +48 -0
- package/lib/types/factories/AaveV2_WrappedAToken.sol/IWrappedATokenEvents__factory.js +69 -0
- package/lib/types/factories/AaveV2_WrappedAToken.sol/WrappedAToken__factory.d.ts +397 -0
- package/lib/types/factories/AaveV2_WrappedAToken.sol/WrappedAToken__factory.js +535 -0
- package/lib/types/factories/AaveV2_WrappedAToken.sol/index.d.ts +2 -0
- package/lib/types/factories/AaveV2_WrappedAToken.sol/index.js +10 -0
- package/lib/types/factories/AddressProvider__factory.d.ts +321 -0
- package/lib/types/factories/AddressProvider__factory.js +430 -0
- package/lib/types/factories/Balances.sol/BalanceOps__factory.d.ts +29 -0
- package/lib/types/factories/Balances.sol/BalanceOps__factory.js +53 -0
- package/lib/types/factories/Balances.sol/index.d.ts +1 -0
- package/lib/types/factories/Balances.sol/index.js +8 -0
- package/lib/types/factories/Claimable__factory.d.ts +78 -0
- package/lib/types/factories/Claimable__factory.js +114 -0
- package/lib/types/factories/ERC20__factory.d.ts +239 -0
- package/lib/types/factories/ERC20__factory.js +328 -0
- package/lib/types/factories/Errors__factory.d.ts +351 -0
- package/lib/types/factories/Errors__factory.js +471 -0
- package/lib/types/factories/IAToken__factory.d.ts +198 -0
- package/lib/types/factories/IAToken__factory.js +267 -0
- package/lib/types/factories/IAdapter__factory.d.ts +58 -0
- package/lib/types/factories/IAdapter__factory.js +84 -0
- package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.d.ts +23 -0
- package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.d.ts +133 -0
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.d.ts +28 -0
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.js +44 -0
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.d.ts +92 -0
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.js +128 -0
- package/lib/types/factories/IAddressProviderV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IAddressProviderV3.sol/index.js +10 -0
- package/lib/types/factories/IBaseRewardPool__factory.d.ts +398 -0
- package/lib/types/factories/IConvexToken__factory.d.ts +198 -0
- package/lib/types/factories/IConvexToken__factory.js +267 -0
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.d.ts +254 -0
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.js +341 -0
- package/lib/types/factories/IConvexV1BoosterAdapter__factory.d.ts +166 -0
- package/lib/types/factories/IConvexV1BoosterAdapter__factory.js +226 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.d.ts +268 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.js +353 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.d.ts +44 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.js +64 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.d.ts +576 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.js +749 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/index.d.ts +3 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/index.js +12 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.d.ts +263 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.js +340 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.d.ts +140 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.js +185 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.d.ts +85 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.js +119 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.d.ts +26 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.js +42 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.d.ts +901 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.js +1163 -0
- package/lib/types/factories/ICreditFacadeV2.sol/index.d.ts +5 -0
- package/lib/types/factories/ICreditFacadeV2.sol/index.js +16 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.d.ts +193 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +250 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +486 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js +630 -0
- package/lib/types/factories/ICreditFacadeV3.sol/index.d.ts +2 -0
- package/lib/types/factories/ICreditFacadeV3.sol/index.js +10 -0
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.d.ts +170 -0
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +229 -0
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.d.ts +33 -0
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.d.ts +60 -0
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.d.ts +707 -0
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.js +932 -0
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.d.ts +18 -0
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.js +32 -0
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.d.ts +841 -0
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.js +1107 -0
- package/lib/types/factories/ICreditManagerV3.sol/index.d.ts +2 -0
- package/lib/types/factories/ICreditManagerV3.sol/index.js +10 -0
- package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.d.ts +678 -0
- package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.js +897 -0
- package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.d.ts +678 -0
- package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.js +897 -0
- package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.d.ts +678 -0
- package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.js +897 -0
- package/lib/types/factories/ICurvePool__factory.d.ts +566 -0
- package/lib/types/factories/ICurvePool__factory.js +751 -0
- package/lib/types/factories/ICurveV1Adapter__factory.d.ts +664 -0
- package/lib/types/factories/ICurveV1Adapter__factory.js +875 -0
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.d.ts +730 -0
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.js +962 -0
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.d.ts +730 -0
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.js +962 -0
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.d.ts +730 -0
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.js +962 -0
- package/lib/types/factories/IDaiLikePermit__factory.d.ts +46 -0
- package/lib/types/factories/IDaiLikePermit__factory.js +67 -0
- package/lib/types/factories/IDataCompressorV2_10__factory.d.ts +1124 -0
- package/lib/types/factories/IDataCompressorV2_10__factory.js +1441 -0
- package/lib/types/factories/IDataCompressorV3_00__factory.d.ts +1296 -0
- package/lib/types/factories/IDataCompressorV3_00__factory.js +1659 -0
- package/lib/types/factories/IERC20Metadata__factory.d.ts +178 -0
- package/lib/types/factories/IERC20Metadata__factory.js +241 -0
- package/lib/types/factories/IERC20__factory.d.ts +148 -0
- package/lib/types/factories/IERC20__factory.js +202 -0
- package/lib/types/factories/IERC4626__factory.d.ts +473 -0
- package/lib/types/factories/IERC4626__factory.js +631 -0
- package/lib/types/factories/IInterestRateModel__factory.d.ts +36 -0
- package/lib/types/factories/ILendingPool__factory.d.ts +134 -0
- package/lib/types/factories/ILendingPool__factory.js +183 -0
- package/lib/types/factories/ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.d.ts +18 -0
- package/lib/types/factories/ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.js +32 -0
- package/lib/types/factories/ILidoV1Adapter.sol/ILidoV1AdapterExceptions__factory.d.ts +12 -0
- package/lib/types/factories/ILidoV1Adapter.sol/ILidoV1Adapter__factory.d.ts +174 -0
- package/lib/types/factories/ILidoV1Adapter.sol/ILidoV1Adapter__factory.js +235 -0
- package/lib/types/factories/IPermit2__factory.d.ts +113 -0
- package/lib/types/factories/IPermit2__factory.js +155 -0
- package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.d.ts +163 -0
- package/lib/types/factories/IPoolService.sol/IPoolService__factory.d.ts +437 -0
- package/lib/types/factories/IPoolV3.sol/IPoolBase__factory.d.ts +80 -0
- package/lib/types/factories/IPoolV3.sol/IPoolBase__factory.js +112 -0
- package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.d.ts +153 -0
- package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.js +203 -0
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.d.ts +1020 -0
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.js +1340 -0
- package/lib/types/factories/IPoolV3.sol/index.d.ts +3 -0
- package/lib/types/factories/IPoolV3.sol/index.js +12 -0
- package/lib/types/factories/IPriceOracleBase__factory.d.ts +104 -0
- package/lib/types/factories/IPriceOracleBase__factory.js +147 -0
- package/lib/types/factories/IRouter__factory.d.ts +382 -0
- package/lib/types/factories/IRouter__factory.js +507 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.d.ts +28 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.js +44 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.d.ts +12 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.d.ts +217 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +290 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/index.d.ts +3 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/index.js +12 -0
- package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.d.ts +172 -0
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.d.ts +33 -0
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.js +50 -0
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.d.ts +12 -0
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +390 -0
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +515 -0
- package/lib/types/factories/IUniswapV3Adapter.sol/index.d.ts +3 -0
- package/lib/types/factories/IUniswapV3Adapter.sol/index.js +12 -0
- package/lib/types/factories/IVersion__factory.d.ts +18 -0
- package/lib/types/factories/IWETH__factory.d.ts +194 -0
- package/lib/types/factories/IWETH__factory.js +260 -0
- package/lib/types/factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory.d.ts +143 -0
- package/lib/types/factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory.js +188 -0
- package/lib/types/factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory.d.ts +366 -0
- package/lib/types/factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory.js +479 -0
- package/lib/types/factories/IWithdrawalManagerV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IWithdrawalManagerV3.sol/index.js +10 -0
- package/lib/types/factories/IYVault__factory.d.ts +304 -0
- package/lib/types/factories/IYVault__factory.js +408 -0
- package/lib/types/factories/IYearnV2Adapter__factory.d.ts +222 -0
- package/lib/types/factories/IYearnV2Adapter__factory.js +299 -0
- package/lib/types/factories/IstETH.sol/IstETHGetters__factory.d.ts +250 -0
- package/lib/types/factories/IstETH.sol/IstETHGetters__factory.js +337 -0
- package/lib/types/factories/IstETH.sol/IstETH__factory.d.ts +264 -0
- package/lib/types/factories/IstETH.sol/IstETH__factory.js +356 -0
- package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.d.ts +236 -0
- package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.js +318 -0
- package/lib/types/factories/IwstETH.sol/IwstETH__factory.d.ts +264 -0
- package/lib/types/factories/IwstETH.sol/IwstETH__factory.js +356 -0
- package/lib/types/factories/IwstETHV1Adapter__factory.d.ts +152 -0
- package/lib/types/factories/IwstETHV1Adapter__factory.js +207 -0
- package/lib/types/factories/Ownable__factory.d.ts +49 -0
- package/lib/types/factories/Ownable__factory.js +71 -0
- package/lib/types/factories/SafeERC20__factory.d.ts +49 -0
- package/lib/types/factories/SafeERC20__factory.js +77 -0
- package/lib/types/factories/WATokenZapper__factory.d.ts +161 -0
- package/lib/types/factories/WATokenZapper__factory.js +227 -0
- package/lib/types/factories/WERC20ZapperBase__factory.d.ts +140 -0
- package/lib/types/factories/WERC20ZapperBase__factory.js +193 -0
- package/lib/types/factories/WETHZapper__factory.d.ts +138 -0
- package/lib/types/factories/WETHZapper__factory.js +198 -0
- package/lib/types/factories/WstETHZapper__factory.d.ts +161 -0
- package/lib/types/factories/WstETHZapper__factory.js +227 -0
- package/lib/types/factories/ZapperBase__factory.d.ts +60 -0
- package/lib/types/factories/ZapperBase__factory.js +88 -0
- package/lib/types/factories/draft-IERC20Permit.sol/IERC20Permit__factory.d.ts +66 -0
- package/lib/types/factories/draft-IERC20Permit.sol/IERC20Permit__factory.js +94 -0
- package/lib/types/factories/draft-IERC20Permit.sol/index.d.ts +1 -0
- package/lib/types/factories/draft-IERC20Permit.sol/index.js +8 -0
- package/lib/types/factories/index.d.ts +61 -4
- package/lib/types/factories/index.js +102 -5
- package/lib/types/index.d.ts +216 -300
- package/lib/types/index.js +154 -275
- package/lib/utils/formatter.d.ts +0 -1
- package/lib/utils/formatter.js +3 -10
- package/lib/utils/types.d.ts +4 -0
- package/lib/watchers/creditAccountWatcher.d.ts +4 -4
- package/lib/watchers/creditAccountWatcher.js +6 -5
- package/lib/watchers/creditAccountWatcher.spec.js +2 -2
- package/lib/watchers/creditManagerWatcher.d.ts +2 -2
- package/lib/watchers/creditManagerWatcher.js +4 -3
- package/lib/watchers/creditManagerWatcher.spec.js +1 -1
- package/package.json +15 -5
- package/lib/parsers/airdropDistributorParser.d.ts +0 -6
- package/lib/parsers/airdropDistributorParser.js +0 -22
- package/lib/parsers/dataCompressorParser.d.ts +0 -6
- package/lib/parsers/dataCompressorParser.js +0 -23
- package/lib/parsers/lidoOracleParser.d.ts +0 -6
- package/lib/parsers/lidoOracleParser.js +0 -21
- package/lib/parsers/multicallParser.d.ts +0 -6
- package/lib/parsers/multicallParser.js +0 -30
- package/lib/parsers/offchainOracleParser.d.ts +0 -6
- package/lib/parsers/offchainOracleParser.js +0 -23
- package/lib/types/@chainlink/contracts/index.d.ts +0 -2
- package/lib/types/@chainlink/contracts/src/index.d.ts +0 -2
- package/lib/types/@chainlink/contracts/src/v0.8/index.d.ts +0 -2
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface.d.ts +0 -106
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface.d.ts +0 -218
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.d.ts +0 -146
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/index.d.ts +0 -3
- package/lib/types/@chainlink/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/index.d.ts +0 -6
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL.d.ts +0 -120
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents.d.ts +0 -74
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory.d.ts +0 -183
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents.d.ts +0 -89
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters.d.ts +0 -82
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProvider.d.ts +0 -137
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProviderEvents.d.ts +0 -43
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor.d.ts +0 -119
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +0 -73
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister.d.ts +0 -144
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents.d.ts +0 -50
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount.d.ts +0 -178
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator.d.ts +0 -631
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents.d.ts +0 -251
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade.d.ts +0 -598
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents.d.ts +0 -209
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended.d.ts +0 -138
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.d.ts +0 -4
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2.d.ts +0 -610
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Events.d.ts +0 -54
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Exceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor.d.ts +0 -326
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor.d.ts +0 -99
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +0 -53
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT.d.ts +0 -326
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents.d.ts +0 -61
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken.d.ts +0 -146
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel.d.ts +0 -50
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed.d.ts +0 -217
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents.d.ts +0 -43
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20.d.ts +0 -170
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolService.d.ts +0 -384
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents.d.ts +0 -162
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType.d.ts +0 -50
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2.d.ts +0 -157
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events.d.ts +0 -43
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext.d.ts +0 -173
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.d.ts +0 -4
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IVersion.d.ts +0 -42
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway.d.ts +0 -82
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter.d.ts +0 -482
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager.d.ts +0 -523
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter.d.ts +0 -66
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter.d.ts +0 -106
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.d.ts +0 -4
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH.d.ts +0 -82
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/external/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/index.d.ts +0 -43
- package/lib/types/@gearbox-protocol/core-v2/contracts/pool/PoolService.d.ts +0 -570
- package/lib/types/@gearbox-protocol/core-v2/contracts/pool/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/core-v2/contracts/test/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite.d.ts +0 -148
- package/lib/types/@gearbox-protocol/core-v2/contracts/test/interfaces/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/core-v2/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/index.d.ts +0 -6
- package/lib/types/@gearbox-protocol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/index.d.ts +0 -6
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool.d.ts +0 -378
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster.d.ts +0 -195
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap.d.ts +0 -76
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken.d.ts +0 -178
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards.d.ts +0 -98
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards.d.ts +0 -186
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit.d.ts +0 -58
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge.d.ts +0 -114
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow.d.ts +0 -106
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit.d.ts +0 -162
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro.d.ts +0 -58
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter.d.ts +0 -50
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools.d.ts +0 -122
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry.d.ts +0 -74
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory.d.ts +0 -122
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards.d.ts +0 -186
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker.d.ts +0 -290
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash.d.ts +0 -98
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory.d.ts +0 -50
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory.d.ts +0 -50
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow.d.ts +0 -50
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting.d.ts +0 -107
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker.d.ts +0 -42
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.d.ts +0 -18
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.d.ts +0 -8
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool.d.ts +0 -306
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH.d.ts +0 -282
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets.d.ts +0 -404
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets.d.ts +0 -406
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets.d.ts +0 -432
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry.d.ts +0 -58
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.d.ts +0 -9
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/index.d.ts +0 -10
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH.d.ts +0 -226
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters.d.ts +0 -210
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH.d.ts +0 -234
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters.d.ts +0 -202
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.d.ts +0 -7
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter.d.ts +0 -98
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01.d.ts +0 -386
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02.d.ts +0 -484
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter.d.ts +0 -198
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.d.ts +0 -5
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault.d.ts +0 -290
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter.d.ts +0 -450
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors.d.ts +0 -27
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter.d.ts +0 -243
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter.d.ts +0 -514
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter.d.ts +0 -612
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter.d.ts +0 -614
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter.d.ts +0 -640
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.d.ts +0 -5
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/index.d.ts +0 -10
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter.d.ts +0 -237
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents.d.ts +0 -39
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter.d.ts +0 -218
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker.d.ts +0 -106
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +0 -532
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +0 -301
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.d.ts +0 -5
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter.d.ts +0 -322
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/index.d.ts +0 -4
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents.d.ts +0 -45
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver.d.ts +0 -146
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor.d.ts +0 -180
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions.d.ts +0 -209
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IGasPricer.d.ts +0 -44
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IGasPricer.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker.d.ts +0 -134
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions.d.ts +0 -140
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IPathResolver.d.ts +0 -152
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IPathResolver.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouter.d.ts +0 -265
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouter.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouterComponent.d.ts +0 -50
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouterComponent.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator.d.ts +0 -314
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapper.d.ts +0 -136
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapper.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer.d.ts +0 -188
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions.d.ts +0 -204
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWrapper.d.ts +0 -152
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWrapper.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/index.d.ts +0 -14
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/index.d.ts +0 -4
- package/lib/types/@openzeppelin/contracts/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -138
- package/lib/types/@openzeppelin/contracts/token/ERC20/IERC20.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -162
- package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -3
- package/lib/types/@openzeppelin/contracts/token/ERC20/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -207
- package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -50
- package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -231
- package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
- package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -4
- package/lib/types/@openzeppelin/contracts/token/ERC721/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/index.d.ts +0 -4
- package/lib/types/@openzeppelin/contracts/token/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/utils/index.d.ts +0 -2
- package/lib/types/@openzeppelin/contracts/utils/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -42
- package/lib/types/@openzeppelin/contracts/utils/introspection/IERC165.js +0 -2
- package/lib/types/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -1
- package/lib/types/@openzeppelin/contracts/utils/introspection/index.js +0 -2
- package/lib/types/@openzeppelin/index.d.ts +0 -2
- package/lib/types/@openzeppelin/index.js +0 -2
- package/lib/types/contracts/IGas.d.ts +0 -50
- package/lib/types/contracts/IGas.js +0 -2
- package/lib/types/contracts/IGnosisSafeSignatureValidator.d.ts +0 -42
- package/lib/types/contracts/IGnosisSafeSignatureValidator.js +0 -2
- package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributor.d.ts +0 -198
- package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributor.js +0 -2
- package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributorEvents.d.ts +0 -86
- package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributorEvents.js +0 -2
- package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributorExceptions.d.ts +0 -27
- package/lib/types/contracts/ITokenDistributor.sol/ITokenDistributorExceptions.js +0 -2
- package/lib/types/contracts/ITokenDistributor.sol/index.d.ts +0 -3
- package/lib/types/contracts/ITokenDistributor.sol/index.js +0 -2
- package/lib/types/contracts/index.d.ts +0 -6
- package/lib/types/contracts/index.js +0 -2
- package/lib/types/contracts/support/IOffchainOracle.d.ts +0 -54
- package/lib/types/contracts/support/IOffchainOracle.js +0 -2
- package/lib/types/contracts/support/MultiCall.sol/Multicall2.d.ts +0 -218
- package/lib/types/contracts/support/MultiCall.sol/Multicall2.js +0 -2
- package/lib/types/contracts/support/MultiCall.sol/index.d.ts +0 -1
- package/lib/types/contracts/support/MultiCall.sol/index.js +0 -2
- package/lib/types/contracts/support/index.d.ts +0 -3
- package/lib/types/contracts/support/index.js +0 -2
- package/lib/types/factories/@chainlink/contracts/index.d.ts +0 -1
- package/lib/types/factories/@chainlink/contracts/index.js +0 -30
- package/lib/types/factories/@chainlink/contracts/src/index.d.ts +0 -1
- package/lib/types/factories/@chainlink/contracts/src/index.js +0 -30
- package/lib/types/factories/@chainlink/contracts/src/v0.8/index.d.ts +0 -1
- package/lib/types/factories/@chainlink/contracts/src/v0.8/index.js +0 -30
- package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface__factory.d.ts +0 -35
- package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface__factory.js +0 -146
- package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface__factory.d.ts +0 -35
- package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface__factory.js +0 -257
- package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface__factory.d.ts +0 -22
- package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface__factory.js +0 -130
- package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/index.d.ts +0 -3
- package/lib/types/factories/@chainlink/contracts/src/v0.8/interfaces/index.js +0 -12
- package/lib/types/factories/@chainlink/index.d.ts +0 -1
- package/lib/types/factories/@chainlink/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/index.js +0 -32
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents__factory.js +0 -71
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions__factory.d.ts +0 -16
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions__factory.js +0 -41
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL__factory.d.ts +0 -46
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL__factory.js +0 -176
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents__factory.js +0 -96
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters__factory.js +0 -109
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory__factory.js +0 -236
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProviderEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/IAddressProvider__factory.d.ts +0 -31
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.js +0 -88
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor__factory.js +0 -161
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents__factory.js +0 -45
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister__factory.js +0 -186
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions__factory.js +0 -29
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount__factory.js +0 -220
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents__factory.js +0 -308
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions__factory.js +0 -64
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator__factory.d.ts +0 -49
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator__factory.js +0 -730
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents__factory.js +0 -295
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions__factory.d.ts +0 -16
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions__factory.js +0 -175
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended__factory.d.ts +0 -33
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended__factory.js +0 -119
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade__factory.d.ts +0 -67
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade__factory.js +0 -1011
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.d.ts +0 -4
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.js +0 -14
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Events__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2__factory.js +0 -932
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions__factory.js +0 -29
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor__factory.d.ts +0 -57
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor__factory.js +0 -887
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents__factory.js +0 -57
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor__factory.js +0 -130
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents__factory.js +0 -58
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions__factory.js +0 -39
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT__factory.js +0 -496
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions__factory.js +0 -24
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken__factory.js +0 -220
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +0 -38
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +0 -29
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed__factory.js +0 -237
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20__factory.js +0 -254
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolService__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType__factory.js +0 -45
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events__factory.js +0 -38
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.js +0 -34
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext__factory.js +0 -267
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2__factory.js +0 -249
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.d.ts +0 -4
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.js +0 -14
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IVersion__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway__factory.js +0 -83
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter__factory.js +0 -697
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager__factory.d.ts +0 -56
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager__factory.js +0 -766
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions__factory.d.ts +0 -16
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions__factory.js +0 -30
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter__factory.js +0 -82
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions__factory.d.ts +0 -16
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions__factory.js +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter__factory.d.ts +0 -48
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter__factory.js +0 -153
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.js +0 -31
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH__factory.js +0 -63
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/index.d.ts +0 -24
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/index.js +0 -58
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/PoolService__factory.d.ts +0 -65
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/PoolService__factory.js +0 -861
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite__factory.js +0 -178
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/core-v2/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/index.js +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/index.js +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster__factory.d.ts +0 -41
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster__factory.js +0 -270
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap__factory.js +0 -98
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken__factory.js +0 -267
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards__factory.js +0 -86
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards__factory.js +0 -183
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit__factory.js +0 -50
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge__factory.js +0 -116
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow__factory.js +0 -83
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit__factory.js +0 -223
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro__factory.js +0 -39
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter__factory.js +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools__factory.js +0 -185
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry__factory.js +0 -107
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory__factory.js +0 -157
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards__factory.js +0 -183
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker__factory.js +0 -317
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory__factory.js +0 -53
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash__factory.js +0 -91
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory__factory.js +0 -38
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter__factory.js +0 -55
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow__factory.js +0 -43
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting__factory.js +0 -124
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker__factory.js +0 -38
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.js +0 -42
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.d.ts +0 -6
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.js +0 -39
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH__factory.js +0 -471
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets__factory.js +0 -710
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets__factory.js +0 -710
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets__factory.js +0 -710
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool__factory.js +0 -564
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry__factory.js +0 -76
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.d.ts +0 -6
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.js +0 -38
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/index.d.ts +0 -5
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/index.js +0 -34
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle__factory.js +0 -42
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters__factory.js +0 -337
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH__factory.js +0 -356
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters__factory.js +0 -318
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH__factory.js +0 -356
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay__factory.js +0 -71
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.d.ts +0 -4
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.js +0 -34
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter__factory.js +0 -145
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01__factory.js +0 -768
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02__factory.js +0 -970
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter__factory.d.ts +0 -27
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.d.ts +0 -4
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.js +0 -36
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault__factory.js +0 -408
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors__factory.d.ts +0 -16
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors__factory.js +0 -30
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter__factory.d.ts +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter__factory.js +0 -673
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter__factory.d.ts +0 -51
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter__factory.js +0 -340
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.js +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions__factory.js +0 -24
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter__factory.d.ts +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter__factory.js +0 -904
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter__factory.d.ts +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter__factory.js +0 -1050
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter__factory.d.ts +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter__factory.js +0 -1050
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter__factory.d.ts +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter__factory.js +0 -1050
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.d.ts +0 -4
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.js +0 -36
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/index.d.ts +0 -5
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/index.js +0 -34
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.js +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter__factory.d.ts +0 -46
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter__factory.js +0 -362
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter__factory.d.ts +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter__factory.js +0 -318
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.js +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker__factory.js +0 -96
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.d.ts +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +0 -1067
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +0 -37
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +0 -388
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.js +0 -33
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter__factory.d.ts +0 -46
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter__factory.js +0 -471
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts__factory.js +0 -89
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/index.js +0 -31
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents__factory.js +0 -44
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/integrations-v2/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/router/contracts/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/router/contracts/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver__factory.d.ts +0 -67
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver__factory.js +0 -307
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions__factory.js +0 -1055
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor__factory.js +0 -785
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IGasPricer__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IGasPricer__factory.js +0 -38
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions__factory.js +0 -295
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker__factory.js +0 -290
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IPathResolver__factory.d.ts +0 -67
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IPathResolver__factory.js +0 -530
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouterComponent__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouterComponent__factory.js +0 -45
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouter__factory.d.ts +0 -65
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouter__factory.js +0 -526
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator__factory.js +0 -1750
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapper__factory.d.ts +0 -57
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapper__factory.js +0 -245
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions__factory.js +0 -1067
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer__factory.js +0 -1020
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWrapper__factory.d.ts +0 -61
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWrapper__factory.js +0 -293
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/index.d.ts +0 -11
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/index.js +0 -48
- package/lib/types/factories/@gearbox-protocol/router/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/router/index.js +0 -30
- package/lib/types/factories/@openzeppelin/contracts/index.d.ts +0 -2
- package/lib/types/factories/@openzeppelin/contracts/index.js +0 -31
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -35
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.js +0 -202
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -35
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.js +0 -241
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.js +0 -8
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -2
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/index.js +0 -32
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -22
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.js +0 -53
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -35
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.js +0 -304
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -35
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.js +0 -349
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.js +0 -8
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -3
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/index.js +0 -34
- package/lib/types/factories/@openzeppelin/contracts/token/index.d.ts +0 -2
- package/lib/types/factories/@openzeppelin/contracts/token/index.js +0 -31
- package/lib/types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/contracts/utils/index.js +0 -30
- package/lib/types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -22
- package/lib/types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.js +0 -38
- package/lib/types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/contracts/utils/introspection/index.js +0 -8
- package/lib/types/factories/@openzeppelin/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/index.js +0 -30
- package/lib/types/factories/contracts/IGas__factory.d.ts +0 -18
- package/lib/types/factories/contracts/IGas__factory.js +0 -32
- package/lib/types/factories/contracts/IGnosisSafeSignatureValidator__factory.d.ts +0 -22
- package/lib/types/factories/contracts/IGnosisSafeSignatureValidator__factory.js +0 -43
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorEvents__factory.d.ts +0 -18
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorEvents__factory.js +0 -107
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorExceptions__factory.d.ts +0 -16
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorExceptions__factory.js +0 -61
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributor__factory.d.ts +0 -46
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributor__factory.js +0 -294
- package/lib/types/factories/contracts/ITokenDistributor.sol/index.d.ts +0 -3
- package/lib/types/factories/contracts/ITokenDistributor.sol/index.js +0 -12
- package/lib/types/factories/contracts/index.d.ts +0 -4
- package/lib/types/factories/contracts/index.js +0 -35
- package/lib/types/factories/contracts/support/IOffchainOracle__factory.d.ts +0 -22
- package/lib/types/factories/contracts/support/IOffchainOracle__factory.js +0 -72
- package/lib/types/factories/contracts/support/MultiCall.sol/Multicall2__factory.d.ts +0 -54
- package/lib/types/factories/contracts/support/MultiCall.sol/Multicall2__factory.js +0 -353
- package/lib/types/factories/contracts/support/MultiCall.sol/index.d.ts +0 -1
- package/lib/types/factories/contracts/support/MultiCall.sol/index.js +0 -8
- package/lib/types/factories/contracts/support/index.d.ts +0 -2
- package/lib/types/factories/contracts/support/index.js +0 -32
- /package/lib/types/{@chainlink/contracts/index.js → AaveV2_WrappedAToken.sol/IWrappedATokenEvents.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/index.js → AaveV2_WrappedAToken.sol/WrappedAToken.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8 → AaveV2_WrappedAToken.sol}/index.js +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface.js → AddressProvider.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface.js → Balances.sol/BalanceOps.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces → Balances.sol}/index.js +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.js → Claimable.js} +0 -0
- /package/lib/types/{@chainlink/index.js → ERC20.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/index.js → Errors.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL.js → IAToken.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter.js → IAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/IAddressProvider.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/IAddressProviderEvents.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol → IAddressProvider.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents.js → IAddressProviderV3.sol/IAddressProviderV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions.js → IAddressProviderV3.sol/IAddressProviderV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol → IAddressProviderV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool.js → IBaseRewardPool.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken.js → IConvexToken.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory.js → IConvexV1BaseRewardPoolAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents.js → IConvexV1BoosterAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol → ICreditConfiguratorV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents.js → ICreditFacadeV2.sol/ICreditFacadeV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister.js → ICreditFacadeV2.sol/ICreditFacadeV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents.js → ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.js → ICreditFacadeV2.sol/ICreditFacadeV2Extended.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions.js → ICreditFacadeV2.sol/ICreditFacadeV2V2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol → ICreditFacadeV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount.js → ICreditFacadeV3.sol/ICreditFacadeV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator.js → ICreditFacadeV3.sol/ICreditFacadeV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol → ICreditFacadeV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents.js → ICreditFacadeV3Multicall.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV2.sol}/ICreditManagerV2.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV2.sol}/ICreditManagerV2Events.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV2.sol}/ICreditManagerV2Exceptions.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV2.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol → ICreditManagerV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions.js → ICreditManagerV3.sol/ICreditManagerV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade.js → ICreditManagerV3.sol/ICreditManagerV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool.js → ICurvePool.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol → ICurvePool_2.sol}/ICurvePool2Assets.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol → ICurvePool_2.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol → ICurvePool_2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol → ICurvePool_3.sol}/ICurvePool3Assets.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol → ICurvePool_3.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol → ICurvePool_3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol → ICurvePool_4.sol}/ICurvePool4Assets.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol → ICurvePool_4.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol → ICurvePool_4.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents.js → ICurveV1Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions.js → ICurveV1_2AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended.js → ICurveV1_3AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor.js → ICurveV1_4AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions.js → IDaiLikePermit.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor.js → IDataCompressorV2_10.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents.js → IDataCompressorV3_00.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT.js → IERC20.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents.js → IERC20Metadata.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions.js → IERC4626.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel.js → IInterestRateModel.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken.js → ILendingPool.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions.js → ILidoV1Adapter.sol/ILidoV1Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.js → ILidoV1Adapter.sol/ILidoV1AdapterEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed.js → ILidoV1Adapter.sol/ILidoV1AdapterExceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol → ILidoV1Adapter.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol → ILidoV1Adapter.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents.js → IPermit2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → IPoolService.sol}/IPoolService.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → IPoolService.sol}/IPoolServiceEvents.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → IPoolService.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → IPoolService.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions.js → IPoolV3.sol/IPoolBase.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20.js → IPoolV3.sol/IPoolV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType.js → IPoolV3.sol/IPoolV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol → IPoolV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2.js → IPriceOracleBase.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events.js → IRouter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol → IUniswapV2Adapter.sol}/IUniswapV2Adapter.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions.js → IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol → IUniswapV2Adapter.sol}/IUniswapV2AdapterExceptions.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/V1 → IUniswapV2Adapter.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol → IUniswapV3.sol}/ISwapRouter.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol → IUniswapV3.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol → IUniswapV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol → IUniswapV3Adapter.sol}/IUniswapV3Adapter.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext.js → IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol → IUniswapV3Adapter.sol}/IUniswapV3AdapterExceptions.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol → IUniswapV3Adapter.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IVersion.js → IVersion.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH.js → IWETH.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway.js → IWithdrawalManagerV3.sol/IWithdrawalManagerV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter.js → IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters → IWithdrawalManagerV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault.js → IYVault.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter.js → IYearnV2Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol → IstETH.sol}/IstETH.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol → IstETH.sol}/IstETHGetters.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol → IstETH.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/external → IstETH.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol → IwstETH.sol}/IwstETH.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol → IwstETH.sol}/IwstETHGetters.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol → IwstETH.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces → IwstETH.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter.js → IwstETHV1Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager.js → Ownable.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions.js → SafeERC20.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter.js → WATokenZapper.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions.js → WERC20ZapperBase.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/pool/PoolService.js → WETHZapper.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/pool/index.js → WstETHZapper.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/test/index.js → ZapperBase.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite.js → draft-IERC20Permit.sol/IERC20Permit.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/test/interfaces → draft-IERC20Permit.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/IAddressProviderEvents__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/IAddressProvider__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool__factory.js → IBaseRewardPool__factory.js} +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV2.sol}/ICreditManagerV2Events__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV2.sol}/ICreditManagerV2Exceptions__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV2.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → ICreditManagerV2.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol → ICurvePool_2.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol → ICurvePool_2.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol → ICurvePool_3.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol → ICurvePool_3.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol → ICurvePool_4.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol → ICurvePool_4.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel__factory.js → IInterestRateModel__factory.js} +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol → ILidoV1Adapter.sol}/ILidoV1AdapterExceptions__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol → ILidoV1Adapter.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol → ILidoV1Adapter.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → IPoolService.sol}/IPoolServiceEvents__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → IPoolService.sol}/IPoolService__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → IPoolService.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → IPoolService.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol → IUniswapV2Adapter.sol}/IUniswapV2AdapterExceptions__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol → IUniswapV3.sol}/ISwapRouter__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol → IUniswapV3.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol → IUniswapV3.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol → IUniswapV3Adapter.sol}/IUniswapV3AdapterExceptions__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IVersion__factory.js → IVersion__factory.js} +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol → IstETH.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol → IstETH.sol}/index.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol → IwstETH.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol → IwstETH.sol}/index.js +0 -0
- /package/lib/{types/@gearbox-protocol/core-v2/index.js → utils/types.js} +0 -0
|
@@ -0,0 +1,535 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WrappedAToken__factory = void 0;
|
|
4
|
+
/* Autogenerated file. Do not edit manually. */
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
const ethers_1 = require("ethers");
|
|
8
|
+
const _abi = [
|
|
9
|
+
{
|
|
10
|
+
inputs: [
|
|
11
|
+
{
|
|
12
|
+
internalType: "address",
|
|
13
|
+
name: "_aToken",
|
|
14
|
+
type: "address",
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
stateMutability: "nonpayable",
|
|
18
|
+
type: "constructor",
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
inputs: [],
|
|
22
|
+
name: "ForceApproveFailed",
|
|
23
|
+
type: "error",
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
inputs: [],
|
|
27
|
+
name: "SafeTransferFromFailed",
|
|
28
|
+
type: "error",
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
inputs: [],
|
|
32
|
+
name: "ZeroAddressException",
|
|
33
|
+
type: "error",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
anonymous: false,
|
|
37
|
+
inputs: [
|
|
38
|
+
{
|
|
39
|
+
indexed: true,
|
|
40
|
+
internalType: "address",
|
|
41
|
+
name: "owner",
|
|
42
|
+
type: "address",
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
indexed: true,
|
|
46
|
+
internalType: "address",
|
|
47
|
+
name: "spender",
|
|
48
|
+
type: "address",
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
indexed: false,
|
|
52
|
+
internalType: "uint256",
|
|
53
|
+
name: "value",
|
|
54
|
+
type: "uint256",
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
name: "Approval",
|
|
58
|
+
type: "event",
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
anonymous: false,
|
|
62
|
+
inputs: [
|
|
63
|
+
{
|
|
64
|
+
indexed: true,
|
|
65
|
+
internalType: "address",
|
|
66
|
+
name: "account",
|
|
67
|
+
type: "address",
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
indexed: false,
|
|
71
|
+
internalType: "uint256",
|
|
72
|
+
name: "assets",
|
|
73
|
+
type: "uint256",
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
indexed: false,
|
|
77
|
+
internalType: "uint256",
|
|
78
|
+
name: "shares",
|
|
79
|
+
type: "uint256",
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
name: "Deposit",
|
|
83
|
+
type: "event",
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
anonymous: false,
|
|
87
|
+
inputs: [
|
|
88
|
+
{
|
|
89
|
+
indexed: true,
|
|
90
|
+
internalType: "address",
|
|
91
|
+
name: "from",
|
|
92
|
+
type: "address",
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
indexed: true,
|
|
96
|
+
internalType: "address",
|
|
97
|
+
name: "to",
|
|
98
|
+
type: "address",
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
indexed: false,
|
|
102
|
+
internalType: "uint256",
|
|
103
|
+
name: "value",
|
|
104
|
+
type: "uint256",
|
|
105
|
+
},
|
|
106
|
+
],
|
|
107
|
+
name: "Transfer",
|
|
108
|
+
type: "event",
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
anonymous: false,
|
|
112
|
+
inputs: [
|
|
113
|
+
{
|
|
114
|
+
indexed: true,
|
|
115
|
+
internalType: "address",
|
|
116
|
+
name: "account",
|
|
117
|
+
type: "address",
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
indexed: false,
|
|
121
|
+
internalType: "uint256",
|
|
122
|
+
name: "assets",
|
|
123
|
+
type: "uint256",
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
indexed: false,
|
|
127
|
+
internalType: "uint256",
|
|
128
|
+
name: "shares",
|
|
129
|
+
type: "uint256",
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
name: "Withdraw",
|
|
133
|
+
type: "event",
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
inputs: [],
|
|
137
|
+
name: "aToken",
|
|
138
|
+
outputs: [
|
|
139
|
+
{
|
|
140
|
+
internalType: "address",
|
|
141
|
+
name: "",
|
|
142
|
+
type: "address",
|
|
143
|
+
},
|
|
144
|
+
],
|
|
145
|
+
stateMutability: "view",
|
|
146
|
+
type: "function",
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
inputs: [
|
|
150
|
+
{
|
|
151
|
+
internalType: "address",
|
|
152
|
+
name: "owner",
|
|
153
|
+
type: "address",
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
internalType: "address",
|
|
157
|
+
name: "spender",
|
|
158
|
+
type: "address",
|
|
159
|
+
},
|
|
160
|
+
],
|
|
161
|
+
name: "allowance",
|
|
162
|
+
outputs: [
|
|
163
|
+
{
|
|
164
|
+
internalType: "uint256",
|
|
165
|
+
name: "",
|
|
166
|
+
type: "uint256",
|
|
167
|
+
},
|
|
168
|
+
],
|
|
169
|
+
stateMutability: "view",
|
|
170
|
+
type: "function",
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
inputs: [
|
|
174
|
+
{
|
|
175
|
+
internalType: "address",
|
|
176
|
+
name: "spender",
|
|
177
|
+
type: "address",
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
internalType: "uint256",
|
|
181
|
+
name: "amount",
|
|
182
|
+
type: "uint256",
|
|
183
|
+
},
|
|
184
|
+
],
|
|
185
|
+
name: "approve",
|
|
186
|
+
outputs: [
|
|
187
|
+
{
|
|
188
|
+
internalType: "bool",
|
|
189
|
+
name: "",
|
|
190
|
+
type: "bool",
|
|
191
|
+
},
|
|
192
|
+
],
|
|
193
|
+
stateMutability: "nonpayable",
|
|
194
|
+
type: "function",
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
inputs: [
|
|
198
|
+
{
|
|
199
|
+
internalType: "address",
|
|
200
|
+
name: "account",
|
|
201
|
+
type: "address",
|
|
202
|
+
},
|
|
203
|
+
],
|
|
204
|
+
name: "balanceOf",
|
|
205
|
+
outputs: [
|
|
206
|
+
{
|
|
207
|
+
internalType: "uint256",
|
|
208
|
+
name: "",
|
|
209
|
+
type: "uint256",
|
|
210
|
+
},
|
|
211
|
+
],
|
|
212
|
+
stateMutability: "view",
|
|
213
|
+
type: "function",
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
inputs: [
|
|
217
|
+
{
|
|
218
|
+
internalType: "address",
|
|
219
|
+
name: "account",
|
|
220
|
+
type: "address",
|
|
221
|
+
},
|
|
222
|
+
],
|
|
223
|
+
name: "balanceOfUnderlying",
|
|
224
|
+
outputs: [
|
|
225
|
+
{
|
|
226
|
+
internalType: "uint256",
|
|
227
|
+
name: "",
|
|
228
|
+
type: "uint256",
|
|
229
|
+
},
|
|
230
|
+
],
|
|
231
|
+
stateMutability: "view",
|
|
232
|
+
type: "function",
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
inputs: [],
|
|
236
|
+
name: "decimals",
|
|
237
|
+
outputs: [
|
|
238
|
+
{
|
|
239
|
+
internalType: "uint8",
|
|
240
|
+
name: "",
|
|
241
|
+
type: "uint8",
|
|
242
|
+
},
|
|
243
|
+
],
|
|
244
|
+
stateMutability: "view",
|
|
245
|
+
type: "function",
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
inputs: [
|
|
249
|
+
{
|
|
250
|
+
internalType: "address",
|
|
251
|
+
name: "spender",
|
|
252
|
+
type: "address",
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
internalType: "uint256",
|
|
256
|
+
name: "subtractedValue",
|
|
257
|
+
type: "uint256",
|
|
258
|
+
},
|
|
259
|
+
],
|
|
260
|
+
name: "decreaseAllowance",
|
|
261
|
+
outputs: [
|
|
262
|
+
{
|
|
263
|
+
internalType: "bool",
|
|
264
|
+
name: "",
|
|
265
|
+
type: "bool",
|
|
266
|
+
},
|
|
267
|
+
],
|
|
268
|
+
stateMutability: "nonpayable",
|
|
269
|
+
type: "function",
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
inputs: [
|
|
273
|
+
{
|
|
274
|
+
internalType: "uint256",
|
|
275
|
+
name: "assets",
|
|
276
|
+
type: "uint256",
|
|
277
|
+
},
|
|
278
|
+
],
|
|
279
|
+
name: "deposit",
|
|
280
|
+
outputs: [
|
|
281
|
+
{
|
|
282
|
+
internalType: "uint256",
|
|
283
|
+
name: "shares",
|
|
284
|
+
type: "uint256",
|
|
285
|
+
},
|
|
286
|
+
],
|
|
287
|
+
stateMutability: "nonpayable",
|
|
288
|
+
type: "function",
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
inputs: [
|
|
292
|
+
{
|
|
293
|
+
internalType: "uint256",
|
|
294
|
+
name: "assets",
|
|
295
|
+
type: "uint256",
|
|
296
|
+
},
|
|
297
|
+
],
|
|
298
|
+
name: "depositUnderlying",
|
|
299
|
+
outputs: [
|
|
300
|
+
{
|
|
301
|
+
internalType: "uint256",
|
|
302
|
+
name: "shares",
|
|
303
|
+
type: "uint256",
|
|
304
|
+
},
|
|
305
|
+
],
|
|
306
|
+
stateMutability: "nonpayable",
|
|
307
|
+
type: "function",
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
inputs: [],
|
|
311
|
+
name: "exchangeRate",
|
|
312
|
+
outputs: [
|
|
313
|
+
{
|
|
314
|
+
internalType: "uint256",
|
|
315
|
+
name: "",
|
|
316
|
+
type: "uint256",
|
|
317
|
+
},
|
|
318
|
+
],
|
|
319
|
+
stateMutability: "view",
|
|
320
|
+
type: "function",
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
inputs: [
|
|
324
|
+
{
|
|
325
|
+
internalType: "address",
|
|
326
|
+
name: "spender",
|
|
327
|
+
type: "address",
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
internalType: "uint256",
|
|
331
|
+
name: "addedValue",
|
|
332
|
+
type: "uint256",
|
|
333
|
+
},
|
|
334
|
+
],
|
|
335
|
+
name: "increaseAllowance",
|
|
336
|
+
outputs: [
|
|
337
|
+
{
|
|
338
|
+
internalType: "bool",
|
|
339
|
+
name: "",
|
|
340
|
+
type: "bool",
|
|
341
|
+
},
|
|
342
|
+
],
|
|
343
|
+
stateMutability: "nonpayable",
|
|
344
|
+
type: "function",
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
inputs: [],
|
|
348
|
+
name: "lendingPool",
|
|
349
|
+
outputs: [
|
|
350
|
+
{
|
|
351
|
+
internalType: "address",
|
|
352
|
+
name: "",
|
|
353
|
+
type: "address",
|
|
354
|
+
},
|
|
355
|
+
],
|
|
356
|
+
stateMutability: "view",
|
|
357
|
+
type: "function",
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
inputs: [],
|
|
361
|
+
name: "name",
|
|
362
|
+
outputs: [
|
|
363
|
+
{
|
|
364
|
+
internalType: "string",
|
|
365
|
+
name: "",
|
|
366
|
+
type: "string",
|
|
367
|
+
},
|
|
368
|
+
],
|
|
369
|
+
stateMutability: "view",
|
|
370
|
+
type: "function",
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
inputs: [],
|
|
374
|
+
name: "symbol",
|
|
375
|
+
outputs: [
|
|
376
|
+
{
|
|
377
|
+
internalType: "string",
|
|
378
|
+
name: "",
|
|
379
|
+
type: "string",
|
|
380
|
+
},
|
|
381
|
+
],
|
|
382
|
+
stateMutability: "view",
|
|
383
|
+
type: "function",
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
inputs: [],
|
|
387
|
+
name: "totalSupply",
|
|
388
|
+
outputs: [
|
|
389
|
+
{
|
|
390
|
+
internalType: "uint256",
|
|
391
|
+
name: "",
|
|
392
|
+
type: "uint256",
|
|
393
|
+
},
|
|
394
|
+
],
|
|
395
|
+
stateMutability: "view",
|
|
396
|
+
type: "function",
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
inputs: [
|
|
400
|
+
{
|
|
401
|
+
internalType: "address",
|
|
402
|
+
name: "to",
|
|
403
|
+
type: "address",
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
internalType: "uint256",
|
|
407
|
+
name: "amount",
|
|
408
|
+
type: "uint256",
|
|
409
|
+
},
|
|
410
|
+
],
|
|
411
|
+
name: "transfer",
|
|
412
|
+
outputs: [
|
|
413
|
+
{
|
|
414
|
+
internalType: "bool",
|
|
415
|
+
name: "",
|
|
416
|
+
type: "bool",
|
|
417
|
+
},
|
|
418
|
+
],
|
|
419
|
+
stateMutability: "nonpayable",
|
|
420
|
+
type: "function",
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
inputs: [
|
|
424
|
+
{
|
|
425
|
+
internalType: "address",
|
|
426
|
+
name: "from",
|
|
427
|
+
type: "address",
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
internalType: "address",
|
|
431
|
+
name: "to",
|
|
432
|
+
type: "address",
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
internalType: "uint256",
|
|
436
|
+
name: "amount",
|
|
437
|
+
type: "uint256",
|
|
438
|
+
},
|
|
439
|
+
],
|
|
440
|
+
name: "transferFrom",
|
|
441
|
+
outputs: [
|
|
442
|
+
{
|
|
443
|
+
internalType: "bool",
|
|
444
|
+
name: "",
|
|
445
|
+
type: "bool",
|
|
446
|
+
},
|
|
447
|
+
],
|
|
448
|
+
stateMutability: "nonpayable",
|
|
449
|
+
type: "function",
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
inputs: [],
|
|
453
|
+
name: "underlying",
|
|
454
|
+
outputs: [
|
|
455
|
+
{
|
|
456
|
+
internalType: "address",
|
|
457
|
+
name: "",
|
|
458
|
+
type: "address",
|
|
459
|
+
},
|
|
460
|
+
],
|
|
461
|
+
stateMutability: "view",
|
|
462
|
+
type: "function",
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
inputs: [
|
|
466
|
+
{
|
|
467
|
+
internalType: "uint256",
|
|
468
|
+
name: "shares",
|
|
469
|
+
type: "uint256",
|
|
470
|
+
},
|
|
471
|
+
],
|
|
472
|
+
name: "withdraw",
|
|
473
|
+
outputs: [
|
|
474
|
+
{
|
|
475
|
+
internalType: "uint256",
|
|
476
|
+
name: "assets",
|
|
477
|
+
type: "uint256",
|
|
478
|
+
},
|
|
479
|
+
],
|
|
480
|
+
stateMutability: "nonpayable",
|
|
481
|
+
type: "function",
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
inputs: [
|
|
485
|
+
{
|
|
486
|
+
internalType: "uint256",
|
|
487
|
+
name: "shares",
|
|
488
|
+
type: "uint256",
|
|
489
|
+
},
|
|
490
|
+
],
|
|
491
|
+
name: "withdrawUnderlying",
|
|
492
|
+
outputs: [
|
|
493
|
+
{
|
|
494
|
+
internalType: "uint256",
|
|
495
|
+
name: "assets",
|
|
496
|
+
type: "uint256",
|
|
497
|
+
},
|
|
498
|
+
],
|
|
499
|
+
stateMutability: "nonpayable",
|
|
500
|
+
type: "function",
|
|
501
|
+
},
|
|
502
|
+
];
|
|
503
|
+
const _bytecode = "0x6101206040523480156200001257600080fd5b5060405162002104380380620021048339810160408190526200003591620004ec565b6001600160a01b0381166200005a5760405180602001604052806000815250620000e5565b806001600160a01b03166306fdde036040518163ffffffff1660e01b8152600401600060405180830381865afa15801562000099573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620000c391908101906200054f565b604051602001620000d5919062000607565b6040516020818303038152906040525b6001600160a01b0382166200010a576040518060200160405280600081525062000195565b816001600160a01b03166395d89b416040518163ffffffff1660e01b8152600401600060405180830381865afa15801562000149573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200017391908101906200054f565b60405160200162000185919062000639565b6040516020818303038152906040525b6003620001a38382620006f2565b506004620001b28282620006f2565b50505080620001c781620003b460201b60201c565b6001600160a01b0382166080819052604080516358b50cef60e11b8152905163b16a19de916004808201926020929091908290030181865afa15801562000212573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002389190620004ec565b6001600160a01b031660a0816001600160a01b0316815250506080516001600160a01b0316637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000292573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b89190620004ec565b6001600160a01b0390811660c081905260a05160405163d15e005360e01b8152921660048301529063d15e005390602401602060405180830381865afa15801562000307573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032d9190620007be565b60e081815250506080516001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000375573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039b9190620007d8565b60ff1661010052620003ac620003df565b5050620007fd565b6001600160a01b038116620003dc57604051635919af9760e11b815260040160405180910390fd5b50565b6200040a60c05160001960a0516001600160a01b03166200040c60201b62000aea179092919060201c565b565b620004218363095ea7b360e01b84846200047f565b6200047a576200043c8363095ea7b360e01b8460006200047f565b15806200045b5750620004598363095ea7b360e01b84846200047f565b155b156200047a5760405163019be9a960e41b815260040160405180910390fd5b505050565b60006040518481528360048201528260248201526020600060448360008a5af19150508015620004ce573d8015620004c457600160005114601f3d11169150620004cc565b6000863b1191505b505b949350505050565b6001600160a01b0381168114620003dc57600080fd5b600060208284031215620004ff57600080fd5b81516200050c81620004d6565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620005465781810151838201526020016200052c565b50506000910152565b6000602082840312156200056257600080fd5b81516001600160401b03808211156200057a57600080fd5b818401915084601f8301126200058f57600080fd5b815181811115620005a457620005a462000513565b604051601f8201601f19908116603f01168101908382118183101715620005cf57620005cf62000513565b81604052828152876020848701011115620005e957600080fd5b620005fc83602083016020880162000529565b979650505050505050565b6702bb930b83832b2160c51b8152600082516200062c81600885016020870162000529565b9190910160080192915050565b607760f81b8152600082516200065781600185016020870162000529565b9190910160010192915050565b600181811c908216806200067957607f821691505b6020821081036200069a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200047a57600081815260208120601f850160051c81016020861015620006c95750805b601f850160051c820191505b81811015620006ea57828155600101620006d5565b505050505050565b81516001600160401b038111156200070e576200070e62000513565b62000726816200071f845462000664565b84620006a0565b602080601f8311600181146200075e5760008415620007455750858301515b600019600386901b1c1916600185901b178555620006ea565b600085815260208120601f198616915b828110156200078f578886015182559484019460019091019084016200076e565b5085821015620007ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007d157600080fd5b5051919050565b600060208284031215620007eb57600080fd5b815160ff811681146200050c57600080fd5b60805160a05160c05160e051610100516118756200088f600039600061020801526000610755015260008181610329015281816104f60152818161077701528181610a7d0152611268015260008181610265015281816104be0152818161072a015281816109dc01528181610a4101526112460152600081816102ef015281816105d2015261093401526118756000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c80636f307dc3116100cd578063a59a997311610081578063b6b55f2511610066578063b6b55f251461035e578063b9f5be4114610371578063dd62ed3e1461038457600080fd5b8063a59a997314610324578063a9059cbb1461034b57600080fd5b806395d89b41116100b257806395d89b41146102e2578063a0c1f15e146102ea578063a457c2d71461031157600080fd5b80636f307dc31461026057806370a08231146102ac57600080fd5b80632e1a7d4d11610124578063395093511161010957806339509351146102325780633af9e669146102455780633ba0b9a91461025857600080fd5b80632e1a7d4d146101ee578063313ce5671461020157600080fd5b80631071a290116101555780631071a290146101b257806318160ddd146101d357806323b872dd146101db57600080fd5b806306fdde0314610171578063095ea7b31461018f575b600080fd5b6101796103ca565b60405161018691906115ba565b60405180910390f35b6101a261019d36600461164f565b61045c565b6040519015158152602001610186565b6101c56101c0366004611679565b610476565b604051908152602001610186565b6002546101c5565b6101a26101e9366004611692565b61056b565b6101c56101fc366004611679565b61058f565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610186565b6101a261024036600461164f565b610654565b6101c56102533660046116ce565b6106a0565b6101c56106ed565b6102877f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b6101c56102ba3660046116ce565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610179610803565b6102877f000000000000000000000000000000000000000000000000000000000000000081565b6101a261031f36600461164f565b610812565b6102877f000000000000000000000000000000000000000000000000000000000000000081565b6101a261035936600461164f565b6108e8565b6101c561036c366004611679565b6108f6565b6101c561037f366004611679565b6109c0565b6101c56103923660046116f0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6060600380546103d990611723565b80601f016020809104026020016040519081016040528092919081815260200182805461040590611723565b80156104525780601f1061042757610100808354040283529160200191610452565b820191906000526020600020905b81548152906001019060200180831161043557829003601f168201915b5050505050905090565b60003361046a818585610bb8565b60019150505b92915050565b600061048182610d6b565b6040517f69328dec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018390523360448301529192507f0000000000000000000000000000000000000000000000000000000000000000909116906369328dec906064016020604051808303816000875af1158015610541573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105659190611770565b50919050565b600033610579858285610ddf565b610584858585610eb6565b506001949350505050565b600061059a82610d6b565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290529091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a9059cbb906044016020604051808303816000875af1158015610630573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105659190611789565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061046a908290869061069b9087906117da565b610bb8565b6000670de0b6b3a76400006106b36106ed565b73ffffffffffffffffffffffffffffffffffffffff84166000908152602081905260409020546106e391906117ed565b6104709190611804565b6040517fd15e005300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301526000917f0000000000000000000000000000000000000000000000000000000000000000917f0000000000000000000000000000000000000000000000000000000000000000169063d15e005390602401602060405180830381865afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e29190611770565b6107f490670de0b6b3a76400006117ed565b6107fe9190611804565b905090565b6060600480546103d990611723565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156108db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6105848286868403610bb8565b60003361046a818585610eb6565b6040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018290526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906323b872dd906064016020604051808303816000875af1158015610992573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b69190611789565b5061047082611125565b6000610a0473ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001633308561118f565b6040517fe8eda9df00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116600483015260248201849052306044830152600060648301527f0000000000000000000000000000000000000000000000000000000000000000169063e8eda9df90608401600060405180830381600087803b158015610ac157600080fd5b505af1158015610ad5573d6000803e3d6000fd5b50505050610ae161122c565b61047082611125565b610b16837f095ea7b30000000000000000000000000000000000000000000000000000000084846112af565b610bb357610b47837f095ea7b3000000000000000000000000000000000000000000000000000000008460006112af565b1580610b7c5750610b7a837f095ea7b30000000000000000000000000000000000000000000000000000000084846112af565b155b15610bb3576040517f19be9a9000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108d2565b73ffffffffffffffffffffffffffffffffffffffff8216610cfd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000670de0b6b3a7640000610d7e6106ed565b610d8890846117ed565b610d929190611804565b9050610d9e3383611303565b604080518281526020810184905233917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b56891015b60405180910390a2919050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb05781811015610ea3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108d2565b610eb08484848403610bb8565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610f59576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016108d2565b73ffffffffffffffffffffffffffffffffffffffff8216610ffc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156110b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016108d2565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610eb0565b600061112f6106ed565b611141670de0b6b3a7640000846117ed565b61114b9190611804565b905061115733826114c7565b604080518381526020810183905233917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159101610dd2565b60006323b872dd60e01b905060006040518281528560048201528460248201528360448201526020600060648360008b5af191505080156111ed573d80156111e357600160005114601f3d111691506111eb565b6000873b1191505b505b80611224576040517ff405907100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050505050565b6112ad73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610aea565b565b60006040518481528360048201528260248201526020600060448360008a5af191505080156112fb573d80156112f157600160005114601f3d111691506112f9565b6000863b1191505b505b949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602081905260409020548181101561145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016108d2565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8216611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108d2565b806002600082825461155691906117da565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600060208083528351808285015260005b818110156115e7578581018301518582016040015282016115cb565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461164a57600080fd5b919050565b6000806040838503121561166257600080fd5b61166b83611626565b946020939093013593505050565b60006020828403121561168b57600080fd5b5035919050565b6000806000606084860312156116a757600080fd5b6116b084611626565b92506116be60208501611626565b9150604084013590509250925092565b6000602082840312156116e057600080fd5b6116e982611626565b9392505050565b6000806040838503121561170357600080fd5b61170c83611626565b915061171a60208401611626565b90509250929050565b600181811c9082168061173757607f821691505b602082108103610565577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006020828403121561178257600080fd5b5051919050565b60006020828403121561179b57600080fd5b815180151581146116e957600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610470576104706117ab565b8082028115828204841417610470576104706117ab565b60008261183a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea2646970667358221220579832d439ee15f5c337160f606acfd0b040e1e2b8ba180208bae249c6f486bc64736f6c63430008110033";
|
|
504
|
+
const isSuperArgs = (xs) => xs.length > 1;
|
|
505
|
+
class WrappedAToken__factory extends ethers_1.ContractFactory {
|
|
506
|
+
constructor(...args) {
|
|
507
|
+
if (isSuperArgs(args)) {
|
|
508
|
+
super(...args);
|
|
509
|
+
}
|
|
510
|
+
else {
|
|
511
|
+
super(_abi, _bytecode, args[0]);
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
deploy(_aToken, overrides) {
|
|
515
|
+
return super.deploy(_aToken, overrides || {});
|
|
516
|
+
}
|
|
517
|
+
getDeployTransaction(_aToken, overrides) {
|
|
518
|
+
return super.getDeployTransaction(_aToken, overrides || {});
|
|
519
|
+
}
|
|
520
|
+
attach(address) {
|
|
521
|
+
return super.attach(address);
|
|
522
|
+
}
|
|
523
|
+
connect(signer) {
|
|
524
|
+
return super.connect(signer);
|
|
525
|
+
}
|
|
526
|
+
static bytecode = _bytecode;
|
|
527
|
+
static abi = _abi;
|
|
528
|
+
static createInterface() {
|
|
529
|
+
return new ethers_1.utils.Interface(_abi);
|
|
530
|
+
}
|
|
531
|
+
static connect(address, signerOrProvider) {
|
|
532
|
+
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
exports.WrappedAToken__factory = WrappedAToken__factory;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WrappedAToken__factory = exports.IWrappedATokenEvents__factory = void 0;
|
|
4
|
+
/* Autogenerated file. Do not edit manually. */
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
var IWrappedATokenEvents__factory_1 = require("./IWrappedATokenEvents__factory");
|
|
8
|
+
Object.defineProperty(exports, "IWrappedATokenEvents__factory", { enumerable: true, get: function () { return IWrappedATokenEvents__factory_1.IWrappedATokenEvents__factory; } });
|
|
9
|
+
var WrappedAToken__factory_1 = require("./WrappedAToken__factory");
|
|
10
|
+
Object.defineProperty(exports, "WrappedAToken__factory", { enumerable: true, get: function () { return WrappedAToken__factory_1.WrappedAToken__factory; } });
|