@gearbox-protocol/sdk 3.0.0-next.2 → 3.0.0-next.21
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/IAirdropDistributor.sol +55 -0
- package/contracts/IDegenDistributor.sol +28 -0
- package/contracts/IOffchainOracle.sol +17 -0
- package/contracts/IRouter.sol +100 -0
- package/contracts/IWETHGateway.sol +33 -0
- package/contracts/IwstETHGateway.sol +24 -0
- package/contracts/index.sol +48 -0
- package/lib/apy/convexAPY.d.ts +1 -1
- package/lib/apy/convexAPY.js +8 -9
- package/lib/apy/curveAPY.js +2 -1
- package/lib/apy/index.d.ts +2 -2
- package/lib/apy/yearnAPY.js +1 -1
- package/lib/config.d.ts +0 -1
- package/lib/config.js +1 -2
- package/lib/core/assets.d.ts +4 -4
- package/lib/core/assets.js +28 -17
- package/lib/core/creditAccount.d.ts +57 -25
- package/lib/core/creditAccount.js +164 -79
- package/lib/core/creditAccount.spec.js +564 -8
- package/lib/core/creditManager.d.ts +30 -32
- package/lib/core/creditManager.js +129 -123
- 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 +33 -33
- package/lib/core/pool/data.d.ts +20 -11
- package/lib/core/pool/data.js +110 -45
- 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/strategy.js +2 -2
- package/lib/core/trade.d.ts +5 -23
- package/lib/core/trade.js +4 -61
- package/lib/core/transactions.d.ts +15 -1
- package/lib/core/transactions.js +48 -13
- package/lib/index.d.ts +10 -9
- package/lib/index.js +11 -35
- package/lib/parsers/ERC20Parser.js +2 -2
- package/lib/parsers/abstractParser.js +1 -2
- package/lib/parsers/creditFacadeParser.d.ts +2 -1
- package/lib/parsers/creditFacadeParser.js +15 -4
- package/lib/parsers/creditFacadeParser.spec.js +3 -4
- package/lib/parsers/creditManagerParser.js +3 -3
- package/lib/parsers/curveAdapterParser.js +7 -3
- 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 +6 -10
- package/lib/parsers/txParser.js +2 -23
- package/lib/parsers/uniV2AdapterParser.js +2 -2
- package/lib/parsers/uniV3AdapterParser.js +3 -3
- package/lib/parsers/wstETHAdapterParser.js +2 -2
- package/lib/pathfinder/core.d.ts +4 -4
- 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 +11 -10
- package/lib/payload/creditAccount.d.ts +5 -3
- package/lib/payload/creditManager.d.ts +7 -6
- package/lib/payload/pool.d.ts +9 -2
- 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/Errors.d.ts +298 -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/IAirdropDistributor.sol/IAirdropDistributor.d.ts +124 -0
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +73 -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.sol/IConvexV1BoosterAdapter.d.ts +205 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.d.ts +43 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/index.d.ts +2 -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/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.d.ts +716 -0
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.d.ts +275 -0
- package/lib/types/ICreditConfiguratorV3.sol/index.d.ts +2 -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 +138 -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 +572 -0
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +168 -0
- package/lib/types/ICreditFacadeV3.sol/index.d.ts +2 -0
- package/lib/types/ICreditFacadeV3Multicall.d.ts +269 -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 +947 -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 +511 -0
- package/lib/types/IDataCompressorV3_00.d.ts +533 -0
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.d.ts +96 -0
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +53 -0
- package/lib/types/IERC20.d.ts +142 -0
- package/lib/types/IERC20Metadata.d.ts +166 -0
- package/lib/types/IERC20Permit.d.ts +74 -0
- package/lib/types/IERC4626.d.ts +394 -0
- package/lib/types/IInterestRateModel.d.ts +50 -0
- package/lib/types/ILidoV1Adapter.d.ts +158 -0
- package/lib/types/IOffchainOracle.d.ts +58 -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/IPoolV3.d.ts +936 -0
- package/lib/types/IPoolV3.sol/IPoolV3Events.d.ts +158 -0
- package/lib/types/IPoolV3.sol/index.d.ts +2 -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/IWERC20Zapper.d.ts +166 -0
- package/lib/types/IWETH.d.ts +197 -0
- package/lib/types/IWETHGateway.d.ts +90 -0
- package/lib/types/IWETHZapper.d.ts +162 -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/IZapper.d.ts +130 -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/IwstETHGateway.sol/IwstETHGateWay.d.ts +70 -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/common.d.ts +1 -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/Errors__factory.d.ts +351 -0
- package/lib/types/factories/Errors__factory.js +471 -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/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +63 -0
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +119 -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.sol/IConvexV1BoosterAdapterEvents__factory.d.ts +23 -0
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.js +38 -0
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.d.ts +181 -0
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.js +245 -0
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.d.ts +2 -0
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.js +10 -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/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.d.ts +273 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.js +357 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.d.ts +605 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.js +785 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/index.d.ts +2 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/index.js +10 -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 +81 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.js +114 -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 +188 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +244 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +617 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js +800 -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 +200 -0
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +267 -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 +1015 -0
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.js +1331 -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 +1222 -0
- package/lib/types/factories/IDataCompressorV2_10__factory.js +1565 -0
- package/lib/types/factories/IDataCompressorV3_00__factory.d.ts +1398 -0
- package/lib/types/factories/IDataCompressorV3_00__factory.js +1788 -0
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +38 -0
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +84 -0
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.js +117 -0
- package/lib/types/factories/IERC20Metadata__factory.d.ts +178 -0
- package/lib/types/factories/IERC20Metadata__factory.js +241 -0
- package/lib/types/factories/IERC20Permit__factory.d.ts +66 -0
- package/lib/types/factories/IERC20Permit__factory.js +94 -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/ILidoV1Adapter__factory.d.ts +140 -0
- package/lib/types/factories/ILidoV1Adapter__factory.js +191 -0
- package/lib/types/factories/IOffchainOracle__factory.d.ts +48 -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/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 +1068 -0
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.js +1402 -0
- package/lib/types/factories/IPoolV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IPoolV3.sol/index.js +10 -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/IWERC20Zapper__factory.d.ts +176 -0
- package/lib/types/factories/IWERC20Zapper__factory.js +240 -0
- package/lib/types/factories/IWETHGateway__factory.d.ts +58 -0
- package/lib/types/factories/IWETHZapper__factory.d.ts +168 -0
- package/lib/types/factories/IWETHZapper__factory.js +230 -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/IZapper__factory.d.ts +136 -0
- package/lib/types/factories/IZapper__factory.js +187 -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/IwstETHGateway.sol/IwstETHGateWay__factory.d.ts +48 -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/index.d.ts +61 -4
- package/lib/types/factories/index.js +100 -5
- package/lib/types/index.d.ts +220 -300
- package/lib/types/index.js +152 -273
- package/lib/utils/formatter.d.ts +0 -4
- package/lib/utils/formatter.js +2 -75
- package/lib/utils/math.d.ts +2 -0
- package/lib/utils/math.js +2 -0
- package/lib/utils/types.d.ts +5 -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 +18 -7
- 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/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/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/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/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.d.ts +0 -3
- 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/IAirdropDistributor__factory.d.ts +0 -35
- 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/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/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/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/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/ILidoV1AdapterExceptions__factory.js +0 -24
- 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/ILidoV1Adapter.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.js +0 -12
- 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/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 → AddressProvider.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/index.js → Balances.sol/BalanceOps.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8 → Balances.sol}/index.js +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface.js → Claimable.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface.js → Errors.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/{@chainlink/contracts/src/v0.8/interfaces → IAddressProvider.sol}/index.js +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.js → IAddressProviderV3.sol/IAddressProviderV3.js} +0 -0
- /package/lib/types/{@chainlink/index.js → IAddressProviderV3.sol/IAddressProviderV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts → IAddressProviderV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol → IAirdropDistributor.sol}/IAirdropDistributor.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol → IAirdropDistributor.sol}/IAirdropDistributorEvents.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol → IAirdropDistributor.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol → IAirdropDistributor.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/IACL.sol/IACL.js → IConvexV1BaseRewardPoolAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol → IConvexV1BoosterAdapter.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → ICreditConfiguratorV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.js → ICreditConfiguratorV3.sol/ICreditConfiguratorV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister.js → ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol → ICreditConfiguratorV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents.js → ICreditFacadeV2.sol/ICreditFacadeV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions.js → ICreditFacadeV2.sol/ICreditFacadeV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount.js → ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.js → ICreditFacadeV2.sol/ICreditFacadeV2Extended.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator.js → ICreditFacadeV2.sol/ICreditFacadeV2V2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol → ICreditFacadeV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents.js → ICreditFacadeV3.sol/ICreditFacadeV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions.js → ICreditFacadeV3.sol/ICreditFacadeV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol → ICreditFacadeV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade.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/ICreditManagerV2.sol → ICreditManagerV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents.js → ICreditManagerV3.sol/ICreditManagerV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions.js → ICreditManagerV3.sol/ICreditManagerV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.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/IDegenDistributor.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/IDegenNFT.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/IDieselToken.sol → ICurvePool_4.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended.js → ICurveV1Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor.js → ICurveV1_2AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions.js → ICurveV1_3AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor.js → ICurveV1_4AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents.js → IDaiLikePermit.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT.js → IDataCompressorV2_10.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents.js → IDataCompressorV3_00.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions.js → IDegenDistributor.sol/IDegenDistributor.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken.js → IDegenDistributor.sol/IDegenDistributorEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol → IDegenDistributor.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol → IDegenDistributor.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions.js → IERC20.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel.js → IERC20Metadata.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed.js → IERC20Permit.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents.js → IERC4626.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions.js → IInterestRateModel.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter.js → ILidoV1Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20.js → IOffchainOracle.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolService.js → IPermit2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents.js → IPoolService.sol/IPoolService.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.js → 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/IPriceOracle.sol → IPoolService.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType.js → IPoolV3.sol/IPoolV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2.js → IPoolV3.sol/IPoolV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/V1 → IPoolV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events.js → IPriceOracleBase.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions.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/IPriceOracleV2Ext.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/adapters/IAdapter.sol → 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/IUniversalAdapter.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/IVersion.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 → IUniswapV3Adapter.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway.js → IVersion.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter.js → IWERC20Zapper.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/V1/ICreditManager.js → IWETHGateway.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions.js → IWETHZapper.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter.js → IWithdrawalManagerV3.sol/IWithdrawalManagerV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions.js → IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/external → 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/core-v2/contracts/interfaces/index.js → IZapper.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/pool → 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/test → IwstETH.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol → IwstETHGateway.sol}/IwstETHGateWay.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol → IwstETHGateway.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/test/interfaces → IwstETHGateway.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/pool/PoolService.js → Ownable.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite.js → SafeERC20.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/core-v2/contracts/interfaces/IAirdropDistributor.sol → IAirdropDistributor.sol}/IAirdropDistributorEvents__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol → IAirdropDistributor.sol}/IAirdropDistributor__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol → IAirdropDistributor.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol → IAirdropDistributor.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/IDegenDistributor.sol → IDegenDistributor.sol}/IDegenDistributorEvents__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol → IDegenDistributor.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol → IDegenDistributor.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/{contracts/support/IOffchainOracle__factory.js → IOffchainOracle__factory.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/core-v2/contracts/interfaces/IWETHGateway__factory.js → IWETHGateway__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/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol → IwstETHGateway.sol}/IwstETHGateWay__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol → IwstETHGateway.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol → IwstETHGateway.sol}/index.js +0 -0
- /package/lib/{types/@gearbox-protocol/core-v2/index.js → utils/types.js} +0 -0
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import type { BaseContract, BigNumber, BigNumberish, Signer, utils } from "ethers";
|
|
2
|
+
import type { EventFragment } from "@ethersproject/abi";
|
|
3
|
+
import type { Listener, Provider } from "@ethersproject/providers";
|
|
4
|
+
import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "../common";
|
|
5
|
+
export interface IPoolV3EventsInterface extends utils.Interface {
|
|
6
|
+
functions: {};
|
|
7
|
+
events: {
|
|
8
|
+
"AddCreditManager(address)": EventFragment;
|
|
9
|
+
"Borrow(address,address,uint256)": EventFragment;
|
|
10
|
+
"IncurUncoveredLoss(address,uint256)": EventFragment;
|
|
11
|
+
"Refer(address,uint256,uint256)": EventFragment;
|
|
12
|
+
"Repay(address,uint256,uint256,uint256)": EventFragment;
|
|
13
|
+
"SetCreditManagerDebtLimit(address,uint256)": EventFragment;
|
|
14
|
+
"SetInterestRateModel(address)": EventFragment;
|
|
15
|
+
"SetPoolQuotaKeeper(address)": EventFragment;
|
|
16
|
+
"SetTotalDebtLimit(uint256)": EventFragment;
|
|
17
|
+
"SetWithdrawFee(uint256)": EventFragment;
|
|
18
|
+
};
|
|
19
|
+
getEvent(nameOrSignatureOrTopic: "AddCreditManager"): EventFragment;
|
|
20
|
+
getEvent(nameOrSignatureOrTopic: "Borrow"): EventFragment;
|
|
21
|
+
getEvent(nameOrSignatureOrTopic: "IncurUncoveredLoss"): EventFragment;
|
|
22
|
+
getEvent(nameOrSignatureOrTopic: "Refer"): EventFragment;
|
|
23
|
+
getEvent(nameOrSignatureOrTopic: "Repay"): EventFragment;
|
|
24
|
+
getEvent(nameOrSignatureOrTopic: "SetCreditManagerDebtLimit"): EventFragment;
|
|
25
|
+
getEvent(nameOrSignatureOrTopic: "SetInterestRateModel"): EventFragment;
|
|
26
|
+
getEvent(nameOrSignatureOrTopic: "SetPoolQuotaKeeper"): EventFragment;
|
|
27
|
+
getEvent(nameOrSignatureOrTopic: "SetTotalDebtLimit"): EventFragment;
|
|
28
|
+
getEvent(nameOrSignatureOrTopic: "SetWithdrawFee"): EventFragment;
|
|
29
|
+
}
|
|
30
|
+
export interface AddCreditManagerEventObject {
|
|
31
|
+
creditManager: string;
|
|
32
|
+
}
|
|
33
|
+
export type AddCreditManagerEvent = TypedEvent<[
|
|
34
|
+
string
|
|
35
|
+
], AddCreditManagerEventObject>;
|
|
36
|
+
export type AddCreditManagerEventFilter = TypedEventFilter<AddCreditManagerEvent>;
|
|
37
|
+
export interface BorrowEventObject {
|
|
38
|
+
creditManager: string;
|
|
39
|
+
creditAccount: string;
|
|
40
|
+
amount: BigNumber;
|
|
41
|
+
}
|
|
42
|
+
export type BorrowEvent = TypedEvent<[
|
|
43
|
+
string,
|
|
44
|
+
string,
|
|
45
|
+
BigNumber
|
|
46
|
+
], BorrowEventObject>;
|
|
47
|
+
export type BorrowEventFilter = TypedEventFilter<BorrowEvent>;
|
|
48
|
+
export interface IncurUncoveredLossEventObject {
|
|
49
|
+
creditManager: string;
|
|
50
|
+
loss: BigNumber;
|
|
51
|
+
}
|
|
52
|
+
export type IncurUncoveredLossEvent = TypedEvent<[
|
|
53
|
+
string,
|
|
54
|
+
BigNumber
|
|
55
|
+
], IncurUncoveredLossEventObject>;
|
|
56
|
+
export type IncurUncoveredLossEventFilter = TypedEventFilter<IncurUncoveredLossEvent>;
|
|
57
|
+
export interface ReferEventObject {
|
|
58
|
+
onBehalfOf: string;
|
|
59
|
+
referralCode: BigNumber;
|
|
60
|
+
amount: BigNumber;
|
|
61
|
+
}
|
|
62
|
+
export type ReferEvent = TypedEvent<[
|
|
63
|
+
string,
|
|
64
|
+
BigNumber,
|
|
65
|
+
BigNumber
|
|
66
|
+
], ReferEventObject>;
|
|
67
|
+
export type ReferEventFilter = TypedEventFilter<ReferEvent>;
|
|
68
|
+
export interface RepayEventObject {
|
|
69
|
+
creditManager: string;
|
|
70
|
+
borrowedAmount: BigNumber;
|
|
71
|
+
profit: BigNumber;
|
|
72
|
+
loss: BigNumber;
|
|
73
|
+
}
|
|
74
|
+
export type RepayEvent = TypedEvent<[
|
|
75
|
+
string,
|
|
76
|
+
BigNumber,
|
|
77
|
+
BigNumber,
|
|
78
|
+
BigNumber
|
|
79
|
+
], RepayEventObject>;
|
|
80
|
+
export type RepayEventFilter = TypedEventFilter<RepayEvent>;
|
|
81
|
+
export interface SetCreditManagerDebtLimitEventObject {
|
|
82
|
+
creditManager: string;
|
|
83
|
+
newLimit: BigNumber;
|
|
84
|
+
}
|
|
85
|
+
export type SetCreditManagerDebtLimitEvent = TypedEvent<[
|
|
86
|
+
string,
|
|
87
|
+
BigNumber
|
|
88
|
+
], SetCreditManagerDebtLimitEventObject>;
|
|
89
|
+
export type SetCreditManagerDebtLimitEventFilter = TypedEventFilter<SetCreditManagerDebtLimitEvent>;
|
|
90
|
+
export interface SetInterestRateModelEventObject {
|
|
91
|
+
newInterestRateModel: string;
|
|
92
|
+
}
|
|
93
|
+
export type SetInterestRateModelEvent = TypedEvent<[
|
|
94
|
+
string
|
|
95
|
+
], SetInterestRateModelEventObject>;
|
|
96
|
+
export type SetInterestRateModelEventFilter = TypedEventFilter<SetInterestRateModelEvent>;
|
|
97
|
+
export interface SetPoolQuotaKeeperEventObject {
|
|
98
|
+
newPoolQuotaKeeper: string;
|
|
99
|
+
}
|
|
100
|
+
export type SetPoolQuotaKeeperEvent = TypedEvent<[
|
|
101
|
+
string
|
|
102
|
+
], SetPoolQuotaKeeperEventObject>;
|
|
103
|
+
export type SetPoolQuotaKeeperEventFilter = TypedEventFilter<SetPoolQuotaKeeperEvent>;
|
|
104
|
+
export interface SetTotalDebtLimitEventObject {
|
|
105
|
+
limit: BigNumber;
|
|
106
|
+
}
|
|
107
|
+
export type SetTotalDebtLimitEvent = TypedEvent<[
|
|
108
|
+
BigNumber
|
|
109
|
+
], SetTotalDebtLimitEventObject>;
|
|
110
|
+
export type SetTotalDebtLimitEventFilter = TypedEventFilter<SetTotalDebtLimitEvent>;
|
|
111
|
+
export interface SetWithdrawFeeEventObject {
|
|
112
|
+
fee: BigNumber;
|
|
113
|
+
}
|
|
114
|
+
export type SetWithdrawFeeEvent = TypedEvent<[
|
|
115
|
+
BigNumber
|
|
116
|
+
], SetWithdrawFeeEventObject>;
|
|
117
|
+
export type SetWithdrawFeeEventFilter = TypedEventFilter<SetWithdrawFeeEvent>;
|
|
118
|
+
export interface IPoolV3Events extends BaseContract {
|
|
119
|
+
connect(signerOrProvider: Signer | Provider | string): this;
|
|
120
|
+
attach(addressOrName: string): this;
|
|
121
|
+
deployed(): Promise<this>;
|
|
122
|
+
interface: IPoolV3EventsInterface;
|
|
123
|
+
queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
|
|
124
|
+
listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
|
|
125
|
+
listeners(eventName?: string): Array<Listener>;
|
|
126
|
+
removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
|
|
127
|
+
removeAllListeners(eventName?: string): this;
|
|
128
|
+
off: OnEvent<this>;
|
|
129
|
+
on: OnEvent<this>;
|
|
130
|
+
once: OnEvent<this>;
|
|
131
|
+
removeListener: OnEvent<this>;
|
|
132
|
+
functions: {};
|
|
133
|
+
callStatic: {};
|
|
134
|
+
filters: {
|
|
135
|
+
"AddCreditManager(address)"(creditManager?: PromiseOrValue<string> | null): AddCreditManagerEventFilter;
|
|
136
|
+
AddCreditManager(creditManager?: PromiseOrValue<string> | null): AddCreditManagerEventFilter;
|
|
137
|
+
"Borrow(address,address,uint256)"(creditManager?: PromiseOrValue<string> | null, creditAccount?: PromiseOrValue<string> | null, amount?: null): BorrowEventFilter;
|
|
138
|
+
Borrow(creditManager?: PromiseOrValue<string> | null, creditAccount?: PromiseOrValue<string> | null, amount?: null): BorrowEventFilter;
|
|
139
|
+
"IncurUncoveredLoss(address,uint256)"(creditManager?: PromiseOrValue<string> | null, loss?: null): IncurUncoveredLossEventFilter;
|
|
140
|
+
IncurUncoveredLoss(creditManager?: PromiseOrValue<string> | null, loss?: null): IncurUncoveredLossEventFilter;
|
|
141
|
+
"Refer(address,uint256,uint256)"(onBehalfOf?: PromiseOrValue<string> | null, referralCode?: PromiseOrValue<BigNumberish> | null, amount?: null): ReferEventFilter;
|
|
142
|
+
Refer(onBehalfOf?: PromiseOrValue<string> | null, referralCode?: PromiseOrValue<BigNumberish> | null, amount?: null): ReferEventFilter;
|
|
143
|
+
"Repay(address,uint256,uint256,uint256)"(creditManager?: PromiseOrValue<string> | null, borrowedAmount?: null, profit?: null, loss?: null): RepayEventFilter;
|
|
144
|
+
Repay(creditManager?: PromiseOrValue<string> | null, borrowedAmount?: null, profit?: null, loss?: null): RepayEventFilter;
|
|
145
|
+
"SetCreditManagerDebtLimit(address,uint256)"(creditManager?: PromiseOrValue<string> | null, newLimit?: null): SetCreditManagerDebtLimitEventFilter;
|
|
146
|
+
SetCreditManagerDebtLimit(creditManager?: PromiseOrValue<string> | null, newLimit?: null): SetCreditManagerDebtLimitEventFilter;
|
|
147
|
+
"SetInterestRateModel(address)"(newInterestRateModel?: PromiseOrValue<string> | null): SetInterestRateModelEventFilter;
|
|
148
|
+
SetInterestRateModel(newInterestRateModel?: PromiseOrValue<string> | null): SetInterestRateModelEventFilter;
|
|
149
|
+
"SetPoolQuotaKeeper(address)"(newPoolQuotaKeeper?: PromiseOrValue<string> | null): SetPoolQuotaKeeperEventFilter;
|
|
150
|
+
SetPoolQuotaKeeper(newPoolQuotaKeeper?: PromiseOrValue<string> | null): SetPoolQuotaKeeperEventFilter;
|
|
151
|
+
"SetTotalDebtLimit(uint256)"(limit?: null): SetTotalDebtLimitEventFilter;
|
|
152
|
+
SetTotalDebtLimit(limit?: null): SetTotalDebtLimitEventFilter;
|
|
153
|
+
"SetWithdrawFee(uint256)"(fee?: null): SetWithdrawFeeEventFilter;
|
|
154
|
+
SetWithdrawFee(fee?: null): SetWithdrawFeeEventFilter;
|
|
155
|
+
};
|
|
156
|
+
estimateGas: {};
|
|
157
|
+
populateTransaction: {};
|
|
158
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, PopulatedTransaction, Signer, utils } from "ethers";
|
|
2
|
+
import type { FunctionFragment, Result } from "@ethersproject/abi";
|
|
3
|
+
import type { Listener, Provider } from "@ethersproject/providers";
|
|
4
|
+
import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "./common";
|
|
5
|
+
export interface IPriceOracleBaseInterface extends utils.Interface {
|
|
6
|
+
functions: {
|
|
7
|
+
"convert(uint256,address,address)": FunctionFragment;
|
|
8
|
+
"convertFromUSD(uint256,address)": FunctionFragment;
|
|
9
|
+
"convertToUSD(uint256,address)": FunctionFragment;
|
|
10
|
+
"getPrice(address)": FunctionFragment;
|
|
11
|
+
"priceFeeds(address)": FunctionFragment;
|
|
12
|
+
"version()": FunctionFragment;
|
|
13
|
+
};
|
|
14
|
+
getFunction(nameOrSignatureOrTopic: "convert" | "convertFromUSD" | "convertToUSD" | "getPrice" | "priceFeeds" | "version"): FunctionFragment;
|
|
15
|
+
encodeFunctionData(functionFragment: "convert", values: [
|
|
16
|
+
PromiseOrValue<BigNumberish>,
|
|
17
|
+
PromiseOrValue<string>,
|
|
18
|
+
PromiseOrValue<string>
|
|
19
|
+
]): string;
|
|
20
|
+
encodeFunctionData(functionFragment: "convertFromUSD", values: [PromiseOrValue<BigNumberish>, PromiseOrValue<string>]): string;
|
|
21
|
+
encodeFunctionData(functionFragment: "convertToUSD", values: [PromiseOrValue<BigNumberish>, PromiseOrValue<string>]): string;
|
|
22
|
+
encodeFunctionData(functionFragment: "getPrice", values: [PromiseOrValue<string>]): string;
|
|
23
|
+
encodeFunctionData(functionFragment: "priceFeeds", values: [PromiseOrValue<string>]): string;
|
|
24
|
+
encodeFunctionData(functionFragment: "version", values?: undefined): string;
|
|
25
|
+
decodeFunctionResult(functionFragment: "convert", data: BytesLike): Result;
|
|
26
|
+
decodeFunctionResult(functionFragment: "convertFromUSD", data: BytesLike): Result;
|
|
27
|
+
decodeFunctionResult(functionFragment: "convertToUSD", data: BytesLike): Result;
|
|
28
|
+
decodeFunctionResult(functionFragment: "getPrice", data: BytesLike): Result;
|
|
29
|
+
decodeFunctionResult(functionFragment: "priceFeeds", data: BytesLike): Result;
|
|
30
|
+
decodeFunctionResult(functionFragment: "version", data: BytesLike): Result;
|
|
31
|
+
events: {};
|
|
32
|
+
}
|
|
33
|
+
export interface IPriceOracleBase extends BaseContract {
|
|
34
|
+
connect(signerOrProvider: Signer | Provider | string): this;
|
|
35
|
+
attach(addressOrName: string): this;
|
|
36
|
+
deployed(): Promise<this>;
|
|
37
|
+
interface: IPriceOracleBaseInterface;
|
|
38
|
+
queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
|
|
39
|
+
listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
|
|
40
|
+
listeners(eventName?: string): Array<Listener>;
|
|
41
|
+
removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
|
|
42
|
+
removeAllListeners(eventName?: string): this;
|
|
43
|
+
off: OnEvent<this>;
|
|
44
|
+
on: OnEvent<this>;
|
|
45
|
+
once: OnEvent<this>;
|
|
46
|
+
removeListener: OnEvent<this>;
|
|
47
|
+
functions: {
|
|
48
|
+
convert(amount: PromiseOrValue<BigNumberish>, tokenFrom: PromiseOrValue<string>, tokenTo: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
49
|
+
convertFromUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
50
|
+
convertToUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
51
|
+
getPrice(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
52
|
+
priceFeeds(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[string] & {
|
|
53
|
+
priceFeed: string;
|
|
54
|
+
}>;
|
|
55
|
+
version(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
56
|
+
};
|
|
57
|
+
convert(amount: PromiseOrValue<BigNumberish>, tokenFrom: PromiseOrValue<string>, tokenTo: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
58
|
+
convertFromUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
59
|
+
convertToUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
60
|
+
getPrice(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
61
|
+
priceFeeds(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
|
|
62
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
63
|
+
callStatic: {
|
|
64
|
+
convert(amount: PromiseOrValue<BigNumberish>, tokenFrom: PromiseOrValue<string>, tokenTo: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
65
|
+
convertFromUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
66
|
+
convertToUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
67
|
+
getPrice(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
68
|
+
priceFeeds(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
|
|
69
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
70
|
+
};
|
|
71
|
+
filters: {};
|
|
72
|
+
estimateGas: {
|
|
73
|
+
convert(amount: PromiseOrValue<BigNumberish>, tokenFrom: PromiseOrValue<string>, tokenTo: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
74
|
+
convertFromUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
75
|
+
convertToUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
76
|
+
getPrice(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
77
|
+
priceFeeds(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
78
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
79
|
+
};
|
|
80
|
+
populateTransaction: {
|
|
81
|
+
convert(amount: PromiseOrValue<BigNumberish>, tokenFrom: PromiseOrValue<string>, tokenTo: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
82
|
+
convertFromUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
83
|
+
convertToUSD(amount: PromiseOrValue<BigNumberish>, token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
84
|
+
getPrice(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
85
|
+
priceFeeds(token: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
86
|
+
version(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
87
|
+
};
|
|
88
|
+
}
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, ContractTransaction, Overrides, PopulatedTransaction, Signer, utils } from "ethers";
|
|
2
|
+
import type { FunctionFragment, Result, EventFragment } from "@ethersproject/abi";
|
|
3
|
+
import type { Listener, Provider } from "@ethersproject/providers";
|
|
4
|
+
import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "./common";
|
|
5
|
+
export type SwapTaskStruct = {
|
|
6
|
+
swapOperation: PromiseOrValue<BigNumberish>;
|
|
7
|
+
creditAccount: PromiseOrValue<string>;
|
|
8
|
+
tokenIn: PromiseOrValue<string>;
|
|
9
|
+
tokenOut: PromiseOrValue<string>;
|
|
10
|
+
connectors: PromiseOrValue<string>[];
|
|
11
|
+
amount: PromiseOrValue<BigNumberish>;
|
|
12
|
+
slippage: PromiseOrValue<BigNumberish>;
|
|
13
|
+
externalSlippage: PromiseOrValue<boolean>;
|
|
14
|
+
};
|
|
15
|
+
export type SwapTaskStructOutput = [
|
|
16
|
+
number,
|
|
17
|
+
string,
|
|
18
|
+
string,
|
|
19
|
+
string,
|
|
20
|
+
string[],
|
|
21
|
+
BigNumber,
|
|
22
|
+
BigNumber,
|
|
23
|
+
boolean
|
|
24
|
+
] & {
|
|
25
|
+
swapOperation: number;
|
|
26
|
+
creditAccount: string;
|
|
27
|
+
tokenIn: string;
|
|
28
|
+
tokenOut: string;
|
|
29
|
+
connectors: string[];
|
|
30
|
+
amount: BigNumber;
|
|
31
|
+
slippage: BigNumber;
|
|
32
|
+
externalSlippage: boolean;
|
|
33
|
+
};
|
|
34
|
+
export type MultiCallStruct = {
|
|
35
|
+
target: PromiseOrValue<string>;
|
|
36
|
+
callData: PromiseOrValue<BytesLike>;
|
|
37
|
+
};
|
|
38
|
+
export type MultiCallStructOutput = [string, string] & {
|
|
39
|
+
target: string;
|
|
40
|
+
callData: string;
|
|
41
|
+
};
|
|
42
|
+
export type RouterResultStruct = {
|
|
43
|
+
amount: PromiseOrValue<BigNumberish>;
|
|
44
|
+
gasUsage: PromiseOrValue<BigNumberish>;
|
|
45
|
+
calls: MultiCallStruct[];
|
|
46
|
+
};
|
|
47
|
+
export type RouterResultStructOutput = [
|
|
48
|
+
BigNumber,
|
|
49
|
+
BigNumber,
|
|
50
|
+
MultiCallStructOutput[]
|
|
51
|
+
] & {
|
|
52
|
+
amount: BigNumber;
|
|
53
|
+
gasUsage: BigNumber;
|
|
54
|
+
calls: MultiCallStructOutput[];
|
|
55
|
+
};
|
|
56
|
+
export type PathOptionStruct = {
|
|
57
|
+
target: PromiseOrValue<string>;
|
|
58
|
+
option: PromiseOrValue<BigNumberish>;
|
|
59
|
+
totalOptions: PromiseOrValue<BigNumberish>;
|
|
60
|
+
};
|
|
61
|
+
export type PathOptionStructOutput = [string, number, number] & {
|
|
62
|
+
target: string;
|
|
63
|
+
option: number;
|
|
64
|
+
totalOptions: number;
|
|
65
|
+
};
|
|
66
|
+
export type BalanceStruct = {
|
|
67
|
+
token: PromiseOrValue<string>;
|
|
68
|
+
balance: PromiseOrValue<BigNumberish>;
|
|
69
|
+
};
|
|
70
|
+
export type BalanceStructOutput = [string, BigNumber] & {
|
|
71
|
+
token: string;
|
|
72
|
+
balance: BigNumber;
|
|
73
|
+
};
|
|
74
|
+
export interface IRouterInterface extends utils.Interface {
|
|
75
|
+
functions: {
|
|
76
|
+
"componentAddressById(uint8)": FunctionFragment;
|
|
77
|
+
"findAllSwaps((uint8,address,address,address,address[],uint256,uint256,bool))": FunctionFragment;
|
|
78
|
+
"findBestClosePath(address,address[],uint256,(address,uint8,uint8)[],uint256,bool)": FunctionFragment;
|
|
79
|
+
"findOneTokenPath(address,uint256,address,address,address[],uint256)": FunctionFragment;
|
|
80
|
+
"findOpenStrategyPath(address,(address,uint256)[],address,address[],uint256)": FunctionFragment;
|
|
81
|
+
"isRouterConfigurator(address)": FunctionFragment;
|
|
82
|
+
"tokenTypes(address)": FunctionFragment;
|
|
83
|
+
"version()": FunctionFragment;
|
|
84
|
+
};
|
|
85
|
+
getFunction(nameOrSignatureOrTopic: "componentAddressById" | "findAllSwaps" | "findBestClosePath" | "findOneTokenPath" | "findOpenStrategyPath" | "isRouterConfigurator" | "tokenTypes" | "version"): FunctionFragment;
|
|
86
|
+
encodeFunctionData(functionFragment: "componentAddressById", values: [PromiseOrValue<BigNumberish>]): string;
|
|
87
|
+
encodeFunctionData(functionFragment: "findAllSwaps", values: [SwapTaskStruct]): string;
|
|
88
|
+
encodeFunctionData(functionFragment: "findBestClosePath", values: [
|
|
89
|
+
PromiseOrValue<string>,
|
|
90
|
+
PromiseOrValue<string>[],
|
|
91
|
+
PromiseOrValue<BigNumberish>,
|
|
92
|
+
PathOptionStruct[],
|
|
93
|
+
PromiseOrValue<BigNumberish>,
|
|
94
|
+
PromiseOrValue<boolean>
|
|
95
|
+
]): string;
|
|
96
|
+
encodeFunctionData(functionFragment: "findOneTokenPath", values: [
|
|
97
|
+
PromiseOrValue<string>,
|
|
98
|
+
PromiseOrValue<BigNumberish>,
|
|
99
|
+
PromiseOrValue<string>,
|
|
100
|
+
PromiseOrValue<string>,
|
|
101
|
+
PromiseOrValue<string>[],
|
|
102
|
+
PromiseOrValue<BigNumberish>
|
|
103
|
+
]): string;
|
|
104
|
+
encodeFunctionData(functionFragment: "findOpenStrategyPath", values: [
|
|
105
|
+
PromiseOrValue<string>,
|
|
106
|
+
BalanceStruct[],
|
|
107
|
+
PromiseOrValue<string>,
|
|
108
|
+
PromiseOrValue<string>[],
|
|
109
|
+
PromiseOrValue<BigNumberish>
|
|
110
|
+
]): string;
|
|
111
|
+
encodeFunctionData(functionFragment: "isRouterConfigurator", values: [PromiseOrValue<string>]): string;
|
|
112
|
+
encodeFunctionData(functionFragment: "tokenTypes", values: [PromiseOrValue<string>]): string;
|
|
113
|
+
encodeFunctionData(functionFragment: "version", values?: undefined): string;
|
|
114
|
+
decodeFunctionResult(functionFragment: "componentAddressById", data: BytesLike): Result;
|
|
115
|
+
decodeFunctionResult(functionFragment: "findAllSwaps", data: BytesLike): Result;
|
|
116
|
+
decodeFunctionResult(functionFragment: "findBestClosePath", data: BytesLike): Result;
|
|
117
|
+
decodeFunctionResult(functionFragment: "findOneTokenPath", data: BytesLike): Result;
|
|
118
|
+
decodeFunctionResult(functionFragment: "findOpenStrategyPath", data: BytesLike): Result;
|
|
119
|
+
decodeFunctionResult(functionFragment: "isRouterConfigurator", data: BytesLike): Result;
|
|
120
|
+
decodeFunctionResult(functionFragment: "tokenTypes", data: BytesLike): Result;
|
|
121
|
+
decodeFunctionResult(functionFragment: "version", data: BytesLike): Result;
|
|
122
|
+
events: {
|
|
123
|
+
"ResolverUpdate(uint8,uint8,uint8)": EventFragment;
|
|
124
|
+
"RouterComponentUpdate(uint8,address)": EventFragment;
|
|
125
|
+
"TokenTypeUpdate(address,uint8)": EventFragment;
|
|
126
|
+
};
|
|
127
|
+
getEvent(nameOrSignatureOrTopic: "ResolverUpdate"): EventFragment;
|
|
128
|
+
getEvent(nameOrSignatureOrTopic: "RouterComponentUpdate"): EventFragment;
|
|
129
|
+
getEvent(nameOrSignatureOrTopic: "TokenTypeUpdate"): EventFragment;
|
|
130
|
+
}
|
|
131
|
+
export interface ResolverUpdateEventObject {
|
|
132
|
+
ttIn: number;
|
|
133
|
+
ttOut: number;
|
|
134
|
+
rc: number;
|
|
135
|
+
}
|
|
136
|
+
export type ResolverUpdateEvent = TypedEvent<[
|
|
137
|
+
number,
|
|
138
|
+
number,
|
|
139
|
+
number
|
|
140
|
+
], ResolverUpdateEventObject>;
|
|
141
|
+
export type ResolverUpdateEventFilter = TypedEventFilter<ResolverUpdateEvent>;
|
|
142
|
+
export interface RouterComponentUpdateEventObject {
|
|
143
|
+
arg0: number;
|
|
144
|
+
arg1: string;
|
|
145
|
+
}
|
|
146
|
+
export type RouterComponentUpdateEvent = TypedEvent<[
|
|
147
|
+
number,
|
|
148
|
+
string
|
|
149
|
+
], RouterComponentUpdateEventObject>;
|
|
150
|
+
export type RouterComponentUpdateEventFilter = TypedEventFilter<RouterComponentUpdateEvent>;
|
|
151
|
+
export interface TokenTypeUpdateEventObject {
|
|
152
|
+
tokenAddress: string;
|
|
153
|
+
tt: number;
|
|
154
|
+
}
|
|
155
|
+
export type TokenTypeUpdateEvent = TypedEvent<[
|
|
156
|
+
string,
|
|
157
|
+
number
|
|
158
|
+
], TokenTypeUpdateEventObject>;
|
|
159
|
+
export type TokenTypeUpdateEventFilter = TypedEventFilter<TokenTypeUpdateEvent>;
|
|
160
|
+
export interface IRouter extends BaseContract {
|
|
161
|
+
connect(signerOrProvider: Signer | Provider | string): this;
|
|
162
|
+
attach(addressOrName: string): this;
|
|
163
|
+
deployed(): Promise<this>;
|
|
164
|
+
interface: IRouterInterface;
|
|
165
|
+
queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
|
|
166
|
+
listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
|
|
167
|
+
listeners(eventName?: string): Array<Listener>;
|
|
168
|
+
removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
|
|
169
|
+
removeAllListeners(eventName?: string): this;
|
|
170
|
+
off: OnEvent<this>;
|
|
171
|
+
on: OnEvent<this>;
|
|
172
|
+
once: OnEvent<this>;
|
|
173
|
+
removeListener: OnEvent<this>;
|
|
174
|
+
functions: {
|
|
175
|
+
componentAddressById(arg0: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<[string]>;
|
|
176
|
+
findAllSwaps(swapTask: SwapTaskStruct, overrides?: Overrides & {
|
|
177
|
+
from?: PromiseOrValue<string>;
|
|
178
|
+
}): Promise<ContractTransaction>;
|
|
179
|
+
findBestClosePath(creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, pathOptions: PathOptionStruct[], iterations: PromiseOrValue<BigNumberish>, force: PromiseOrValue<boolean>, overrides?: Overrides & {
|
|
180
|
+
from?: PromiseOrValue<string>;
|
|
181
|
+
}): Promise<ContractTransaction>;
|
|
182
|
+
findOneTokenPath(tokenIn: PromiseOrValue<string>, amount: PromiseOrValue<BigNumberish>, tokenOut: PromiseOrValue<string>, creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: Overrides & {
|
|
183
|
+
from?: PromiseOrValue<string>;
|
|
184
|
+
}): Promise<ContractTransaction>;
|
|
185
|
+
findOpenStrategyPath(creditManager: PromiseOrValue<string>, balances: BalanceStruct[], target: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: Overrides & {
|
|
186
|
+
from?: PromiseOrValue<string>;
|
|
187
|
+
}): Promise<ContractTransaction>;
|
|
188
|
+
isRouterConfigurator(account: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[boolean]>;
|
|
189
|
+
tokenTypes(arg0: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[number]>;
|
|
190
|
+
version(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
191
|
+
};
|
|
192
|
+
componentAddressById(arg0: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<string>;
|
|
193
|
+
findAllSwaps(swapTask: SwapTaskStruct, overrides?: Overrides & {
|
|
194
|
+
from?: PromiseOrValue<string>;
|
|
195
|
+
}): Promise<ContractTransaction>;
|
|
196
|
+
findBestClosePath(creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, pathOptions: PathOptionStruct[], iterations: PromiseOrValue<BigNumberish>, force: PromiseOrValue<boolean>, overrides?: Overrides & {
|
|
197
|
+
from?: PromiseOrValue<string>;
|
|
198
|
+
}): Promise<ContractTransaction>;
|
|
199
|
+
findOneTokenPath(tokenIn: PromiseOrValue<string>, amount: PromiseOrValue<BigNumberish>, tokenOut: PromiseOrValue<string>, creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: Overrides & {
|
|
200
|
+
from?: PromiseOrValue<string>;
|
|
201
|
+
}): Promise<ContractTransaction>;
|
|
202
|
+
findOpenStrategyPath(creditManager: PromiseOrValue<string>, balances: BalanceStruct[], target: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: Overrides & {
|
|
203
|
+
from?: PromiseOrValue<string>;
|
|
204
|
+
}): Promise<ContractTransaction>;
|
|
205
|
+
isRouterConfigurator(account: PromiseOrValue<string>, overrides?: CallOverrides): Promise<boolean>;
|
|
206
|
+
tokenTypes(arg0: PromiseOrValue<string>, overrides?: CallOverrides): Promise<number>;
|
|
207
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
208
|
+
callStatic: {
|
|
209
|
+
componentAddressById(arg0: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<string>;
|
|
210
|
+
findAllSwaps(swapTask: SwapTaskStruct, overrides?: CallOverrides): Promise<RouterResultStructOutput[]>;
|
|
211
|
+
findBestClosePath(creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, pathOptions: PathOptionStruct[], iterations: PromiseOrValue<BigNumberish>, force: PromiseOrValue<boolean>, overrides?: CallOverrides): Promise<[
|
|
212
|
+
RouterResultStructOutput,
|
|
213
|
+
BigNumber
|
|
214
|
+
] & {
|
|
215
|
+
result: RouterResultStructOutput;
|
|
216
|
+
gasPriceTargetRAY: BigNumber;
|
|
217
|
+
}>;
|
|
218
|
+
findOneTokenPath(tokenIn: PromiseOrValue<string>, amount: PromiseOrValue<BigNumberish>, tokenOut: PromiseOrValue<string>, creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<RouterResultStructOutput>;
|
|
219
|
+
findOpenStrategyPath(creditManager: PromiseOrValue<string>, balances: BalanceStruct[], target: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<[BalanceStructOutput[], RouterResultStructOutput]>;
|
|
220
|
+
isRouterConfigurator(account: PromiseOrValue<string>, overrides?: CallOverrides): Promise<boolean>;
|
|
221
|
+
tokenTypes(arg0: PromiseOrValue<string>, overrides?: CallOverrides): Promise<number>;
|
|
222
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
223
|
+
};
|
|
224
|
+
filters: {
|
|
225
|
+
"ResolverUpdate(uint8,uint8,uint8)"(ttIn?: PromiseOrValue<BigNumberish> | null, ttOut?: PromiseOrValue<BigNumberish> | null, rc?: PromiseOrValue<BigNumberish> | null): ResolverUpdateEventFilter;
|
|
226
|
+
ResolverUpdate(ttIn?: PromiseOrValue<BigNumberish> | null, ttOut?: PromiseOrValue<BigNumberish> | null, rc?: PromiseOrValue<BigNumberish> | null): ResolverUpdateEventFilter;
|
|
227
|
+
"RouterComponentUpdate(uint8,address)"(arg0?: PromiseOrValue<BigNumberish> | null, arg1?: PromiseOrValue<string> | null): RouterComponentUpdateEventFilter;
|
|
228
|
+
RouterComponentUpdate(arg0?: PromiseOrValue<BigNumberish> | null, arg1?: PromiseOrValue<string> | null): RouterComponentUpdateEventFilter;
|
|
229
|
+
"TokenTypeUpdate(address,uint8)"(tokenAddress?: PromiseOrValue<string> | null, tt?: PromiseOrValue<BigNumberish> | null): TokenTypeUpdateEventFilter;
|
|
230
|
+
TokenTypeUpdate(tokenAddress?: PromiseOrValue<string> | null, tt?: PromiseOrValue<BigNumberish> | null): TokenTypeUpdateEventFilter;
|
|
231
|
+
};
|
|
232
|
+
estimateGas: {
|
|
233
|
+
componentAddressById(arg0: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
234
|
+
findAllSwaps(swapTask: SwapTaskStruct, overrides?: Overrides & {
|
|
235
|
+
from?: PromiseOrValue<string>;
|
|
236
|
+
}): Promise<BigNumber>;
|
|
237
|
+
findBestClosePath(creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, pathOptions: PathOptionStruct[], iterations: PromiseOrValue<BigNumberish>, force: PromiseOrValue<boolean>, overrides?: Overrides & {
|
|
238
|
+
from?: PromiseOrValue<string>;
|
|
239
|
+
}): Promise<BigNumber>;
|
|
240
|
+
findOneTokenPath(tokenIn: PromiseOrValue<string>, amount: PromiseOrValue<BigNumberish>, tokenOut: PromiseOrValue<string>, creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: Overrides & {
|
|
241
|
+
from?: PromiseOrValue<string>;
|
|
242
|
+
}): Promise<BigNumber>;
|
|
243
|
+
findOpenStrategyPath(creditManager: PromiseOrValue<string>, balances: BalanceStruct[], target: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: Overrides & {
|
|
244
|
+
from?: PromiseOrValue<string>;
|
|
245
|
+
}): Promise<BigNumber>;
|
|
246
|
+
isRouterConfigurator(account: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
247
|
+
tokenTypes(arg0: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
248
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
249
|
+
};
|
|
250
|
+
populateTransaction: {
|
|
251
|
+
componentAddressById(arg0: PromiseOrValue<BigNumberish>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
252
|
+
findAllSwaps(swapTask: SwapTaskStruct, overrides?: Overrides & {
|
|
253
|
+
from?: PromiseOrValue<string>;
|
|
254
|
+
}): Promise<PopulatedTransaction>;
|
|
255
|
+
findBestClosePath(creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, pathOptions: PathOptionStruct[], iterations: PromiseOrValue<BigNumberish>, force: PromiseOrValue<boolean>, overrides?: Overrides & {
|
|
256
|
+
from?: PromiseOrValue<string>;
|
|
257
|
+
}): Promise<PopulatedTransaction>;
|
|
258
|
+
findOneTokenPath(tokenIn: PromiseOrValue<string>, amount: PromiseOrValue<BigNumberish>, tokenOut: PromiseOrValue<string>, creditAccount: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: Overrides & {
|
|
259
|
+
from?: PromiseOrValue<string>;
|
|
260
|
+
}): Promise<PopulatedTransaction>;
|
|
261
|
+
findOpenStrategyPath(creditManager: PromiseOrValue<string>, balances: BalanceStruct[], target: PromiseOrValue<string>, connectors: PromiseOrValue<string>[], slippage: PromiseOrValue<BigNumberish>, overrides?: Overrides & {
|
|
262
|
+
from?: PromiseOrValue<string>;
|
|
263
|
+
}): Promise<PopulatedTransaction>;
|
|
264
|
+
isRouterConfigurator(account: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
265
|
+
tokenTypes(arg0: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
266
|
+
version(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
267
|
+
};
|
|
268
|
+
}
|