@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,59 @@
|
|
|
1
|
+
import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, ContractTransaction, Overrides, 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 IDaiLikePermitInterface extends utils.Interface {
|
|
6
|
+
functions: {
|
|
7
|
+
"permit(address,address,uint256,uint256,bool,uint8,bytes32,bytes32)": FunctionFragment;
|
|
8
|
+
};
|
|
9
|
+
getFunction(nameOrSignatureOrTopic: "permit"): FunctionFragment;
|
|
10
|
+
encodeFunctionData(functionFragment: "permit", values: [
|
|
11
|
+
PromiseOrValue<string>,
|
|
12
|
+
PromiseOrValue<string>,
|
|
13
|
+
PromiseOrValue<BigNumberish>,
|
|
14
|
+
PromiseOrValue<BigNumberish>,
|
|
15
|
+
PromiseOrValue<boolean>,
|
|
16
|
+
PromiseOrValue<BigNumberish>,
|
|
17
|
+
PromiseOrValue<BytesLike>,
|
|
18
|
+
PromiseOrValue<BytesLike>
|
|
19
|
+
]): string;
|
|
20
|
+
decodeFunctionResult(functionFragment: "permit", data: BytesLike): Result;
|
|
21
|
+
events: {};
|
|
22
|
+
}
|
|
23
|
+
export interface IDaiLikePermit extends BaseContract {
|
|
24
|
+
connect(signerOrProvider: Signer | Provider | string): this;
|
|
25
|
+
attach(addressOrName: string): this;
|
|
26
|
+
deployed(): Promise<this>;
|
|
27
|
+
interface: IDaiLikePermitInterface;
|
|
28
|
+
queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
|
|
29
|
+
listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
|
|
30
|
+
listeners(eventName?: string): Array<Listener>;
|
|
31
|
+
removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
|
|
32
|
+
removeAllListeners(eventName?: string): this;
|
|
33
|
+
off: OnEvent<this>;
|
|
34
|
+
on: OnEvent<this>;
|
|
35
|
+
once: OnEvent<this>;
|
|
36
|
+
removeListener: OnEvent<this>;
|
|
37
|
+
functions: {
|
|
38
|
+
permit(holder: PromiseOrValue<string>, spender: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, expiry: PromiseOrValue<BigNumberish>, allowed: PromiseOrValue<boolean>, v: PromiseOrValue<BigNumberish>, r: PromiseOrValue<BytesLike>, s: PromiseOrValue<BytesLike>, overrides?: Overrides & {
|
|
39
|
+
from?: PromiseOrValue<string>;
|
|
40
|
+
}): Promise<ContractTransaction>;
|
|
41
|
+
};
|
|
42
|
+
permit(holder: PromiseOrValue<string>, spender: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, expiry: PromiseOrValue<BigNumberish>, allowed: PromiseOrValue<boolean>, v: PromiseOrValue<BigNumberish>, r: PromiseOrValue<BytesLike>, s: PromiseOrValue<BytesLike>, overrides?: Overrides & {
|
|
43
|
+
from?: PromiseOrValue<string>;
|
|
44
|
+
}): Promise<ContractTransaction>;
|
|
45
|
+
callStatic: {
|
|
46
|
+
permit(holder: PromiseOrValue<string>, spender: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, expiry: PromiseOrValue<BigNumberish>, allowed: PromiseOrValue<boolean>, v: PromiseOrValue<BigNumberish>, r: PromiseOrValue<BytesLike>, s: PromiseOrValue<BytesLike>, overrides?: CallOverrides): Promise<void>;
|
|
47
|
+
};
|
|
48
|
+
filters: {};
|
|
49
|
+
estimateGas: {
|
|
50
|
+
permit(holder: PromiseOrValue<string>, spender: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, expiry: PromiseOrValue<BigNumberish>, allowed: PromiseOrValue<boolean>, v: PromiseOrValue<BigNumberish>, r: PromiseOrValue<BytesLike>, s: PromiseOrValue<BytesLike>, overrides?: Overrides & {
|
|
51
|
+
from?: PromiseOrValue<string>;
|
|
52
|
+
}): Promise<BigNumber>;
|
|
53
|
+
};
|
|
54
|
+
populateTransaction: {
|
|
55
|
+
permit(holder: PromiseOrValue<string>, spender: PromiseOrValue<string>, nonce: PromiseOrValue<BigNumberish>, expiry: PromiseOrValue<BigNumberish>, allowed: PromiseOrValue<boolean>, v: PromiseOrValue<BigNumberish>, r: PromiseOrValue<BytesLike>, s: PromiseOrValue<BytesLike>, overrides?: Overrides & {
|
|
56
|
+
from?: PromiseOrValue<string>;
|
|
57
|
+
}): Promise<PopulatedTransaction>;
|
|
58
|
+
};
|
|
59
|
+
}
|
|
@@ -0,0 +1,511 @@
|
|
|
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 type TokenBalanceStruct = {
|
|
6
|
+
token: PromiseOrValue<string>;
|
|
7
|
+
balance: PromiseOrValue<BigNumberish>;
|
|
8
|
+
isForbidden: PromiseOrValue<boolean>;
|
|
9
|
+
isEnabled: PromiseOrValue<boolean>;
|
|
10
|
+
isQuoted: PromiseOrValue<boolean>;
|
|
11
|
+
quota: PromiseOrValue<BigNumberish>;
|
|
12
|
+
quotaRate: PromiseOrValue<BigNumberish>;
|
|
13
|
+
};
|
|
14
|
+
export type TokenBalanceStructOutput = [
|
|
15
|
+
string,
|
|
16
|
+
BigNumber,
|
|
17
|
+
boolean,
|
|
18
|
+
boolean,
|
|
19
|
+
boolean,
|
|
20
|
+
BigNumber,
|
|
21
|
+
number
|
|
22
|
+
] & {
|
|
23
|
+
token: string;
|
|
24
|
+
balance: BigNumber;
|
|
25
|
+
isForbidden: boolean;
|
|
26
|
+
isEnabled: boolean;
|
|
27
|
+
isQuoted: boolean;
|
|
28
|
+
quota: BigNumber;
|
|
29
|
+
quotaRate: number;
|
|
30
|
+
};
|
|
31
|
+
export type ScheduledWithdrawalStruct = {
|
|
32
|
+
tokenIndex: PromiseOrValue<BigNumberish>;
|
|
33
|
+
maturity: PromiseOrValue<BigNumberish>;
|
|
34
|
+
token: PromiseOrValue<string>;
|
|
35
|
+
amount: PromiseOrValue<BigNumberish>;
|
|
36
|
+
};
|
|
37
|
+
export type ScheduledWithdrawalStructOutput = [
|
|
38
|
+
number,
|
|
39
|
+
number,
|
|
40
|
+
string,
|
|
41
|
+
BigNumber
|
|
42
|
+
] & {
|
|
43
|
+
tokenIndex: number;
|
|
44
|
+
maturity: number;
|
|
45
|
+
token: string;
|
|
46
|
+
amount: BigNumber;
|
|
47
|
+
};
|
|
48
|
+
export type CreditAccountDataStruct = {
|
|
49
|
+
isSuccessful: PromiseOrValue<boolean>;
|
|
50
|
+
priceFeedsNeeded: PromiseOrValue<string>[];
|
|
51
|
+
addr: PromiseOrValue<string>;
|
|
52
|
+
borrower: PromiseOrValue<string>;
|
|
53
|
+
creditManager: PromiseOrValue<string>;
|
|
54
|
+
cmDescription: PromiseOrValue<string>;
|
|
55
|
+
creditFacade: PromiseOrValue<string>;
|
|
56
|
+
underlying: PromiseOrValue<string>;
|
|
57
|
+
debt: PromiseOrValue<BigNumberish>;
|
|
58
|
+
cumulativeIndexNow: PromiseOrValue<BigNumberish>;
|
|
59
|
+
cumulativeIndexLastUpdate: PromiseOrValue<BigNumberish>;
|
|
60
|
+
cumulativeQuotaInterest: PromiseOrValue<BigNumberish>;
|
|
61
|
+
accruedInterest: PromiseOrValue<BigNumberish>;
|
|
62
|
+
accruedFees: PromiseOrValue<BigNumberish>;
|
|
63
|
+
totalDebtUSD: PromiseOrValue<BigNumberish>;
|
|
64
|
+
totalValue: PromiseOrValue<BigNumberish>;
|
|
65
|
+
totalValueUSD: PromiseOrValue<BigNumberish>;
|
|
66
|
+
twvUSD: PromiseOrValue<BigNumberish>;
|
|
67
|
+
enabledTokensMask: PromiseOrValue<BigNumberish>;
|
|
68
|
+
healthFactor: PromiseOrValue<BigNumberish>;
|
|
69
|
+
baseBorrowRate: PromiseOrValue<BigNumberish>;
|
|
70
|
+
aggregatedBorrowRate: PromiseOrValue<BigNumberish>;
|
|
71
|
+
balances: TokenBalanceStruct[];
|
|
72
|
+
since: PromiseOrValue<BigNumberish>;
|
|
73
|
+
cfVersion: PromiseOrValue<BigNumberish>;
|
|
74
|
+
expirationDate: PromiseOrValue<BigNumberish>;
|
|
75
|
+
activeBots: PromiseOrValue<string>[];
|
|
76
|
+
maxApprovedBots: PromiseOrValue<BigNumberish>;
|
|
77
|
+
schedultedWithdrawals: [ScheduledWithdrawalStruct, ScheduledWithdrawalStruct];
|
|
78
|
+
};
|
|
79
|
+
export type CreditAccountDataStructOutput = [
|
|
80
|
+
boolean,
|
|
81
|
+
string[],
|
|
82
|
+
string,
|
|
83
|
+
string,
|
|
84
|
+
string,
|
|
85
|
+
string,
|
|
86
|
+
string,
|
|
87
|
+
string,
|
|
88
|
+
BigNumber,
|
|
89
|
+
BigNumber,
|
|
90
|
+
BigNumber,
|
|
91
|
+
BigNumber,
|
|
92
|
+
BigNumber,
|
|
93
|
+
BigNumber,
|
|
94
|
+
BigNumber,
|
|
95
|
+
BigNumber,
|
|
96
|
+
BigNumber,
|
|
97
|
+
BigNumber,
|
|
98
|
+
BigNumber,
|
|
99
|
+
BigNumber,
|
|
100
|
+
BigNumber,
|
|
101
|
+
BigNumber,
|
|
102
|
+
TokenBalanceStructOutput[],
|
|
103
|
+
BigNumber,
|
|
104
|
+
BigNumber,
|
|
105
|
+
number,
|
|
106
|
+
string[],
|
|
107
|
+
BigNumber,
|
|
108
|
+
[
|
|
109
|
+
ScheduledWithdrawalStructOutput,
|
|
110
|
+
ScheduledWithdrawalStructOutput
|
|
111
|
+
]
|
|
112
|
+
] & {
|
|
113
|
+
isSuccessful: boolean;
|
|
114
|
+
priceFeedsNeeded: string[];
|
|
115
|
+
addr: string;
|
|
116
|
+
borrower: string;
|
|
117
|
+
creditManager: string;
|
|
118
|
+
cmDescription: string;
|
|
119
|
+
creditFacade: string;
|
|
120
|
+
underlying: string;
|
|
121
|
+
debt: BigNumber;
|
|
122
|
+
cumulativeIndexNow: BigNumber;
|
|
123
|
+
cumulativeIndexLastUpdate: BigNumber;
|
|
124
|
+
cumulativeQuotaInterest: BigNumber;
|
|
125
|
+
accruedInterest: BigNumber;
|
|
126
|
+
accruedFees: BigNumber;
|
|
127
|
+
totalDebtUSD: BigNumber;
|
|
128
|
+
totalValue: BigNumber;
|
|
129
|
+
totalValueUSD: BigNumber;
|
|
130
|
+
twvUSD: BigNumber;
|
|
131
|
+
enabledTokensMask: BigNumber;
|
|
132
|
+
healthFactor: BigNumber;
|
|
133
|
+
baseBorrowRate: BigNumber;
|
|
134
|
+
aggregatedBorrowRate: BigNumber;
|
|
135
|
+
balances: TokenBalanceStructOutput[];
|
|
136
|
+
since: BigNumber;
|
|
137
|
+
cfVersion: BigNumber;
|
|
138
|
+
expirationDate: number;
|
|
139
|
+
activeBots: string[];
|
|
140
|
+
maxApprovedBots: BigNumber;
|
|
141
|
+
schedultedWithdrawals: [
|
|
142
|
+
ScheduledWithdrawalStructOutput,
|
|
143
|
+
ScheduledWithdrawalStructOutput
|
|
144
|
+
];
|
|
145
|
+
};
|
|
146
|
+
export type ContractAdapterStruct = {
|
|
147
|
+
targetContract: PromiseOrValue<string>;
|
|
148
|
+
adapter: PromiseOrValue<string>;
|
|
149
|
+
};
|
|
150
|
+
export type ContractAdapterStructOutput = [string, string] & {
|
|
151
|
+
targetContract: string;
|
|
152
|
+
adapter: string;
|
|
153
|
+
};
|
|
154
|
+
export type QuotaInfoStruct = {
|
|
155
|
+
token: PromiseOrValue<string>;
|
|
156
|
+
rate: PromiseOrValue<BigNumberish>;
|
|
157
|
+
quotaIncreaseFee: PromiseOrValue<BigNumberish>;
|
|
158
|
+
totalQuoted: PromiseOrValue<BigNumberish>;
|
|
159
|
+
limit: PromiseOrValue<BigNumberish>;
|
|
160
|
+
isActive: PromiseOrValue<boolean>;
|
|
161
|
+
};
|
|
162
|
+
export type QuotaInfoStructOutput = [
|
|
163
|
+
string,
|
|
164
|
+
number,
|
|
165
|
+
number,
|
|
166
|
+
BigNumber,
|
|
167
|
+
BigNumber,
|
|
168
|
+
boolean
|
|
169
|
+
] & {
|
|
170
|
+
token: string;
|
|
171
|
+
rate: number;
|
|
172
|
+
quotaIncreaseFee: number;
|
|
173
|
+
totalQuoted: BigNumber;
|
|
174
|
+
limit: BigNumber;
|
|
175
|
+
isActive: boolean;
|
|
176
|
+
};
|
|
177
|
+
export type LinearModelStruct = {
|
|
178
|
+
interestModel: PromiseOrValue<string>;
|
|
179
|
+
version: PromiseOrValue<BigNumberish>;
|
|
180
|
+
U_1: PromiseOrValue<BigNumberish>;
|
|
181
|
+
U_2: PromiseOrValue<BigNumberish>;
|
|
182
|
+
R_base: PromiseOrValue<BigNumberish>;
|
|
183
|
+
R_slope1: PromiseOrValue<BigNumberish>;
|
|
184
|
+
R_slope2: PromiseOrValue<BigNumberish>;
|
|
185
|
+
R_slope3: PromiseOrValue<BigNumberish>;
|
|
186
|
+
isBorrowingMoreU2Forbidden: PromiseOrValue<boolean>;
|
|
187
|
+
};
|
|
188
|
+
export type LinearModelStructOutput = [
|
|
189
|
+
string,
|
|
190
|
+
BigNumber,
|
|
191
|
+
number,
|
|
192
|
+
number,
|
|
193
|
+
number,
|
|
194
|
+
number,
|
|
195
|
+
number,
|
|
196
|
+
number,
|
|
197
|
+
boolean
|
|
198
|
+
] & {
|
|
199
|
+
interestModel: string;
|
|
200
|
+
version: BigNumber;
|
|
201
|
+
U_1: number;
|
|
202
|
+
U_2: number;
|
|
203
|
+
R_base: number;
|
|
204
|
+
R_slope1: number;
|
|
205
|
+
R_slope2: number;
|
|
206
|
+
R_slope3: number;
|
|
207
|
+
isBorrowingMoreU2Forbidden: boolean;
|
|
208
|
+
};
|
|
209
|
+
export type CreditManagerDataStruct = {
|
|
210
|
+
addr: PromiseOrValue<string>;
|
|
211
|
+
name: PromiseOrValue<string>;
|
|
212
|
+
cfVersion: PromiseOrValue<BigNumberish>;
|
|
213
|
+
creditFacade: PromiseOrValue<string>;
|
|
214
|
+
creditConfigurator: PromiseOrValue<string>;
|
|
215
|
+
underlying: PromiseOrValue<string>;
|
|
216
|
+
pool: PromiseOrValue<string>;
|
|
217
|
+
totalDebt: PromiseOrValue<BigNumberish>;
|
|
218
|
+
totalDebtLimit: PromiseOrValue<BigNumberish>;
|
|
219
|
+
baseBorrowRate: PromiseOrValue<BigNumberish>;
|
|
220
|
+
minDebt: PromiseOrValue<BigNumberish>;
|
|
221
|
+
maxDebt: PromiseOrValue<BigNumberish>;
|
|
222
|
+
availableToBorrow: PromiseOrValue<BigNumberish>;
|
|
223
|
+
collateralTokens: PromiseOrValue<string>[];
|
|
224
|
+
adapters: ContractAdapterStruct[];
|
|
225
|
+
liquidationThresholds: PromiseOrValue<BigNumberish>[];
|
|
226
|
+
isDegenMode: PromiseOrValue<boolean>;
|
|
227
|
+
degenNFT: PromiseOrValue<string>;
|
|
228
|
+
forbiddenTokenMask: PromiseOrValue<BigNumberish>;
|
|
229
|
+
maxEnabledTokensLength: PromiseOrValue<BigNumberish>;
|
|
230
|
+
feeInterest: PromiseOrValue<BigNumberish>;
|
|
231
|
+
feeLiquidation: PromiseOrValue<BigNumberish>;
|
|
232
|
+
liquidationDiscount: PromiseOrValue<BigNumberish>;
|
|
233
|
+
feeLiquidationExpired: PromiseOrValue<BigNumberish>;
|
|
234
|
+
liquidationDiscountExpired: PromiseOrValue<BigNumberish>;
|
|
235
|
+
quotas: QuotaInfoStruct[];
|
|
236
|
+
lirm: LinearModelStruct;
|
|
237
|
+
isPaused: PromiseOrValue<boolean>;
|
|
238
|
+
};
|
|
239
|
+
export type CreditManagerDataStructOutput = [
|
|
240
|
+
string,
|
|
241
|
+
string,
|
|
242
|
+
BigNumber,
|
|
243
|
+
string,
|
|
244
|
+
string,
|
|
245
|
+
string,
|
|
246
|
+
string,
|
|
247
|
+
BigNumber,
|
|
248
|
+
BigNumber,
|
|
249
|
+
BigNumber,
|
|
250
|
+
BigNumber,
|
|
251
|
+
BigNumber,
|
|
252
|
+
BigNumber,
|
|
253
|
+
string[],
|
|
254
|
+
ContractAdapterStructOutput[],
|
|
255
|
+
BigNumber[],
|
|
256
|
+
boolean,
|
|
257
|
+
string,
|
|
258
|
+
BigNumber,
|
|
259
|
+
number,
|
|
260
|
+
number,
|
|
261
|
+
number,
|
|
262
|
+
number,
|
|
263
|
+
number,
|
|
264
|
+
number,
|
|
265
|
+
QuotaInfoStructOutput[],
|
|
266
|
+
LinearModelStructOutput,
|
|
267
|
+
boolean
|
|
268
|
+
] & {
|
|
269
|
+
addr: string;
|
|
270
|
+
name: string;
|
|
271
|
+
cfVersion: BigNumber;
|
|
272
|
+
creditFacade: string;
|
|
273
|
+
creditConfigurator: string;
|
|
274
|
+
underlying: string;
|
|
275
|
+
pool: string;
|
|
276
|
+
totalDebt: BigNumber;
|
|
277
|
+
totalDebtLimit: BigNumber;
|
|
278
|
+
baseBorrowRate: BigNumber;
|
|
279
|
+
minDebt: BigNumber;
|
|
280
|
+
maxDebt: BigNumber;
|
|
281
|
+
availableToBorrow: BigNumber;
|
|
282
|
+
collateralTokens: string[];
|
|
283
|
+
adapters: ContractAdapterStructOutput[];
|
|
284
|
+
liquidationThresholds: BigNumber[];
|
|
285
|
+
isDegenMode: boolean;
|
|
286
|
+
degenNFT: string;
|
|
287
|
+
forbiddenTokenMask: BigNumber;
|
|
288
|
+
maxEnabledTokensLength: number;
|
|
289
|
+
feeInterest: number;
|
|
290
|
+
feeLiquidation: number;
|
|
291
|
+
liquidationDiscount: number;
|
|
292
|
+
feeLiquidationExpired: number;
|
|
293
|
+
liquidationDiscountExpired: number;
|
|
294
|
+
quotas: QuotaInfoStructOutput[];
|
|
295
|
+
lirm: LinearModelStructOutput;
|
|
296
|
+
isPaused: boolean;
|
|
297
|
+
};
|
|
298
|
+
export type CreditManagerDebtParamsStruct = {
|
|
299
|
+
creditManager: PromiseOrValue<string>;
|
|
300
|
+
borrowed: PromiseOrValue<BigNumberish>;
|
|
301
|
+
limit: PromiseOrValue<BigNumberish>;
|
|
302
|
+
availableToBorrow: PromiseOrValue<BigNumberish>;
|
|
303
|
+
};
|
|
304
|
+
export type CreditManagerDebtParamsStructOutput = [
|
|
305
|
+
string,
|
|
306
|
+
BigNumber,
|
|
307
|
+
BigNumber,
|
|
308
|
+
BigNumber
|
|
309
|
+
] & {
|
|
310
|
+
creditManager: string;
|
|
311
|
+
borrowed: BigNumber;
|
|
312
|
+
limit: BigNumber;
|
|
313
|
+
availableToBorrow: BigNumber;
|
|
314
|
+
};
|
|
315
|
+
export type ZapperInfoStruct = {
|
|
316
|
+
zapper: PromiseOrValue<string>;
|
|
317
|
+
tokenIn: PromiseOrValue<string>;
|
|
318
|
+
tokenOut: PromiseOrValue<string>;
|
|
319
|
+
};
|
|
320
|
+
export type ZapperInfoStructOutput = [string, string, string] & {
|
|
321
|
+
zapper: string;
|
|
322
|
+
tokenIn: string;
|
|
323
|
+
tokenOut: string;
|
|
324
|
+
};
|
|
325
|
+
export type PoolDataStruct = {
|
|
326
|
+
addr: PromiseOrValue<string>;
|
|
327
|
+
underlying: PromiseOrValue<string>;
|
|
328
|
+
dieselToken: PromiseOrValue<string>;
|
|
329
|
+
symbol: PromiseOrValue<string>;
|
|
330
|
+
name: PromiseOrValue<string>;
|
|
331
|
+
linearCumulativeIndex: PromiseOrValue<BigNumberish>;
|
|
332
|
+
availableLiquidity: PromiseOrValue<BigNumberish>;
|
|
333
|
+
expectedLiquidity: PromiseOrValue<BigNumberish>;
|
|
334
|
+
totalBorrowed: PromiseOrValue<BigNumberish>;
|
|
335
|
+
totalDebtLimit: PromiseOrValue<BigNumberish>;
|
|
336
|
+
creditManagerDebtParams: CreditManagerDebtParamsStruct[];
|
|
337
|
+
totalAssets: PromiseOrValue<BigNumberish>;
|
|
338
|
+
totalSupply: PromiseOrValue<BigNumberish>;
|
|
339
|
+
supplyRate: PromiseOrValue<BigNumberish>;
|
|
340
|
+
baseInterestRate: PromiseOrValue<BigNumberish>;
|
|
341
|
+
dieselRate_RAY: PromiseOrValue<BigNumberish>;
|
|
342
|
+
withdrawFee: PromiseOrValue<BigNumberish>;
|
|
343
|
+
cumulativeIndex_RAY: PromiseOrValue<BigNumberish>;
|
|
344
|
+
baseInterestIndexLU: PromiseOrValue<BigNumberish>;
|
|
345
|
+
version: PromiseOrValue<BigNumberish>;
|
|
346
|
+
poolQuotaKeeper: PromiseOrValue<string>;
|
|
347
|
+
gauge: PromiseOrValue<string>;
|
|
348
|
+
quotas: QuotaInfoStruct[];
|
|
349
|
+
zappers: ZapperInfoStruct[];
|
|
350
|
+
lirm: LinearModelStruct;
|
|
351
|
+
isPaused: PromiseOrValue<boolean>;
|
|
352
|
+
};
|
|
353
|
+
export type PoolDataStructOutput = [
|
|
354
|
+
string,
|
|
355
|
+
string,
|
|
356
|
+
string,
|
|
357
|
+
string,
|
|
358
|
+
string,
|
|
359
|
+
BigNumber,
|
|
360
|
+
BigNumber,
|
|
361
|
+
BigNumber,
|
|
362
|
+
BigNumber,
|
|
363
|
+
BigNumber,
|
|
364
|
+
CreditManagerDebtParamsStructOutput[],
|
|
365
|
+
BigNumber,
|
|
366
|
+
BigNumber,
|
|
367
|
+
BigNumber,
|
|
368
|
+
BigNumber,
|
|
369
|
+
BigNumber,
|
|
370
|
+
BigNumber,
|
|
371
|
+
BigNumber,
|
|
372
|
+
BigNumber,
|
|
373
|
+
BigNumber,
|
|
374
|
+
string,
|
|
375
|
+
string,
|
|
376
|
+
QuotaInfoStructOutput[],
|
|
377
|
+
ZapperInfoStructOutput[],
|
|
378
|
+
LinearModelStructOutput,
|
|
379
|
+
boolean
|
|
380
|
+
] & {
|
|
381
|
+
addr: string;
|
|
382
|
+
underlying: string;
|
|
383
|
+
dieselToken: string;
|
|
384
|
+
symbol: string;
|
|
385
|
+
name: string;
|
|
386
|
+
linearCumulativeIndex: BigNumber;
|
|
387
|
+
availableLiquidity: BigNumber;
|
|
388
|
+
expectedLiquidity: BigNumber;
|
|
389
|
+
totalBorrowed: BigNumber;
|
|
390
|
+
totalDebtLimit: BigNumber;
|
|
391
|
+
creditManagerDebtParams: CreditManagerDebtParamsStructOutput[];
|
|
392
|
+
totalAssets: BigNumber;
|
|
393
|
+
totalSupply: BigNumber;
|
|
394
|
+
supplyRate: BigNumber;
|
|
395
|
+
baseInterestRate: BigNumber;
|
|
396
|
+
dieselRate_RAY: BigNumber;
|
|
397
|
+
withdrawFee: BigNumber;
|
|
398
|
+
cumulativeIndex_RAY: BigNumber;
|
|
399
|
+
baseInterestIndexLU: BigNumber;
|
|
400
|
+
version: BigNumber;
|
|
401
|
+
poolQuotaKeeper: string;
|
|
402
|
+
gauge: string;
|
|
403
|
+
quotas: QuotaInfoStructOutput[];
|
|
404
|
+
zappers: ZapperInfoStructOutput[];
|
|
405
|
+
lirm: LinearModelStructOutput;
|
|
406
|
+
isPaused: boolean;
|
|
407
|
+
};
|
|
408
|
+
export interface IDataCompressorV2_10Interface extends utils.Interface {
|
|
409
|
+
functions: {
|
|
410
|
+
"getAdapter(address,address)": FunctionFragment;
|
|
411
|
+
"getCreditAccountData(address,address)": FunctionFragment;
|
|
412
|
+
"getCreditAccountsByBorrower(address)": FunctionFragment;
|
|
413
|
+
"getCreditManagerData(address)": FunctionFragment;
|
|
414
|
+
"getCreditManagersV2List()": FunctionFragment;
|
|
415
|
+
"getPoolData(address)": FunctionFragment;
|
|
416
|
+
"getPoolsV1List()": FunctionFragment;
|
|
417
|
+
"hasOpenedCreditAccount(address,address)": FunctionFragment;
|
|
418
|
+
"version()": FunctionFragment;
|
|
419
|
+
};
|
|
420
|
+
getFunction(nameOrSignatureOrTopic: "getAdapter" | "getCreditAccountData" | "getCreditAccountsByBorrower" | "getCreditManagerData" | "getCreditManagersV2List" | "getPoolData" | "getPoolsV1List" | "hasOpenedCreditAccount" | "version"): FunctionFragment;
|
|
421
|
+
encodeFunctionData(functionFragment: "getAdapter", values: [PromiseOrValue<string>, PromiseOrValue<string>]): string;
|
|
422
|
+
encodeFunctionData(functionFragment: "getCreditAccountData", values: [PromiseOrValue<string>, PromiseOrValue<string>]): string;
|
|
423
|
+
encodeFunctionData(functionFragment: "getCreditAccountsByBorrower", values: [PromiseOrValue<string>]): string;
|
|
424
|
+
encodeFunctionData(functionFragment: "getCreditManagerData", values: [PromiseOrValue<string>]): string;
|
|
425
|
+
encodeFunctionData(functionFragment: "getCreditManagersV2List", values?: undefined): string;
|
|
426
|
+
encodeFunctionData(functionFragment: "getPoolData", values: [PromiseOrValue<string>]): string;
|
|
427
|
+
encodeFunctionData(functionFragment: "getPoolsV1List", values?: undefined): string;
|
|
428
|
+
encodeFunctionData(functionFragment: "hasOpenedCreditAccount", values: [PromiseOrValue<string>, PromiseOrValue<string>]): string;
|
|
429
|
+
encodeFunctionData(functionFragment: "version", values?: undefined): string;
|
|
430
|
+
decodeFunctionResult(functionFragment: "getAdapter", data: BytesLike): Result;
|
|
431
|
+
decodeFunctionResult(functionFragment: "getCreditAccountData", data: BytesLike): Result;
|
|
432
|
+
decodeFunctionResult(functionFragment: "getCreditAccountsByBorrower", data: BytesLike): Result;
|
|
433
|
+
decodeFunctionResult(functionFragment: "getCreditManagerData", data: BytesLike): Result;
|
|
434
|
+
decodeFunctionResult(functionFragment: "getCreditManagersV2List", data: BytesLike): Result;
|
|
435
|
+
decodeFunctionResult(functionFragment: "getPoolData", data: BytesLike): Result;
|
|
436
|
+
decodeFunctionResult(functionFragment: "getPoolsV1List", data: BytesLike): Result;
|
|
437
|
+
decodeFunctionResult(functionFragment: "hasOpenedCreditAccount", data: BytesLike): Result;
|
|
438
|
+
decodeFunctionResult(functionFragment: "version", data: BytesLike): Result;
|
|
439
|
+
events: {};
|
|
440
|
+
}
|
|
441
|
+
export interface IDataCompressorV2_10 extends BaseContract {
|
|
442
|
+
connect(signerOrProvider: Signer | Provider | string): this;
|
|
443
|
+
attach(addressOrName: string): this;
|
|
444
|
+
deployed(): Promise<this>;
|
|
445
|
+
interface: IDataCompressorV2_10Interface;
|
|
446
|
+
queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
|
|
447
|
+
listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
|
|
448
|
+
listeners(eventName?: string): Array<Listener>;
|
|
449
|
+
removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
|
|
450
|
+
removeAllListeners(eventName?: string): this;
|
|
451
|
+
off: OnEvent<this>;
|
|
452
|
+
on: OnEvent<this>;
|
|
453
|
+
once: OnEvent<this>;
|
|
454
|
+
removeListener: OnEvent<this>;
|
|
455
|
+
functions: {
|
|
456
|
+
getAdapter(_creditManager: PromiseOrValue<string>, _allowedContract: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[string] & {
|
|
457
|
+
adapter: string;
|
|
458
|
+
}>;
|
|
459
|
+
getCreditAccountData(_creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[CreditAccountDataStructOutput]>;
|
|
460
|
+
getCreditAccountsByBorrower(borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[CreditAccountDataStructOutput[]]>;
|
|
461
|
+
getCreditManagerData(_creditManager: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[CreditManagerDataStructOutput]>;
|
|
462
|
+
getCreditManagersV2List(overrides?: CallOverrides): Promise<[CreditManagerDataStructOutput[]]>;
|
|
463
|
+
getPoolData(_pool: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[PoolDataStructOutput]>;
|
|
464
|
+
getPoolsV1List(overrides?: CallOverrides): Promise<[PoolDataStructOutput[]]>;
|
|
465
|
+
hasOpenedCreditAccount(creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<[boolean]>;
|
|
466
|
+
version(overrides?: CallOverrides): Promise<[BigNumber]>;
|
|
467
|
+
};
|
|
468
|
+
getAdapter(_creditManager: PromiseOrValue<string>, _allowedContract: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
|
|
469
|
+
getCreditAccountData(_creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<CreditAccountDataStructOutput>;
|
|
470
|
+
getCreditAccountsByBorrower(borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<CreditAccountDataStructOutput[]>;
|
|
471
|
+
getCreditManagerData(_creditManager: PromiseOrValue<string>, overrides?: CallOverrides): Promise<CreditManagerDataStructOutput>;
|
|
472
|
+
getCreditManagersV2List(overrides?: CallOverrides): Promise<CreditManagerDataStructOutput[]>;
|
|
473
|
+
getPoolData(_pool: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PoolDataStructOutput>;
|
|
474
|
+
getPoolsV1List(overrides?: CallOverrides): Promise<PoolDataStructOutput[]>;
|
|
475
|
+
hasOpenedCreditAccount(creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<boolean>;
|
|
476
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
477
|
+
callStatic: {
|
|
478
|
+
getAdapter(_creditManager: PromiseOrValue<string>, _allowedContract: PromiseOrValue<string>, overrides?: CallOverrides): Promise<string>;
|
|
479
|
+
getCreditAccountData(_creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<CreditAccountDataStructOutput>;
|
|
480
|
+
getCreditAccountsByBorrower(borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<CreditAccountDataStructOutput[]>;
|
|
481
|
+
getCreditManagerData(_creditManager: PromiseOrValue<string>, overrides?: CallOverrides): Promise<CreditManagerDataStructOutput>;
|
|
482
|
+
getCreditManagersV2List(overrides?: CallOverrides): Promise<CreditManagerDataStructOutput[]>;
|
|
483
|
+
getPoolData(_pool: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PoolDataStructOutput>;
|
|
484
|
+
getPoolsV1List(overrides?: CallOverrides): Promise<PoolDataStructOutput[]>;
|
|
485
|
+
hasOpenedCreditAccount(creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<boolean>;
|
|
486
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
487
|
+
};
|
|
488
|
+
filters: {};
|
|
489
|
+
estimateGas: {
|
|
490
|
+
getAdapter(_creditManager: PromiseOrValue<string>, _allowedContract: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
491
|
+
getCreditAccountData(_creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
492
|
+
getCreditAccountsByBorrower(borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
493
|
+
getCreditManagerData(_creditManager: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
494
|
+
getCreditManagersV2List(overrides?: CallOverrides): Promise<BigNumber>;
|
|
495
|
+
getPoolData(_pool: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
496
|
+
getPoolsV1List(overrides?: CallOverrides): Promise<BigNumber>;
|
|
497
|
+
hasOpenedCreditAccount(creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<BigNumber>;
|
|
498
|
+
version(overrides?: CallOverrides): Promise<BigNumber>;
|
|
499
|
+
};
|
|
500
|
+
populateTransaction: {
|
|
501
|
+
getAdapter(_creditManager: PromiseOrValue<string>, _allowedContract: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
502
|
+
getCreditAccountData(_creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
503
|
+
getCreditAccountsByBorrower(borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
504
|
+
getCreditManagerData(_creditManager: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
505
|
+
getCreditManagersV2List(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
506
|
+
getPoolData(_pool: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
507
|
+
getPoolsV1List(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
508
|
+
hasOpenedCreditAccount(creditManager: PromiseOrValue<string>, borrower: PromiseOrValue<string>, overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
509
|
+
version(overrides?: CallOverrides): Promise<PopulatedTransaction>;
|
|
510
|
+
};
|
|
511
|
+
}
|