@gearbox-protocol/sdk 2.1.36 → 3.0.0-draft.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/SignUpRepository.sol +85 -0
- package/contracts/index.sol +84 -1
- package/lib/apy/index.d.ts +11 -9
- package/lib/apy/index.js +95 -24
- package/lib/contracts/contractsRegister.d.ts +18 -10
- package/lib/contracts/contractsRegister.js +62 -10
- package/lib/core/assets.d.ts +18 -12
- package/lib/core/assets.js +41 -17
- package/lib/core/bot.d.ts +12 -0
- package/lib/core/bot.js +23 -0
- package/lib/core/creditAccount.d.ts +135 -45
- package/lib/core/creditAccount.js +328 -110
- package/lib/core/creditAccount.spec.js +1553 -52
- package/lib/core/creditManager.d.ts +57 -45
- package/lib/core/creditManager.js +264 -146
- package/lib/core/creditSession.d.ts +35 -13
- package/lib/core/creditSession.js +60 -37
- package/lib/core/endpoint.d.ts +23 -0
- package/lib/core/endpoint.js +89 -0
- package/lib/core/eventOrTx.d.ts +5 -5
- package/lib/core/events.d.ts +163 -162
- package/lib/core/events.js +69 -70
- package/lib/core/gauge.d.ts +40 -0
- package/lib/core/gauge.js +64 -0
- package/lib/core/gaugeMath.d.ts +41 -0
- package/lib/core/gaugeMath.js +105 -0
- package/lib/core/gaugeMath.spec.js +388 -0
- package/lib/core/pool.d.ts +150 -0
- package/lib/core/pool.js +324 -0
- package/lib/core/priceOracle.d.ts +1 -1
- package/lib/core/priceOracle.js +4 -5
- package/lib/core/protocols.d.ts +9 -0
- package/lib/core/protocols.js +173 -0
- package/lib/core/rewardClaimer/aura.d.ts +1 -0
- package/lib/core/rewardClaimer/aura.js +23 -0
- package/lib/core/rewardClaimer/auraAbi.d.ts +15 -0
- package/lib/core/rewardClaimer/auraAbi.js +24 -0
- package/lib/core/rewardClaimer/convex.d.ts +1 -0
- package/lib/core/rewardClaimer/convex.js +18 -0
- package/lib/core/rewardClaimer/index.d.ts +25 -0
- package/lib/core/rewardClaimer/index.js +34 -0
- package/lib/core/rewardClaimer/rewardConvex.d.ts +42 -0
- package/lib/core/rewardClaimer/rewardConvex.js +250 -0
- package/lib/core/rewardClaimer/rewardConvex.spec.js +112 -0
- package/lib/core/rewardClaimer/stakingRewards.d.ts +34 -0
- package/lib/core/rewardClaimer/stakingRewards.js +133 -0
- package/lib/core/strategy.d.ts +13 -29
- package/lib/core/strategy.js +26 -52
- package/lib/core/trade.d.ts +16 -34
- package/lib/core/trade.js +41 -93
- package/lib/core/transactions.d.ts +224 -69
- package/lib/core/transactions.js +346 -134
- package/lib/gearboxRewards/api.d.ts +104 -0
- package/lib/gearboxRewards/api.js +359 -0
- package/lib/gearboxRewards/apy.d.ts +53 -0
- package/lib/gearboxRewards/apy.js +116 -0
- package/lib/gearboxRewards/extraAPY.d.ts +32 -0
- package/lib/gearboxRewards/extraAPY.js +71 -0
- package/lib/gearboxRewards/index.d.ts +3 -0
- package/lib/gearboxRewards/index.js +19 -0
- package/lib/gearboxRewards/merklAPI.d.ts +138 -0
- package/lib/gearboxRewards/merklAPI.js +10 -0
- package/lib/index.d.ts +18 -30
- package/lib/index.js +18 -36
- package/lib/parsers/ERC20Parser.d.ts +3 -2
- package/lib/parsers/ERC20Parser.js +12 -12
- package/lib/parsers/aaveV2LendingPoolAdapterParser.d.ts +8 -0
- package/lib/parsers/aaveV2LendingPoolAdapterParser.js +21 -0
- package/lib/parsers/aaveV2WrappedATokenAdapterParser.d.ts +8 -0
- package/lib/parsers/aaveV2WrappedATokenAdapterParser.js +21 -0
- package/lib/parsers/abstractParser.d.ts +22 -16
- package/lib/parsers/abstractParser.js +34 -19
- package/lib/parsers/balancerV2VaultParser.d.ts +8 -0
- package/lib/parsers/balancerV2VaultParser.js +32 -0
- package/lib/parsers/compoundV2CTokenAdapterParser.d.ts +8 -0
- package/lib/parsers/compoundV2CTokenAdapterParser.js +21 -0
- package/lib/parsers/convexBaseRewardPoolAdapterParser.d.ts +4 -3
- package/lib/parsers/convexBaseRewardPoolAdapterParser.js +23 -19
- package/lib/parsers/convexBoosterAdapterParser.d.ts +3 -3
- package/lib/parsers/convexBoosterAdapterParser.js +17 -17
- package/lib/parsers/convextRewardPoolParser.d.ts +3 -2
- package/lib/parsers/convextRewardPoolParser.js +5 -5
- package/lib/parsers/creditFacadeParser.d.ts +6 -4
- package/lib/parsers/creditFacadeParser.js +51 -14
- package/lib/parsers/creditManagerParser.d.ts +2 -1
- package/lib/parsers/creditManagerParser.js +5 -8
- package/lib/parsers/curveAdapterParser.d.ts +4 -4
- package/lib/parsers/curveAdapterParser.js +46 -42
- package/lib/parsers/erc626AdapterParser.d.ts +8 -0
- package/lib/parsers/erc626AdapterParser.js +21 -0
- package/lib/parsers/iParser.d.ts +4 -7
- package/lib/parsers/lidoAdapterParser.d.ts +3 -2
- package/lib/parsers/lidoAdapterParser.js +9 -8
- package/lib/parsers/lidoSTETHParser.d.ts +3 -2
- package/lib/parsers/lidoSTETHParser.js +12 -12
- package/lib/parsers/priceOracleParser.d.ts +2 -1
- package/lib/parsers/priceOracleParser.js +6 -6
- package/lib/parsers/stakingRewardsAdapterParser.d.ts +10 -0
- package/lib/parsers/stakingRewardsAdapterParser.js +35 -0
- package/lib/parsers/txParser.d.ts +23 -32
- package/lib/parsers/txParser.js +60 -51
- package/lib/parsers/uniV2AdapterParser.d.ts +3 -3
- package/lib/parsers/uniV2AdapterParser.js +13 -15
- package/lib/parsers/uniV2AdapterParser.spec.js +44 -32
- package/lib/parsers/uniV3AdapterParser.d.ts +5 -4
- package/lib/parsers/uniV3AdapterParser.js +27 -19
- package/lib/parsers/uniV3AdapterParser.spec.js +54 -78
- package/lib/parsers/wstETHAdapterParser.d.ts +3 -2
- package/lib/parsers/wstETHAdapterParser.js +21 -21
- package/lib/parsers/wstETHAdapterParser.spec.js +24 -8
- package/lib/parsers/yearnAdapterParser.spec.js +43 -25
- package/lib/parsers/yearnV2AdapterParser.d.ts +3 -2
- package/lib/parsers/yearnV2AdapterParser.js +25 -15
- package/lib/pathfinder/balancerVault.d.ts +33 -0
- package/lib/pathfinder/balancerVault.js +59 -0
- package/lib/pathfinder/core.d.ts +18 -8
- package/lib/pathfinder/index.d.ts +4 -0
- package/lib/pathfinder/index.js +20 -0
- package/lib/pathfinder/pathOptions.d.ts +8 -7
- package/lib/pathfinder/pathOptions.js +44 -33
- package/lib/pathfinder/pathOptions.spec.js +57 -55
- package/lib/pathfinder/pathfinder.d.ts +61 -23
- package/lib/pathfinder/pathfinder.js +167 -82
- package/lib/pathfinder/pathfinder.spec.js +31 -19
- package/lib/pathfinder/utils.d.ts +34 -0
- package/lib/pathfinder/utils.js +186 -0
- package/lib/payload/bot.d.ts +13 -0
- package/lib/payload/creditAccount.d.ts +41 -4
- package/lib/payload/creditManager.d.ts +58 -15
- package/lib/payload/creditSession.d.ts +31 -16
- package/lib/payload/gauge.d.ts +40 -0
- package/lib/payload/graphPayload.d.ts +3 -2
- package/lib/payload/pool.d.ts +111 -27
- package/lib/payload/token.d.ts +5 -2
- package/lib/redstone/api.d.ts +42 -0
- package/lib/redstone/api.js +384 -0
- package/lib/redstone/index.d.ts +1 -0
- package/lib/redstone/index.js +17 -0
- package/lib/tokens/tokenData.d.ts +7 -9
- package/lib/tokens/tokenData.js +26 -22
- package/lib/types/CompositePriceFeed.d.ts +182 -0
- package/lib/types/CompositePriceFeed.js +123 -0
- package/lib/types/IAaveV2_LendingPoolAdapter.d.ts +151 -0
- package/lib/types/IAaveV2_LendingPoolAdapter.js +98 -0
- package/lib/types/IAaveV2_WrappedATokenAdapter.d.ts +245 -0
- package/lib/types/IAaveV2_WrappedATokenAdapter.js +166 -0
- package/lib/types/IAddressProviderV3.d.ts +85 -0
- package/lib/types/IAddressProviderV3.js +66 -0
- package/lib/types/IAirdropDistributor.d.ts +112 -0
- package/lib/types/IAirdropDistributor.js +105 -0
- package/lib/types/IBalancerV2VaultAdapter.d.ts +507 -0
- package/lib/types/IBalancerV2VaultAdapter.js +322 -0
- package/lib/types/IBaseRewardPool.d.ts +391 -0
- package/lib/types/IBaseRewardPool.js +251 -0
- package/lib/types/ICompoundV2_CTokenAdapter.d.ts +189 -0
- package/lib/types/ICompoundV2_CTokenAdapter.js +130 -0
- package/lib/types/IConvexToken.d.ts +201 -0
- package/lib/types/IConvexToken.js +145 -0
- package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +299 -0
- package/lib/types/IConvexV1BaseRewardPoolAdapter.js +204 -0
- package/lib/types/IConvexV1BoosterAdapter.d.ts +182 -0
- package/lib/types/IConvexV1BoosterAdapter.js +125 -0
- package/lib/types/ICreditConfiguratorV3.d.ts +598 -0
- package/lib/types/ICreditConfiguratorV3.js +601 -0
- package/lib/types/ICreditFacadeV2Extended.d.ts +74 -0
- package/lib/types/ICreditFacadeV2Extended.js +63 -0
- package/lib/types/ICreditFacadeV3.d.ts +543 -0
- package/lib/types/ICreditFacadeV3.js +491 -0
- package/lib/types/ICreditFacadeV3Multicall.d.ts +197 -0
- package/lib/types/ICreditFacadeV3Multicall.js +144 -0
- package/lib/types/ICreditManagerV2.d.ts +700 -0
- package/lib/types/ICreditManagerV2.js +443 -0
- package/lib/types/ICreditManagerV3.d.ts +1016 -0
- package/lib/types/ICreditManagerV3.js +672 -0
- package/lib/types/ICurvePool.d.ts +559 -0
- package/lib/types/ICurvePool.js +334 -0
- package/lib/types/ICurveV1_2AssetsAdapter.d.ts +665 -0
- package/lib/types/ICurveV1_2AssetsAdapter.js +406 -0
- package/lib/types/ICurveV1_3AssetsAdapter.d.ts +665 -0
- package/lib/types/ICurveV1_3AssetsAdapter.js +406 -0
- package/lib/types/ICurveV1_4AssetsAdapter.d.ts +665 -0
- package/lib/types/ICurveV1_4AssetsAdapter.js +406 -0
- package/lib/types/IDataCompressorV2_1.d.ts +1165 -0
- package/lib/types/IDataCompressorV2_1.js +720 -0
- package/lib/types/IDataCompressorV3.d.ts +1573 -0
- package/lib/types/IDataCompressorV3.js +959 -0
- package/lib/types/IDegenDistributor.d.ts +77 -0
- package/lib/types/IDegenDistributor.js +72 -0
- package/lib/types/IERC20.d.ts +141 -0
- package/lib/types/IERC20.js +103 -0
- package/lib/types/IERC20Permit.d.ts +59 -0
- package/lib/types/IERC20Permit.js +37 -0
- package/lib/types/IERC20ZapperDeposits.d.ts +193 -0
- package/lib/types/IERC20ZapperDeposits.js +101 -0
- package/lib/types/IERC4626Adapter.d.ts +213 -0
- package/lib/types/IERC4626Adapter.js +142 -0
- package/lib/types/IETHZapperDeposits.d.ts +33 -0
- package/lib/types/IETHZapperDeposits.js +29 -0
- package/lib/types/IFarmingPool.d.ts +292 -0
- package/lib/types/IFarmingPool.js +231 -0
- package/lib/types/IGearStakingV3.d.ts +497 -0
- package/lib/types/IGearStakingV3.js +368 -0
- package/lib/types/IInterestRateModel.d.ts +29 -0
- package/lib/types/IInterestRateModel.js +25 -0
- package/lib/types/ILidoV1Adapter.d.ts +137 -0
- package/lib/types/ILidoV1Adapter.js +100 -0
- package/lib/types/IMulticall3.d.ts +332 -0
- package/lib/types/IMulticall3.js +244 -0
- package/lib/types/IOffchainOracle.d.ts +41 -0
- package/lib/types/IOffchainOracle.js +33 -0
- package/lib/types/IPToken.d.ts +21 -0
- package/lib/types/IPToken.js +22 -0
- package/lib/types/IPartialLiquidationBotV3.d.ts +210 -0
- package/lib/types/IPartialLiquidationBotV3.js +143 -0
- package/lib/types/IPendleMarket.d.ts +19 -0
- package/lib/types/IPendleMarket.js +19 -0
- package/lib/types/IPendleRouter.d.ts +536 -0
- package/lib/types/IPendleRouter.js +370 -0
- package/lib/types/IPendleRouterAdapter.d.ts +831 -0
- package/lib/types/IPendleRouterAdapter.js +572 -0
- package/lib/types/IPendleRouterAdapterEvents.d.ts +26 -0
- package/lib/types/IPendleRouterAdapterEvents.js +39 -0
- package/lib/types/IPendleRouterAdapterExceptions.d.ts +9 -0
- package/lib/types/IPendleRouterAdapterExceptions.js +10 -0
- package/lib/types/IPoolV3.d.ts +1061 -0
- package/lib/types/IPoolV3.js +806 -0
- package/lib/types/IPriceFeed.d.ts +77 -0
- package/lib/types/IPriceFeed.js +56 -0
- package/lib/types/IPriceOracleBase.d.ts +97 -0
- package/lib/types/IPriceOracleBase.js +60 -0
- package/lib/types/IPriceOracleV3.d.ts +319 -0
- package/lib/types/IPriceOracleV3.js +210 -0
- package/lib/types/IRouterComponent.d.ts +31 -0
- package/lib/types/IRouterComponent.js +29 -0
- package/lib/types/IRouterStatic.d.ts +128 -0
- package/lib/types/IRouterStatic.js +68 -0
- package/lib/types/IRouterV3.d.ts +505 -0
- package/lib/types/IRouterV3.js +328 -0
- package/lib/types/IStakingRewardsAdapter.d.ts +197 -0
- package/lib/types/IStakingRewardsAdapter.js +139 -0
- package/lib/types/ISwapper.d.ts +100 -0
- package/lib/types/ISwapper.js +75 -0
- package/lib/types/IUniswapV2Adapter.d.ts +214 -0
- package/lib/types/IUniswapV2Adapter.js +139 -0
- package/lib/types/IUniswapV3Adapter.d.ts +391 -0
- package/lib/types/IUniswapV3Adapter.js +260 -0
- package/lib/types/IUpdatablePriceFeed.d.ts +97 -0
- package/lib/types/IUpdatablePriceFeed.js +70 -0
- package/lib/types/IYToken.d.ts +21 -0
- package/lib/types/IYToken.js +22 -0
- package/lib/types/IYearnV2Adapter.d.ts +223 -0
- package/lib/types/IYearnV2Adapter.js +148 -0
- package/lib/types/IZapper.d.ts +159 -0
- package/lib/types/IZapper.js +103 -0
- package/lib/types/IstETH.d.ts +257 -0
- package/lib/types/IstETH.js +175 -0
- package/lib/types/IwstETH.d.ts +257 -0
- package/lib/types/IwstETH.js +181 -0
- package/lib/types/IwstETHV1Adapter.d.ts +153 -0
- package/lib/types/IwstETHV1Adapter.js +108 -0
- package/lib/types/PendleSwapper.d.ts +182 -0
- package/lib/types/PendleSwapper.js +130 -0
- package/lib/types/PendleTWAPPTPriceFeed.d.ts +201 -0
- package/lib/types/PendleTWAPPTPriceFeed.js +131 -0
- package/lib/types/RedstonePriceFeed.d.ts +423 -0
- package/lib/types/RedstonePriceFeed.js +287 -0
- package/lib/types/RouterComponentConfigurator.d.ts +61 -0
- package/lib/types/RouterComponentConfigurator.js +48 -0
- package/lib/types/SignUpRepository.d.ts +161 -0
- package/lib/types/SignUpRepository.js +137 -0
- package/lib/types/index.d.ts +65 -301
- package/lib/types/index.js +67 -307
- package/lib/utils/calls.d.ts +31 -0
- package/lib/utils/calls.js +73 -0
- package/lib/utils/formatter.d.ts +2 -6
- package/lib/utils/formatter.js +7 -80
- package/lib/utils/math.d.ts +3 -1
- package/lib/utils/math.js +8 -7
- package/lib/utils/price.js +4 -4
- package/lib/utils/types.d.ts +1 -10
- package/package.json +30 -21
- package/lib/apy/convexAPY.d.ts +0 -50
- package/lib/apy/convexAPY.js +0 -189
- package/lib/apy/curveAPY.d.ts +0 -11
- package/lib/apy/curveAPY.js +0 -87
- package/lib/apy/lidoAPY.d.ts +0 -1
- package/lib/apy/lidoAPY.js +0 -22
- package/lib/apy/yearnAPY.d.ts +0 -3
- package/lib/apy/yearnAPY.js +0 -34
- package/lib/config.d.ts +0 -2
- package/lib/config.js +0 -5
- package/lib/contracts/adapters.d.ts +0 -24
- package/lib/contracts/adapters.js +0 -28
- package/lib/contracts/contracts.d.ts +0 -112
- package/lib/contracts/contracts.js +0 -654
- package/lib/contracts/protocols.d.ts +0 -12
- package/lib/contracts/protocols.js +0 -16
- package/lib/contracts/utilsContracts.d.ts +0 -7
- package/lib/contracts/utilsContracts.js +0 -28
- package/lib/core/chains.d.ts +0 -23
- package/lib/core/chains.js +0 -63
- package/lib/core/constants.d.ts +0 -21
- package/lib/core/constants.js +0 -31
- package/lib/core/errors.d.ts +0 -14
- package/lib/core/errors.js +0 -17
- package/lib/core/pool/data.d.ts +0 -109
- package/lib/core/pool/data.js +0 -224
- package/lib/core/pool/index.d.ts +0 -1
- package/lib/core/pool/index.js +0 -17
- package/lib/core/rewardClaimer.d.ts +0 -20
- package/lib/core/rewardClaimer.js +0 -10
- package/lib/core/rewardConvex.d.ts +0 -27
- package/lib/core/rewardConvex.js +0 -104
- package/lib/core/rewardConvex.spec.js +0 -145
- package/lib/core/strategy.spec.js +0 -64
- package/lib/parsers/addressProviderParser.d.ts +0 -6
- package/lib/parsers/addressProviderParser.js +0 -27
- package/lib/parsers/airdropDistributorParser.d.ts +0 -6
- package/lib/parsers/airdropDistributorParser.js +0 -22
- package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.js +0 -24
- package/lib/parsers/convexBoosterAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/convexBoosterAdapterParser.spec.js +0 -20
- package/lib/parsers/creditFacadeParser.spec.d.ts +0 -1
- package/lib/parsers/creditFacadeParser.spec.js +0 -26
- package/lib/parsers/curveAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/curveAdapterParser.spec.js +0 -42
- package/lib/parsers/dataCompressorParser.d.ts +0 -6
- package/lib/parsers/dataCompressorParser.js +0 -23
- package/lib/parsers/lidoAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/lidoAdapterParser.spec.js +0 -17
- 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/parsers/poolParser.d.ts +0 -6
- package/lib/parsers/poolParser.js +0 -19
- package/lib/tokens/aave.d.ts +0 -20
- package/lib/tokens/aave.js +0 -62
- package/lib/tokens/balancer.d.ts +0 -12
- package/lib/tokens/balancer.js +0 -36
- package/lib/tokens/compound.d.ts +0 -11
- package/lib/tokens/compound.js +0 -38
- package/lib/tokens/convex.d.ts +0 -30
- package/lib/tokens/convex.js +0 -262
- package/lib/tokens/curveLP.d.ts +0 -27
- package/lib/tokens/curveLP.js +0 -141
- package/lib/tokens/decimals.d.ts +0 -2
- package/lib/tokens/decimals.js +0 -115
- package/lib/tokens/gear.d.ts +0 -14
- package/lib/tokens/gear.js +0 -47
- package/lib/tokens/normal.d.ts +0 -9
- package/lib/tokens/normal.js +0 -194
- package/lib/tokens/quoted.d.ts +0 -3
- package/lib/tokens/quoted.js +0 -7
- package/lib/tokens/token.d.ts +0 -25
- package/lib/tokens/token.js +0 -305
- package/lib/tokens/tokenType.d.ts +0 -15
- package/lib/tokens/tokenType.js +0 -19
- package/lib/tokens/tokens.spec.d.ts +0 -1
- package/lib/tokens/tokens.spec.js +0 -151
- package/lib/tokens/yearn.d.ts +0 -26
- package/lib/tokens/yearn.js +0 -52
- 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/index.js +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/AggregatorInterface.js +0 -2
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface.d.ts +0 -218
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV2V3Interface.js +0 -2
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.d.ts +0 -146
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.js +0 -2
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/index.d.ts +0 -3
- package/lib/types/@chainlink/contracts/src/v0.8/interfaces/index.js +0 -2
- package/lib/types/@chainlink/index.d.ts +0 -2
- package/lib/types/@chainlink/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/index.d.ts +0 -6
- package/lib/types/@gearbox-protocol/core-v2/contracts/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/BalanceOps.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/BalanceOps.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/index.js +0 -2
- 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/IACL.js +0 -2
- 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/IACLEvents.js +0 -2
- 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/IACLExceptions.js +0 -2
- 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/IACL.sol/index.js +0 -2
- 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/IAccountFactory.js +0 -2
- 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/IAccountFactoryEvents.js +0 -2
- 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/IAccountFactoryGetters.js +0 -2
- 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/IAccountFactory.sol/index.js +0 -2
- 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/IAddressProvider.js +0 -2
- 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/IAddressProvider.sol/IAddressProviderEvents.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.js +0 -2
- 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/IAirdropDistributor.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +0 -73
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister.d.ts +0 -144
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents.d.ts +0 -50
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions.js +0 -2
- 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/ICreditAccount.js +0 -2
- 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/ICreditAccount.sol/index.js +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/ICreditConfigurator.js +0 -2
- 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/ICreditConfiguratorEvents.js +0 -2
- 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/ICreditConfiguratorExceptions.js +0 -2
- 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/ICreditConfigurator.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade.d.ts +0 -665
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacade.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents.d.ts +0 -244
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents.js +0 -2
- 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/ICreditFacadeExceptions.js +0 -2
- 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/ICreditFacadeExtended.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeV2.d.ts +0 -66
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeV2.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.d.ts +0 -5
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.js +0 -2
- 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/ICreditManagerV2.js +0 -2
- 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/ICreditManagerV2Events.js +0 -2
- 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/ICreditManagerV2.sol/ICreditManagerV2Exceptions.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/index.js +0 -2
- 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/IDataCompressor.js +0 -2
- 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/IDataCompressorExceptions.js +0 -2
- 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/IDataCompressor.sol/index.js +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/IDegenDistributor.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +0 -53
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT.d.ts +0 -326
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT.js +0 -2
- 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/IDegenNFTEvents.js +0 -2
- 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/IDegenNFTExceptions.js +0 -2
- 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/IDegenNFT.sol/index.js +0 -2
- 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/IDieselToken.js +0 -2
- 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/IDieselTokenExceptions.js +0 -2
- 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/IDieselToken.sol/index.js +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/IInterestRateModel.js +0 -2
- 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/ILPPriceFeed.js +0 -2
- 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/ILPPriceFeedEvents.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20.d.ts +0 -170
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20.js +0 -2
- 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/IPoolService.js +0 -2
- 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/IPoolService.sol/IPoolServiceEvents.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType.d.ts +0 -50
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType.js +0 -2
- 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/IPriceOracleV2.js +0 -2
- 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/IPriceOracleV2Events.js +0 -2
- 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/IPriceOracleV2Exceptions.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext.d.ts +0 -173
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.d.ts +0 -4
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IVersion.d.ts +0 -42
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IVersion.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway.d.ts +0 -82
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway.js +0 -2
- 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/ICreditFilter.js +0 -2
- 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/ICreditManager.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.js +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/IAdapter.js +0 -2
- 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/IAdapterExceptions.js +0 -2
- 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/IAdapter.sol/index.js +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/IUniversalAdapter.js +0 -2
- 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/IUniversalAdapterExceptions.js +0 -2
- 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/IUniversalAdapter.sol/index.js +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/adapters/index.js +0 -2
- 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/IWETH.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/external/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/external/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/index.d.ts +0 -43
- package/lib/types/@gearbox-protocol/core-v2/contracts/interfaces/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/pool/PoolService.d.ts +0 -570
- package/lib/types/@gearbox-protocol/core-v2/contracts/pool/PoolService.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/pool/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/core-v2/contracts/pool/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/test/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/test/index.js +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/ITokenTestSuite.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/contracts/test/interfaces/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/core-v2/contracts/test/interfaces/index.js +0 -2
- package/lib/types/@gearbox-protocol/core-v2/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/core-v2/index.js +0 -2
- package/lib/types/@gearbox-protocol/index.d.ts +0 -6
- package/lib/types/@gearbox-protocol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/index.d.ts +0 -6
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool.d.ts +0 -378
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster.d.ts +0 -195
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBooster.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap.d.ts +0 -76
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IClaimZap.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken.d.ts +0 -178
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IConvexToken.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards.d.ts +0 -98
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IBasicRewards.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards.d.ts +0 -186
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/IRewards.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IRewards.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit.d.ts +0 -58
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICrvDeposit.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge.d.ts +0 -114
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveGauge.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow.d.ts +0 -106
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ICurveVoteEscrow.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit.d.ts +0 -162
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IDeposit.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro.d.ts +0 -58
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IFeeDistro.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter.d.ts +0 -50
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IMinter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools.d.ts +0 -122
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IPools.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry.d.ts +0 -74
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRegistry.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory.d.ts +0 -122
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewardFactory.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards.d.ts +0 -186
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IRewards.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker.d.ts +0 -290
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStaker.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash.d.ts +0 -98
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStash.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory.d.ts +0 -50
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IStashFactory.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory.d.ts +0 -50
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenFactory.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/ITokenMinter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow.d.ts +0 -50
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVestedEscrow.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting.d.ts +0 -107
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IVoting.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker.d.ts +0 -42
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/IWalletChecker.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.d.ts +0 -18
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/Interfaces.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.d.ts +0 -8
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/convex/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool.d.ts +0 -306
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH.d.ts +0 -282
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePoolStETH.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets.d.ts +0 -404
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/ICurvePool2Assets.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets.d.ts +0 -406
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/ICurvePool3Assets.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets.d.ts +0 -432
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/ICurvePool4Assets.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry.d.ts +0 -58
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurveRegistry.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.d.ts +0 -9
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/curve/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/index.d.ts +0 -10
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/ILidoOracle.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH.d.ts +0 -226
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETH.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters.d.ts +0 -210
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/IstETHGetters.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH.d.ts +0 -234
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETH.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters.d.ts +0 -202
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/IwstETHGetters.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.d.ts +0 -7
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter.d.ts +0 -98
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01.d.ts +0 -386
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02.d.ts +0 -484
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter.d.ts +0 -198
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.d.ts +0 -5
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault.d.ts +0 -290
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/IYVault.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/integrations/yearn/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter.d.ts +0 -450
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors.d.ts +0 -27
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/IConvexV1BaseRewardPoolAdapterErrors.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BaseRewardPoolAdapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter.d.ts +0 -243
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/IConvexV1BoosterAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/convex/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter.d.ts +0 -514
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1Adapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/ICurveV1AdapterExceptions.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1Adapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter.d.ts +0 -612
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_2AssetsAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter.d.ts +0 -614
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_3AssetsAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter.d.ts +0 -640
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/ICurveV1_4AssetsAdapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.d.ts +0 -5
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/curve/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/index.d.ts +0 -10
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter.d.ts +0 -237
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1Adapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents.d.ts +0 -39
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterEvents.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.d.ts +0 -27
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/ILidoV1Adapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter.d.ts +0 -218
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/IwstETHV1Adapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.d.ts +0 -3
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/lido/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker.d.ts +0 -106
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapPathChecker.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +0 -532
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/IUniswapV2Adapter.js +0 -2
- 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/IUniswapV2AdapterExceptions.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV2Adapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +0 -301
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter.js +0 -2
- 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/IUniswapV3AdapterExceptions.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.d.ts +0 -5
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter.d.ts +0 -322
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts.d.ts +0 -66
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/config/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/index.d.ts +0 -4
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents.d.ts +0 -45
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.d.ts +0 -1
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.js +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/integrations-v2/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver.d.ts +0 -146
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor.d.ts +0 -180
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions.d.ts +0 -209
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IGasPricer.d.ts +0 -44
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IGasPricer.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker.d.ts +0 -134
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions.d.ts +0 -140
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IPathResolver.d.ts +0 -152
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IPathResolver.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouter.d.ts +0 -265
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouter.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouterComponent.d.ts +0 -50
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IRouterComponent.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator.d.ts +0 -314
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapper.d.ts +0 -136
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/ISwapper.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer.d.ts +0 -188
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions.d.ts +0 -204
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWrapper.d.ts +0 -152
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/IWrapper.js +0 -2
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/index.d.ts +0 -14
- package/lib/types/@gearbox-protocol/router/contracts/interfaces/index.js +0 -2
- package/lib/types/@gearbox-protocol/router/index.d.ts +0 -2
- package/lib/types/@gearbox-protocol/router/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/index.d.ts +0 -4
- package/lib/types/@openzeppelin/contracts/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +0 -138
- package/lib/types/@openzeppelin/contracts/token/ERC20/IERC20.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +0 -162
- package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/lib/types/@openzeppelin/contracts/token/ERC20/extensions/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -3
- package/lib/types/@openzeppelin/contracts/token/ERC20/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +0 -207
- package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +0 -50
- package/lib/types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +0 -231
- package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
- package/lib/types/@openzeppelin/contracts/token/ERC721/extensions/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -4
- package/lib/types/@openzeppelin/contracts/token/ERC721/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/token/index.d.ts +0 -4
- package/lib/types/@openzeppelin/contracts/token/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/utils/index.d.ts +0 -2
- package/lib/types/@openzeppelin/contracts/utils/index.js +0 -2
- package/lib/types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +0 -42
- package/lib/types/@openzeppelin/contracts/utils/introspection/IERC165.js +0 -2
- package/lib/types/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -1
- package/lib/types/@openzeppelin/contracts/utils/introspection/index.js +0 -2
- package/lib/types/@openzeppelin/index.d.ts +0 -2
- package/lib/types/@openzeppelin/index.js +0 -2
- package/lib/types/common.d.ts +0 -21
- package/lib/types/common.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/Balances.sol/BalanceOps__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/BalanceOps__factory.js +0 -53
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/Balances.sol/index.js +0 -8
- 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/IAddressProviderEvents__factory.js +0 -38
- 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/IAddressProvider.sol/IAddressProvider__factory.js +0 -181
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAddressProvider.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.js +0 -88
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/IAirdropDistributor__factory.js +0 -161
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IAirdropDistributor.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegisterEvents__factory.js +0 -45
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/IContractsRegister__factory.js +0 -186
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IContractsRegister.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICrediAccountExceptions__factory.js +0 -29
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/ICreditAccount__factory.js +0 -220
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditAccount.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorEvents__factory.js +0 -308
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfiguratorExceptions__factory.js +0 -64
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator__factory.d.ts +0 -49
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/ICreditConfigurator__factory.js +0 -730
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditConfigurator.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeEvents__factory.js +0 -340
- 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 -185
- 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 -114
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeV2__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/ICreditFacadeV2__factory.js +0 -42
- 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 -1163
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.d.ts +0 -5
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditFacade.sol/index.js +0 -16
- 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/ICreditManagerV2Events__factory.js +0 -51
- 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/ICreditManagerV2Exceptions__factory.js +0 -84
- 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/ICreditManagerV2.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ICreditManagerV2.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressorExceptions__factory.js +0 -29
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor__factory.d.ts +0 -57
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/IDataCompressor__factory.js +0 -887
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDataCompressor.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributorEvents__factory.js +0 -57
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/IDegenDistributor__factory.js +0 -130
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenDistributor.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTEvents__factory.js +0 -58
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFTExceptions__factory.js +0 -39
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/IDegenNFT__factory.js +0 -496
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDegenNFT.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselTokenExceptions__factory.js +0 -24
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/IDieselToken__factory.js +0 -220
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IDieselToken.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IInterestRateModel__factory.js +0 -56
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +0 -38
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +0 -29
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/ILPPriceFeed__factory.js +0 -237
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/ILPPriceFeed.sol/index.js +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPhantomERC20__factory.js +0 -254
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/IPoolServiceEvents__factory.js +0 -215
- 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/IPoolService.sol/IPoolService__factory.js +0 -574
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPoolService.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceFeedType__factory.js +0 -45
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Events__factory.js +0 -38
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.d.ts +0 -12
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.js +0 -34
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2Ext__factory.js +0 -267
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2__factory.d.ts +0 -42
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/IPriceOracleV2__factory.js +0 -249
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.d.ts +0 -4
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IPriceOracle.sol/index.js +0 -14
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IVersion__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IVersion__factory.js +0 -32
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/IWETHGateway__factory.js +0 -83
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter__factory.d.ts +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditFilter__factory.js +0 -697
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager__factory.d.ts +0 -56
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/ICreditManager__factory.js +0 -766
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/V1/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions__factory.d.ts +0 -16
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapterExceptions__factory.js +0 -30
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/IAdapter__factory.js +0 -82
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IAdapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions__factory.d.ts +0 -16
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapterExceptions__factory.js +0 -35
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter__factory.d.ts +0 -48
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/IUniversalAdapter__factory.js +0 -153
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/IUniversalAdapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/adapters/index.js +0 -31
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/IWETH__factory.js +0 -63
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/external/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/index.d.ts +0 -24
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/interfaces/index.js +0 -58
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/PoolService__factory.d.ts +0 -65
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/PoolService__factory.js +0 -861
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/ITokenTestSuite__factory.js +0 -178
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/contracts/test/interfaces/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/core-v2/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/core-v2/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/index.js +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/index.js +0 -32
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/convex/IBaseRewardPool__factory.js +0 -534
- 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_2.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_2.sol/index.js +0 -8
- 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_3.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_3.sol/index.js +0 -8
- 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_4.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/curve/ICurvePool_4.sol/index.js +0 -8
- 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/IstETH.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IstETH.sol/index.js +0 -10
- 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/IwstETH.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETH.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay__factory.d.ts +0 -28
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/IwstETHGateWay__factory.js +0 -71
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/IwstETHGateway.sol/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.d.ts +0 -4
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/lido/index.js +0 -34
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IQuoter__factory.js +0 -145
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router01__factory.js +0 -768
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV2Router02__factory.js +0 -970
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter__factory.d.ts +0 -27
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/ISwapRouter__factory.js +0 -233
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/integrations/uniswap/IUniswapV3.sol/index.js +0 -8
- 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/IUniswapV2AdapterExceptions__factory.js +0 -24
- 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/IUniswapV3AdapterExceptions__factory.js +0 -24
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +0 -37
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +0 -388
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/IUniswapV3Adapter.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.d.ts +0 -3
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/uniswap/index.js +0 -33
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter__factory.d.ts +0 -46
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/IYearnV2Adapter__factory.js +0 -471
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/interfaces/yearn/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/ISupportedContracts__factory.js +0 -89
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/SupportedContracts.sol/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/config/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/index.js +0 -31
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/ILidoMockEvents__factory.js +0 -44
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/LidoMock.sol/index.js +0 -8
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/contracts/test/mocks/integrations/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/integrations-v2/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/integrations-v2/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/router/contracts/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/router/contracts/index.js +0 -30
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver__factory.d.ts +0 -67
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IClosePathResolver__factory.js +0 -307
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositorOptions__factory.js +0 -1055
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/IDepositor__factory.js +0 -785
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IDepositor.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IGasPricer__factory.d.ts +0 -22
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IGasPricer__factory.js +0 -38
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorkerOptions__factory.js +0 -295
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/ILPWorker__factory.js +0 -290
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ILPWorker.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IPathResolver__factory.d.ts +0 -67
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IPathResolver__factory.js +0 -530
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouterComponent__factory.d.ts +0 -18
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouterComponent__factory.js +0 -45
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouter__factory.d.ts +0 -65
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IRouter__factory.js +0 -526
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapAggregator__factory.js +0 -1750
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapper__factory.d.ts +0 -57
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/ISwapper__factory.js +0 -245
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawerOptions__factory.js +0 -1067
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer__factory.d.ts +0 -62
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/IWithdrawer__factory.js +0 -1020
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.d.ts +0 -2
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWithdrawer.sol/index.js +0 -10
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWrapper__factory.d.ts +0 -61
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/IWrapper__factory.js +0 -293
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/index.d.ts +0 -11
- package/lib/types/factories/@gearbox-protocol/router/contracts/interfaces/index.js +0 -48
- package/lib/types/factories/@gearbox-protocol/router/index.d.ts +0 -1
- package/lib/types/factories/@gearbox-protocol/router/index.js +0 -30
- package/lib/types/factories/@openzeppelin/contracts/index.d.ts +0 -2
- package/lib/types/factories/@openzeppelin/contracts/index.js +0 -31
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +0 -35
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.js +0 -202
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +0 -35
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.js +0 -241
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.js +0 -8
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +0 -2
- package/lib/types/factories/@openzeppelin/contracts/token/ERC20/index.js +0 -32
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +0 -22
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.js +0 -53
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +0 -35
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.js +0 -304
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +0 -35
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.js +0 -349
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.js +0 -8
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +0 -3
- package/lib/types/factories/@openzeppelin/contracts/token/ERC721/index.js +0 -34
- package/lib/types/factories/@openzeppelin/contracts/token/index.d.ts +0 -2
- package/lib/types/factories/@openzeppelin/contracts/token/index.js +0 -31
- package/lib/types/factories/@openzeppelin/contracts/utils/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/contracts/utils/index.js +0 -30
- package/lib/types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +0 -22
- package/lib/types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.js +0 -38
- package/lib/types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/contracts/utils/introspection/index.js +0 -8
- package/lib/types/factories/@openzeppelin/index.d.ts +0 -1
- package/lib/types/factories/@openzeppelin/index.js +0 -30
- package/lib/types/factories/contracts/IGas__factory.d.ts +0 -18
- package/lib/types/factories/contracts/IGas__factory.js +0 -32
- package/lib/types/factories/contracts/IGnosisSafeSignatureValidator__factory.d.ts +0 -22
- package/lib/types/factories/contracts/IGnosisSafeSignatureValidator__factory.js +0 -43
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorEvents__factory.d.ts +0 -18
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorEvents__factory.js +0 -107
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorExceptions__factory.d.ts +0 -16
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributorExceptions__factory.js +0 -61
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributor__factory.d.ts +0 -46
- package/lib/types/factories/contracts/ITokenDistributor.sol/ITokenDistributor__factory.js +0 -294
- package/lib/types/factories/contracts/ITokenDistributor.sol/index.d.ts +0 -3
- package/lib/types/factories/contracts/ITokenDistributor.sol/index.js +0 -12
- package/lib/types/factories/contracts/index.d.ts +0 -4
- package/lib/types/factories/contracts/index.js +0 -35
- package/lib/types/factories/contracts/support/IOffchainOracle__factory.d.ts +0 -22
- package/lib/types/factories/contracts/support/IOffchainOracle__factory.js +0 -72
- package/lib/types/factories/contracts/support/MultiCall.sol/Multicall2__factory.d.ts +0 -54
- package/lib/types/factories/contracts/support/MultiCall.sol/Multicall2__factory.js +0 -353
- package/lib/types/factories/contracts/support/MultiCall.sol/index.d.ts +0 -1
- package/lib/types/factories/contracts/support/MultiCall.sol/index.js +0 -8
- package/lib/types/factories/contracts/support/index.d.ts +0 -2
- package/lib/types/factories/contracts/support/index.js +0 -32
- package/lib/types/factories/index.d.ts +0 -4
- package/lib/types/factories/index.js +0 -33
- package/lib/utils/mappers.d.ts +0 -8
- package/lib/utils/mappers.js +0 -13
- package/lib/utils/multicall.d.ts +0 -36
- package/lib/utils/multicall.js +0 -90
- package/lib/utils/repeater.d.ts +0 -1
- package/lib/utils/repeater.js +0 -19
- package/lib/utils/safeEnum.d.ts +0 -1
- package/lib/utils/safeEnum.js +0 -10
- package/lib/watchers/creditAccountWatcher.d.ts +0 -36
- package/lib/watchers/creditAccountWatcher.js +0 -237
- package/lib/watchers/creditAccountWatcher.spec.d.ts +0 -1
- package/lib/watchers/creditAccountWatcher.spec.js +0 -208
- package/lib/watchers/creditManagerWatcher.d.ts +0 -8
- package/lib/watchers/creditManagerWatcher.js +0 -36
- package/lib/watchers/creditManagerWatcher.spec.d.ts +0 -1
- package/lib/watchers/creditManagerWatcher.spec.js +0 -107
- /package/lib/core/{rewardConvex.spec.d.ts → gaugeMath.spec.d.ts} +0 -0
- /package/lib/core/{strategy.spec.d.ts → rewardClaimer/rewardConvex.spec.d.ts} +0 -0
- /package/lib/{types/@chainlink/contracts/index.js → payload/bot.js} +0 -0
- /package/lib/{types/@chainlink/contracts/src/index.js → payload/gauge.js} +0 -0
package/lib/types/factories/@gearbox-protocol/core-v2/contracts/pool/PoolService__factory.js
DELETED
|
@@ -1,861 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PoolService__factory = void 0;
|
|
4
|
-
/* Autogenerated file. Do not edit manually. */
|
|
5
|
-
/* tslint:disable */
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
const ethers_1 = require("ethers");
|
|
8
|
-
const _abi = [
|
|
9
|
-
{
|
|
10
|
-
inputs: [
|
|
11
|
-
{
|
|
12
|
-
internalType: "address",
|
|
13
|
-
name: "_addressProvider",
|
|
14
|
-
type: "address",
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
internalType: "address",
|
|
18
|
-
name: "_underlyingToken",
|
|
19
|
-
type: "address",
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
internalType: "address",
|
|
23
|
-
name: "_interestRateModelAddress",
|
|
24
|
-
type: "address",
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
internalType: "uint256",
|
|
28
|
-
name: "_expectedLiquidityLimit",
|
|
29
|
-
type: "uint256",
|
|
30
|
-
},
|
|
31
|
-
],
|
|
32
|
-
stateMutability: "nonpayable",
|
|
33
|
-
type: "constructor",
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
inputs: [],
|
|
37
|
-
name: "CallerNotConfiguratorException",
|
|
38
|
-
type: "error",
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
inputs: [],
|
|
42
|
-
name: "CallerNotPausableAdminException",
|
|
43
|
-
type: "error",
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
inputs: [],
|
|
47
|
-
name: "CallerNotUnPausableAdminException",
|
|
48
|
-
type: "error",
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
inputs: [],
|
|
52
|
-
name: "ZeroAddressException",
|
|
53
|
-
type: "error",
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
anonymous: false,
|
|
57
|
-
inputs: [
|
|
58
|
-
{
|
|
59
|
-
indexed: true,
|
|
60
|
-
internalType: "address",
|
|
61
|
-
name: "sender",
|
|
62
|
-
type: "address",
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
indexed: true,
|
|
66
|
-
internalType: "address",
|
|
67
|
-
name: "onBehalfOf",
|
|
68
|
-
type: "address",
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
indexed: false,
|
|
72
|
-
internalType: "uint256",
|
|
73
|
-
name: "amount",
|
|
74
|
-
type: "uint256",
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
indexed: false,
|
|
78
|
-
internalType: "uint256",
|
|
79
|
-
name: "referralCode",
|
|
80
|
-
type: "uint256",
|
|
81
|
-
},
|
|
82
|
-
],
|
|
83
|
-
name: "AddLiquidity",
|
|
84
|
-
type: "event",
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
anonymous: false,
|
|
88
|
-
inputs: [
|
|
89
|
-
{
|
|
90
|
-
indexed: true,
|
|
91
|
-
internalType: "address",
|
|
92
|
-
name: "creditManager",
|
|
93
|
-
type: "address",
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
indexed: true,
|
|
97
|
-
internalType: "address",
|
|
98
|
-
name: "creditAccount",
|
|
99
|
-
type: "address",
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
indexed: false,
|
|
103
|
-
internalType: "uint256",
|
|
104
|
-
name: "amount",
|
|
105
|
-
type: "uint256",
|
|
106
|
-
},
|
|
107
|
-
],
|
|
108
|
-
name: "Borrow",
|
|
109
|
-
type: "event",
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
anonymous: false,
|
|
113
|
-
inputs: [
|
|
114
|
-
{
|
|
115
|
-
indexed: true,
|
|
116
|
-
internalType: "address",
|
|
117
|
-
name: "creditManager",
|
|
118
|
-
type: "address",
|
|
119
|
-
},
|
|
120
|
-
],
|
|
121
|
-
name: "BorrowForbidden",
|
|
122
|
-
type: "event",
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
anonymous: false,
|
|
126
|
-
inputs: [
|
|
127
|
-
{
|
|
128
|
-
indexed: true,
|
|
129
|
-
internalType: "address",
|
|
130
|
-
name: "creditManager",
|
|
131
|
-
type: "address",
|
|
132
|
-
},
|
|
133
|
-
],
|
|
134
|
-
name: "NewCreditManagerConnected",
|
|
135
|
-
type: "event",
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
anonymous: false,
|
|
139
|
-
inputs: [
|
|
140
|
-
{
|
|
141
|
-
indexed: false,
|
|
142
|
-
internalType: "uint256",
|
|
143
|
-
name: "newLimit",
|
|
144
|
-
type: "uint256",
|
|
145
|
-
},
|
|
146
|
-
],
|
|
147
|
-
name: "NewExpectedLiquidityLimit",
|
|
148
|
-
type: "event",
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
anonymous: false,
|
|
152
|
-
inputs: [
|
|
153
|
-
{
|
|
154
|
-
indexed: true,
|
|
155
|
-
internalType: "address",
|
|
156
|
-
name: "newInterestRateModel",
|
|
157
|
-
type: "address",
|
|
158
|
-
},
|
|
159
|
-
],
|
|
160
|
-
name: "NewInterestRateModel",
|
|
161
|
-
type: "event",
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
anonymous: false,
|
|
165
|
-
inputs: [
|
|
166
|
-
{
|
|
167
|
-
indexed: false,
|
|
168
|
-
internalType: "uint256",
|
|
169
|
-
name: "fee",
|
|
170
|
-
type: "uint256",
|
|
171
|
-
},
|
|
172
|
-
],
|
|
173
|
-
name: "NewWithdrawFee",
|
|
174
|
-
type: "event",
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
anonymous: false,
|
|
178
|
-
inputs: [
|
|
179
|
-
{
|
|
180
|
-
indexed: false,
|
|
181
|
-
internalType: "address",
|
|
182
|
-
name: "account",
|
|
183
|
-
type: "address",
|
|
184
|
-
},
|
|
185
|
-
],
|
|
186
|
-
name: "Paused",
|
|
187
|
-
type: "event",
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
anonymous: false,
|
|
191
|
-
inputs: [
|
|
192
|
-
{
|
|
193
|
-
indexed: true,
|
|
194
|
-
internalType: "address",
|
|
195
|
-
name: "sender",
|
|
196
|
-
type: "address",
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
indexed: true,
|
|
200
|
-
internalType: "address",
|
|
201
|
-
name: "to",
|
|
202
|
-
type: "address",
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
indexed: false,
|
|
206
|
-
internalType: "uint256",
|
|
207
|
-
name: "amount",
|
|
208
|
-
type: "uint256",
|
|
209
|
-
},
|
|
210
|
-
],
|
|
211
|
-
name: "RemoveLiquidity",
|
|
212
|
-
type: "event",
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
anonymous: false,
|
|
216
|
-
inputs: [
|
|
217
|
-
{
|
|
218
|
-
indexed: true,
|
|
219
|
-
internalType: "address",
|
|
220
|
-
name: "creditManager",
|
|
221
|
-
type: "address",
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
indexed: false,
|
|
225
|
-
internalType: "uint256",
|
|
226
|
-
name: "borrowedAmount",
|
|
227
|
-
type: "uint256",
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
indexed: false,
|
|
231
|
-
internalType: "uint256",
|
|
232
|
-
name: "profit",
|
|
233
|
-
type: "uint256",
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
indexed: false,
|
|
237
|
-
internalType: "uint256",
|
|
238
|
-
name: "loss",
|
|
239
|
-
type: "uint256",
|
|
240
|
-
},
|
|
241
|
-
],
|
|
242
|
-
name: "Repay",
|
|
243
|
-
type: "event",
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
anonymous: false,
|
|
247
|
-
inputs: [
|
|
248
|
-
{
|
|
249
|
-
indexed: true,
|
|
250
|
-
internalType: "address",
|
|
251
|
-
name: "creditManager",
|
|
252
|
-
type: "address",
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
indexed: false,
|
|
256
|
-
internalType: "uint256",
|
|
257
|
-
name: "loss",
|
|
258
|
-
type: "uint256",
|
|
259
|
-
},
|
|
260
|
-
],
|
|
261
|
-
name: "UncoveredLoss",
|
|
262
|
-
type: "event",
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
anonymous: false,
|
|
266
|
-
inputs: [
|
|
267
|
-
{
|
|
268
|
-
indexed: false,
|
|
269
|
-
internalType: "address",
|
|
270
|
-
name: "account",
|
|
271
|
-
type: "address",
|
|
272
|
-
},
|
|
273
|
-
],
|
|
274
|
-
name: "Unpaused",
|
|
275
|
-
type: "event",
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
inputs: [],
|
|
279
|
-
name: "_acl",
|
|
280
|
-
outputs: [
|
|
281
|
-
{
|
|
282
|
-
internalType: "contract IACL",
|
|
283
|
-
name: "",
|
|
284
|
-
type: "address",
|
|
285
|
-
},
|
|
286
|
-
],
|
|
287
|
-
stateMutability: "view",
|
|
288
|
-
type: "function",
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
inputs: [],
|
|
292
|
-
name: "_cumulativeIndex_RAY",
|
|
293
|
-
outputs: [
|
|
294
|
-
{
|
|
295
|
-
internalType: "uint256",
|
|
296
|
-
name: "",
|
|
297
|
-
type: "uint256",
|
|
298
|
-
},
|
|
299
|
-
],
|
|
300
|
-
stateMutability: "view",
|
|
301
|
-
type: "function",
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
inputs: [],
|
|
305
|
-
name: "_expectedLiquidityLU",
|
|
306
|
-
outputs: [
|
|
307
|
-
{
|
|
308
|
-
internalType: "uint256",
|
|
309
|
-
name: "",
|
|
310
|
-
type: "uint256",
|
|
311
|
-
},
|
|
312
|
-
],
|
|
313
|
-
stateMutability: "view",
|
|
314
|
-
type: "function",
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
inputs: [],
|
|
318
|
-
name: "_timestampLU",
|
|
319
|
-
outputs: [
|
|
320
|
-
{
|
|
321
|
-
internalType: "uint256",
|
|
322
|
-
name: "",
|
|
323
|
-
type: "uint256",
|
|
324
|
-
},
|
|
325
|
-
],
|
|
326
|
-
stateMutability: "view",
|
|
327
|
-
type: "function",
|
|
328
|
-
},
|
|
329
|
-
{
|
|
330
|
-
inputs: [
|
|
331
|
-
{
|
|
332
|
-
internalType: "uint256",
|
|
333
|
-
name: "amount",
|
|
334
|
-
type: "uint256",
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
internalType: "address",
|
|
338
|
-
name: "onBehalfOf",
|
|
339
|
-
type: "address",
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
internalType: "uint256",
|
|
343
|
-
name: "referralCode",
|
|
344
|
-
type: "uint256",
|
|
345
|
-
},
|
|
346
|
-
],
|
|
347
|
-
name: "addLiquidity",
|
|
348
|
-
outputs: [],
|
|
349
|
-
stateMutability: "nonpayable",
|
|
350
|
-
type: "function",
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
inputs: [],
|
|
354
|
-
name: "addressProvider",
|
|
355
|
-
outputs: [
|
|
356
|
-
{
|
|
357
|
-
internalType: "contract AddressProvider",
|
|
358
|
-
name: "",
|
|
359
|
-
type: "address",
|
|
360
|
-
},
|
|
361
|
-
],
|
|
362
|
-
stateMutability: "view",
|
|
363
|
-
type: "function",
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
inputs: [],
|
|
367
|
-
name: "availableLiquidity",
|
|
368
|
-
outputs: [
|
|
369
|
-
{
|
|
370
|
-
internalType: "uint256",
|
|
371
|
-
name: "",
|
|
372
|
-
type: "uint256",
|
|
373
|
-
},
|
|
374
|
-
],
|
|
375
|
-
stateMutability: "view",
|
|
376
|
-
type: "function",
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
inputs: [],
|
|
380
|
-
name: "borrowAPY_RAY",
|
|
381
|
-
outputs: [
|
|
382
|
-
{
|
|
383
|
-
internalType: "uint256",
|
|
384
|
-
name: "",
|
|
385
|
-
type: "uint256",
|
|
386
|
-
},
|
|
387
|
-
],
|
|
388
|
-
stateMutability: "view",
|
|
389
|
-
type: "function",
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
inputs: [],
|
|
393
|
-
name: "calcLinearCumulative_RAY",
|
|
394
|
-
outputs: [
|
|
395
|
-
{
|
|
396
|
-
internalType: "uint256",
|
|
397
|
-
name: "",
|
|
398
|
-
type: "uint256",
|
|
399
|
-
},
|
|
400
|
-
],
|
|
401
|
-
stateMutability: "view",
|
|
402
|
-
type: "function",
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
inputs: [
|
|
406
|
-
{
|
|
407
|
-
internalType: "uint256",
|
|
408
|
-
name: "cumulativeIndex_RAY",
|
|
409
|
-
type: "uint256",
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
internalType: "uint256",
|
|
413
|
-
name: "currentBorrowRate_RAY",
|
|
414
|
-
type: "uint256",
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
internalType: "uint256",
|
|
418
|
-
name: "timeDifference",
|
|
419
|
-
type: "uint256",
|
|
420
|
-
},
|
|
421
|
-
],
|
|
422
|
-
name: "calcLinearIndex_RAY",
|
|
423
|
-
outputs: [
|
|
424
|
-
{
|
|
425
|
-
internalType: "uint256",
|
|
426
|
-
name: "",
|
|
427
|
-
type: "uint256",
|
|
428
|
-
},
|
|
429
|
-
],
|
|
430
|
-
stateMutability: "pure",
|
|
431
|
-
type: "function",
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
inputs: [
|
|
435
|
-
{
|
|
436
|
-
internalType: "address",
|
|
437
|
-
name: "_creditManager",
|
|
438
|
-
type: "address",
|
|
439
|
-
},
|
|
440
|
-
],
|
|
441
|
-
name: "connectCreditManager",
|
|
442
|
-
outputs: [],
|
|
443
|
-
stateMutability: "nonpayable",
|
|
444
|
-
type: "function",
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
inputs: [
|
|
448
|
-
{
|
|
449
|
-
internalType: "uint256",
|
|
450
|
-
name: "",
|
|
451
|
-
type: "uint256",
|
|
452
|
-
},
|
|
453
|
-
],
|
|
454
|
-
name: "creditManagers",
|
|
455
|
-
outputs: [
|
|
456
|
-
{
|
|
457
|
-
internalType: "address",
|
|
458
|
-
name: "",
|
|
459
|
-
type: "address",
|
|
460
|
-
},
|
|
461
|
-
],
|
|
462
|
-
stateMutability: "view",
|
|
463
|
-
type: "function",
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
inputs: [
|
|
467
|
-
{
|
|
468
|
-
internalType: "address",
|
|
469
|
-
name: "",
|
|
470
|
-
type: "address",
|
|
471
|
-
},
|
|
472
|
-
],
|
|
473
|
-
name: "creditManagersCanBorrow",
|
|
474
|
-
outputs: [
|
|
475
|
-
{
|
|
476
|
-
internalType: "bool",
|
|
477
|
-
name: "",
|
|
478
|
-
type: "bool",
|
|
479
|
-
},
|
|
480
|
-
],
|
|
481
|
-
stateMutability: "view",
|
|
482
|
-
type: "function",
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
inputs: [
|
|
486
|
-
{
|
|
487
|
-
internalType: "address",
|
|
488
|
-
name: "",
|
|
489
|
-
type: "address",
|
|
490
|
-
},
|
|
491
|
-
],
|
|
492
|
-
name: "creditManagersCanRepay",
|
|
493
|
-
outputs: [
|
|
494
|
-
{
|
|
495
|
-
internalType: "bool",
|
|
496
|
-
name: "",
|
|
497
|
-
type: "bool",
|
|
498
|
-
},
|
|
499
|
-
],
|
|
500
|
-
stateMutability: "view",
|
|
501
|
-
type: "function",
|
|
502
|
-
},
|
|
503
|
-
{
|
|
504
|
-
inputs: [],
|
|
505
|
-
name: "creditManagersCount",
|
|
506
|
-
outputs: [
|
|
507
|
-
{
|
|
508
|
-
internalType: "uint256",
|
|
509
|
-
name: "",
|
|
510
|
-
type: "uint256",
|
|
511
|
-
},
|
|
512
|
-
],
|
|
513
|
-
stateMutability: "view",
|
|
514
|
-
type: "function",
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
inputs: [],
|
|
518
|
-
name: "dieselToken",
|
|
519
|
-
outputs: [
|
|
520
|
-
{
|
|
521
|
-
internalType: "address",
|
|
522
|
-
name: "",
|
|
523
|
-
type: "address",
|
|
524
|
-
},
|
|
525
|
-
],
|
|
526
|
-
stateMutability: "view",
|
|
527
|
-
type: "function",
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
inputs: [],
|
|
531
|
-
name: "expectedLiquidity",
|
|
532
|
-
outputs: [
|
|
533
|
-
{
|
|
534
|
-
internalType: "uint256",
|
|
535
|
-
name: "",
|
|
536
|
-
type: "uint256",
|
|
537
|
-
},
|
|
538
|
-
],
|
|
539
|
-
stateMutability: "view",
|
|
540
|
-
type: "function",
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
inputs: [],
|
|
544
|
-
name: "expectedLiquidityLimit",
|
|
545
|
-
outputs: [
|
|
546
|
-
{
|
|
547
|
-
internalType: "uint256",
|
|
548
|
-
name: "",
|
|
549
|
-
type: "uint256",
|
|
550
|
-
},
|
|
551
|
-
],
|
|
552
|
-
stateMutability: "view",
|
|
553
|
-
type: "function",
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
inputs: [
|
|
557
|
-
{
|
|
558
|
-
internalType: "address",
|
|
559
|
-
name: "_creditManager",
|
|
560
|
-
type: "address",
|
|
561
|
-
},
|
|
562
|
-
],
|
|
563
|
-
name: "forbidCreditManagerToBorrow",
|
|
564
|
-
outputs: [],
|
|
565
|
-
stateMutability: "nonpayable",
|
|
566
|
-
type: "function",
|
|
567
|
-
},
|
|
568
|
-
{
|
|
569
|
-
inputs: [
|
|
570
|
-
{
|
|
571
|
-
internalType: "uint256",
|
|
572
|
-
name: "amount",
|
|
573
|
-
type: "uint256",
|
|
574
|
-
},
|
|
575
|
-
],
|
|
576
|
-
name: "fromDiesel",
|
|
577
|
-
outputs: [
|
|
578
|
-
{
|
|
579
|
-
internalType: "uint256",
|
|
580
|
-
name: "",
|
|
581
|
-
type: "uint256",
|
|
582
|
-
},
|
|
583
|
-
],
|
|
584
|
-
stateMutability: "view",
|
|
585
|
-
type: "function",
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
inputs: [],
|
|
589
|
-
name: "getDieselRate_RAY",
|
|
590
|
-
outputs: [
|
|
591
|
-
{
|
|
592
|
-
internalType: "uint256",
|
|
593
|
-
name: "",
|
|
594
|
-
type: "uint256",
|
|
595
|
-
},
|
|
596
|
-
],
|
|
597
|
-
stateMutability: "view",
|
|
598
|
-
type: "function",
|
|
599
|
-
},
|
|
600
|
-
{
|
|
601
|
-
inputs: [],
|
|
602
|
-
name: "interestRateModel",
|
|
603
|
-
outputs: [
|
|
604
|
-
{
|
|
605
|
-
internalType: "contract IInterestRateModel",
|
|
606
|
-
name: "",
|
|
607
|
-
type: "address",
|
|
608
|
-
},
|
|
609
|
-
],
|
|
610
|
-
stateMutability: "view",
|
|
611
|
-
type: "function",
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
inputs: [
|
|
615
|
-
{
|
|
616
|
-
internalType: "uint256",
|
|
617
|
-
name: "borrowedAmount",
|
|
618
|
-
type: "uint256",
|
|
619
|
-
},
|
|
620
|
-
{
|
|
621
|
-
internalType: "address",
|
|
622
|
-
name: "creditAccount",
|
|
623
|
-
type: "address",
|
|
624
|
-
},
|
|
625
|
-
],
|
|
626
|
-
name: "lendCreditAccount",
|
|
627
|
-
outputs: [],
|
|
628
|
-
stateMutability: "nonpayable",
|
|
629
|
-
type: "function",
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
inputs: [],
|
|
633
|
-
name: "pause",
|
|
634
|
-
outputs: [],
|
|
635
|
-
stateMutability: "nonpayable",
|
|
636
|
-
type: "function",
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
inputs: [],
|
|
640
|
-
name: "paused",
|
|
641
|
-
outputs: [
|
|
642
|
-
{
|
|
643
|
-
internalType: "bool",
|
|
644
|
-
name: "",
|
|
645
|
-
type: "bool",
|
|
646
|
-
},
|
|
647
|
-
],
|
|
648
|
-
stateMutability: "view",
|
|
649
|
-
type: "function",
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
inputs: [
|
|
653
|
-
{
|
|
654
|
-
internalType: "uint256",
|
|
655
|
-
name: "amount",
|
|
656
|
-
type: "uint256",
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
internalType: "address",
|
|
660
|
-
name: "to",
|
|
661
|
-
type: "address",
|
|
662
|
-
},
|
|
663
|
-
],
|
|
664
|
-
name: "removeLiquidity",
|
|
665
|
-
outputs: [
|
|
666
|
-
{
|
|
667
|
-
internalType: "uint256",
|
|
668
|
-
name: "",
|
|
669
|
-
type: "uint256",
|
|
670
|
-
},
|
|
671
|
-
],
|
|
672
|
-
stateMutability: "nonpayable",
|
|
673
|
-
type: "function",
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
inputs: [
|
|
677
|
-
{
|
|
678
|
-
internalType: "uint256",
|
|
679
|
-
name: "borrowedAmount",
|
|
680
|
-
type: "uint256",
|
|
681
|
-
},
|
|
682
|
-
{
|
|
683
|
-
internalType: "uint256",
|
|
684
|
-
name: "profit",
|
|
685
|
-
type: "uint256",
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
internalType: "uint256",
|
|
689
|
-
name: "loss",
|
|
690
|
-
type: "uint256",
|
|
691
|
-
},
|
|
692
|
-
],
|
|
693
|
-
name: "repayCreditAccount",
|
|
694
|
-
outputs: [],
|
|
695
|
-
stateMutability: "nonpayable",
|
|
696
|
-
type: "function",
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
inputs: [
|
|
700
|
-
{
|
|
701
|
-
internalType: "uint256",
|
|
702
|
-
name: "newLimit",
|
|
703
|
-
type: "uint256",
|
|
704
|
-
},
|
|
705
|
-
],
|
|
706
|
-
name: "setExpectedLiquidityLimit",
|
|
707
|
-
outputs: [],
|
|
708
|
-
stateMutability: "nonpayable",
|
|
709
|
-
type: "function",
|
|
710
|
-
},
|
|
711
|
-
{
|
|
712
|
-
inputs: [
|
|
713
|
-
{
|
|
714
|
-
internalType: "uint256",
|
|
715
|
-
name: "fee",
|
|
716
|
-
type: "uint256",
|
|
717
|
-
},
|
|
718
|
-
],
|
|
719
|
-
name: "setWithdrawFee",
|
|
720
|
-
outputs: [],
|
|
721
|
-
stateMutability: "nonpayable",
|
|
722
|
-
type: "function",
|
|
723
|
-
},
|
|
724
|
-
{
|
|
725
|
-
inputs: [
|
|
726
|
-
{
|
|
727
|
-
internalType: "uint256",
|
|
728
|
-
name: "amount",
|
|
729
|
-
type: "uint256",
|
|
730
|
-
},
|
|
731
|
-
],
|
|
732
|
-
name: "toDiesel",
|
|
733
|
-
outputs: [
|
|
734
|
-
{
|
|
735
|
-
internalType: "uint256",
|
|
736
|
-
name: "",
|
|
737
|
-
type: "uint256",
|
|
738
|
-
},
|
|
739
|
-
],
|
|
740
|
-
stateMutability: "view",
|
|
741
|
-
type: "function",
|
|
742
|
-
},
|
|
743
|
-
{
|
|
744
|
-
inputs: [],
|
|
745
|
-
name: "totalBorrowed",
|
|
746
|
-
outputs: [
|
|
747
|
-
{
|
|
748
|
-
internalType: "uint256",
|
|
749
|
-
name: "",
|
|
750
|
-
type: "uint256",
|
|
751
|
-
},
|
|
752
|
-
],
|
|
753
|
-
stateMutability: "view",
|
|
754
|
-
type: "function",
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
inputs: [],
|
|
758
|
-
name: "treasuryAddress",
|
|
759
|
-
outputs: [
|
|
760
|
-
{
|
|
761
|
-
internalType: "address",
|
|
762
|
-
name: "",
|
|
763
|
-
type: "address",
|
|
764
|
-
},
|
|
765
|
-
],
|
|
766
|
-
stateMutability: "view",
|
|
767
|
-
type: "function",
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
inputs: [],
|
|
771
|
-
name: "underlyingToken",
|
|
772
|
-
outputs: [
|
|
773
|
-
{
|
|
774
|
-
internalType: "address",
|
|
775
|
-
name: "",
|
|
776
|
-
type: "address",
|
|
777
|
-
},
|
|
778
|
-
],
|
|
779
|
-
stateMutability: "view",
|
|
780
|
-
type: "function",
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
inputs: [],
|
|
784
|
-
name: "unpause",
|
|
785
|
-
outputs: [],
|
|
786
|
-
stateMutability: "nonpayable",
|
|
787
|
-
type: "function",
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
inputs: [
|
|
791
|
-
{
|
|
792
|
-
internalType: "address",
|
|
793
|
-
name: "_interestRateModel",
|
|
794
|
-
type: "address",
|
|
795
|
-
},
|
|
796
|
-
],
|
|
797
|
-
name: "updateInterestRateModel",
|
|
798
|
-
outputs: [],
|
|
799
|
-
stateMutability: "nonpayable",
|
|
800
|
-
type: "function",
|
|
801
|
-
},
|
|
802
|
-
{
|
|
803
|
-
inputs: [],
|
|
804
|
-
name: "version",
|
|
805
|
-
outputs: [
|
|
806
|
-
{
|
|
807
|
-
internalType: "uint256",
|
|
808
|
-
name: "",
|
|
809
|
-
type: "uint256",
|
|
810
|
-
},
|
|
811
|
-
],
|
|
812
|
-
stateMutability: "view",
|
|
813
|
-
type: "function",
|
|
814
|
-
},
|
|
815
|
-
{
|
|
816
|
-
inputs: [],
|
|
817
|
-
name: "withdrawFee",
|
|
818
|
-
outputs: [
|
|
819
|
-
{
|
|
820
|
-
internalType: "uint256",
|
|
821
|
-
name: "",
|
|
822
|
-
type: "uint256",
|
|
823
|
-
},
|
|
824
|
-
],
|
|
825
|
-
stateMutability: "view",
|
|
826
|
-
type: "function",
|
|
827
|
-
},
|
|
828
|
-
];
|
|
829
|
-
const _bytecode = "0x60c06040523480156200001157600080fd5b506040516200486838038062004868833981016040819052620000349162000704565b6000805460ff19169055836001600160a01b0381166200006757604051635919af9760e11b815260040160405180910390fd5b806001600160a01b031663087376956040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000cc919062000756565b6001600160a01b039081166080526001805585161580159150620000f857506001600160a01b03831615155b80156200010d57506001600160a01b03821615155b6040518060400160405280600281526020016105a360f41b81525090620001525760405162461bcd60e51b8152600401620001499190620007dc565b60405180910390fd5b50600580546001600160a01b038087166001600160a01b031992831617909255600780549286169290911682179055604080516306fdde0360e01b815290516306fdde03916004808201926000929091908290030181865afa158015620001bd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620001e7919081019062000807565b604051602001620001f99190620008bf565b604051602081830303815290604052836001600160a01b03166395d89b416040518163ffffffff1660e01b8152600401600060405180830381865afa15801562000247573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000271919081019062000807565b604051602001620002839190620008f0565b604051602081830303815290604052846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f791906200091b565b6040516200030590620006d9565b620003139392919062000940565b604051809103906000f08015801562000330573d6000803e3d6000fd5b506001600160a01b0390811660a052600554604080516326c74fc360e01b8152905191909216916326c74fc39160048083019260209291908290030181865afa15801562000382573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a8919062000756565b600b80546001600160a01b0319166001600160a01b039290921691909117905542600e556b033b2e3c9fd0803ce8000000600c55620003e782620003f4565b6003555062000a27915050565b60408051808201909152600281526105a360f41b60208201526001600160a01b038216620004375760405162461bcd60e51b8152600401620001499190620007dc565b50600680546001600160a01b0319166001600160a01b0383161790556200045f600062000496565b6040516001600160a01b038216907f0ec6cb7631d36954a05ffd646135bfd9995c71e7fa36d26abb1ad9f24a040ea190600090a250565b80620004a162000551565b620004ad919062000993565b600255620004ba620005ca565b600c556006546002546001600160a01b03909116906342568d4490620004df620005fc565b6040516001600160e01b031960e085901b16815260048101929092526024820152604401602060405180830381865afa15801562000521573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005479190620009ad565b600d555042600e55565b600080600e544262000564919062000993565b905060006301e133806b033b2e3c9fd0803ce800000083600d546004546200058d9190620009c7565b620005999190620009c7565b620005a59190620009e9565b620005b19190620009e9565b905080600254620005c3919062000a0c565b9250505090565b600080600e5442620005dd919062000993565b9050620005f6600c54600d54836200067160201b60201c565b91505090565b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801562000646573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200066c9190620009ad565b905090565b6000806301e13380620006858486620009c7565b620006919190620009e9565b620006a9906b033b2e3c9fd0803ce800000062000a0c565b90506b033b2e3c9fd0803ce8000000620006c48287620009c7565b620006d09190620009e9565b95945050505050565b61130a806200355e83390190565b80516001600160a01b0381168114620006ff57600080fd5b919050565b600080600080608085870312156200071b57600080fd5b6200072685620006e7565b93506200073660208601620006e7565b92506200074660408601620006e7565b6060959095015193969295505050565b6000602082840312156200076957600080fd5b6200077482620006e7565b9392505050565b60005b83811015620007985781810151838201526020016200077e565b83811115620007a8576000848401525b50505050565b60008151808452620007c88160208601602086016200077b565b601f01601f19169290920160200192915050565b602081526000620007746020830184620007ae565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156200081a57600080fd5b81516001600160401b03808211156200083257600080fd5b818401915084601f8301126200084757600080fd5b8151818111156200085c576200085c620007f1565b604051601f8201601f19908116603f01168101908382118183101715620008875762000887620007f1565b81604052828152876020848701011115620008a157600080fd5b620008b48360208301602088016200077b565b979650505050505050565b6603234b2b9b2b6160cd1b815260008251620008e38160078501602087016200077b565b9190910160070192915050565b601960fa1b8152600082516200090e8160018501602087016200077b565b9190910160010192915050565b6000602082840312156200092e57600080fd5b815160ff811681146200077457600080fd5b606081526000620009556060830186620007ae565b8281036020840152620009698186620007ae565b91505060ff83166040830152949350505050565b634e487b7160e01b600052601160045260246000fd5b600082821015620009a857620009a86200097d565b500390565b600060208284031215620009c057600080fd5b5051919050565b6000816000190483118215151615620009e457620009e46200097d565b500290565b60008262000a0757634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000a225762000a226200097d565b500190565b60805160a051612ab662000aa86000396000818161038b0152818161078201528181610d4b0152818161124d015281816118c6015281816119ea0152611afa0152600081816104770152818161089601528181610aad01528181610bec01528181610e4a015281816113ba0152818161154b0152611bf10152612ab66000f3fe608060405234801561001057600080fd5b50600436106102775760003560e01c80635c975abb11610160578063bb04b193116100d8578063dbcb313b1161008c578063ef8d960311610071578063ef8d96031461052a578063f3fdb15a14610533578063fe14112d1461055357600080fd5b8063dbcb313b14610518578063e941fa781461052157600080fd5b8063c5f956af116100bd578063c5f956af146104d2578063ca9505e4146104f2578063cf33d9551461050557600080fd5b8063bb04b193146104ac578063bf28068b146104bf57600080fd5b80638456cb591161012f578063a4e8273e11610114578063a4e8273e1461046a578063a50cf2c814610472578063b6ac642a1461049957600080fd5b80638456cb591461044f5780639aa5d4621461045757600080fd5b80635c975abb1461042b578063609ae31714610436578063743753591461043f578063788c6bfe1461044757600080fd5b806336dda7d5116101f35780634c19386c116101c25780635427c938116101a75780635427c938146103fd57806354fd4d50146104105780635664cacf1461041857600080fd5b80634c19386c146103e15780634d778ad1146103ea57600080fd5b806336dda7d5146103865780633e163df0146103ad5780633f4ba83a146103d057806345d31f9d146103d857600080fd5b80631e16e4fc1161024a5780632954018c1161022f5780632954018c146103205780632e97ca211461034057806331d8bc271461037357600080fd5b80631e16e4fc146102c85780632495a5991461030057600080fd5b8063030dbb041461027c57806305fe138b14610298578063078c4781146102ab5780630fce70fb146102c0575b600080fd5b61028560025481565b6040519081526020015b60405180910390f35b6102856102a63660046127c6565b61055b565b6102be6102b93660046127f6565b610868565b005b6102856109c0565b6102db6102d6366004612813565b6109e8565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161028f565b6007546102db9073ffffffffffffffffffffffffffffffffffffffff1681565b6005546102db9073ffffffffffffffffffffffffffffffffffffffff1681565b61036361034e3660046127f6565b60086020526000908152604090205460ff1681565b604051901515815260200161028f565b61028561038136600461282c565b610a1f565b6102db7f000000000000000000000000000000000000000000000000000000000000000081565b6103636103bb3660046127f6565b60096020526000908152604090205460ff1681565b6102be610a7f565b610285600d5481565b61028560045481565b6102856103f8366004612813565b610b6d565b61028561040b366004612813565b610b9d565b610285600181565b6102be6104263660046127f6565b610bbe565b60005460ff16610363565b610285600e5481565b610285610cae565b610285610d46565b6102be610e1c565b6102be610465366004612858565b610f08565b600a54610285565b6102db7f000000000000000000000000000000000000000000000000000000000000000081565b6102be6104a7366004612813565b61138c565b6102be6104ba366004612813565b61151d565b6102be6104cd3660046127c6565b611636565b600b546102db9073ffffffffffffffffffffffffffffffffffffffff1681565b6102be61050036600461282c565b6117b6565b6102be6105133660046127f6565b611bc3565b610285600c5481565b610285600f5481565b61028560035481565b6006546102db9073ffffffffffffffffffffffffffffffffffffffff1681565b610285611f33565b6000805460ff16156105ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064015b60405180910390fd5b6002600154141561063b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c5565b60026001819055604080518082019091529081527f5a30000000000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff83166106c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b5060006106cf84610b9d565b905060006106e8600f5483611fa090919063ffffffff16565b905060006106f6828461293c565b60075490915061071d9073ffffffffffffffffffffffffffffffffffffffff168683611fea565b811561074d57600b5460075461074d9173ffffffffffffffffffffffffffffffffffffffff918216911684611fea565b6040517f9dc29fac000000000000000000000000000000000000000000000000000000008152336004820152602481018790527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690639dc29fac90604401600060405180830381600087803b1580156107db57600080fd5b505af11580156107ef573d6000803e3d6000fd5b5050505082600254610801919061293c565b60025561080e60006120c3565b60405186815273ffffffffffffffffffffffffffffffffffffffff86169033907fd8ae9b9ba89e637bcb66a69ac91e8f688018e81d6f92c57e02226425c8efbdf69060200160405180910390a36001805595945050505050565b6040517f5f259aba0000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690635f259aba90602401602060405180830381865afa1580156108f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109169190612953565b61094c576040517f61081c1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff811660008181526008602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517f9181736fce85d2d4cca2e4406f10679302ae5c387180fdb62963af3cd9a24fd69190a250565b600080600e54426109d1919061293c565b90506109e2600c54600d5483610a1f565b91505090565b600a81815481106109f857600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b6000806301e13380610a318486612975565b610a3b91906129e1565b610a51906b033b2e3c9fd0803ce80000006129f5565b90506b033b2e3c9fd0803ce8000000610a6a8287612975565b610a7491906129e1565b9150505b9392505050565b6040517fd4eb5db00000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063d4eb5db090602401602060405180830381865afa158015610b09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2d9190612953565b610b63576040517f10332dee00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6b612198565b565b6000610b77610d46565b610b8d6b033b2e3c9fd0803ce800000084612975565b610b9791906129e1565b92915050565b60006b033b2e3c9fd0803ce8000000610bb4610d46565b610b8d9084612975565b6040517f5f259aba0000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690635f259aba90602401602060405180830381865afa158015610c48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6c9190612953565b610ca2576040517f61081c1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cab81612279565b50565b6007546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610d1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d419190612a0d565b905090565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd89190612a0d565b905080610df2576b033b2e3c9fd0803ce800000091505090565b806b033b2e3c9fd0803ce8000000610e08611f33565b610e129190612975565b6109e291906129e1565b6040517f3a41ec640000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690633a41ec6490602401602060405180830381865afa158015610ea6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eca9190612953565b610f00576040517fd794b1e700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6b61238a565b60005460ff1615610f75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105c5565b60026001541415610fe2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c5565b60026001819055604080518082019091529081527f5a30000000000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff831661106a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b5060035483611077611f33565b61108191906129f5565b11156040518060400160405280600381526020017f5053320000000000000000000000000000000000000000000000000000000000815250906110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b506007546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015611161573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111859190612a0d565b6007549091506111ad9073ffffffffffffffffffffffffffffffffffffffff1633308761244a565b6007546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152829173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa15801561121b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123f9190612a0d565b611249919061293c565b93507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f198461129187610b6d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b1580156112fc57600080fd5b505af1158015611310573d6000803e3d6000fd5b505050508360025461132291906129f5565b60025561132f60006120c3565b604080518581526020810184905273ffffffffffffffffffffffffffffffffffffffff85169133917fd2491a9b4fe81a7cd4511e8b7b7743951b061dad5bed7da8a7795b080ee08c7e910160405180910390a35050600180555050565b6040517f5f259aba0000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690635f259aba90602401602060405180830381865afa158015611416573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143a9190612953565b611470576040517f61081c1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60408051808201909152600381527f5053330000000000000000000000000000000000000000000000000000000000602082015260648211156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b50600f8190556040518181527fd5fe46099fa396290a7f57e36c3c3c8774e2562c18ed5d1dcc0fa75071e03f1d906020015b60405180910390a150565b6040517f5f259aba0000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690635f259aba90602401602060405180830381865afa1580156115a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115cb9190612953565b611601576040517f61081c1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60038190556040518181527fd7a183c9fe85b604c25d54bd676e0866f6c13bcca9fb9b0850213de118fdc99c90602001611512565b60005460ff16156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105c5565b33600090815260086020908152604091829020548251808401909352600383527f50533000000000000000000000000000000000000000000000000000000000009183019190915260ff16611725576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b5060075461174a9073ffffffffffffffffffffffffffffffffffffffff168284611fea565b61175460006120c3565b8160045461176291906129f5565b60045560405182815273ffffffffffffffffffffffffffffffffffffffff82169033907f312a5e5e1079f5dda4e95dbbd0b908b291fd5b992ef22073643ab691572c5b529060200160405180910390a35050565b60005460ff1615611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105c5565b33600090815260096020908152604091829020548251808401909352600383527f50533000000000000000000000000000000000000000000000000000000000009183019190915260ff166118a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b50811561199157600b5473ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116916340c10f1991166118f885610b6d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561196357600080fd5b505af1158015611977573d6000803e3d6000fd5b505050508160025461198991906129f5565b600255611b5b565b600061199c82610b6d565b600b546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201529192506000917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015611a33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a579190612a0d565b905081811015611aab57905080337fef3653ded679720ab04913b6f3820be7cedc8286d42ff5dd8dff17e91bd2964c611a8f83610b9d565b611a99908661293c565b60405190815260200160405180910390a25b600b546040517f9dc29fac00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9182166004820152602481018490527f000000000000000000000000000000000000000000000000000000000000000090911690639dc29fac90604401600060405180830381600087803b158015611b4057600080fd5b505af1158015611b54573d6000803e3d6000fd5b5050505050505b611b64816120c3565b8260046000828254611b76919061293c565b9091555050604080518481526020810184905290810182905233907f2fe77b1c99aca6b022b8efc6e3e8dd1b48b30748709339b65c50ef3263443e099060600160405180910390a2505050565b6040517f5f259aba0000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690635f259aba90602401602060405180830381865afa158015611c4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c719190612953565b611ca7576040517f61081c1500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663570a7af26040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d169190612a26565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280600381526020017f505331000000000000000000000000000000000000000000000000000000000081525090611db2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b5073ffffffffffffffffffffffffffffffffffffffff8116600090815260096020908152604091829020548251808401909352600383527f50533400000000000000000000000000000000000000000000000000000000009183019190915260ff1615611e4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b5073ffffffffffffffffffffffffffffffffffffffff81166000818152600860209081526040808320805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009182168117909255600990935281842080549093168117909255600a8054928301815583527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001684179055517fe076020e7eac3915d33aec40c24f95e73eb6c9921ff89747d50aa8fd934d2c019190a250565b600080600e5442611f44919061293c565b905060006301e133806b033b2e3c9fd0803ce800000083600d54600454611f6b9190612975565b611f759190612975565b611f7f91906129e1565b611f8991906129e1565b905080600254611f9991906129f5565b9250505090565b6000821580611fad575081155b15611fba57506000610b97565b612710611fc8600282612a43565b61ffff16611fd68486612975565b611fe091906129f5565b610a7891906129e1565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526120be9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526124ae565b505050565b806120cc611f33565b6120d6919061293c565b6002556120e16109c0565b600c5560065460025473ffffffffffffffffffffffffffffffffffffffff909116906342568d4490612111610cae565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526024820152604401602060405180830381865afa15801561216a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218e9190612a0d565b600d555042600e55565b60005460ff16612204576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016105c5565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60408051808201909152600281527f5a30000000000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff82166122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b50600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff831617905561234660006120c3565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f0ec6cb7631d36954a05ffd646135bfd9995c71e7fa36d26abb1ad9f24a040ea190600090a250565b60005460ff16156123f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105c5565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861224f3390565b60405173ffffffffffffffffffffffffffffffffffffffff808516602483015283166044820152606481018290526124a89085907f23b872dd000000000000000000000000000000000000000000000000000000009060840161203c565b50505050565b6000612510826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125ba9092919063ffffffff16565b8051909150156120be578080602001905181019061252e9190612953565b6120be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016105c5565b60606125c984846000856125d1565b949350505050565b606082471015612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016105c5565b843b6126cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105c5565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516126f49190612a64565b60006040518083038185875af1925050503d8060008114612731576040519150601f19603f3d011682016040523d82523d6000602084013e612736565b606091505b5091509150612746828286612751565b979650505050505050565b60608315612760575081610a78565b8251156127705782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c591906128bc565b73ffffffffffffffffffffffffffffffffffffffff81168114610cab57600080fd5b600080604083850312156127d957600080fd5b8235915060208301356127eb816127a4565b809150509250929050565b60006020828403121561280857600080fd5b8135610a78816127a4565b60006020828403121561282557600080fd5b5035919050565b60008060006060848603121561284157600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561286d57600080fd5b83359250602084013561287f816127a4565b929592945050506040919091013590565b60005b838110156128ab578181015183820152602001612893565b838111156124a85750506000910152565b60208152600082518060208401526128db816040850160208701612890565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561294e5761294e61290d565b500390565b60006020828403121561296557600080fd5b81518015158114610a7857600080fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129ad576129ad61290d565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826129f0576129f06129b2565b500490565b60008219821115612a0857612a0861290d565b500190565b600060208284031215612a1f57600080fd5b5051919050565b600060208284031215612a3857600080fd5b8151610a78816127a4565b600061ffff80841680612a5857612a586129b2565b92169190910492915050565b60008251612a76818460208701612890565b919091019291505056fea26469706673582212206f3b5f25efdcc3608fd6fc19175002f7ba249dd0cfb23a43f35ab991c901dac164736f6c634300080a003360c06040523480156200001157600080fd5b506040516200130a3803806200130a8339810160408190526200003491620001eb565b8251839083906200004d90600390602085019062000078565b5080516200006390600490602084019062000078565b50505060ff1660805250503360a052620002ad565b828054620000869062000270565b90600052602060002090601f016020900481019282620000aa5760008555620000f5565b82601f10620000c557805160ff1916838001178555620000f5565b82800160010185558215620000f5579182015b82811115620000f5578251825591602001919060010190620000d8565b506200010392915062000107565b5090565b5b8082111562000103576000815560010162000108565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200014657600080fd5b81516001600160401b03808211156200016357620001636200011e565b604051601f8301601f19908116603f011681019082821181831017156200018e576200018e6200011e565b81604052838152602092508683858801011115620001ab57600080fd5b600091505b83821015620001cf5785820183015181830184015290820190620001b0565b83821115620001e15760008385830101525b9695505050505050565b6000806000606084860312156200020157600080fd5b83516001600160401b03808211156200021957600080fd5b620002278783880162000134565b945060208601519150808211156200023e57600080fd5b506200024d8682870162000134565b925050604084015160ff811681146200026557600080fd5b809150509250925092565b600181811c908216806200028557607f821691505b60208210811415620002a757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611029620002e1600039600081816101b3015281816104ab01526105370152600061015c01526110296000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063570a7af21161008c5780639dc29fac116100665780639dc29fac14610238578063a457c2d71461024b578063a9059cbb1461025e578063dd62ed3e1461027157600080fd5b8063570a7af2146101ae57806370a08231146101fa57806395d89b411461023057600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806340c10f191461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f76102b7565b6040516101049190610dea565b60405180910390f35b61012061011b366004610e86565b610349565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610eb0565b61035f565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610104565b610120610194366004610e86565b61044a565b6101ac6101a7366004610e86565b610493565b005b6101d57f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610104565b610134610208366004610eec565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6100f7610510565b6101ac610246366004610e86565b61051f565b610120610259366004610e86565b610598565b61012061026c366004610e86565b610670565b61013461027f366004610f0e565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102c690610f41565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610f41565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b600061035633848461067d565b50600192915050565b600061036c848484610831565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61043f853385840361067d565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161035691859061048e908690610fc4565b61067d565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610502576040517f95c3dbc500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61050c8282610ae5565b5050565b6060600480546102c690610f41565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161461058e576040517f95c3dbc500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61050c8282610c05565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610429565b610666338585840361067d565b5060019392505050565b6000610356338484610831565b73ffffffffffffffffffffffffffffffffffffffff831661071f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610429565b73ffffffffffffffffffffffffffffffffffffffff82166107c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610429565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166108d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610429565b73ffffffffffffffffffffffffffffffffffffffff8216610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610429565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610a2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610429565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610a71908490610fc4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ad791815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610b62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610429565b8060026000828254610b749190610fc4565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610bae908490610fc4565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610ca8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610429565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610d5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610429565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290610d9a908490610fdc565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610824565b600060208083528351808285015260005b81811015610e1757858101830151858201604001528201610dfb565b81811115610e29576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610e8157600080fd5b919050565b60008060408385031215610e9957600080fd5b610ea283610e5d565b946020939093013593505050565b600080600060608486031215610ec557600080fd5b610ece84610e5d565b9250610edc60208501610e5d565b9150604084013590509250925092565b600060208284031215610efe57600080fd5b610f0782610e5d565b9392505050565b60008060408385031215610f2157600080fd5b610f2a83610e5d565b9150610f3860208401610e5d565b90509250929050565b600181811c90821680610f5557607f821691505b60208210811415610f8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115610fd757610fd7610f95565b500190565b600082821015610fee57610fee610f95565b50039056fea26469706673582212204b19a68d3d8dac76da932fd0f271732f3f845dc3edfcc9a3c1557fef4f9c1cdb64736f6c634300080a0033";
|
|
830
|
-
const isSuperArgs = (xs) => xs.length > 1;
|
|
831
|
-
class PoolService__factory extends ethers_1.ContractFactory {
|
|
832
|
-
constructor(...args) {
|
|
833
|
-
if (isSuperArgs(args)) {
|
|
834
|
-
super(...args);
|
|
835
|
-
}
|
|
836
|
-
else {
|
|
837
|
-
super(_abi, _bytecode, args[0]);
|
|
838
|
-
}
|
|
839
|
-
}
|
|
840
|
-
deploy(_addressProvider, _underlyingToken, _interestRateModelAddress, _expectedLiquidityLimit, overrides) {
|
|
841
|
-
return super.deploy(_addressProvider, _underlyingToken, _interestRateModelAddress, _expectedLiquidityLimit, overrides || {});
|
|
842
|
-
}
|
|
843
|
-
getDeployTransaction(_addressProvider, _underlyingToken, _interestRateModelAddress, _expectedLiquidityLimit, overrides) {
|
|
844
|
-
return super.getDeployTransaction(_addressProvider, _underlyingToken, _interestRateModelAddress, _expectedLiquidityLimit, overrides || {});
|
|
845
|
-
}
|
|
846
|
-
attach(address) {
|
|
847
|
-
return super.attach(address);
|
|
848
|
-
}
|
|
849
|
-
connect(signer) {
|
|
850
|
-
return super.connect(signer);
|
|
851
|
-
}
|
|
852
|
-
static bytecode = _bytecode;
|
|
853
|
-
static abi = _abi;
|
|
854
|
-
static createInterface() {
|
|
855
|
-
return new ethers_1.utils.Interface(_abi);
|
|
856
|
-
}
|
|
857
|
-
static connect(address, signerOrProvider) {
|
|
858
|
-
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
859
|
-
}
|
|
860
|
-
}
|
|
861
|
-
exports.PoolService__factory = PoolService__factory;
|