@gearbox-protocol/sdk 3.0.0-next.1 → 3.0.0-next.100
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/IWETHGateway.sol +33 -0
- package/contracts/IwstETHGateway.sol +24 -0
- package/contracts/index.sol +77 -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/contracts/contractsRegister.d.ts +5 -2
- package/lib/contracts/contractsRegister.js +12 -0
- package/lib/core/assets.d.ts +4 -4
- package/lib/core/assets.js +28 -17
- package/lib/core/creditAccount.d.ts +78 -28
- package/lib/core/creditAccount.js +199 -96
- package/lib/core/creditAccount.spec.js +745 -16
- package/lib/core/creditManager.d.ts +44 -36
- package/lib/core/creditManager.js +177 -130
- package/lib/core/creditSession.d.ts +11 -1
- package/lib/core/creditSession.js +37 -20
- package/lib/core/endpoint.d.ts +10 -0
- package/lib/core/endpoint.js +26 -0
- package/lib/core/errors.d.ts +0 -9
- package/lib/core/errors.js +0 -15
- package/lib/core/events.js +35 -35
- package/lib/core/gauge.d.ts +26 -0
- package/lib/core/gauge.js +63 -0
- package/lib/core/gaugeMath.d.ts +40 -0
- package/lib/core/gaugeMath.js +108 -0
- package/lib/core/gaugeMath.spec.js +388 -0
- package/lib/core/pool.d.ts +124 -0
- package/lib/core/pool.js +306 -0
- 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.d.ts +15 -15
- package/lib/core/strategy.js +10 -26
- package/lib/core/trade.d.ts +14 -30
- package/lib/core/trade.js +37 -84
- package/lib/core/transactions.d.ts +110 -14
- package/lib/core/transactions.js +191 -108
- package/lib/index.d.ts +15 -7
- package/lib/index.js +15 -8
- package/lib/parsers/ERC20Parser.js +2 -2
- package/lib/parsers/abstractParser.js +1 -2
- package/lib/parsers/convexBaseRewardPoolAdapterParser.js +10 -8
- package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.js +9 -6
- package/lib/parsers/convexBoosterAdapterParser.js +6 -6
- package/lib/parsers/convexBoosterAdapterParser.spec.js +4 -4
- package/lib/parsers/creditFacadeParser.d.ts +2 -1
- package/lib/parsers/creditFacadeParser.js +44 -5
- package/lib/parsers/creditFacadeParser.spec.js +4 -5
- package/lib/parsers/creditManagerParser.js +3 -3
- package/lib/parsers/curveAdapterParser.js +15 -11
- package/lib/parsers/curveAdapterParser.spec.js +11 -7
- package/lib/parsers/lidoAdapterParser.js +3 -2
- package/lib/parsers/lidoAdapterParser.spec.js +2 -2
- 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 +9 -24
- package/lib/parsers/uniV2AdapterParser.js +5 -4
- package/lib/parsers/uniV2AdapterParser.spec.js +3 -2
- package/lib/parsers/uniV3AdapterParser.js +9 -7
- package/lib/parsers/uniV3AdapterParser.spec.js +3 -2
- package/lib/parsers/wstETHAdapterParser.js +8 -6
- package/lib/parsers/wstETHAdapterParser.spec.js +4 -4
- package/lib/parsers/yearnAdapterParser.spec.js +4 -4
- package/lib/parsers/yearnV2AdapterParser.js +13 -3
- package/lib/pathfinder/core.d.ts +10 -11
- package/lib/pathfinder/pathOptions.d.ts +6 -4
- package/lib/pathfinder/pathOptions.js +23 -5
- package/lib/pathfinder/pathOptions.spec.js +29 -29
- package/lib/pathfinder/pathfinder.d.ts +44 -16
- package/lib/pathfinder/pathfinder.js +66 -46
- package/lib/pathfinder/pathfinder.spec.js +7 -3
- package/lib/pathfinder/v1/core.d.ts +16 -0
- package/lib/pathfinder/v1/pathfinderv1.d.ts +46 -0
- package/lib/pathfinder/v1/pathfinderv1.js +155 -0
- package/lib/pathfinder/v1/pathfinderv1.spec.d.ts +1 -0
- package/lib/pathfinder/v1/pathfinderv1.spec.js +39 -0
- package/lib/payload/creditAccount.d.ts +4 -3
- package/lib/payload/creditManager.d.ts +10 -6
- package/lib/payload/creditSession.d.ts +11 -0
- package/lib/payload/gauge.d.ts +12 -0
- package/lib/payload/pool.d.ts +13 -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/CalldataExtractor.d.ts +44 -0
- package/lib/types/Claimable.d.ts +113 -0
- package/lib/types/ERC20.d.ts +198 -0
- package/lib/types/Errors.d.ts +298 -0
- package/lib/types/FarmAccounting.d.ts +27 -0
- package/lib/types/IAaveV2_LendingPoolAdapter.d.ts +171 -0
- package/lib/types/IAaveV2_WrappedATokenAdapter.d.ts +290 -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/IBalancerV2Vault.sol/IBalancerV2Vault.d.ts +308 -0
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2VaultGetters.d.ts +112 -0
- package/lib/types/IBalancerV2Vault.sol/index.d.ts +2 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.d.ts +466 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.d.ts +43 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.d.ts +27 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/index.d.ts +3 -0
- package/lib/types/IBaseRewardPool.d.ts +378 -0
- package/lib/types/IBotListV3.sol/IBotListV3.d.ts +286 -0
- package/lib/types/IBotListV3.sol/IBotListV3Events.d.ts +103 -0
- package/lib/types/IBotListV3.sol/index.d.ts +2 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.d.ts +216 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.d.ts +27 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/index.d.ts +2 -0
- package/lib/types/IContractsRegister.sol/IContractsRegister.d.ts +128 -0
- package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.d.ts +50 -0
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3.d.ts +504 -0
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3Events.d.ts +82 -0
- package/lib/types/IControllerTimelockV3.sol/index.d.ts +2 -0
- package/lib/types/IConvexToken.d.ts +190 -0
- package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +300 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.d.ts +209 -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 +524 -0
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +166 -0
- package/lib/types/ICreditFacadeV3.sol/index.d.ts +2 -0
- package/lib/types/ICreditFacadeV3Multicall.d.ts +277 -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 +967 -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 +550 -0
- package/lib/types/ICurveV1_2AssetsAdapter.d.ts +634 -0
- package/lib/types/ICurveV1_3AssetsAdapter.d.ts +697 -0
- package/lib/types/ICurveV1_4AssetsAdapter.d.ts +715 -0
- package/lib/types/IDaiLikePermit.d.ts +59 -0
- package/lib/types/IDataCompressorV2_10.d.ts +482 -0
- package/lib/types/IDataCompressorV3_00.d.ts +600 -0
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.d.ts +96 -0
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +53 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.d.ts +339 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.d.ts +61 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Exceptions.d.ts +27 -0
- package/lib/types/IDegenNFTV2.sol/index.d.ts +3 -0
- package/lib/types/IERC165.d.ts +42 -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/IERC20ZapperDeposits.d.ts +117 -0
- package/lib/types/IERC4626.d.ts +394 -0
- package/lib/types/IERC4626Adapter.d.ts +238 -0
- package/lib/types/IERC721.d.ts +220 -0
- package/lib/types/IERC721Metadata.d.ts +244 -0
- package/lib/types/IETHZapperDeposits.d.ts +66 -0
- package/lib/types/IFarmingPool.d.ts +318 -0
- package/lib/types/IGasPricer.d.ts +44 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3.d.ts +366 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3Events.d.ts +114 -0
- package/lib/types/IGaugeV3.sol/index.d.ts +2 -0
- package/lib/types/IGearStakingV3.sol/IGearStakingV3.d.ts +408 -0
- package/lib/types/IGearStakingV3.sol/IGearStakingV3Events.d.ts +117 -0
- package/lib/types/IGearStakingV3.sol/index.d.ts +2 -0
- package/lib/types/IInterestRateModel.d.ts +50 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.d.ts +285 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.d.ts +54 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +27 -0
- package/lib/types/ILidoV1Adapter.d.ts +158 -0
- package/lib/types/ILinearInterestRateModelV3.d.ts +120 -0
- package/lib/types/IOffchainOracle.d.ts +58 -0
- package/lib/types/IPermit2.d.ts +130 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.d.ts +473 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.d.ts +113 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/index.d.ts +2 -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/IPriceFeed.sol/IPriceFeed.d.ts +109 -0
- package/lib/types/IPriceFeed.sol/IUpdatablePriceFeed.d.ts +133 -0
- package/lib/types/IPriceFeed.sol/index.d.ts +2 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2.d.ts +166 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.d.ts +43 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Exceptions.d.ts +27 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Ext.d.ts +182 -0
- package/lib/types/IPriceOracleBase.d.ts +88 -0
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.d.ts +272 -0
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3Events.d.ts +79 -0
- package/lib/types/IPriceOracleV3.sol/index.d.ts +2 -0
- package/lib/types/IRouter.d.ts +278 -0
- package/lib/types/IRouterV3.d.ts +281 -0
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +208 -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 +415 -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/IVotingContractV3.d.ts +74 -0
- package/lib/types/IWETH.d.ts +197 -0
- package/lib/types/IWETHGateway.d.ts +90 -0
- package/lib/types/IYVault.d.ts +298 -0
- package/lib/types/IYearnV2Adapter.d.ts +256 -0
- package/lib/types/IZapper.d.ts +125 -0
- package/lib/types/IZapperRegister.d.ts +62 -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/NumericArrayLib.d.ts +27 -0
- package/lib/types/Ownable.d.ts +89 -0
- package/lib/types/RedstoneConstants.d.ts +27 -0
- package/lib/types/RedstoneConsumerBase.d.ts +84 -0
- package/lib/types/RedstoneConsumerNumericBase.d.ts +84 -0
- package/lib/types/RedstoneDefaultsLib.d.ts +27 -0
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedEvents.d.ts +39 -0
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions.d.ts +27 -0
- package/lib/types/RedstonePriceFeed.sol/RedstonePriceFeed.d.ts +279 -0
- package/lib/types/RedstonePriceFeed.sol/index.d.ts +3 -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/CalldataExtractor__factory.d.ts +87 -0
- package/lib/types/factories/CalldataExtractor__factory.js +127 -0
- package/lib/types/factories/Claimable__factory.d.ts +78 -0
- package/lib/types/factories/Claimable__factory.js +114 -0
- package/lib/types/factories/ERC20__factory.d.ts +239 -0
- package/lib/types/factories/ERC20__factory.js +328 -0
- package/lib/types/factories/Errors__factory.d.ts +351 -0
- package/lib/types/factories/Errors__factory.js +471 -0
- package/lib/types/factories/FarmAccounting__factory.d.ts +33 -0
- package/lib/types/factories/FarmAccounting__factory.js +57 -0
- package/lib/types/factories/IAaveV2_LendingPoolAdapter__factory.d.ts +158 -0
- package/lib/types/factories/IAaveV2_LendingPoolAdapter__factory.js +215 -0
- package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.d.ts +252 -0
- package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.js +341 -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/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.d.ts +78 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.js +111 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.d.ts +360 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.js +475 -0
- package/lib/types/factories/IBalancerV2Vault.sol/index.d.ts +2 -0
- package/lib/types/factories/IBalancerV2Vault.sol/index.js +10 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.d.ts +23 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.js +38 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.d.ts +12 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.js +24 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.d.ts +514 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.js +675 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.d.ts +3 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.js +12 -0
- package/lib/types/factories/IBaseRewardPool__factory.d.ts +398 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.d.ts +103 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.js +138 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.d.ts +315 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.js +416 -0
- package/lib/types/factories/IBotListV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IBotListV3.sol/index.js +10 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.d.ts +196 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.js +267 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.d.ts +16 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.js +30 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.d.ts +2 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.js +10 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.d.ts +28 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.d.ts +134 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.js +186 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.d.ts +73 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.js +101 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.d.ts +427 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.js +556 -0
- package/lib/types/factories/IControllerTimelockV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IControllerTimelockV3.sol/index.js +10 -0
- package/lib/types/factories/IConvexToken__factory.d.ts +208 -0
- package/lib/types/factories/IConvexToken__factory.js +280 -0
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.d.ts +286 -0
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.js +383 -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 +189 -0
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.js +255 -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 +183 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +238 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +550 -0
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js +715 -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 +204 -0
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +271 -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 +1023 -0
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.js +1341 -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 +606 -0
- package/lib/types/factories/ICurveV1Adapter__factory.js +798 -0
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.d.ts +672 -0
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.js +885 -0
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.d.ts +672 -0
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.js +885 -0
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.d.ts +672 -0
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.js +885 -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 +1172 -0
- package/lib/types/factories/IDataCompressorV2_10__factory.js +1501 -0
- package/lib/types/factories/IDataCompressorV3_00__factory.d.ts +1580 -0
- package/lib/types/factories/IDataCompressorV3_00__factory.js +2020 -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/IDegenNFTV2.sol/IDegenNFTV2Events__factory.d.ts +38 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.js +58 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.d.ts +24 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.js +39 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2__factory.d.ts +376 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2__factory.js +496 -0
- package/lib/types/factories/IDegenNFTV2.sol/index.d.ts +3 -0
- package/lib/types/factories/IDegenNFTV2.sol/index.js +12 -0
- package/lib/types/factories/IERC165__factory.d.ts +22 -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/IERC20ZapperDeposits__factory.d.ts +120 -0
- package/lib/types/factories/IERC20ZapperDeposits__factory.js +165 -0
- package/lib/types/factories/IERC20__factory.d.ts +148 -0
- package/lib/types/factories/IERC20__factory.js +202 -0
- package/lib/types/factories/IERC4626Adapter__factory.d.ts +220 -0
- package/lib/types/factories/IERC4626Adapter__factory.js +297 -0
- package/lib/types/factories/IERC4626__factory.d.ts +473 -0
- package/lib/types/factories/IERC4626__factory.js +631 -0
- package/lib/types/factories/IERC721Metadata__factory.d.ts +262 -0
- package/lib/types/factories/IERC721Metadata__factory.js +349 -0
- package/lib/types/factories/IERC721__factory.d.ts +228 -0
- package/lib/types/factories/IERC721__factory.js +304 -0
- package/lib/types/factories/IETHZapperDeposits__factory.d.ts +40 -0
- package/lib/types/factories/IETHZapperDeposits__factory.js +62 -0
- package/lib/types/factories/IFarmingPool__factory.d.ts +299 -0
- package/lib/types/factories/IFarmingPool__factory.js +396 -0
- package/lib/types/factories/IGasPricer__factory.d.ts +22 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.d.ts +118 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.js +157 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.d.ts +342 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.js +448 -0
- package/lib/types/factories/IGaugeV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IGaugeV3.sol/index.js +10 -0
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3Events__factory.d.ts +113 -0
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3Events__factory.js +152 -0
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.d.ts +504 -0
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.js +660 -0
- package/lib/types/factories/IGearStakingV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IGearStakingV3.sol/index.js +10 -0
- package/lib/types/factories/IInterestRateModel__factory.d.ts +36 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +33 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +51 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +28 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +44 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +261 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.js +344 -0
- package/lib/types/factories/ILidoV1Adapter__factory.d.ts +144 -0
- package/lib/types/factories/ILidoV1Adapter__factory.js +197 -0
- package/lib/types/factories/ILinearInterestRateModelV3__factory.d.ts +98 -0
- package/lib/types/factories/ILinearInterestRateModelV3__factory.js +136 -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/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.d.ts +103 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.js +140 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.d.ts +441 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.js +580 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.js +10 -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/IPriceFeed.sol/IPriceFeed__factory.d.ts +84 -0
- package/lib/types/factories/IPriceFeed.sol/IPriceFeed__factory.js +117 -0
- package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.d.ts +104 -0
- package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.js +143 -0
- package/lib/types/factories/IPriceFeed.sol/index.d.ts +2 -0
- package/lib/types/factories/IPriceFeed.sol/index.js +10 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Events__factory.d.ts +23 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.d.ts +20 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Ext__factory.d.ts +197 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2__factory.d.ts +183 -0
- package/lib/types/factories/IPriceOracleBase__factory.d.ts +104 -0
- package/lib/types/factories/IPriceOracleBase__factory.js +147 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.d.ts +78 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.js +106 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.d.ts +326 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.js +433 -0
- package/lib/types/factories/IPriceOracleV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IPriceOracleV3.sol/index.js +10 -0
- package/lib/types/factories/IRouterV3__factory.d.ts +451 -0
- package/lib/types/factories/IRouterV3__factory.js +597 -0
- package/lib/types/factories/IRouter__factory.d.ts +396 -0
- package/lib/types/factories/IRouter__factory.js +526 -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 +221 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +295 -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 +398 -0
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +525 -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/IVotingContractV3__factory.d.ts +44 -0
- package/lib/types/factories/IVotingContractV3__factory.js +65 -0
- package/lib/types/factories/IWETHGateway__factory.d.ts +58 -0
- package/lib/types/factories/IWETH__factory.d.ts +194 -0
- package/lib/types/factories/IWETH__factory.js +260 -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 +230 -0
- package/lib/types/factories/IYearnV2Adapter__factory.js +311 -0
- package/lib/types/factories/IZapperRegister__factory.d.ts +42 -0
- package/lib/types/factories/IZapperRegister__factory.js +64 -0
- package/lib/types/factories/IZapper__factory.d.ts +128 -0
- package/lib/types/factories/IZapper__factory.js +177 -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 +160 -0
- package/lib/types/factories/IwstETHV1Adapter__factory.js +219 -0
- package/lib/types/factories/NumericArrayLib__factory.d.ts +25 -0
- package/lib/types/factories/NumericArrayLib__factory.js +47 -0
- package/lib/types/factories/Ownable__factory.d.ts +49 -0
- package/lib/types/factories/Ownable__factory.js +71 -0
- package/lib/types/factories/RedstoneConstants__factory.d.ts +65 -0
- package/lib/types/factories/RedstoneConstants__factory.js +99 -0
- package/lib/types/factories/RedstoneConsumerBase__factory.d.ts +164 -0
- package/lib/types/factories/RedstoneConsumerBase__factory.js +223 -0
- package/lib/types/factories/RedstoneConsumerNumericBase__factory.d.ts +164 -0
- package/lib/types/factories/RedstoneConsumerNumericBase__factory.js +223 -0
- package/lib/types/factories/RedstoneDefaultsLib__factory.d.ts +45 -0
- package/lib/types/factories/RedstoneDefaultsLib__factory.js +74 -0
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedEvents__factory.d.ts +18 -0
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedEvents__factory.js +32 -0
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions__factory.d.ts +28 -0
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions__factory.js +44 -0
- package/lib/types/factories/RedstonePriceFeed.sol/RedstonePriceFeed__factory.d.ts +443 -0
- package/lib/types/factories/RedstonePriceFeed.sol/RedstonePriceFeed__factory.js +589 -0
- package/lib/types/factories/RedstonePriceFeed.sol/index.d.ts +3 -0
- package/lib/types/factories/RedstonePriceFeed.sol/index.js +12 -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 +95 -4
- package/lib/types/factories/index.js +154 -5
- package/lib/types/index.d.ts +356 -300
- package/lib/types/index.js +253 -265
- 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 +7 -6
- package/lib/watchers/creditAccountWatcher.js +24 -17
- package/lib/watchers/creditAccountWatcher.spec.js +20 -20
- package/lib/watchers/creditManagerWatcher.d.ts +5 -3
- package/lib/watchers/creditManagerWatcher.js +32 -9
- package/lib/watchers/creditManagerWatcher.spec.js +13 -5
- package/package.json +21 -7
- package/lib/core/pool/data.d.ts +0 -109
- package/lib/core/pool/data.js +0 -223
- package/lib/core/pool/index.d.ts +0 -1
- package/lib/core/pool/index.js +0 -17
- package/lib/core/strategy.spec.js +0 -62
- 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/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/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/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/integrations-v2/contracts/index.d.ts +0 -6
- 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/IClaimZap.d.ts +0 -76
- 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/IRewards.d.ts +0 -186
- 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/Interfaces.sol/ICrvDeposit.d.ts +0 -58
- 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/ICurveVoteEscrow.d.ts +0 -106
- 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/IFeeDistro.d.ts +0 -58
- 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/IPools.d.ts +0 -122
- 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/IRewardFactory.d.ts +0 -122
- 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/IStaker.d.ts +0 -290
- 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/IStashFactory.d.ts +0 -50
- 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/ITokenMinter.d.ts +0 -66
- 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/IVoting.d.ts +0 -107
- 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/index.d.ts +0 -18
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.d.ts +0 -8
- 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/ICurvePool_2.sol/ICurvePool2Assets.d.ts +0 -404
- 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_4.sol/ICurvePool4Assets.d.ts +0 -432
- 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/index.d.ts +0 -9
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/index.d.ts +0 -10
- 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/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/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/IwstETHGateway.sol/IwstETHGateWay.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.d.ts +0 -7
- 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/IUniswapV2Router01.d.ts +0 -386
- 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/IUniswapV3.sol/ISwapRouter.d.ts +0 -198
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.d.ts +0 -5
- 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/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter.d.ts +0 -450
- 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/index.d.ts +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/index.d.ts +0 -3
- 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/ICurveV1AdapterExceptions.d.ts +0 -27
- 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/ICurveV1_2AssetsAdapter.d.ts +0 -612
- 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_4AssetsAdapter.d.ts +0 -640
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.d.ts +0 -5
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/index.d.ts +0 -10
- 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/ILidoV1AdapterExceptions.d.ts +0 -27
- 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/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/uniswap/IUniswapPathChecker.d.ts +0 -106
- 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/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/index.d.ts +0 -5
- 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/test/config/SupportedContracts.sol/ISupportedContracts.d.ts +0 -66
- 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/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/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/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/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/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/IPriceOracleV2Exceptions__factory.d.ts +0 -12
- 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/IPriceOracleV2__factory.d.ts +0 -42
- 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/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/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/core/{strategy.spec.d.ts → gaugeMath.spec.d.ts} +0 -0
- /package/lib/{types/@chainlink/contracts/index.js → pathfinder/v1/core.js} +0 -0
- /package/lib/{types/@chainlink/contracts/src/index.js → payload/gauge.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/index.js → AddressProvider.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorInterface.js → Balances.sol/BalanceOps.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces → Balances.sol}/index.js +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface.js → CalldataExtractor.js} +0 -0
- /package/lib/types/{@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.js → Claimable.js} +0 -0
- /package/lib/types/{@chainlink/index.js → ERC20.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/index.js → Errors.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACL.js → FarmAccounting.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLEvents.js → IAaveV2_LendingPoolAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol/IACLExceptions.js → IAaveV2_WrappedATokenAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter.js → IAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/IAddressProvider.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/IAddressProviderEvents.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol → IAddressProvider.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IACL.sol → IAddressProvider.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactory.js → IAddressProviderV3.sol/IAddressProviderV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryEvents.js → IAddressProviderV3.sol/IAddressProviderV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol → IAddressProviderV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/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/IAddressProvider.sol → IAirdropDistributor.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAccountFactory.sol/IAccountFactoryGetters.js → IBalancerV2Vault.sol/IBalancerV2Vault.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.js → IBalancerV2Vault.sol/IBalancerV2VaultGetters.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol → IBalancerV2Vault.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol → IBalancerV2VaultAdapter.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/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount.js → IBotListV3.sol/IBotListV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator.js → IBotListV3.sol/IBotListV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol → IBotListV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents.js → ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions.js → ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol → ICompoundV2_CTokenAdapter.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade.js → IContractsRegister.sol/IContractsRegister.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents.js → IContractsRegister.sol/IContractsRegisterEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol → IContractsRegister.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol → IContractsRegister.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExceptions.js → IControllerTimelockV3.sol/IControllerTimelockV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeExtended.js → IControllerTimelockV3.sol/IControllerTimelockV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol → IControllerTimelockV3.sol}/index.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/ICreditManagerV2.sol/ICreditManagerV2.js → IConvexV1BaseRewardPoolAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Events.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/ICreditManagerV2Exceptions.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol → IConvexV1BoosterAdapter.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor.js → ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol → ICreditConfiguratorV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents.js → ICreditConfiguratorV3.sol/ICreditConfiguratorV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT.js → ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol → ICreditConfiguratorV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents.js → ICreditFacadeV2.sol/ICreditFacadeV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions.js → ICreditFacadeV2.sol/ICreditFacadeV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken.js → ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions.js → ICreditFacadeV2.sol/ICreditFacadeV2Extended.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel.js → ICreditFacadeV2.sol/ICreditFacadeV2V2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol → ICreditFacadeV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed.js → ICreditFacadeV3.sol/ICreditFacadeV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents.js → ICreditFacadeV3.sol/ICreditFacadeV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol → ICreditFacadeV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions.js → ICreditFacadeV3Multicall.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20.js → ICreditManagerV2.sol/ICreditManagerV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolService.js → ICreditManagerV2.sol/ICreditManagerV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents.js → 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/IPriceOracle.sol → ICreditManagerV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType.js → ICreditManagerV3.sol/ICreditManagerV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2.js → ICreditManagerV3.sol/ICreditManagerV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/V1 → 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/adapters/IAdapter.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/adapters/IUniversalAdapter.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/adapters → ICurvePool_4.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter.js → ICurveV1Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter.js → ICurveV1_2AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter.js → ICurveV1_3AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter.js → ICurveV1_4AssetsAdapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events.js → IDaiLikePermit.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions.js → IDataCompressorV2_10.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext.js → IDataCompressorV3_00.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IVersion.js → IDegenDistributor.sol/IDegenDistributor.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway.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/external → IDegenDistributor.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter.js → IDegenNFTV2.sol/IDegenNFTV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager.js → IDegenNFTV2.sol/IDegenNFTV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions.js → IDegenNFTV2.sol/IDegenNFTV2Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces → IDegenNFTV2.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter.js → IERC165.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions.js → IERC20.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH.js → IERC20Metadata.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/pool/PoolService.js → IERC20Permit.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/pool/index.js → IERC20ZapperDeposits.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/test/index.js → IERC4626.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite.js → IERC4626Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/test/interfaces/index.js → IERC721.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/index.js → IERC721Metadata.js} +0 -0
- /package/lib/types/{@gearbox-protocol/index.js → IETHZapperDeposits.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/index.js → IFarmingPool.js} +0 -0
- /package/lib/types/{@gearbox-protocol/router/contracts/interfaces/IGasPricer.js → IGasPricer.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster.js → IGaugeV3.sol/IGaugeV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap.js → IGaugeV3.sol/IGaugeV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol → IGaugeV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards.js → IGearStakingV3.sol/IGearStakingV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards.js → IGearStakingV3.sol/IGearStakingV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol → IGearStakingV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit.js → IInterestRateModel.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge.js → ILPPriceFeed.sol/ILPPriceFeed.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow.js → ILPPriceFeed.sol/ILPPriceFeedEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit.js → ILPPriceFeed.sol/ILPPriceFeedExceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol → ILPPriceFeed.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex → ILPPriceFeed.sol}/index.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/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro.js → ILinearInterestRateModelV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter.js → IOffchainOracle.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools.js → IPermit2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry.js → IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory.js → IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol → IPoolQuotaKeeperV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards.js → IPoolService.sol/IPoolService.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker.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/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol → IPoolService.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash.js → IPoolV3.sol/IPoolV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory.js → IPoolV3.sol/IPoolV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol → IPoolV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory.js → IPriceFeed.sol/IPriceFeed.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter.js → IPriceFeed.sol/IUpdatablePriceFeed.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve → IPriceFeed.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow.js → IPriceOracle.sol/IPriceOracleV2.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting.js → IPriceOracle.sol/IPriceOracleV2Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker.js → IPriceOracle.sol/IPriceOracleV2Exceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH.js → IPriceOracle.sol/IPriceOracleV2Ext.js} +0 -0
- /package/lib/types/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol → IPriceOracle.sol}/index.d.ts +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations → IPriceOracle.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry.js → IPriceOracleBase.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle.js → IPriceOracleV3.sol/IPriceOracleV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH.js → IPriceOracleV3.sol/IPriceOracleV3Events.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol → IPriceOracleV3.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/router/contracts/interfaces/IRouter.js → IRouter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters.js → IRouterV3.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/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH.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/integrations-v2/contracts/integrations/lido/IwstETH.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/integrations-v2/contracts/integrations/lido/IwstETHGateway.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/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters.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/integrations-v2/contracts/integrations/lido → IUniswapV3Adapter.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay.js → IVersion.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter.js → IVotingContractV3.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01.js → IWETH.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02.js → IWETHGateway.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault.js → IYVault.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter.js → IYearnV2Adapter.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.js → IZapper.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.js → IZapperRegister.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.js → IstETH.sol/IstETH.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter.js → 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/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol → IstETH.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors.js → IwstETH.sol/IwstETH.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter.js → 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/integrations-v2/contracts/interfaces/convex → IwstETH.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions.js → 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/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol → 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/integrations-v2/contracts/interfaces/curve/index.js → NumericArrayLib.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/index.js → Ownable.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents.js → RedstoneConstants.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.js → RedstoneConsumerBase.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.js → RedstoneConsumerNumericBase.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.js → RedstoneDefaultsLib.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker.js → RedstonePriceFeed.sol/IRedstonePriceFeedEvents.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.js → RedstonePriceFeed.sol/IRedstonePriceFeedExceptions.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.js → RedstonePriceFeed.sol/RedstonePriceFeed.js} +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap → RedstonePriceFeed.sol}/index.js +0 -0
- /package/lib/types/{@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.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/IContractsRegister.sol → IContractsRegister.sol}/IContractsRegisterEvents__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol → IContractsRegister.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol → IContractsRegister.sol}/index.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/{@openzeppelin/contracts/utils/introspection/IERC165__factory.js → IERC165__factory.js} +0 -0
- /package/lib/types/factories/{@gearbox-protocol/router/contracts/interfaces/IGasPricer__factory.js → IGasPricer__factory.js} +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel__factory.js → IInterestRateModel__factory.js} +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol → ILPPriceFeed.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol → ILPPriceFeed.sol}/index.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/core-v2/contracts/interfaces/IPriceOracle.sol → IPriceOracle.sol}/IPriceOracleV2Events__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol → IPriceOracle.sol}/IPriceOracleV2Exceptions__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol → IPriceOracle.sol}/IPriceOracleV2Ext__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol → IPriceOracle.sol}/IPriceOracleV2__factory.js +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol → IPriceOracle.sol}/index.d.ts +0 -0
- /package/lib/types/factories/{@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol → IPriceOracle.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/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts.js → utils/types.js} +0 -0
package/lib/core/transactions.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TxEnableTokens = exports.TxApprove = exports.TxCloseAccount = exports.TxRepayAccount = exports.TxClaimGearRewards = exports.TxClaimNFT = exports.TxClaimReward = exports.TxOpenMultitokenAccount = exports.TxOpenAccount = exports.TxDecreaseBorrowAmount = exports.TxIncreaseBorrowAmount = exports.TxAddCollateral = exports.TXSwap = exports.TxRemoveLiquidity = exports.TxAddLiquidity = exports.TxSerializer = void 0;
|
|
3
|
+
exports.TxWithdrawCollateral = exports.TxGaugeVote = exports.TxGaugeClaim = exports.TxGaugeUnstake = exports.TxGaugeStake = exports.TxUpdateQuota = exports.TxEnableTokens = exports.TxApprove = exports.TxCloseAccount = exports.TxRepayAccount = exports.TxClaimGearRewards = exports.TxClaimNFT = exports.TxClaimReward = exports.TxOpenMultitokenAccount = exports.TxOpenAccount = exports.TxDecreaseBorrowAmount = exports.TxIncreaseBorrowAmount = exports.TxAddCollateral = exports.TXSwap = exports.TxRemoveLiquidity = exports.TxAddLiquidity = exports.TxSerializer = void 0;
|
|
4
4
|
const sdk_gov_1 = require("@gearbox-protocol/sdk-gov");
|
|
5
5
|
const contractsRegister_1 = require("../contracts/contractsRegister");
|
|
6
|
-
const
|
|
6
|
+
const math_1 = require("../utils/math");
|
|
7
7
|
const eventOrTx_1 = require("./eventOrTx");
|
|
8
8
|
class TxSerializer {
|
|
9
9
|
static serialize(items) {
|
|
@@ -43,6 +43,18 @@ class TxSerializer {
|
|
|
43
43
|
return new TxClaimGearRewards(params);
|
|
44
44
|
case "TxEnableTokens":
|
|
45
45
|
return new TxEnableTokens(params);
|
|
46
|
+
case "TxUpdateQuota":
|
|
47
|
+
return new TxUpdateQuota(params);
|
|
48
|
+
case "TxGaugeStake":
|
|
49
|
+
return new TxGaugeStake(params);
|
|
50
|
+
case "TxGaugeUnstake":
|
|
51
|
+
return new TxGaugeUnstake(params);
|
|
52
|
+
case "TxGaugeClaim":
|
|
53
|
+
return new TxGaugeClaim(params);
|
|
54
|
+
case "TxGaugeVote":
|
|
55
|
+
return new TxGaugeVote(params);
|
|
56
|
+
case "TxWithdrawCollateral":
|
|
57
|
+
return new TxWithdrawCollateral(params);
|
|
46
58
|
default:
|
|
47
59
|
throw new Error(`Unknown transaction for parsing: ${e.type}`);
|
|
48
60
|
}
|
|
@@ -54,20 +66,17 @@ class TxAddLiquidity extends eventOrTx_1.EVMTx {
|
|
|
54
66
|
amount;
|
|
55
67
|
underlyingToken;
|
|
56
68
|
pool;
|
|
69
|
+
poolName;
|
|
57
70
|
constructor(opts) {
|
|
58
|
-
super(
|
|
59
|
-
block: opts.block,
|
|
60
|
-
txHash: opts.txHash,
|
|
61
|
-
txStatus: opts.txStatus,
|
|
62
|
-
timestamp: opts.timestamp,
|
|
63
|
-
});
|
|
71
|
+
super(opts);
|
|
64
72
|
this.amount = opts.amount;
|
|
65
73
|
this.underlyingToken = opts.underlyingToken;
|
|
66
74
|
this.pool = opts.pool;
|
|
75
|
+
this.poolName = opts.poolName;
|
|
67
76
|
}
|
|
68
77
|
toString() {
|
|
69
78
|
const [underlyingSymbol, underlyingDecimals] = (0, sdk_gov_1.extractTokenData)(this.underlyingToken);
|
|
70
|
-
return `${(0, contractsRegister_1.getContractName)(this.pool)}: Deposit ${(0,
|
|
79
|
+
return `${this.poolName || (0, contractsRegister_1.getContractName)(this.pool)}: Deposit ${(0, sdk_gov_1.formatBN)(this.amount, underlyingDecimals || 18)} ${underlyingSymbol}`;
|
|
71
80
|
}
|
|
72
81
|
serialize() {
|
|
73
82
|
return {
|
|
@@ -81,20 +90,17 @@ class TxRemoveLiquidity extends eventOrTx_1.EVMTx {
|
|
|
81
90
|
amount;
|
|
82
91
|
dieselToken;
|
|
83
92
|
pool;
|
|
93
|
+
poolName;
|
|
84
94
|
constructor(opts) {
|
|
85
|
-
super(
|
|
86
|
-
block: opts.block,
|
|
87
|
-
txHash: opts.txHash,
|
|
88
|
-
txStatus: opts.txStatus,
|
|
89
|
-
timestamp: opts.timestamp,
|
|
90
|
-
});
|
|
95
|
+
super(opts);
|
|
91
96
|
this.amount = opts.amount;
|
|
92
97
|
this.dieselToken = opts.dieselToken;
|
|
93
98
|
this.pool = opts.pool;
|
|
99
|
+
this.poolName = opts.poolName;
|
|
94
100
|
}
|
|
95
101
|
toString() {
|
|
96
102
|
const [dSymbol, dDecimals] = (0, sdk_gov_1.extractTokenData)(this.dieselToken);
|
|
97
|
-
return `${(0, contractsRegister_1.getContractName)(this.pool)}: Withdraw ${(0,
|
|
103
|
+
return `${this.poolName || (0, contractsRegister_1.getContractName)(this.pool)}: Withdraw ${(0, sdk_gov_1.formatBN)(this.amount, dDecimals || 18)} ${dSymbol}`;
|
|
98
104
|
}
|
|
99
105
|
serialize() {
|
|
100
106
|
return {
|
|
@@ -112,13 +118,9 @@ class TXSwap extends eventOrTx_1.EVMTx {
|
|
|
112
118
|
tokenFrom;
|
|
113
119
|
tokenTo;
|
|
114
120
|
creditManager;
|
|
121
|
+
creditManagerName;
|
|
115
122
|
constructor(opts) {
|
|
116
|
-
super(
|
|
117
|
-
block: opts.block,
|
|
118
|
-
txHash: opts.txHash,
|
|
119
|
-
txStatus: opts.txStatus,
|
|
120
|
-
timestamp: opts.timestamp,
|
|
121
|
-
});
|
|
123
|
+
super(opts);
|
|
122
124
|
this.protocol = opts.protocol;
|
|
123
125
|
this.operation = opts.operation;
|
|
124
126
|
this.amountFrom = opts.amountFrom;
|
|
@@ -126,15 +128,16 @@ class TXSwap extends eventOrTx_1.EVMTx {
|
|
|
126
128
|
this.tokenFrom = opts.tokenFrom;
|
|
127
129
|
this.tokenTo = opts.tokenTo;
|
|
128
130
|
this.creditManager = opts.creditManager;
|
|
131
|
+
this.creditManagerName = opts.creditManagerName;
|
|
129
132
|
}
|
|
130
133
|
toString() {
|
|
131
134
|
let toPart = "";
|
|
132
135
|
if (this.tokenTo && this.amountTo) {
|
|
133
136
|
const [toSymbol, toDecimals] = (0, sdk_gov_1.extractTokenData)(this.tokenTo);
|
|
134
|
-
toPart = ` ⇒ ${(0,
|
|
137
|
+
toPart = ` ⇒ ${(0, sdk_gov_1.formatBN)(this.amountTo, toDecimals || 18)} ${toSymbol}`;
|
|
135
138
|
}
|
|
136
139
|
const [fromSymbol, fromDecimals] = (0, sdk_gov_1.extractTokenData)(this.tokenFrom);
|
|
137
|
-
return `Credit
|
|
140
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: ${this.operation} ${(0, sdk_gov_1.formatBN)(this.amountFrom, fromDecimals || 18)} ${fromSymbol} ${toPart} on ${(0, contractsRegister_1.getContractName)(this.protocol)}`;
|
|
138
141
|
}
|
|
139
142
|
serialize() {
|
|
140
143
|
return {
|
|
@@ -148,20 +151,17 @@ class TxAddCollateral extends eventOrTx_1.EVMTx {
|
|
|
148
151
|
amount;
|
|
149
152
|
addedToken;
|
|
150
153
|
creditManager;
|
|
154
|
+
creditManagerName;
|
|
151
155
|
constructor(opts) {
|
|
152
|
-
super(
|
|
153
|
-
block: opts.block,
|
|
154
|
-
txHash: opts.txHash,
|
|
155
|
-
txStatus: opts.txStatus,
|
|
156
|
-
timestamp: opts.timestamp,
|
|
157
|
-
});
|
|
156
|
+
super(opts);
|
|
158
157
|
this.amount = opts.amount;
|
|
159
158
|
this.addedToken = opts.addedToken;
|
|
160
159
|
this.creditManager = opts.creditManager;
|
|
160
|
+
this.creditManagerName = opts.creditManagerName;
|
|
161
161
|
}
|
|
162
162
|
toString() {
|
|
163
163
|
const [addedSymbol, addedDecimals] = (0, sdk_gov_1.extractTokenData)(this.addedToken);
|
|
164
|
-
return `Credit
|
|
164
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: Added ${(0, sdk_gov_1.formatBN)(this.amount, addedDecimals || 18)} ${addedSymbol} as collateral`;
|
|
165
165
|
}
|
|
166
166
|
serialize() {
|
|
167
167
|
return {
|
|
@@ -175,20 +175,17 @@ class TxIncreaseBorrowAmount extends eventOrTx_1.EVMTx {
|
|
|
175
175
|
amount;
|
|
176
176
|
underlyingToken;
|
|
177
177
|
creditManager;
|
|
178
|
+
creditManagerName;
|
|
178
179
|
constructor(opts) {
|
|
179
|
-
super(
|
|
180
|
-
block: opts.block,
|
|
181
|
-
txHash: opts.txHash,
|
|
182
|
-
txStatus: opts.txStatus,
|
|
183
|
-
timestamp: opts.timestamp,
|
|
184
|
-
});
|
|
180
|
+
super(opts);
|
|
185
181
|
this.amount = opts.amount;
|
|
186
182
|
this.underlyingToken = opts.underlyingToken;
|
|
187
183
|
this.creditManager = opts.creditManager;
|
|
184
|
+
this.creditManagerName = opts.creditManagerName;
|
|
188
185
|
}
|
|
189
186
|
toString() {
|
|
190
187
|
const [tokenSymbol, tokenDecimals] = (0, sdk_gov_1.extractTokenData)(this.underlyingToken);
|
|
191
|
-
return `Credit
|
|
188
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: Borrowed amount was increased for ${(0, sdk_gov_1.formatBN)(this.amount, tokenDecimals || 18)} ${tokenSymbol}`;
|
|
192
189
|
}
|
|
193
190
|
serialize() {
|
|
194
191
|
return {
|
|
@@ -202,20 +199,17 @@ class TxDecreaseBorrowAmount extends eventOrTx_1.EVMTx {
|
|
|
202
199
|
amount;
|
|
203
200
|
underlyingToken;
|
|
204
201
|
creditManager;
|
|
202
|
+
creditManagerName;
|
|
205
203
|
constructor(opts) {
|
|
206
|
-
super(
|
|
207
|
-
block: opts.block,
|
|
208
|
-
txHash: opts.txHash,
|
|
209
|
-
txStatus: opts.txStatus,
|
|
210
|
-
timestamp: opts.timestamp,
|
|
211
|
-
});
|
|
204
|
+
super(opts);
|
|
212
205
|
this.amount = opts.amount;
|
|
213
206
|
this.underlyingToken = opts.underlyingToken;
|
|
214
207
|
this.creditManager = opts.creditManager;
|
|
208
|
+
this.creditManagerName = opts.creditManagerName;
|
|
215
209
|
}
|
|
216
210
|
toString() {
|
|
217
211
|
const [tokenSymbol, tokenDecimals] = (0, sdk_gov_1.extractTokenData)(this.underlyingToken);
|
|
218
|
-
return `Credit
|
|
212
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: Borrowed amount was decreased for ${(0, sdk_gov_1.formatBN)(this.amount, tokenDecimals || 18)} ${tokenSymbol}`;
|
|
219
213
|
}
|
|
220
214
|
serialize() {
|
|
221
215
|
return {
|
|
@@ -230,22 +224,19 @@ class TxOpenAccount extends eventOrTx_1.EVMTx {
|
|
|
230
224
|
underlyingToken;
|
|
231
225
|
leverage;
|
|
232
226
|
creditManager;
|
|
227
|
+
creditManagerName;
|
|
233
228
|
constructor(opts) {
|
|
234
|
-
super(
|
|
235
|
-
block: opts.block,
|
|
236
|
-
txHash: opts.txHash,
|
|
237
|
-
txStatus: opts.txStatus,
|
|
238
|
-
timestamp: opts.timestamp,
|
|
239
|
-
});
|
|
229
|
+
super(opts);
|
|
240
230
|
this.amount = opts.amount;
|
|
241
231
|
this.underlyingToken = opts.underlyingToken;
|
|
242
232
|
this.leverage = opts.leverage;
|
|
243
233
|
this.creditManager = opts.creditManager;
|
|
234
|
+
this.creditManagerName = opts.creditManagerName;
|
|
244
235
|
}
|
|
245
236
|
toString() {
|
|
246
237
|
const [tokenSymbol, tokenDecimals] = (0, sdk_gov_1.extractTokenData)(this.underlyingToken);
|
|
247
|
-
return `Credit
|
|
248
|
-
${(0,
|
|
238
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: opening ${(0, sdk_gov_1.formatBN)(this.amount, tokenDecimals || 18)} ${tokenSymbol} x ${this.leverage.toFixed(2)} ⇒
|
|
239
|
+
${(0, sdk_gov_1.formatBN)((this.amount *
|
|
249
240
|
BigInt(Math.floor(this.leverage * Number(sdk_gov_1.LEVERAGE_DECIMALS)))) /
|
|
250
241
|
sdk_gov_1.LEVERAGE_DECIMALS, tokenDecimals || 18)} ${tokenSymbol}`;
|
|
251
242
|
}
|
|
@@ -260,18 +251,15 @@ exports.TxOpenAccount = TxOpenAccount;
|
|
|
260
251
|
class TxOpenMultitokenAccount extends eventOrTx_1.EVMTx {
|
|
261
252
|
borrowedAmount;
|
|
262
253
|
creditManager;
|
|
254
|
+
creditManagerName;
|
|
263
255
|
underlyingToken;
|
|
264
256
|
assets;
|
|
265
257
|
constructor(opts) {
|
|
266
|
-
super(
|
|
267
|
-
block: opts.block,
|
|
268
|
-
txHash: opts.txHash,
|
|
269
|
-
txStatus: opts.txStatus,
|
|
270
|
-
timestamp: opts.timestamp,
|
|
271
|
-
});
|
|
258
|
+
super(opts);
|
|
272
259
|
this.borrowedAmount = opts.borrowedAmount;
|
|
273
260
|
this.underlyingToken = opts.underlyingToken;
|
|
274
261
|
this.creditManager = opts.creditManager;
|
|
262
|
+
this.creditManagerName = opts.creditManagerName;
|
|
275
263
|
this.assets = opts.assets;
|
|
276
264
|
}
|
|
277
265
|
toString() {
|
|
@@ -282,7 +270,7 @@ class TxOpenMultitokenAccount extends eventOrTx_1.EVMTx {
|
|
|
282
270
|
return acc;
|
|
283
271
|
}, []);
|
|
284
272
|
const [symbol, underlyingDecimals] = (0, sdk_gov_1.extractTokenData)(this.underlyingToken);
|
|
285
|
-
return `Credit
|
|
273
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: opening. Borrowed amount: ${(0, sdk_gov_1.formatBN)(this.borrowedAmount, underlyingDecimals || 18)} ${symbol}; assets: ${assetSymbols.join(", ")}`;
|
|
286
274
|
}
|
|
287
275
|
serialize() {
|
|
288
276
|
return {
|
|
@@ -295,12 +283,7 @@ exports.TxOpenMultitokenAccount = TxOpenMultitokenAccount;
|
|
|
295
283
|
class TxClaimReward extends eventOrTx_1.EVMTx {
|
|
296
284
|
contracts;
|
|
297
285
|
constructor(opts) {
|
|
298
|
-
super(
|
|
299
|
-
block: opts.block,
|
|
300
|
-
txHash: opts.txHash,
|
|
301
|
-
txStatus: opts.txStatus,
|
|
302
|
-
timestamp: opts.timestamp,
|
|
303
|
-
});
|
|
286
|
+
super(opts);
|
|
304
287
|
this.contracts = opts.contracts;
|
|
305
288
|
}
|
|
306
289
|
toString() {
|
|
@@ -319,14 +302,6 @@ class TxClaimReward extends eventOrTx_1.EVMTx {
|
|
|
319
302
|
}
|
|
320
303
|
exports.TxClaimReward = TxClaimReward;
|
|
321
304
|
class TxClaimNFT extends eventOrTx_1.EVMTx {
|
|
322
|
-
constructor(opts) {
|
|
323
|
-
super({
|
|
324
|
-
block: opts.block,
|
|
325
|
-
txHash: opts.txHash,
|
|
326
|
-
txStatus: opts.txStatus,
|
|
327
|
-
timestamp: opts.timestamp,
|
|
328
|
-
});
|
|
329
|
-
}
|
|
330
305
|
toString() {
|
|
331
306
|
return `NFT claimed`;
|
|
332
307
|
}
|
|
@@ -342,18 +317,13 @@ class TxClaimGearRewards extends eventOrTx_1.EVMTx {
|
|
|
342
317
|
token;
|
|
343
318
|
amount;
|
|
344
319
|
constructor(opts) {
|
|
345
|
-
super(
|
|
346
|
-
block: opts.block,
|
|
347
|
-
txHash: opts.txHash,
|
|
348
|
-
txStatus: opts.txStatus,
|
|
349
|
-
timestamp: opts.timestamp,
|
|
350
|
-
});
|
|
320
|
+
super(opts);
|
|
351
321
|
this.amount = opts.amount;
|
|
352
322
|
this.token = opts.token;
|
|
353
323
|
}
|
|
354
324
|
toString() {
|
|
355
325
|
const [symbol, decimals] = (0, sdk_gov_1.extractTokenData)(this.token);
|
|
356
|
-
return `GEAR Rewards claimed: ${(0,
|
|
326
|
+
return `GEAR Rewards claimed: ${(0, sdk_gov_1.formatBN)(this.amount, decimals || 18)} ${symbol} `;
|
|
357
327
|
}
|
|
358
328
|
serialize() {
|
|
359
329
|
return {
|
|
@@ -365,17 +335,14 @@ class TxClaimGearRewards extends eventOrTx_1.EVMTx {
|
|
|
365
335
|
exports.TxClaimGearRewards = TxClaimGearRewards;
|
|
366
336
|
class TxRepayAccount extends eventOrTx_1.EVMTx {
|
|
367
337
|
creditManager;
|
|
338
|
+
creditManagerName;
|
|
368
339
|
constructor(opts) {
|
|
369
|
-
super(
|
|
370
|
-
block: opts.block,
|
|
371
|
-
txHash: opts.txHash,
|
|
372
|
-
txStatus: opts.txStatus,
|
|
373
|
-
timestamp: opts.timestamp,
|
|
374
|
-
});
|
|
340
|
+
super(opts);
|
|
375
341
|
this.creditManager = opts.creditManager;
|
|
342
|
+
this.creditManagerName = opts.creditManagerName;
|
|
376
343
|
}
|
|
377
344
|
toString() {
|
|
378
|
-
return `Credit
|
|
345
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: Repaying account`;
|
|
379
346
|
}
|
|
380
347
|
serialize() {
|
|
381
348
|
return {
|
|
@@ -387,17 +354,14 @@ class TxRepayAccount extends eventOrTx_1.EVMTx {
|
|
|
387
354
|
exports.TxRepayAccount = TxRepayAccount;
|
|
388
355
|
class TxCloseAccount extends eventOrTx_1.EVMTx {
|
|
389
356
|
creditManager;
|
|
357
|
+
creditManagerName;
|
|
390
358
|
constructor(opts) {
|
|
391
|
-
super(
|
|
392
|
-
block: opts.block,
|
|
393
|
-
txHash: opts.txHash,
|
|
394
|
-
txStatus: opts.txStatus,
|
|
395
|
-
timestamp: opts.timestamp,
|
|
396
|
-
});
|
|
359
|
+
super(opts);
|
|
397
360
|
this.creditManager = opts.creditManager;
|
|
361
|
+
this.creditManagerName = opts.creditManagerName;
|
|
398
362
|
}
|
|
399
363
|
toString() {
|
|
400
|
-
return `Credit
|
|
364
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: Closing account`;
|
|
401
365
|
}
|
|
402
366
|
serialize() {
|
|
403
367
|
return {
|
|
@@ -410,12 +374,7 @@ exports.TxCloseAccount = TxCloseAccount;
|
|
|
410
374
|
class TxApprove extends eventOrTx_1.EVMTx {
|
|
411
375
|
token;
|
|
412
376
|
constructor(opts) {
|
|
413
|
-
super(
|
|
414
|
-
block: opts.block,
|
|
415
|
-
txHash: opts.txHash,
|
|
416
|
-
txStatus: opts.txStatus,
|
|
417
|
-
timestamp: opts.timestamp,
|
|
418
|
-
});
|
|
377
|
+
super(opts);
|
|
419
378
|
this.token = opts.token;
|
|
420
379
|
}
|
|
421
380
|
toString() {
|
|
@@ -434,16 +393,13 @@ class TxEnableTokens extends eventOrTx_1.EVMTx {
|
|
|
434
393
|
enabledTokens;
|
|
435
394
|
disabledTokens;
|
|
436
395
|
creditManager;
|
|
396
|
+
creditManagerName;
|
|
437
397
|
constructor(opts) {
|
|
438
|
-
super(
|
|
439
|
-
block: opts.block,
|
|
440
|
-
txHash: opts.txHash,
|
|
441
|
-
txStatus: opts.txStatus,
|
|
442
|
-
timestamp: opts.timestamp,
|
|
443
|
-
});
|
|
398
|
+
super(opts);
|
|
444
399
|
this.enabledTokens = opts.enabledTokens;
|
|
445
400
|
this.disabledTokens = opts.disabledTokens;
|
|
446
401
|
this.creditManager = opts.creditManager;
|
|
402
|
+
this.creditManagerName = opts.creditManagerName;
|
|
447
403
|
}
|
|
448
404
|
toString() {
|
|
449
405
|
const enabledSymbols = this.enabledTokens.map(address => {
|
|
@@ -460,7 +416,7 @@ class TxEnableTokens extends eventOrTx_1.EVMTx {
|
|
|
460
416
|
? `disabled: ${disabledSymbols.join(", ")}`
|
|
461
417
|
: "",
|
|
462
418
|
].filter(s => !!s);
|
|
463
|
-
return `Credit
|
|
419
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: ${currentSentences.join("; ")}`;
|
|
464
420
|
}
|
|
465
421
|
serialize() {
|
|
466
422
|
return {
|
|
@@ -470,3 +426,130 @@ class TxEnableTokens extends eventOrTx_1.EVMTx {
|
|
|
470
426
|
}
|
|
471
427
|
}
|
|
472
428
|
exports.TxEnableTokens = TxEnableTokens;
|
|
429
|
+
class TxUpdateQuota extends eventOrTx_1.EVMTx {
|
|
430
|
+
updatedQuotas;
|
|
431
|
+
underlyingToken;
|
|
432
|
+
creditManager;
|
|
433
|
+
creditManagerName;
|
|
434
|
+
constructor(opts) {
|
|
435
|
+
super(opts);
|
|
436
|
+
this.updatedQuotas = opts.updatedQuotas;
|
|
437
|
+
this.creditManager = opts.creditManager;
|
|
438
|
+
this.creditManagerName = opts.creditManagerName;
|
|
439
|
+
this.underlyingToken = opts.underlyingToken;
|
|
440
|
+
}
|
|
441
|
+
toString() {
|
|
442
|
+
const [, underlyingDecimals] = (0, sdk_gov_1.extractTokenData)(this.underlyingToken);
|
|
443
|
+
const quota = this.updatedQuotas.map(({ token, balance }) => {
|
|
444
|
+
const [tokenSymbol] = (0, sdk_gov_1.extractTokenData)(token);
|
|
445
|
+
const sign = balance < 0 ? "-" : "";
|
|
446
|
+
const amountString = (0, sdk_gov_1.formatBN)(math_1.BigIntMath.abs(balance), underlyingDecimals || 18);
|
|
447
|
+
return `${tokenSymbol} by ${sign}${amountString}`;
|
|
448
|
+
});
|
|
449
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)} quota updated: ${quota.join("; ")}`;
|
|
450
|
+
}
|
|
451
|
+
serialize() {
|
|
452
|
+
return {
|
|
453
|
+
type: "TxUpdateQuota",
|
|
454
|
+
content: JSON.stringify(this),
|
|
455
|
+
};
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
exports.TxUpdateQuota = TxUpdateQuota;
|
|
459
|
+
class TxGaugeStake extends eventOrTx_1.EVMTx {
|
|
460
|
+
amount;
|
|
461
|
+
constructor(opts) {
|
|
462
|
+
super(opts);
|
|
463
|
+
this.amount = opts.amount;
|
|
464
|
+
}
|
|
465
|
+
toString() {
|
|
466
|
+
const tokenDecimals = sdk_gov_1.decimals.GEAR;
|
|
467
|
+
const amountString = (0, sdk_gov_1.formatBN)(math_1.BigIntMath.abs(this.amount), tokenDecimals);
|
|
468
|
+
return `Gauge: staked ${amountString} GEAR`;
|
|
469
|
+
}
|
|
470
|
+
serialize() {
|
|
471
|
+
return {
|
|
472
|
+
type: "TxGaugeStake",
|
|
473
|
+
content: JSON.stringify(this),
|
|
474
|
+
};
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
exports.TxGaugeStake = TxGaugeStake;
|
|
478
|
+
class TxGaugeUnstake extends eventOrTx_1.EVMTx {
|
|
479
|
+
amount;
|
|
480
|
+
constructor(opts) {
|
|
481
|
+
super(opts);
|
|
482
|
+
this.amount = opts.amount;
|
|
483
|
+
}
|
|
484
|
+
toString() {
|
|
485
|
+
const tokenDecimals = sdk_gov_1.decimals.GEAR;
|
|
486
|
+
const amountString = (0, sdk_gov_1.formatBN)(math_1.BigIntMath.abs(this.amount), tokenDecimals);
|
|
487
|
+
return `Gauge: unstaked ${amountString} GEAR`;
|
|
488
|
+
}
|
|
489
|
+
serialize() {
|
|
490
|
+
return {
|
|
491
|
+
type: "TxGaugeUnstake",
|
|
492
|
+
content: JSON.stringify(this),
|
|
493
|
+
};
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
exports.TxGaugeUnstake = TxGaugeUnstake;
|
|
497
|
+
class TxGaugeClaim extends eventOrTx_1.EVMTx {
|
|
498
|
+
toString() {
|
|
499
|
+
return `Gauge: withdrawals claimed`;
|
|
500
|
+
}
|
|
501
|
+
serialize() {
|
|
502
|
+
return {
|
|
503
|
+
type: "TxGaugeClaim",
|
|
504
|
+
content: JSON.stringify(this),
|
|
505
|
+
};
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
exports.TxGaugeClaim = TxGaugeClaim;
|
|
509
|
+
class TxGaugeVote extends eventOrTx_1.EVMTx {
|
|
510
|
+
tokens;
|
|
511
|
+
constructor(opts) {
|
|
512
|
+
super(opts);
|
|
513
|
+
this.tokens = opts.tokens;
|
|
514
|
+
}
|
|
515
|
+
toString() {
|
|
516
|
+
const votes = this.tokens.map(({ token }) => {
|
|
517
|
+
const [tokenSymbol] = (0, sdk_gov_1.extractTokenData)(token);
|
|
518
|
+
return tokenSymbol;
|
|
519
|
+
});
|
|
520
|
+
return `Gauge: voted for ${votes.join(", ")}`;
|
|
521
|
+
}
|
|
522
|
+
serialize() {
|
|
523
|
+
return {
|
|
524
|
+
type: "TxGaugeVote",
|
|
525
|
+
content: JSON.stringify(this),
|
|
526
|
+
};
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
exports.TxGaugeVote = TxGaugeVote;
|
|
530
|
+
class TxWithdrawCollateral extends eventOrTx_1.EVMTx {
|
|
531
|
+
amount;
|
|
532
|
+
token;
|
|
533
|
+
to;
|
|
534
|
+
creditManager;
|
|
535
|
+
creditManagerName;
|
|
536
|
+
constructor(opts) {
|
|
537
|
+
super(opts);
|
|
538
|
+
this.amount = opts.amount;
|
|
539
|
+
this.token = opts.token;
|
|
540
|
+
this.to = opts.to;
|
|
541
|
+
this.creditManager = opts.creditManager;
|
|
542
|
+
this.creditManagerName = opts.creditManagerName;
|
|
543
|
+
}
|
|
544
|
+
toString() {
|
|
545
|
+
const [symbol, decimals] = (0, sdk_gov_1.extractTokenData)(this.token);
|
|
546
|
+
return `Credit Account ${this.creditManagerName || (0, contractsRegister_1.getContractName)(this.creditManager)}: withdrawn ${(0, sdk_gov_1.formatBN)(this.amount, decimals || 18)} ${symbol}`;
|
|
547
|
+
}
|
|
548
|
+
serialize() {
|
|
549
|
+
return {
|
|
550
|
+
type: "TxWithdrawCollateral",
|
|
551
|
+
content: JSON.stringify(this),
|
|
552
|
+
};
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
exports.TxWithdrawCollateral = TxWithdrawCollateral;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,33 +1,41 @@
|
|
|
1
|
+
export * from "./apy";
|
|
2
|
+
export * from "./contracts/contractsRegister";
|
|
1
3
|
export * from "./core/assets";
|
|
2
4
|
export * from "./core/creditAccount";
|
|
3
5
|
export * from "./core/creditManager";
|
|
4
6
|
export * from "./core/creditSession";
|
|
7
|
+
export * from "./core/endpoint";
|
|
5
8
|
export * from "./core/errors";
|
|
6
9
|
export * from "./core/eventOrTx";
|
|
7
10
|
export * from "./core/events";
|
|
11
|
+
export * from "./core/gauge";
|
|
12
|
+
export * from "./core/gaugeMath";
|
|
8
13
|
export * from "./core/pool";
|
|
9
14
|
export * from "./core/rewardClaimer";
|
|
10
15
|
export * from "./core/strategy";
|
|
11
16
|
export * from "./core/tokenDistributor";
|
|
12
17
|
export * from "./core/trade";
|
|
13
18
|
export * from "./core/transactions";
|
|
19
|
+
export * from "./parsers/txParser";
|
|
20
|
+
export * from "./pathfinder/core";
|
|
21
|
+
export * from "./pathfinder/pathfinder";
|
|
22
|
+
export * from "./pathfinder/v1/pathfinderv1";
|
|
14
23
|
export * from "./payload/creditAccount";
|
|
15
24
|
export * from "./payload/creditManager";
|
|
16
25
|
export * from "./payload/creditSession";
|
|
26
|
+
export * from "./payload/gauge";
|
|
17
27
|
export * from "./payload/graphPayload";
|
|
18
28
|
export * from "./payload/pool";
|
|
19
29
|
export * from "./payload/token";
|
|
20
|
-
export * from "./
|
|
30
|
+
export * from "./tokens/tokenData";
|
|
31
|
+
export * from "./types";
|
|
32
|
+
export * from "./utils/errors";
|
|
21
33
|
export * from "./utils/formatter";
|
|
22
34
|
export * from "./utils/loading";
|
|
23
35
|
export * from "./utils/math";
|
|
24
|
-
export * from "./utils/validate";
|
|
25
|
-
export * from "./apy";
|
|
26
|
-
export * from "./parsers/txParser";
|
|
27
|
-
export * from "./pathfinder/core";
|
|
28
|
-
export * from "./pathfinder/pathfinder";
|
|
29
|
-
export * from "./utils/errors";
|
|
30
36
|
export * from "./utils/price";
|
|
31
37
|
export { callRepeater } from "./utils/repeater";
|
|
38
|
+
export * from "./utils/validate";
|
|
32
39
|
export * from "./watchers/creditAccountWatcher";
|
|
33
40
|
export * from "./watchers/creditManagerWatcher";
|
|
41
|
+
export * from "@gearbox-protocol/sdk-gov";
|
package/lib/index.js
CHANGED
|
@@ -15,38 +15,45 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.callRepeater = void 0;
|
|
18
|
+
__exportStar(require("./apy"), exports);
|
|
19
|
+
__exportStar(require("./contracts/contractsRegister"), exports);
|
|
18
20
|
__exportStar(require("./core/assets"), exports);
|
|
19
21
|
__exportStar(require("./core/creditAccount"), exports);
|
|
20
22
|
__exportStar(require("./core/creditManager"), exports);
|
|
21
23
|
__exportStar(require("./core/creditSession"), exports);
|
|
24
|
+
__exportStar(require("./core/endpoint"), exports);
|
|
22
25
|
__exportStar(require("./core/errors"), exports);
|
|
23
26
|
__exportStar(require("./core/eventOrTx"), exports);
|
|
24
27
|
__exportStar(require("./core/events"), exports);
|
|
28
|
+
__exportStar(require("./core/gauge"), exports);
|
|
29
|
+
__exportStar(require("./core/gaugeMath"), exports);
|
|
25
30
|
__exportStar(require("./core/pool"), exports);
|
|
26
31
|
__exportStar(require("./core/rewardClaimer"), exports);
|
|
27
32
|
__exportStar(require("./core/strategy"), exports);
|
|
28
33
|
__exportStar(require("./core/tokenDistributor"), exports);
|
|
29
34
|
__exportStar(require("./core/trade"), exports);
|
|
30
35
|
__exportStar(require("./core/transactions"), exports);
|
|
36
|
+
__exportStar(require("./parsers/txParser"), exports);
|
|
37
|
+
__exportStar(require("./pathfinder/core"), exports);
|
|
38
|
+
__exportStar(require("./pathfinder/pathfinder"), exports);
|
|
39
|
+
__exportStar(require("./pathfinder/v1/pathfinderv1"), exports);
|
|
31
40
|
__exportStar(require("./payload/creditAccount"), exports);
|
|
32
41
|
__exportStar(require("./payload/creditManager"), exports);
|
|
33
42
|
__exportStar(require("./payload/creditSession"), exports);
|
|
43
|
+
__exportStar(require("./payload/gauge"), exports);
|
|
34
44
|
__exportStar(require("./payload/graphPayload"), exports);
|
|
35
45
|
__exportStar(require("./payload/pool"), exports);
|
|
36
46
|
__exportStar(require("./payload/token"), exports);
|
|
37
|
-
__exportStar(require("./
|
|
47
|
+
__exportStar(require("./tokens/tokenData"), exports);
|
|
48
|
+
__exportStar(require("./types"), exports);
|
|
49
|
+
__exportStar(require("./utils/errors"), exports);
|
|
38
50
|
__exportStar(require("./utils/formatter"), exports);
|
|
39
51
|
__exportStar(require("./utils/loading"), exports);
|
|
40
52
|
__exportStar(require("./utils/math"), exports);
|
|
41
|
-
__exportStar(require("./utils/validate"), exports);
|
|
42
|
-
// Tokens
|
|
43
|
-
__exportStar(require("./apy"), exports);
|
|
44
|
-
__exportStar(require("./parsers/txParser"), exports);
|
|
45
|
-
__exportStar(require("./pathfinder/core"), exports);
|
|
46
|
-
__exportStar(require("./pathfinder/pathfinder"), exports);
|
|
47
|
-
__exportStar(require("./utils/errors"), exports);
|
|
48
53
|
__exportStar(require("./utils/price"), exports);
|
|
49
54
|
var repeater_1 = require("./utils/repeater");
|
|
50
55
|
Object.defineProperty(exports, "callRepeater", { enumerable: true, get: function () { return repeater_1.callRepeater; } });
|
|
56
|
+
__exportStar(require("./utils/validate"), exports);
|
|
51
57
|
__exportStar(require("./watchers/creditAccountWatcher"), exports);
|
|
52
58
|
__exportStar(require("./watchers/creditManagerWatcher"), exports);
|
|
59
|
+
__exportStar(require("@gearbox-protocol/sdk-gov"), exports);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ERC20Parser = void 0;
|
|
4
|
+
const sdk_gov_1 = require("@gearbox-protocol/sdk-gov");
|
|
4
5
|
const types_1 = require("../types");
|
|
5
|
-
const formatter_1 = require("../utils/formatter");
|
|
6
6
|
const abstractParser_1 = require("./abstractParser");
|
|
7
7
|
class ERC20Parser extends abstractParser_1.AbstractParser {
|
|
8
8
|
constructor(symbol) {
|
|
@@ -26,7 +26,7 @@ class ERC20Parser extends abstractParser_1.AbstractParser {
|
|
|
26
26
|
}
|
|
27
27
|
case "approve": {
|
|
28
28
|
const [spender, amount] = this.decodeFunctionData(functionFragment, calldata);
|
|
29
|
-
return `${functionName}(${spender}, [${(0,
|
|
29
|
+
return `${functionName}(${spender}, [${(0, sdk_gov_1.toBigInt)(amount).toString()}])`;
|
|
30
30
|
}
|
|
31
31
|
default:
|
|
32
32
|
return `${functionName}: Unknown operation ${functionFragment.name} with calldata ${calldata}`;
|
|
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.AbstractParser = void 0;
|
|
4
4
|
const sdk_gov_1 = require("@gearbox-protocol/sdk-gov");
|
|
5
5
|
const ethers_1 = require("ethers");
|
|
6
|
-
const formatter_1 = require("../utils/formatter");
|
|
7
6
|
class AbstractParser {
|
|
8
7
|
contract;
|
|
9
8
|
ifc;
|
|
@@ -30,7 +29,7 @@ class AbstractParser {
|
|
|
30
29
|
return symbol;
|
|
31
30
|
}
|
|
32
31
|
formatBN(amount, token) {
|
|
33
|
-
return `${(0,
|
|
32
|
+
return `${(0, sdk_gov_1.formatBN)(amount, sdk_gov_1.decimals[token])} [${(0, sdk_gov_1.toBigInt)(amount).toString()}]`;
|
|
34
33
|
}
|
|
35
34
|
parseToObject(address, calldata) {
|
|
36
35
|
const { functionFragment } = this.parseSelector(calldata);
|