@gearbox-protocol/sdk 3.0.0-next.21 → 3.0.0-next.211
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/SignUpRepository.sol +85 -0
- package/contracts/index.sol +39 -5
- package/lib/apy/auraAPY.d.ts +1 -0
- package/lib/apy/auraAPY.js +23 -0
- package/lib/apy/auraAbi.d.ts +15 -0
- package/lib/apy/auraAbi.js +24 -0
- package/lib/apy/convexAPY.d.ts +1194 -15
- package/lib/apy/convexAPY.js +57 -43
- package/lib/apy/curveAPY.d.ts +55 -5
- package/lib/apy/curveAPY.js +128 -72
- package/lib/apy/defiLamaAPY.d.ts +3 -0
- package/lib/apy/defiLamaAPY.js +69 -0
- package/lib/apy/index.d.ts +13 -4
- package/lib/apy/index.js +59 -5
- package/lib/apy/lidoAPY.d.ts +4 -1
- package/lib/apy/lidoAPY.js +7 -10
- package/lib/apy/yearnAPY.d.ts +3 -3
- package/lib/apy/yearnAPY.js +15 -12
- package/lib/contracts/contractsRegister.d.ts +17 -9
- package/lib/contracts/contractsRegister.js +53 -3
- package/lib/core/assets.d.ts +10 -9
- package/lib/core/assets.js +2 -2
- package/lib/core/bot.d.ts +12 -0
- package/lib/core/bot.js +23 -0
- package/lib/core/creditAccount.d.ts +110 -51
- package/lib/core/creditAccount.js +257 -107
- package/lib/core/creditAccount.spec.js +973 -135
- package/lib/core/creditManager.d.ts +38 -29
- package/lib/core/creditManager.js +157 -86
- package/lib/core/creditSession.d.ts +35 -13
- package/lib/core/creditSession.js +32 -7
- package/lib/core/endpoint.d.ts +11 -0
- package/lib/core/endpoint.js +37 -0
- package/lib/core/eventOrTx.d.ts +5 -5
- package/lib/core/events.d.ts +163 -162
- package/lib/core/events.js +7 -7
- 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/data.d.ts → pool.d.ts} +62 -30
- package/lib/core/{pool/data.js → pool.js} +115 -81
- package/lib/core/priceOracle.d.ts +1 -1
- package/lib/core/rewardClaimer.d.ts +8 -6
- package/lib/core/rewardConvex.d.ts +32 -14
- package/lib/core/rewardConvex.js +215 -64
- package/lib/core/rewardConvex.spec.js +39 -70
- package/lib/core/strategy.d.ts +20 -24
- package/lib/core/strategy.js +14 -36
- package/lib/core/trade.d.ts +13 -13
- package/lib/core/trade.js +36 -28
- package/lib/core/transactions.d.ts +214 -73
- package/lib/core/transactions.js +298 -119
- package/lib/gearboxRewards/api.d.ts +89 -0
- package/lib/gearboxRewards/api.js +313 -0
- package/lib/gearboxRewards/apy.d.ts +38 -0
- package/lib/gearboxRewards/apy.js +65 -0
- package/lib/gearboxRewards/extraAPY.d.ts +33 -0
- package/lib/gearboxRewards/extraAPY.js +133 -0
- package/lib/gearboxRewards/index.d.ts +3 -0
- package/lib/gearboxRewards/index.js +19 -0
- package/lib/gearboxRewards/merklAPI.d.ts +43 -0
- package/lib/gearboxRewards/merklAPI.js +11 -0
- package/lib/index.d.ts +10 -6
- package/lib/index.js +10 -8
- package/lib/parsers/ERC20Parser.d.ts +2 -1
- package/lib/parsers/ERC20Parser.js +7 -7
- 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 +31 -14
- 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 +3 -2
- package/lib/parsers/convexBaseRewardPoolAdapterParser.js +18 -14
- package/lib/parsers/convexBoosterAdapterParser.d.ts +3 -3
- package/lib/parsers/convexBoosterAdapterParser.js +12 -12
- package/lib/parsers/convextRewardPoolParser.d.ts +2 -1
- package/lib/parsers/convextRewardPoolParser.js +4 -4
- package/lib/parsers/creditFacadeParser.d.ts +3 -2
- package/lib/parsers/creditFacadeParser.js +40 -14
- package/lib/parsers/creditManagerParser.d.ts +2 -1
- package/lib/parsers/creditManagerParser.js +4 -7
- package/lib/parsers/curveAdapterParser.d.ts +3 -2
- package/lib/parsers/curveAdapterParser.js +27 -27
- 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 +2 -1
- package/lib/parsers/lidoAdapterParser.js +8 -7
- package/lib/parsers/lidoSTETHParser.d.ts +2 -1
- package/lib/parsers/lidoSTETHParser.js +7 -7
- package/lib/parsers/priceOracleParser.d.ts +2 -1
- package/lib/parsers/priceOracleParser.js +5 -5
- package/lib/parsers/txParser.d.ts +21 -24
- package/lib/parsers/txParser.js +43 -14
- package/lib/parsers/uniV2AdapterParser.d.ts +2 -2
- package/lib/parsers/uniV2AdapterParser.js +10 -12
- package/lib/parsers/uniV2AdapterParser.spec.js +43 -30
- package/lib/parsers/uniV3AdapterParser.d.ts +4 -3
- package/lib/parsers/uniV3AdapterParser.js +22 -14
- package/lib/parsers/uniV3AdapterParser.spec.js +53 -76
- package/lib/parsers/wstETHAdapterParser.d.ts +2 -1
- package/lib/parsers/wstETHAdapterParser.js +15 -15
- package/lib/parsers/wstETHAdapterParser.spec.js +23 -7
- package/lib/parsers/yearnAdapterParser.spec.js +39 -21
- package/lib/parsers/yearnV2AdapterParser.d.ts +2 -1
- package/lib/parsers/yearnV2AdapterParser.js +19 -9
- package/lib/pathfinder/balancerVault.d.ts +33 -0
- package/lib/pathfinder/balancerVault.js +59 -0
- package/lib/pathfinder/core.d.ts +20 -10
- package/lib/pathfinder/index.d.ts +4 -0
- package/lib/pathfinder/index.js +20 -0
- package/lib/pathfinder/pathOptions.d.ts +6 -5
- package/lib/pathfinder/pathOptions.js +34 -18
- package/lib/pathfinder/pathOptions.spec.js +3 -6
- package/lib/pathfinder/pathfinder.d.ts +49 -22
- package/lib/pathfinder/pathfinder.js +101 -80
- package/lib/pathfinder/pathfinder.spec.js +24 -11
- 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 +48 -6
- package/lib/payload/creditManager.d.ts +57 -16
- 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 +110 -33
- package/lib/payload/token.d.ts +5 -2
- package/lib/redstone/api.d.ts +45 -0
- package/lib/redstone/api.js +365 -0
- package/lib/redstone/index.d.ts +1 -0
- package/lib/{core/pool → redstone}/index.js +1 -1
- package/lib/tokens/tokenData.d.ts +7 -5
- package/lib/tokens/tokenData.js +24 -5
- 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/{factories/IAirdropDistributor.sol/IAirdropDistributor__factory.js → IAirdropDistributor.js} +56 -112
- package/lib/types/IBalancerV2VaultAdapter.d.ts +507 -0
- package/lib/types/IBalancerV2VaultAdapter.js +322 -0
- package/lib/types/IBaseRewardPool.d.ts +391 -378
- package/lib/types/IBaseRewardPool.js +249 -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 -182
- package/lib/types/IConvexToken.js +143 -0
- package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +299 -284
- package/lib/types/IConvexV1BaseRewardPoolAdapter.js +202 -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/{factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.js → ICreditConfiguratorV3.js} +348 -532
- 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/{factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js → ICreditFacadeV3.js} +281 -590
- package/lib/types/ICreditFacadeV3Multicall.d.ts +197 -269
- package/lib/types/ICreditFacadeV3Multicall.js +142 -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 -438
- package/lib/types/ICurvePool.js +332 -0
- package/lib/types/ICurveV1_2AssetsAdapter.d.ts +665 -698
- package/lib/types/ICurveV1_2AssetsAdapter.js +404 -0
- package/lib/types/ICurveV1_3AssetsAdapter.d.ts +665 -761
- package/lib/types/ICurveV1_3AssetsAdapter.js +404 -0
- package/lib/types/ICurveV1_4AssetsAdapter.d.ts +665 -779
- package/lib/types/ICurveV1_4AssetsAdapter.js +404 -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 -142
- package/lib/types/IERC20.js +101 -0
- package/lib/types/IERC20Permit.d.ts +59 -74
- package/lib/types/IERC20Permit.js +35 -0
- package/lib/types/IERC20ZapperDeposits.d.ts +113 -0
- package/lib/types/IERC20ZapperDeposits.js +66 -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 -50
- package/lib/types/IInterestRateModel.js +23 -0
- package/lib/types/ILidoV1Adapter.d.ts +137 -158
- package/lib/types/ILidoV1Adapter.js +98 -0
- package/lib/types/IMulticall3.d.ts +332 -0
- package/lib/types/IMulticall3.js +244 -0
- package/lib/types/IOffchainOracle.d.ts +41 -58
- package/lib/types/IOffchainOracle.js +31 -0
- package/lib/types/IPartialLiquidationBotV3.d.ts +210 -0
- package/lib/types/IPartialLiquidationBotV3.js +143 -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 -88
- package/lib/types/IPriceOracleBase.js +58 -0
- package/lib/types/IPriceOracleV3.d.ts +319 -0
- package/lib/types/IPriceOracleV3.js +210 -0
- package/lib/types/IRouterV3.d.ts +505 -0
- package/lib/types/IRouterV3.js +328 -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/IYearnV2Adapter.d.ts +223 -256
- package/lib/types/IYearnV2Adapter.js +146 -0
- package/lib/types/IZapper.d.ts +121 -130
- package/lib/types/IZapper.js +84 -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 -186
- package/lib/types/IwstETHV1Adapter.js +106 -0
- package/lib/types/RedstonePriceFeed.d.ts +423 -0
- package/lib/types/RedstonePriceFeed.js +287 -0
- package/lib/types/SignUpRepository.d.ts +161 -0
- package/lib/types/SignUpRepository.js +137 -0
- package/lib/types/index.d.ts +51 -221
- package/lib/types/index.js +53 -186
- package/lib/utils/calls.d.ts +31 -0
- package/lib/utils/calls.js +73 -0
- package/lib/utils/formatter.d.ts +2 -2
- package/lib/utils/formatter.js +2 -2
- package/lib/utils/math.d.ts +1 -1
- package/lib/utils/math.js +1 -2
- package/lib/utils/types.d.ts +0 -4
- package/package.json +19 -17
- package/contracts/IRouter.sol +0 -100
- package/lib/core/errors.d.ts +0 -5
- package/lib/core/pool/index.d.ts +0 -1
- package/lib/core/strategy.spec.js +0 -62
- package/lib/parsers/addressProviderParser.d.ts +0 -6
- package/lib/parsers/addressProviderParser.js +0 -27
- 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 -25
- package/lib/parsers/curveAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/curveAdapterParser.spec.js +0 -42
- package/lib/parsers/lidoAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/lidoAdapterParser.spec.js +0 -17
- package/lib/parsers/poolParser.d.ts +0 -6
- package/lib/parsers/poolParser.js +0 -19
- package/lib/types/AddressProvider.d.ts +0 -382
- package/lib/types/Balances.sol/BalanceOps.d.ts +0 -27
- package/lib/types/Balances.sol/BalanceOps.js +0 -2
- package/lib/types/Balances.sol/index.d.ts +0 -1
- package/lib/types/Balances.sol/index.js +0 -2
- package/lib/types/Claimable.d.ts +0 -113
- package/lib/types/Claimable.js +0 -2
- package/lib/types/Errors.d.ts +0 -298
- package/lib/types/Errors.js +0 -2
- package/lib/types/IAdapter.d.ts +0 -74
- package/lib/types/IAdapter.js +0 -2
- package/lib/types/IAddressProvider.sol/IAddressProvider.d.ts +0 -137
- package/lib/types/IAddressProvider.sol/IAddressProvider.js +0 -2
- package/lib/types/IAddressProvider.sol/IAddressProviderEvents.d.ts +0 -43
- package/lib/types/IAddressProvider.sol/IAddressProviderEvents.js +0 -2
- package/lib/types/IAddressProvider.sol/index.d.ts +0 -2
- package/lib/types/IAddressProvider.sol/index.js +0 -2
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3.d.ts +0 -97
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3.js +0 -2
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3Events.d.ts +0 -45
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3Events.js +0 -2
- package/lib/types/IAddressProviderV3.sol/index.d.ts +0 -2
- package/lib/types/IAddressProviderV3.sol/index.js +0 -2
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributor.d.ts +0 -124
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributor.js +0 -2
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +0 -73
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.js +0 -2
- package/lib/types/IAirdropDistributor.sol/index.d.ts +0 -2
- package/lib/types/IAirdropDistributor.sol/index.js +0 -2
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.d.ts +0 -205
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.js +0 -2
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.d.ts +0 -43
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.js +0 -2
- package/lib/types/IConvexV1BoosterAdapter.sol/index.d.ts +0 -2
- package/lib/types/IConvexV1BoosterAdapter.sol/index.js +0 -2
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2.d.ts +0 -641
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2.js +0 -2
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.d.ts +0 -293
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.js +0 -2
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.d.ts +0 -27
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.js +0 -2
- package/lib/types/ICreditConfiguratorV2.sol/index.d.ts +0 -3
- package/lib/types/ICreditConfiguratorV2.sol/index.js +0 -2
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.d.ts +0 -716
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.js +0 -2
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.d.ts +0 -275
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.js +0 -2
- package/lib/types/ICreditConfiguratorV3.sol/index.d.ts +0 -2
- package/lib/types/ICreditConfiguratorV3.sol/index.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2.d.ts +0 -710
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Events.d.ts +0 -244
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Events.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.d.ts +0 -27
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.d.ts +0 -138
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2V2.d.ts +0 -66
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2V2.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/index.d.ts +0 -5
- package/lib/types/ICreditFacadeV2.sol/index.js +0 -2
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.d.ts +0 -572
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.js +0 -2
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +0 -168
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.js +0 -2
- package/lib/types/ICreditFacadeV3.sol/index.d.ts +0 -2
- package/lib/types/ICreditFacadeV3.sol/index.js +0 -2
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2.d.ts +0 -639
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2.js +0 -2
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Events.d.ts +0 -54
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Events.js +0 -2
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Exceptions.d.ts +0 -27
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Exceptions.js +0 -2
- package/lib/types/ICreditManagerV2.sol/index.d.ts +0 -3
- package/lib/types/ICreditManagerV2.sol/index.js +0 -2
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.d.ts +0 -947
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.js +0 -2
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3Events.d.ts +0 -41
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3Events.js +0 -2
- package/lib/types/ICreditManagerV3.sol/index.d.ts +0 -2
- package/lib/types/ICreditManagerV3.sol/index.js +0 -2
- package/lib/types/ICurvePool_2.sol/ICurvePool2Assets.d.ts +0 -590
- package/lib/types/ICurvePool_2.sol/ICurvePool2Assets.js +0 -2
- package/lib/types/ICurvePool_2.sol/index.d.ts +0 -1
- package/lib/types/ICurvePool_2.sol/index.js +0 -2
- package/lib/types/ICurvePool_3.sol/ICurvePool3Assets.d.ts +0 -686
- package/lib/types/ICurvePool_3.sol/ICurvePool3Assets.js +0 -2
- package/lib/types/ICurvePool_3.sol/index.d.ts +0 -1
- package/lib/types/ICurvePool_3.sol/index.js +0 -2
- package/lib/types/ICurvePool_4.sol/ICurvePool4Assets.d.ts +0 -722
- package/lib/types/ICurvePool_4.sol/ICurvePool4Assets.js +0 -2
- package/lib/types/ICurvePool_4.sol/index.d.ts +0 -1
- package/lib/types/ICurvePool_4.sol/index.js +0 -2
- package/lib/types/ICurveV1Adapter.d.ts +0 -614
- package/lib/types/ICurveV1Adapter.js +0 -2
- package/lib/types/IDaiLikePermit.d.ts +0 -59
- package/lib/types/IDaiLikePermit.js +0 -2
- package/lib/types/IDataCompressorV2_10.d.ts +0 -511
- package/lib/types/IDataCompressorV2_10.js +0 -2
- package/lib/types/IDataCompressorV3_00.d.ts +0 -533
- package/lib/types/IDataCompressorV3_00.js +0 -2
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.d.ts +0 -96
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.js +0 -2
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +0 -53
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.js +0 -2
- package/lib/types/IDegenDistributor.sol/index.d.ts +0 -2
- package/lib/types/IDegenDistributor.sol/index.js +0 -2
- package/lib/types/IERC20Metadata.d.ts +0 -166
- package/lib/types/IERC20Metadata.js +0 -2
- package/lib/types/IERC4626.d.ts +0 -394
- package/lib/types/IERC4626.js +0 -2
- package/lib/types/IPermit2.d.ts +0 -130
- package/lib/types/IPermit2.js +0 -2
- package/lib/types/IPoolService.sol/IPoolService.d.ts +0 -392
- package/lib/types/IPoolService.sol/IPoolService.js +0 -2
- package/lib/types/IPoolService.sol/IPoolServiceEvents.d.ts +0 -162
- package/lib/types/IPoolService.sol/IPoolServiceEvents.js +0 -2
- package/lib/types/IPoolService.sol/index.d.ts +0 -2
- package/lib/types/IPoolService.sol/index.js +0 -2
- package/lib/types/IPoolV3.sol/IPoolV3.d.ts +0 -936
- package/lib/types/IPoolV3.sol/IPoolV3.js +0 -2
- package/lib/types/IPoolV3.sol/IPoolV3Events.d.ts +0 -158
- package/lib/types/IPoolV3.sol/IPoolV3Events.js +0 -2
- package/lib/types/IPoolV3.sol/index.d.ts +0 -2
- package/lib/types/IPoolV3.sol/index.js +0 -2
- package/lib/types/IRouter.d.ts +0 -268
- package/lib/types/IRouter.js +0 -2
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +0 -207
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.js +0 -2
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.d.ts +0 -45
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.js +0 -2
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.d.ts +0 -27
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.js +0 -2
- package/lib/types/IUniswapV2Adapter.sol/index.d.ts +0 -3
- package/lib/types/IUniswapV2Adapter.sol/index.js +0 -2
- package/lib/types/IUniswapV3.sol/ISwapRouter.d.ts +0 -198
- package/lib/types/IUniswapV3.sol/ISwapRouter.js +0 -2
- package/lib/types/IUniswapV3.sol/index.d.ts +0 -1
- package/lib/types/IUniswapV3.sol/index.js +0 -2
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +0 -409
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.js +0 -2
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.d.ts +0 -47
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.js +0 -2
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.d.ts +0 -27
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.js +0 -2
- package/lib/types/IUniswapV3Adapter.sol/index.d.ts +0 -3
- package/lib/types/IUniswapV3Adapter.sol/index.js +0 -2
- package/lib/types/IVersion.d.ts +0 -42
- package/lib/types/IVersion.js +0 -2
- package/lib/types/IWERC20Zapper.d.ts +0 -166
- package/lib/types/IWERC20Zapper.js +0 -2
- package/lib/types/IWETH.d.ts +0 -197
- package/lib/types/IWETH.js +0 -2
- package/lib/types/IWETHGateway.d.ts +0 -90
- package/lib/types/IWETHGateway.js +0 -2
- package/lib/types/IWETHZapper.d.ts +0 -162
- package/lib/types/IWETHZapper.js +0 -2
- package/lib/types/IWithdrawalManagerV3.sol/IWithdrawalManagerV3.d.ts +0 -370
- package/lib/types/IWithdrawalManagerV3.sol/IWithdrawalManagerV3.js +0 -2
- package/lib/types/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events.d.ts +0 -133
- package/lib/types/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events.js +0 -2
- package/lib/types/IWithdrawalManagerV3.sol/index.d.ts +0 -2
- package/lib/types/IWithdrawalManagerV3.sol/index.js +0 -2
- package/lib/types/IYVault.d.ts +0 -298
- package/lib/types/IYVault.js +0 -2
- package/lib/types/IstETH.sol/IstETH.d.ts +0 -230
- package/lib/types/IstETH.sol/IstETH.js +0 -2
- package/lib/types/IstETH.sol/IstETHGetters.d.ts +0 -214
- package/lib/types/IstETH.sol/IstETHGetters.js +0 -2
- package/lib/types/IstETH.sol/index.d.ts +0 -2
- package/lib/types/IstETH.sol/index.js +0 -2
- package/lib/types/IwstETH.sol/IwstETH.d.ts +0 -238
- package/lib/types/IwstETH.sol/IwstETH.js +0 -2
- package/lib/types/IwstETH.sol/IwstETHGetters.d.ts +0 -206
- package/lib/types/IwstETH.sol/IwstETHGetters.js +0 -2
- package/lib/types/IwstETH.sol/index.d.ts +0 -2
- package/lib/types/IwstETH.sol/index.js +0 -2
- package/lib/types/IwstETHGateway.sol/IwstETHGateWay.d.ts +0 -70
- package/lib/types/IwstETHGateway.sol/IwstETHGateWay.js +0 -2
- package/lib/types/IwstETHGateway.sol/index.d.ts +0 -1
- package/lib/types/IwstETHGateway.sol/index.js +0 -2
- package/lib/types/Ownable.d.ts +0 -89
- package/lib/types/Ownable.js +0 -2
- package/lib/types/SafeERC20.d.ts +0 -27
- package/lib/types/SafeERC20.js +0 -2
- package/lib/types/common.d.ts +0 -22
- package/lib/types/common.js +0 -2
- package/lib/types/factories/AddressProvider__factory.d.ts +0 -321
- package/lib/types/factories/AddressProvider__factory.js +0 -430
- package/lib/types/factories/Balances.sol/BalanceOps__factory.d.ts +0 -29
- package/lib/types/factories/Balances.sol/BalanceOps__factory.js +0 -53
- package/lib/types/factories/Balances.sol/index.d.ts +0 -1
- package/lib/types/factories/Balances.sol/index.js +0 -8
- package/lib/types/factories/Claimable__factory.d.ts +0 -78
- package/lib/types/factories/Claimable__factory.js +0 -114
- package/lib/types/factories/Errors__factory.d.ts +0 -351
- package/lib/types/factories/Errors__factory.js +0 -471
- package/lib/types/factories/IAdapter__factory.d.ts +0 -58
- package/lib/types/factories/IAdapter__factory.js +0 -84
- package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.d.ts +0 -23
- package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.js +0 -38
- package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.d.ts +0 -133
- package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.js +0 -181
- package/lib/types/factories/IAddressProvider.sol/index.d.ts +0 -2
- package/lib/types/factories/IAddressProvider.sol/index.js +0 -10
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.d.ts +0 -28
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.js +0 -44
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.d.ts +0 -92
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.js +0 -128
- package/lib/types/factories/IAddressProviderV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IAddressProviderV3.sol/index.js +0 -10
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +0 -63
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.js +0 -88
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +0 -119
- package/lib/types/factories/IAirdropDistributor.sol/index.d.ts +0 -2
- package/lib/types/factories/IAirdropDistributor.sol/index.js +0 -10
- package/lib/types/factories/IBaseRewardPool__factory.d.ts +0 -398
- package/lib/types/factories/IBaseRewardPool__factory.js +0 -534
- package/lib/types/factories/IConvexToken__factory.d.ts +0 -198
- package/lib/types/factories/IConvexToken__factory.js +0 -267
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.d.ts +0 -254
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.js +0 -341
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.d.ts +0 -23
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.js +0 -38
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.d.ts +0 -181
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.js +0 -245
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.d.ts +0 -2
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.js +0 -10
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.d.ts +0 -268
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.js +0 -353
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.d.ts +0 -44
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.js +0 -64
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.d.ts +0 -576
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.js +0 -749
- package/lib/types/factories/ICreditConfiguratorV2.sol/index.d.ts +0 -3
- package/lib/types/factories/ICreditConfiguratorV2.sol/index.js +0 -12
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.d.ts +0 -273
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.js +0 -357
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.d.ts +0 -605
- package/lib/types/factories/ICreditConfiguratorV3.sol/index.d.ts +0 -2
- package/lib/types/factories/ICreditConfiguratorV3.sol/index.js +0 -10
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.d.ts +0 -263
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.js +0 -340
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.d.ts +0 -140
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.js +0 -185
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.d.ts +0 -81
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.js +0 -114
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.d.ts +0 -26
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.js +0 -42
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.d.ts +0 -901
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.js +0 -1163
- package/lib/types/factories/ICreditFacadeV2.sol/index.d.ts +0 -5
- package/lib/types/factories/ICreditFacadeV2.sol/index.js +0 -16
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.d.ts +0 -188
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +0 -244
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +0 -617
- package/lib/types/factories/ICreditFacadeV3.sol/index.d.ts +0 -2
- package/lib/types/factories/ICreditFacadeV3.sol/index.js +0 -10
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.d.ts +0 -200
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +0 -267
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.d.ts +0 -33
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.js +0 -51
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.d.ts +0 -60
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.js +0 -84
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.d.ts +0 -707
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.js +0 -932
- package/lib/types/factories/ICreditManagerV2.sol/index.d.ts +0 -3
- package/lib/types/factories/ICreditManagerV2.sol/index.js +0 -12
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.d.ts +0 -18
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.js +0 -32
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.d.ts +0 -1015
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.js +0 -1331
- package/lib/types/factories/ICreditManagerV3.sol/index.d.ts +0 -2
- package/lib/types/factories/ICreditManagerV3.sol/index.js +0 -10
- package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.d.ts +0 -678
- package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.js +0 -897
- package/lib/types/factories/ICurvePool_2.sol/index.d.ts +0 -1
- package/lib/types/factories/ICurvePool_2.sol/index.js +0 -8
- package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.d.ts +0 -678
- package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.js +0 -897
- package/lib/types/factories/ICurvePool_3.sol/index.d.ts +0 -1
- package/lib/types/factories/ICurvePool_3.sol/index.js +0 -8
- package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.d.ts +0 -678
- package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.js +0 -897
- package/lib/types/factories/ICurvePool_4.sol/index.d.ts +0 -1
- package/lib/types/factories/ICurvePool_4.sol/index.js +0 -8
- package/lib/types/factories/ICurvePool__factory.d.ts +0 -566
- package/lib/types/factories/ICurvePool__factory.js +0 -751
- package/lib/types/factories/ICurveV1Adapter__factory.d.ts +0 -664
- package/lib/types/factories/ICurveV1Adapter__factory.js +0 -875
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.d.ts +0 -730
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.js +0 -962
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.d.ts +0 -730
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.js +0 -962
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.d.ts +0 -730
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.js +0 -962
- package/lib/types/factories/IDaiLikePermit__factory.d.ts +0 -46
- package/lib/types/factories/IDaiLikePermit__factory.js +0 -67
- package/lib/types/factories/IDataCompressorV2_10__factory.d.ts +0 -1222
- package/lib/types/factories/IDataCompressorV2_10__factory.js +0 -1565
- package/lib/types/factories/IDataCompressorV3_00__factory.d.ts +0 -1398
- package/lib/types/factories/IDataCompressorV3_00__factory.js +0 -1788
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +0 -38
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.js +0 -57
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +0 -84
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.js +0 -117
- package/lib/types/factories/IDegenDistributor.sol/index.d.ts +0 -2
- package/lib/types/factories/IDegenDistributor.sol/index.js +0 -10
- package/lib/types/factories/IERC20Metadata__factory.d.ts +0 -178
- package/lib/types/factories/IERC20Metadata__factory.js +0 -241
- package/lib/types/factories/IERC20Permit__factory.d.ts +0 -66
- package/lib/types/factories/IERC20Permit__factory.js +0 -94
- package/lib/types/factories/IERC20__factory.d.ts +0 -148
- package/lib/types/factories/IERC20__factory.js +0 -202
- package/lib/types/factories/IERC4626__factory.d.ts +0 -473
- package/lib/types/factories/IERC4626__factory.js +0 -631
- package/lib/types/factories/IInterestRateModel__factory.d.ts +0 -36
- package/lib/types/factories/IInterestRateModel__factory.js +0 -56
- package/lib/types/factories/ILidoV1Adapter__factory.d.ts +0 -140
- package/lib/types/factories/ILidoV1Adapter__factory.js +0 -191
- package/lib/types/factories/IOffchainOracle__factory.d.ts +0 -48
- package/lib/types/factories/IOffchainOracle__factory.js +0 -72
- package/lib/types/factories/IPermit2__factory.d.ts +0 -113
- package/lib/types/factories/IPermit2__factory.js +0 -155
- package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.d.ts +0 -163
- package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.js +0 -215
- package/lib/types/factories/IPoolService.sol/IPoolService__factory.d.ts +0 -437
- package/lib/types/factories/IPoolService.sol/IPoolService__factory.js +0 -574
- package/lib/types/factories/IPoolService.sol/index.d.ts +0 -2
- package/lib/types/factories/IPoolService.sol/index.js +0 -10
- package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.d.ts +0 -153
- package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.js +0 -203
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.d.ts +0 -1068
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.js +0 -1402
- package/lib/types/factories/IPoolV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IPoolV3.sol/index.js +0 -10
- package/lib/types/factories/IPriceOracleBase__factory.d.ts +0 -104
- package/lib/types/factories/IPriceOracleBase__factory.js +0 -147
- package/lib/types/factories/IRouter__factory.d.ts +0 -382
- package/lib/types/factories/IRouter__factory.js +0 -507
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.d.ts +0 -28
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.js +0 -44
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.d.ts +0 -12
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.js +0 -24
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.d.ts +0 -217
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +0 -290
- package/lib/types/factories/IUniswapV2Adapter.sol/index.d.ts +0 -3
- package/lib/types/factories/IUniswapV2Adapter.sol/index.js +0 -12
- package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.d.ts +0 -172
- package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.js +0 -233
- package/lib/types/factories/IUniswapV3.sol/index.d.ts +0 -1
- package/lib/types/factories/IUniswapV3.sol/index.js +0 -8
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.d.ts +0 -33
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.js +0 -50
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.d.ts +0 -12
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.js +0 -24
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +0 -390
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +0 -515
- package/lib/types/factories/IUniswapV3Adapter.sol/index.d.ts +0 -3
- package/lib/types/factories/IUniswapV3Adapter.sol/index.js +0 -12
- package/lib/types/factories/IVersion__factory.d.ts +0 -18
- package/lib/types/factories/IVersion__factory.js +0 -32
- package/lib/types/factories/IWERC20Zapper__factory.d.ts +0 -176
- package/lib/types/factories/IWERC20Zapper__factory.js +0 -240
- package/lib/types/factories/IWETHGateway__factory.d.ts +0 -58
- package/lib/types/factories/IWETHGateway__factory.js +0 -83
- package/lib/types/factories/IWETHZapper__factory.d.ts +0 -168
- package/lib/types/factories/IWETHZapper__factory.js +0 -230
- package/lib/types/factories/IWETH__factory.d.ts +0 -194
- package/lib/types/factories/IWETH__factory.js +0 -260
- package/lib/types/factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory.d.ts +0 -143
- package/lib/types/factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory.js +0 -188
- package/lib/types/factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory.d.ts +0 -366
- package/lib/types/factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory.js +0 -479
- package/lib/types/factories/IWithdrawalManagerV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IWithdrawalManagerV3.sol/index.js +0 -10
- package/lib/types/factories/IYVault__factory.d.ts +0 -304
- package/lib/types/factories/IYVault__factory.js +0 -408
- package/lib/types/factories/IYearnV2Adapter__factory.d.ts +0 -222
- package/lib/types/factories/IYearnV2Adapter__factory.js +0 -299
- package/lib/types/factories/IZapper__factory.d.ts +0 -136
- package/lib/types/factories/IZapper__factory.js +0 -187
- package/lib/types/factories/IstETH.sol/IstETHGetters__factory.d.ts +0 -250
- package/lib/types/factories/IstETH.sol/IstETHGetters__factory.js +0 -337
- package/lib/types/factories/IstETH.sol/IstETH__factory.d.ts +0 -264
- package/lib/types/factories/IstETH.sol/IstETH__factory.js +0 -356
- package/lib/types/factories/IstETH.sol/index.d.ts +0 -2
- package/lib/types/factories/IstETH.sol/index.js +0 -10
- package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.d.ts +0 -236
- package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.js +0 -318
- package/lib/types/factories/IwstETH.sol/IwstETH__factory.d.ts +0 -264
- package/lib/types/factories/IwstETH.sol/IwstETH__factory.js +0 -356
- package/lib/types/factories/IwstETH.sol/index.d.ts +0 -2
- package/lib/types/factories/IwstETH.sol/index.js +0 -10
- package/lib/types/factories/IwstETHGateway.sol/IwstETHGateWay__factory.d.ts +0 -48
- package/lib/types/factories/IwstETHGateway.sol/IwstETHGateWay__factory.js +0 -71
- package/lib/types/factories/IwstETHGateway.sol/index.d.ts +0 -1
- package/lib/types/factories/IwstETHGateway.sol/index.js +0 -8
- package/lib/types/factories/IwstETHV1Adapter__factory.d.ts +0 -152
- package/lib/types/factories/IwstETHV1Adapter__factory.js +0 -207
- package/lib/types/factories/Ownable__factory.d.ts +0 -49
- package/lib/types/factories/Ownable__factory.js +0 -71
- package/lib/types/factories/SafeERC20__factory.d.ts +0 -49
- package/lib/types/factories/SafeERC20__factory.js +0 -77
- package/lib/types/factories/index.d.ts +0 -61
- package/lib/types/factories/index.js +0 -128
- package/lib/utils/repeater.d.ts +0 -1
- package/lib/utils/repeater.js +0 -19
- package/lib/watchers/creditAccountWatcher.d.ts +0 -36
- package/lib/watchers/creditAccountWatcher.js +0 -238
- 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 -37
- package/lib/watchers/creditManagerWatcher.spec.d.ts +0 -1
- package/lib/watchers/creditManagerWatcher.spec.js +0 -107
- /package/lib/core/{strategy.spec.d.ts → gaugeMath.spec.d.ts} +0 -0
- /package/lib/{core/errors.js → payload/bot.js} +0 -0
- /package/lib/{types/AddressProvider.js → payload/gauge.js} +0 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -1,221 +1,51 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
export
|
|
5
|
-
|
|
6
|
-
export
|
|
7
|
-
|
|
8
|
-
export
|
|
9
|
-
|
|
10
|
-
export
|
|
11
|
-
|
|
12
|
-
export
|
|
13
|
-
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
export
|
|
17
|
-
|
|
18
|
-
export
|
|
19
|
-
|
|
20
|
-
export
|
|
21
|
-
|
|
22
|
-
export
|
|
23
|
-
|
|
24
|
-
export
|
|
25
|
-
|
|
26
|
-
export
|
|
27
|
-
|
|
28
|
-
export
|
|
29
|
-
|
|
30
|
-
export
|
|
31
|
-
|
|
32
|
-
export
|
|
33
|
-
|
|
34
|
-
export
|
|
35
|
-
|
|
36
|
-
export
|
|
37
|
-
|
|
38
|
-
export
|
|
39
|
-
|
|
40
|
-
export
|
|
41
|
-
|
|
42
|
-
export
|
|
43
|
-
|
|
44
|
-
export
|
|
45
|
-
|
|
46
|
-
export
|
|
47
|
-
|
|
48
|
-
export
|
|
49
|
-
export
|
|
50
|
-
export
|
|
51
|
-
export
|
|
52
|
-
export type { IAdapter } from "./IAdapter";
|
|
53
|
-
export type { IBaseRewardPool } from "./IBaseRewardPool";
|
|
54
|
-
export type { IConvexToken } from "./IConvexToken";
|
|
55
|
-
export type { IConvexV1BaseRewardPoolAdapter } from "./IConvexV1BaseRewardPoolAdapter";
|
|
56
|
-
export type { ICreditFacadeV3Multicall } from "./ICreditFacadeV3Multicall";
|
|
57
|
-
export type { ICurvePool } from "./ICurvePool";
|
|
58
|
-
export type { ICurveV1Adapter } from "./ICurveV1Adapter";
|
|
59
|
-
export type { ICurveV1_2AssetsAdapter } from "./ICurveV1_2AssetsAdapter";
|
|
60
|
-
export type { ICurveV1_3AssetsAdapter } from "./ICurveV1_3AssetsAdapter";
|
|
61
|
-
export type { ICurveV1_4AssetsAdapter } from "./ICurveV1_4AssetsAdapter";
|
|
62
|
-
export type { IDaiLikePermit } from "./IDaiLikePermit";
|
|
63
|
-
export type { IDataCompressorV2_10 } from "./IDataCompressorV2_10";
|
|
64
|
-
export type { IDataCompressorV3_00 } from "./IDataCompressorV3_00";
|
|
65
|
-
export type { IERC20 } from "./IERC20";
|
|
66
|
-
export type { IERC20Metadata } from "./IERC20Metadata";
|
|
67
|
-
export type { IERC20Permit } from "./IERC20Permit";
|
|
68
|
-
export type { IERC4626 } from "./IERC4626";
|
|
69
|
-
export type { IInterestRateModel } from "./IInterestRateModel";
|
|
70
|
-
export type { ILidoV1Adapter } from "./ILidoV1Adapter";
|
|
71
|
-
export type { IOffchainOracle } from "./IOffchainOracle";
|
|
72
|
-
export type { IPermit2 } from "./IPermit2";
|
|
73
|
-
export type { IPriceOracleBase } from "./IPriceOracleBase";
|
|
74
|
-
export type { IRouter } from "./IRouter";
|
|
75
|
-
export type { IVersion } from "./IVersion";
|
|
76
|
-
export type { IWERC20Zapper } from "./IWERC20Zapper";
|
|
77
|
-
export type { IWETH } from "./IWETH";
|
|
78
|
-
export type { IWETHGateway } from "./IWETHGateway";
|
|
79
|
-
export type { IWETHZapper } from "./IWETHZapper";
|
|
80
|
-
export type { IYVault } from "./IYVault";
|
|
81
|
-
export type { IYearnV2Adapter } from "./IYearnV2Adapter";
|
|
82
|
-
export type { IZapper } from "./IZapper";
|
|
83
|
-
export type { IwstETHV1Adapter } from "./IwstETHV1Adapter";
|
|
84
|
-
export type { Ownable } from "./Ownable";
|
|
85
|
-
export type { SafeERC20 } from "./SafeERC20";
|
|
86
|
-
export * as factories from "./factories";
|
|
87
|
-
export { AddressProvider__factory } from "./factories/AddressProvider__factory";
|
|
88
|
-
export type { BalanceOps } from "./Balances.sol/BalanceOps";
|
|
89
|
-
export { BalanceOps__factory } from "./factories/Balances.sol/BalanceOps__factory";
|
|
90
|
-
export { Claimable__factory } from "./factories/Claimable__factory";
|
|
91
|
-
export { Errors__factory } from "./factories/Errors__factory";
|
|
92
|
-
export { IAdapter__factory } from "./factories/IAdapter__factory";
|
|
93
|
-
export type { IAddressProvider } from "./IAddressProvider.sol/IAddressProvider";
|
|
94
|
-
export { IAddressProvider__factory } from "./factories/IAddressProvider.sol/IAddressProvider__factory";
|
|
95
|
-
export type { IAddressProviderEvents } from "./IAddressProvider.sol/IAddressProviderEvents";
|
|
96
|
-
export { IAddressProviderEvents__factory } from "./factories/IAddressProvider.sol/IAddressProviderEvents__factory";
|
|
97
|
-
export type { IAddressProviderV3 } from "./IAddressProviderV3.sol/IAddressProviderV3";
|
|
98
|
-
export { IAddressProviderV3__factory } from "./factories/IAddressProviderV3.sol/IAddressProviderV3__factory";
|
|
99
|
-
export type { IAddressProviderV3Events } from "./IAddressProviderV3.sol/IAddressProviderV3Events";
|
|
100
|
-
export { IAddressProviderV3Events__factory } from "./factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory";
|
|
101
|
-
export type { IAirdropDistributor } from "./IAirdropDistributor.sol/IAirdropDistributor";
|
|
102
|
-
export { IAirdropDistributor__factory } from "./factories/IAirdropDistributor.sol/IAirdropDistributor__factory";
|
|
103
|
-
export type { IAirdropDistributorEvents } from "./IAirdropDistributor.sol/IAirdropDistributorEvents";
|
|
104
|
-
export { IAirdropDistributorEvents__factory } from "./factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory";
|
|
105
|
-
export { IBaseRewardPool__factory } from "./factories/IBaseRewardPool__factory";
|
|
106
|
-
export { IConvexToken__factory } from "./factories/IConvexToken__factory";
|
|
107
|
-
export { IConvexV1BaseRewardPoolAdapter__factory } from "./factories/IConvexV1BaseRewardPoolAdapter__factory";
|
|
108
|
-
export type { IConvexV1BoosterAdapter } from "./IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter";
|
|
109
|
-
export { IConvexV1BoosterAdapter__factory } from "./factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory";
|
|
110
|
-
export type { IConvexV1BoosterAdapterEvents } from "./IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents";
|
|
111
|
-
export { IConvexV1BoosterAdapterEvents__factory } from "./factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory";
|
|
112
|
-
export type { ICreditConfiguratorV2 } from "./ICreditConfiguratorV2.sol/ICreditConfiguratorV2";
|
|
113
|
-
export { ICreditConfiguratorV2__factory } from "./factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory";
|
|
114
|
-
export type { ICreditConfiguratorV2Events } from "./ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events";
|
|
115
|
-
export { ICreditConfiguratorV2Events__factory } from "./factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory";
|
|
116
|
-
export type { ICreditConfiguratorV2Exceptions } from "./ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions";
|
|
117
|
-
export { ICreditConfiguratorV2Exceptions__factory } from "./factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory";
|
|
118
|
-
export type { ICreditConfiguratorV3 } from "./ICreditConfiguratorV3.sol/ICreditConfiguratorV3";
|
|
119
|
-
export { ICreditConfiguratorV3__factory } from "./factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory";
|
|
120
|
-
export type { ICreditConfiguratorV3Events } from "./ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events";
|
|
121
|
-
export { ICreditConfiguratorV3Events__factory } from "./factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory";
|
|
122
|
-
export type { ICreditFacadeV2 } from "./ICreditFacadeV2.sol/ICreditFacadeV2";
|
|
123
|
-
export { ICreditFacadeV2__factory } from "./factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory";
|
|
124
|
-
export type { ICreditFacadeV2Events } from "./ICreditFacadeV2.sol/ICreditFacadeV2Events";
|
|
125
|
-
export { ICreditFacadeV2Events__factory } from "./factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory";
|
|
126
|
-
export type { ICreditFacadeV2Exceptions } from "./ICreditFacadeV2.sol/ICreditFacadeV2Exceptions";
|
|
127
|
-
export { ICreditFacadeV2Exceptions__factory } from "./factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory";
|
|
128
|
-
export type { ICreditFacadeV2Extended } from "./ICreditFacadeV2.sol/ICreditFacadeV2Extended";
|
|
129
|
-
export { ICreditFacadeV2Extended__factory } from "./factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory";
|
|
130
|
-
export type { ICreditFacadeV2V2 } from "./ICreditFacadeV2.sol/ICreditFacadeV2V2";
|
|
131
|
-
export { ICreditFacadeV2V2__factory } from "./factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory";
|
|
132
|
-
export type { ICreditFacadeV3 } from "./ICreditFacadeV3.sol/ICreditFacadeV3";
|
|
133
|
-
export { ICreditFacadeV3__factory } from "./factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory";
|
|
134
|
-
export type { ICreditFacadeV3Events } from "./ICreditFacadeV3.sol/ICreditFacadeV3Events";
|
|
135
|
-
export { ICreditFacadeV3Events__factory } from "./factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory";
|
|
136
|
-
export { ICreditFacadeV3Multicall__factory } from "./factories/ICreditFacadeV3Multicall__factory";
|
|
137
|
-
export type { ICreditManagerV2 } from "./ICreditManagerV2.sol/ICreditManagerV2";
|
|
138
|
-
export { ICreditManagerV2__factory } from "./factories/ICreditManagerV2.sol/ICreditManagerV2__factory";
|
|
139
|
-
export type { ICreditManagerV2Events } from "./ICreditManagerV2.sol/ICreditManagerV2Events";
|
|
140
|
-
export { ICreditManagerV2Events__factory } from "./factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory";
|
|
141
|
-
export type { ICreditManagerV2Exceptions } from "./ICreditManagerV2.sol/ICreditManagerV2Exceptions";
|
|
142
|
-
export { ICreditManagerV2Exceptions__factory } from "./factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory";
|
|
143
|
-
export type { ICreditManagerV3 } from "./ICreditManagerV3.sol/ICreditManagerV3";
|
|
144
|
-
export { ICreditManagerV3__factory } from "./factories/ICreditManagerV3.sol/ICreditManagerV3__factory";
|
|
145
|
-
export type { ICreditManagerV3Events } from "./ICreditManagerV3.sol/ICreditManagerV3Events";
|
|
146
|
-
export { ICreditManagerV3Events__factory } from "./factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory";
|
|
147
|
-
export type { ICurvePool2Assets } from "./ICurvePool_2.sol/ICurvePool2Assets";
|
|
148
|
-
export { ICurvePool2Assets__factory } from "./factories/ICurvePool_2.sol/ICurvePool2Assets__factory";
|
|
149
|
-
export type { ICurvePool3Assets } from "./ICurvePool_3.sol/ICurvePool3Assets";
|
|
150
|
-
export { ICurvePool3Assets__factory } from "./factories/ICurvePool_3.sol/ICurvePool3Assets__factory";
|
|
151
|
-
export type { ICurvePool4Assets } from "./ICurvePool_4.sol/ICurvePool4Assets";
|
|
152
|
-
export { ICurvePool4Assets__factory } from "./factories/ICurvePool_4.sol/ICurvePool4Assets__factory";
|
|
153
|
-
export { ICurvePool__factory } from "./factories/ICurvePool__factory";
|
|
154
|
-
export { ICurveV1_2AssetsAdapter__factory } from "./factories/ICurveV1_2AssetsAdapter__factory";
|
|
155
|
-
export { ICurveV1_3AssetsAdapter__factory } from "./factories/ICurveV1_3AssetsAdapter__factory";
|
|
156
|
-
export { ICurveV1_4AssetsAdapter__factory } from "./factories/ICurveV1_4AssetsAdapter__factory";
|
|
157
|
-
export { ICurveV1Adapter__factory } from "./factories/ICurveV1Adapter__factory";
|
|
158
|
-
export { IDaiLikePermit__factory } from "./factories/IDaiLikePermit__factory";
|
|
159
|
-
export { IDataCompressorV2_10__factory } from "./factories/IDataCompressorV2_10__factory";
|
|
160
|
-
export { IDataCompressorV3_00__factory } from "./factories/IDataCompressorV3_00__factory";
|
|
161
|
-
export type { IDegenDistributor } from "./IDegenDistributor.sol/IDegenDistributor";
|
|
162
|
-
export { IDegenDistributor__factory } from "./factories/IDegenDistributor.sol/IDegenDistributor__factory";
|
|
163
|
-
export type { IDegenDistributorEvents } from "./IDegenDistributor.sol/IDegenDistributorEvents";
|
|
164
|
-
export { IDegenDistributorEvents__factory } from "./factories/IDegenDistributor.sol/IDegenDistributorEvents__factory";
|
|
165
|
-
export { IERC20__factory } from "./factories/IERC20__factory";
|
|
166
|
-
export { IERC20Metadata__factory } from "./factories/IERC20Metadata__factory";
|
|
167
|
-
export { IERC20Permit__factory } from "./factories/IERC20Permit__factory";
|
|
168
|
-
export { IERC4626__factory } from "./factories/IERC4626__factory";
|
|
169
|
-
export { IInterestRateModel__factory } from "./factories/IInterestRateModel__factory";
|
|
170
|
-
export { ILidoV1Adapter__factory } from "./factories/ILidoV1Adapter__factory";
|
|
171
|
-
export { IOffchainOracle__factory } from "./factories/IOffchainOracle__factory";
|
|
172
|
-
export { IPermit2__factory } from "./factories/IPermit2__factory";
|
|
173
|
-
export type { IPoolService } from "./IPoolService.sol/IPoolService";
|
|
174
|
-
export { IPoolService__factory } from "./factories/IPoolService.sol/IPoolService__factory";
|
|
175
|
-
export type { IPoolServiceEvents } from "./IPoolService.sol/IPoolServiceEvents";
|
|
176
|
-
export { IPoolServiceEvents__factory } from "./factories/IPoolService.sol/IPoolServiceEvents__factory";
|
|
177
|
-
export type { IPoolV3 } from "./IPoolV3.sol/IPoolV3";
|
|
178
|
-
export { IPoolV3__factory } from "./factories/IPoolV3.sol/IPoolV3__factory";
|
|
179
|
-
export type { IPoolV3Events } from "./IPoolV3.sol/IPoolV3Events";
|
|
180
|
-
export { IPoolV3Events__factory } from "./factories/IPoolV3.sol/IPoolV3Events__factory";
|
|
181
|
-
export { IPriceOracleBase__factory } from "./factories/IPriceOracleBase__factory";
|
|
182
|
-
export { IRouter__factory } from "./factories/IRouter__factory";
|
|
183
|
-
export type { IstETH } from "./IstETH.sol/IstETH";
|
|
184
|
-
export { IstETH__factory } from "./factories/IstETH.sol/IstETH__factory";
|
|
185
|
-
export type { IstETHGetters } from "./IstETH.sol/IstETHGetters";
|
|
186
|
-
export { IstETHGetters__factory } from "./factories/IstETH.sol/IstETHGetters__factory";
|
|
187
|
-
export type { IUniswapV2Adapter } from "./IUniswapV2Adapter.sol/IUniswapV2Adapter";
|
|
188
|
-
export { IUniswapV2Adapter__factory } from "./factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory";
|
|
189
|
-
export type { IUniswapV2AdapterEvents } from "./IUniswapV2Adapter.sol/IUniswapV2AdapterEvents";
|
|
190
|
-
export { IUniswapV2AdapterEvents__factory } from "./factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory";
|
|
191
|
-
export type { IUniswapV2AdapterExceptions } from "./IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions";
|
|
192
|
-
export { IUniswapV2AdapterExceptions__factory } from "./factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory";
|
|
193
|
-
export type { ISwapRouter } from "./IUniswapV3.sol/ISwapRouter";
|
|
194
|
-
export { ISwapRouter__factory } from "./factories/IUniswapV3.sol/ISwapRouter__factory";
|
|
195
|
-
export type { IUniswapV3Adapter } from "./IUniswapV3Adapter.sol/IUniswapV3Adapter";
|
|
196
|
-
export { IUniswapV3Adapter__factory } from "./factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory";
|
|
197
|
-
export type { IUniswapV3AdapterEvents } from "./IUniswapV3Adapter.sol/IUniswapV3AdapterEvents";
|
|
198
|
-
export { IUniswapV3AdapterEvents__factory } from "./factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory";
|
|
199
|
-
export type { IUniswapV3AdapterExceptions } from "./IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions";
|
|
200
|
-
export { IUniswapV3AdapterExceptions__factory } from "./factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory";
|
|
201
|
-
export { IVersion__factory } from "./factories/IVersion__factory";
|
|
202
|
-
export { IWERC20Zapper__factory } from "./factories/IWERC20Zapper__factory";
|
|
203
|
-
export { IWETH__factory } from "./factories/IWETH__factory";
|
|
204
|
-
export { IWETHGateway__factory } from "./factories/IWETHGateway__factory";
|
|
205
|
-
export { IWETHZapper__factory } from "./factories/IWETHZapper__factory";
|
|
206
|
-
export type { IWithdrawalManagerV3 } from "./IWithdrawalManagerV3.sol/IWithdrawalManagerV3";
|
|
207
|
-
export { IWithdrawalManagerV3__factory } from "./factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory";
|
|
208
|
-
export type { IWithdrawalManagerV3Events } from "./IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events";
|
|
209
|
-
export { IWithdrawalManagerV3Events__factory } from "./factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory";
|
|
210
|
-
export type { IwstETH } from "./IwstETH.sol/IwstETH";
|
|
211
|
-
export { IwstETH__factory } from "./factories/IwstETH.sol/IwstETH__factory";
|
|
212
|
-
export type { IwstETHGetters } from "./IwstETH.sol/IwstETHGetters";
|
|
213
|
-
export { IwstETHGetters__factory } from "./factories/IwstETH.sol/IwstETHGetters__factory";
|
|
214
|
-
export type { IwstETHGateWay } from "./IwstETHGateway.sol/IwstETHGateWay";
|
|
215
|
-
export { IwstETHGateWay__factory } from "./factories/IwstETHGateway.sol/IwstETHGateWay__factory";
|
|
216
|
-
export { IwstETHV1Adapter__factory } from "./factories/IwstETHV1Adapter__factory";
|
|
217
|
-
export { IYearnV2Adapter__factory } from "./factories/IYearnV2Adapter__factory";
|
|
218
|
-
export { IYVault__factory } from "./factories/IYVault__factory";
|
|
219
|
-
export { IZapper__factory } from "./factories/IZapper__factory";
|
|
220
|
-
export { Ownable__factory } from "./factories/Ownable__factory";
|
|
221
|
-
export { SafeERC20__factory } from "./factories/SafeERC20__factory";
|
|
1
|
+
export * from "./CompositePriceFeed";
|
|
2
|
+
export * from "./IAaveV2_LendingPoolAdapter";
|
|
3
|
+
export * from "./IAaveV2_WrappedATokenAdapter";
|
|
4
|
+
export * from "./IAddressProviderV3";
|
|
5
|
+
export * from "./IAirdropDistributor";
|
|
6
|
+
export * from "./IBalancerV2VaultAdapter";
|
|
7
|
+
export * from "./IBaseRewardPool";
|
|
8
|
+
export * from "./ICompoundV2_CTokenAdapter";
|
|
9
|
+
export * from "./IConvexToken";
|
|
10
|
+
export * from "./IConvexV1BaseRewardPoolAdapter";
|
|
11
|
+
export * from "./IConvexV1BoosterAdapter";
|
|
12
|
+
export * from "./ICreditConfiguratorV3";
|
|
13
|
+
export * from "./ICreditFacadeV2Extended";
|
|
14
|
+
export * from "./ICreditFacadeV3";
|
|
15
|
+
export * from "./ICreditFacadeV3Multicall";
|
|
16
|
+
export * from "./ICreditManagerV2";
|
|
17
|
+
export * from "./ICreditManagerV3";
|
|
18
|
+
export * from "./ICurvePool";
|
|
19
|
+
export * from "./ICurveV1_2AssetsAdapter";
|
|
20
|
+
export * from "./ICurveV1_3AssetsAdapter";
|
|
21
|
+
export * from "./ICurveV1_4AssetsAdapter";
|
|
22
|
+
export * from "./IDataCompressorV2_1";
|
|
23
|
+
export * from "./IDataCompressorV3";
|
|
24
|
+
export * from "./IDegenDistributor";
|
|
25
|
+
export * from "./IERC20";
|
|
26
|
+
export * from "./IERC20Permit";
|
|
27
|
+
export * from "./IERC20ZapperDeposits";
|
|
28
|
+
export * from "./IERC4626Adapter";
|
|
29
|
+
export * from "./IETHZapperDeposits";
|
|
30
|
+
export * from "./IFarmingPool";
|
|
31
|
+
export * from "./IGearStakingV3";
|
|
32
|
+
export * from "./IInterestRateModel";
|
|
33
|
+
export * from "./ILidoV1Adapter";
|
|
34
|
+
export * from "./IMulticall3";
|
|
35
|
+
export * from "./IOffchainOracle";
|
|
36
|
+
export * from "./IPartialLiquidationBotV3";
|
|
37
|
+
export * from "./IPoolV3";
|
|
38
|
+
export * from "./IPriceFeed";
|
|
39
|
+
export * from "./IPriceOracleBase";
|
|
40
|
+
export * from "./IPriceOracleV3";
|
|
41
|
+
export * from "./IRouterV3";
|
|
42
|
+
export * from "./IstETH";
|
|
43
|
+
export * from "./IUniswapV2Adapter";
|
|
44
|
+
export * from "./IUniswapV3Adapter";
|
|
45
|
+
export * from "./IUpdatablePriceFeed";
|
|
46
|
+
export * from "./IwstETH";
|
|
47
|
+
export * from "./IwstETHV1Adapter";
|
|
48
|
+
export * from "./IYearnV2Adapter";
|
|
49
|
+
export * from "./IZapper";
|
|
50
|
+
export * from "./RedstonePriceFeed";
|
|
51
|
+
export * from "./SignUpRepository";
|
package/lib/types/index.js
CHANGED
|
@@ -10,191 +10,58 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
10
10
|
if (k2 === undefined) k2 = k;
|
|
11
11
|
o[k2] = m[k];
|
|
12
12
|
}));
|
|
13
|
-
var
|
|
14
|
-
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
24
15
|
};
|
|
25
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
var ICreditFacadeV2Extended__factory_1 = require("./factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory");
|
|
78
|
-
Object.defineProperty(exports, "ICreditFacadeV2Extended__factory", { enumerable: true, get: function () { return ICreditFacadeV2Extended__factory_1.ICreditFacadeV2Extended__factory; } });
|
|
79
|
-
var ICreditFacadeV2V2__factory_1 = require("./factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory");
|
|
80
|
-
Object.defineProperty(exports, "ICreditFacadeV2V2__factory", { enumerable: true, get: function () { return ICreditFacadeV2V2__factory_1.ICreditFacadeV2V2__factory; } });
|
|
81
|
-
var ICreditFacadeV3__factory_1 = require("./factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory");
|
|
82
|
-
Object.defineProperty(exports, "ICreditFacadeV3__factory", { enumerable: true, get: function () { return ICreditFacadeV3__factory_1.ICreditFacadeV3__factory; } });
|
|
83
|
-
var ICreditFacadeV3Events__factory_1 = require("./factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory");
|
|
84
|
-
Object.defineProperty(exports, "ICreditFacadeV3Events__factory", { enumerable: true, get: function () { return ICreditFacadeV3Events__factory_1.ICreditFacadeV3Events__factory; } });
|
|
85
|
-
var ICreditFacadeV3Multicall__factory_1 = require("./factories/ICreditFacadeV3Multicall__factory");
|
|
86
|
-
Object.defineProperty(exports, "ICreditFacadeV3Multicall__factory", { enumerable: true, get: function () { return ICreditFacadeV3Multicall__factory_1.ICreditFacadeV3Multicall__factory; } });
|
|
87
|
-
var ICreditManagerV2__factory_1 = require("./factories/ICreditManagerV2.sol/ICreditManagerV2__factory");
|
|
88
|
-
Object.defineProperty(exports, "ICreditManagerV2__factory", { enumerable: true, get: function () { return ICreditManagerV2__factory_1.ICreditManagerV2__factory; } });
|
|
89
|
-
var ICreditManagerV2Events__factory_1 = require("./factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory");
|
|
90
|
-
Object.defineProperty(exports, "ICreditManagerV2Events__factory", { enumerable: true, get: function () { return ICreditManagerV2Events__factory_1.ICreditManagerV2Events__factory; } });
|
|
91
|
-
var ICreditManagerV2Exceptions__factory_1 = require("./factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory");
|
|
92
|
-
Object.defineProperty(exports, "ICreditManagerV2Exceptions__factory", { enumerable: true, get: function () { return ICreditManagerV2Exceptions__factory_1.ICreditManagerV2Exceptions__factory; } });
|
|
93
|
-
var ICreditManagerV3__factory_1 = require("./factories/ICreditManagerV3.sol/ICreditManagerV3__factory");
|
|
94
|
-
Object.defineProperty(exports, "ICreditManagerV3__factory", { enumerable: true, get: function () { return ICreditManagerV3__factory_1.ICreditManagerV3__factory; } });
|
|
95
|
-
var ICreditManagerV3Events__factory_1 = require("./factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory");
|
|
96
|
-
Object.defineProperty(exports, "ICreditManagerV3Events__factory", { enumerable: true, get: function () { return ICreditManagerV3Events__factory_1.ICreditManagerV3Events__factory; } });
|
|
97
|
-
var ICurvePool2Assets__factory_1 = require("./factories/ICurvePool_2.sol/ICurvePool2Assets__factory");
|
|
98
|
-
Object.defineProperty(exports, "ICurvePool2Assets__factory", { enumerable: true, get: function () { return ICurvePool2Assets__factory_1.ICurvePool2Assets__factory; } });
|
|
99
|
-
var ICurvePool3Assets__factory_1 = require("./factories/ICurvePool_3.sol/ICurvePool3Assets__factory");
|
|
100
|
-
Object.defineProperty(exports, "ICurvePool3Assets__factory", { enumerable: true, get: function () { return ICurvePool3Assets__factory_1.ICurvePool3Assets__factory; } });
|
|
101
|
-
var ICurvePool4Assets__factory_1 = require("./factories/ICurvePool_4.sol/ICurvePool4Assets__factory");
|
|
102
|
-
Object.defineProperty(exports, "ICurvePool4Assets__factory", { enumerable: true, get: function () { return ICurvePool4Assets__factory_1.ICurvePool4Assets__factory; } });
|
|
103
|
-
var ICurvePool__factory_1 = require("./factories/ICurvePool__factory");
|
|
104
|
-
Object.defineProperty(exports, "ICurvePool__factory", { enumerable: true, get: function () { return ICurvePool__factory_1.ICurvePool__factory; } });
|
|
105
|
-
var ICurveV1_2AssetsAdapter__factory_1 = require("./factories/ICurveV1_2AssetsAdapter__factory");
|
|
106
|
-
Object.defineProperty(exports, "ICurveV1_2AssetsAdapter__factory", { enumerable: true, get: function () { return ICurveV1_2AssetsAdapter__factory_1.ICurveV1_2AssetsAdapter__factory; } });
|
|
107
|
-
var ICurveV1_3AssetsAdapter__factory_1 = require("./factories/ICurveV1_3AssetsAdapter__factory");
|
|
108
|
-
Object.defineProperty(exports, "ICurveV1_3AssetsAdapter__factory", { enumerable: true, get: function () { return ICurveV1_3AssetsAdapter__factory_1.ICurveV1_3AssetsAdapter__factory; } });
|
|
109
|
-
var ICurveV1_4AssetsAdapter__factory_1 = require("./factories/ICurveV1_4AssetsAdapter__factory");
|
|
110
|
-
Object.defineProperty(exports, "ICurveV1_4AssetsAdapter__factory", { enumerable: true, get: function () { return ICurveV1_4AssetsAdapter__factory_1.ICurveV1_4AssetsAdapter__factory; } });
|
|
111
|
-
var ICurveV1Adapter__factory_1 = require("./factories/ICurveV1Adapter__factory");
|
|
112
|
-
Object.defineProperty(exports, "ICurveV1Adapter__factory", { enumerable: true, get: function () { return ICurveV1Adapter__factory_1.ICurveV1Adapter__factory; } });
|
|
113
|
-
var IDaiLikePermit__factory_1 = require("./factories/IDaiLikePermit__factory");
|
|
114
|
-
Object.defineProperty(exports, "IDaiLikePermit__factory", { enumerable: true, get: function () { return IDaiLikePermit__factory_1.IDaiLikePermit__factory; } });
|
|
115
|
-
var IDataCompressorV2_10__factory_1 = require("./factories/IDataCompressorV2_10__factory");
|
|
116
|
-
Object.defineProperty(exports, "IDataCompressorV2_10__factory", { enumerable: true, get: function () { return IDataCompressorV2_10__factory_1.IDataCompressorV2_10__factory; } });
|
|
117
|
-
var IDataCompressorV3_00__factory_1 = require("./factories/IDataCompressorV3_00__factory");
|
|
118
|
-
Object.defineProperty(exports, "IDataCompressorV3_00__factory", { enumerable: true, get: function () { return IDataCompressorV3_00__factory_1.IDataCompressorV3_00__factory; } });
|
|
119
|
-
var IDegenDistributor__factory_1 = require("./factories/IDegenDistributor.sol/IDegenDistributor__factory");
|
|
120
|
-
Object.defineProperty(exports, "IDegenDistributor__factory", { enumerable: true, get: function () { return IDegenDistributor__factory_1.IDegenDistributor__factory; } });
|
|
121
|
-
var IDegenDistributorEvents__factory_1 = require("./factories/IDegenDistributor.sol/IDegenDistributorEvents__factory");
|
|
122
|
-
Object.defineProperty(exports, "IDegenDistributorEvents__factory", { enumerable: true, get: function () { return IDegenDistributorEvents__factory_1.IDegenDistributorEvents__factory; } });
|
|
123
|
-
var IERC20__factory_1 = require("./factories/IERC20__factory");
|
|
124
|
-
Object.defineProperty(exports, "IERC20__factory", { enumerable: true, get: function () { return IERC20__factory_1.IERC20__factory; } });
|
|
125
|
-
var IERC20Metadata__factory_1 = require("./factories/IERC20Metadata__factory");
|
|
126
|
-
Object.defineProperty(exports, "IERC20Metadata__factory", { enumerable: true, get: function () { return IERC20Metadata__factory_1.IERC20Metadata__factory; } });
|
|
127
|
-
var IERC20Permit__factory_1 = require("./factories/IERC20Permit__factory");
|
|
128
|
-
Object.defineProperty(exports, "IERC20Permit__factory", { enumerable: true, get: function () { return IERC20Permit__factory_1.IERC20Permit__factory; } });
|
|
129
|
-
var IERC4626__factory_1 = require("./factories/IERC4626__factory");
|
|
130
|
-
Object.defineProperty(exports, "IERC4626__factory", { enumerable: true, get: function () { return IERC4626__factory_1.IERC4626__factory; } });
|
|
131
|
-
var IInterestRateModel__factory_1 = require("./factories/IInterestRateModel__factory");
|
|
132
|
-
Object.defineProperty(exports, "IInterestRateModel__factory", { enumerable: true, get: function () { return IInterestRateModel__factory_1.IInterestRateModel__factory; } });
|
|
133
|
-
var ILidoV1Adapter__factory_1 = require("./factories/ILidoV1Adapter__factory");
|
|
134
|
-
Object.defineProperty(exports, "ILidoV1Adapter__factory", { enumerable: true, get: function () { return ILidoV1Adapter__factory_1.ILidoV1Adapter__factory; } });
|
|
135
|
-
var IOffchainOracle__factory_1 = require("./factories/IOffchainOracle__factory");
|
|
136
|
-
Object.defineProperty(exports, "IOffchainOracle__factory", { enumerable: true, get: function () { return IOffchainOracle__factory_1.IOffchainOracle__factory; } });
|
|
137
|
-
var IPermit2__factory_1 = require("./factories/IPermit2__factory");
|
|
138
|
-
Object.defineProperty(exports, "IPermit2__factory", { enumerable: true, get: function () { return IPermit2__factory_1.IPermit2__factory; } });
|
|
139
|
-
var IPoolService__factory_1 = require("./factories/IPoolService.sol/IPoolService__factory");
|
|
140
|
-
Object.defineProperty(exports, "IPoolService__factory", { enumerable: true, get: function () { return IPoolService__factory_1.IPoolService__factory; } });
|
|
141
|
-
var IPoolServiceEvents__factory_1 = require("./factories/IPoolService.sol/IPoolServiceEvents__factory");
|
|
142
|
-
Object.defineProperty(exports, "IPoolServiceEvents__factory", { enumerable: true, get: function () { return IPoolServiceEvents__factory_1.IPoolServiceEvents__factory; } });
|
|
143
|
-
var IPoolV3__factory_1 = require("./factories/IPoolV3.sol/IPoolV3__factory");
|
|
144
|
-
Object.defineProperty(exports, "IPoolV3__factory", { enumerable: true, get: function () { return IPoolV3__factory_1.IPoolV3__factory; } });
|
|
145
|
-
var IPoolV3Events__factory_1 = require("./factories/IPoolV3.sol/IPoolV3Events__factory");
|
|
146
|
-
Object.defineProperty(exports, "IPoolV3Events__factory", { enumerable: true, get: function () { return IPoolV3Events__factory_1.IPoolV3Events__factory; } });
|
|
147
|
-
var IPriceOracleBase__factory_1 = require("./factories/IPriceOracleBase__factory");
|
|
148
|
-
Object.defineProperty(exports, "IPriceOracleBase__factory", { enumerable: true, get: function () { return IPriceOracleBase__factory_1.IPriceOracleBase__factory; } });
|
|
149
|
-
var IRouter__factory_1 = require("./factories/IRouter__factory");
|
|
150
|
-
Object.defineProperty(exports, "IRouter__factory", { enumerable: true, get: function () { return IRouter__factory_1.IRouter__factory; } });
|
|
151
|
-
var IstETH__factory_1 = require("./factories/IstETH.sol/IstETH__factory");
|
|
152
|
-
Object.defineProperty(exports, "IstETH__factory", { enumerable: true, get: function () { return IstETH__factory_1.IstETH__factory; } });
|
|
153
|
-
var IstETHGetters__factory_1 = require("./factories/IstETH.sol/IstETHGetters__factory");
|
|
154
|
-
Object.defineProperty(exports, "IstETHGetters__factory", { enumerable: true, get: function () { return IstETHGetters__factory_1.IstETHGetters__factory; } });
|
|
155
|
-
var IUniswapV2Adapter__factory_1 = require("./factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory");
|
|
156
|
-
Object.defineProperty(exports, "IUniswapV2Adapter__factory", { enumerable: true, get: function () { return IUniswapV2Adapter__factory_1.IUniswapV2Adapter__factory; } });
|
|
157
|
-
var IUniswapV2AdapterEvents__factory_1 = require("./factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory");
|
|
158
|
-
Object.defineProperty(exports, "IUniswapV2AdapterEvents__factory", { enumerable: true, get: function () { return IUniswapV2AdapterEvents__factory_1.IUniswapV2AdapterEvents__factory; } });
|
|
159
|
-
var IUniswapV2AdapterExceptions__factory_1 = require("./factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory");
|
|
160
|
-
Object.defineProperty(exports, "IUniswapV2AdapterExceptions__factory", { enumerable: true, get: function () { return IUniswapV2AdapterExceptions__factory_1.IUniswapV2AdapterExceptions__factory; } });
|
|
161
|
-
var ISwapRouter__factory_1 = require("./factories/IUniswapV3.sol/ISwapRouter__factory");
|
|
162
|
-
Object.defineProperty(exports, "ISwapRouter__factory", { enumerable: true, get: function () { return ISwapRouter__factory_1.ISwapRouter__factory; } });
|
|
163
|
-
var IUniswapV3Adapter__factory_1 = require("./factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory");
|
|
164
|
-
Object.defineProperty(exports, "IUniswapV3Adapter__factory", { enumerable: true, get: function () { return IUniswapV3Adapter__factory_1.IUniswapV3Adapter__factory; } });
|
|
165
|
-
var IUniswapV3AdapterEvents__factory_1 = require("./factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory");
|
|
166
|
-
Object.defineProperty(exports, "IUniswapV3AdapterEvents__factory", { enumerable: true, get: function () { return IUniswapV3AdapterEvents__factory_1.IUniswapV3AdapterEvents__factory; } });
|
|
167
|
-
var IUniswapV3AdapterExceptions__factory_1 = require("./factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory");
|
|
168
|
-
Object.defineProperty(exports, "IUniswapV3AdapterExceptions__factory", { enumerable: true, get: function () { return IUniswapV3AdapterExceptions__factory_1.IUniswapV3AdapterExceptions__factory; } });
|
|
169
|
-
var IVersion__factory_1 = require("./factories/IVersion__factory");
|
|
170
|
-
Object.defineProperty(exports, "IVersion__factory", { enumerable: true, get: function () { return IVersion__factory_1.IVersion__factory; } });
|
|
171
|
-
var IWERC20Zapper__factory_1 = require("./factories/IWERC20Zapper__factory");
|
|
172
|
-
Object.defineProperty(exports, "IWERC20Zapper__factory", { enumerable: true, get: function () { return IWERC20Zapper__factory_1.IWERC20Zapper__factory; } });
|
|
173
|
-
var IWETH__factory_1 = require("./factories/IWETH__factory");
|
|
174
|
-
Object.defineProperty(exports, "IWETH__factory", { enumerable: true, get: function () { return IWETH__factory_1.IWETH__factory; } });
|
|
175
|
-
var IWETHGateway__factory_1 = require("./factories/IWETHGateway__factory");
|
|
176
|
-
Object.defineProperty(exports, "IWETHGateway__factory", { enumerable: true, get: function () { return IWETHGateway__factory_1.IWETHGateway__factory; } });
|
|
177
|
-
var IWETHZapper__factory_1 = require("./factories/IWETHZapper__factory");
|
|
178
|
-
Object.defineProperty(exports, "IWETHZapper__factory", { enumerable: true, get: function () { return IWETHZapper__factory_1.IWETHZapper__factory; } });
|
|
179
|
-
var IWithdrawalManagerV3__factory_1 = require("./factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory");
|
|
180
|
-
Object.defineProperty(exports, "IWithdrawalManagerV3__factory", { enumerable: true, get: function () { return IWithdrawalManagerV3__factory_1.IWithdrawalManagerV3__factory; } });
|
|
181
|
-
var IWithdrawalManagerV3Events__factory_1 = require("./factories/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory");
|
|
182
|
-
Object.defineProperty(exports, "IWithdrawalManagerV3Events__factory", { enumerable: true, get: function () { return IWithdrawalManagerV3Events__factory_1.IWithdrawalManagerV3Events__factory; } });
|
|
183
|
-
var IwstETH__factory_1 = require("./factories/IwstETH.sol/IwstETH__factory");
|
|
184
|
-
Object.defineProperty(exports, "IwstETH__factory", { enumerable: true, get: function () { return IwstETH__factory_1.IwstETH__factory; } });
|
|
185
|
-
var IwstETHGetters__factory_1 = require("./factories/IwstETH.sol/IwstETHGetters__factory");
|
|
186
|
-
Object.defineProperty(exports, "IwstETHGetters__factory", { enumerable: true, get: function () { return IwstETHGetters__factory_1.IwstETHGetters__factory; } });
|
|
187
|
-
var IwstETHGateWay__factory_1 = require("./factories/IwstETHGateway.sol/IwstETHGateWay__factory");
|
|
188
|
-
Object.defineProperty(exports, "IwstETHGateWay__factory", { enumerable: true, get: function () { return IwstETHGateWay__factory_1.IwstETHGateWay__factory; } });
|
|
189
|
-
var IwstETHV1Adapter__factory_1 = require("./factories/IwstETHV1Adapter__factory");
|
|
190
|
-
Object.defineProperty(exports, "IwstETHV1Adapter__factory", { enumerable: true, get: function () { return IwstETHV1Adapter__factory_1.IwstETHV1Adapter__factory; } });
|
|
191
|
-
var IYearnV2Adapter__factory_1 = require("./factories/IYearnV2Adapter__factory");
|
|
192
|
-
Object.defineProperty(exports, "IYearnV2Adapter__factory", { enumerable: true, get: function () { return IYearnV2Adapter__factory_1.IYearnV2Adapter__factory; } });
|
|
193
|
-
var IYVault__factory_1 = require("./factories/IYVault__factory");
|
|
194
|
-
Object.defineProperty(exports, "IYVault__factory", { enumerable: true, get: function () { return IYVault__factory_1.IYVault__factory; } });
|
|
195
|
-
var IZapper__factory_1 = require("./factories/IZapper__factory");
|
|
196
|
-
Object.defineProperty(exports, "IZapper__factory", { enumerable: true, get: function () { return IZapper__factory_1.IZapper__factory; } });
|
|
197
|
-
var Ownable__factory_1 = require("./factories/Ownable__factory");
|
|
198
|
-
Object.defineProperty(exports, "Ownable__factory", { enumerable: true, get: function () { return Ownable__factory_1.Ownable__factory; } });
|
|
199
|
-
var SafeERC20__factory_1 = require("./factories/SafeERC20__factory");
|
|
200
|
-
Object.defineProperty(exports, "SafeERC20__factory", { enumerable: true, get: function () { return SafeERC20__factory_1.SafeERC20__factory; } });
|
|
17
|
+
__exportStar(require("./CompositePriceFeed"), exports);
|
|
18
|
+
__exportStar(require("./IAaveV2_LendingPoolAdapter"), exports);
|
|
19
|
+
__exportStar(require("./IAaveV2_WrappedATokenAdapter"), exports);
|
|
20
|
+
__exportStar(require("./IAddressProviderV3"), exports);
|
|
21
|
+
__exportStar(require("./IAirdropDistributor"), exports);
|
|
22
|
+
__exportStar(require("./IBalancerV2VaultAdapter"), exports);
|
|
23
|
+
__exportStar(require("./IBaseRewardPool"), exports);
|
|
24
|
+
__exportStar(require("./ICompoundV2_CTokenAdapter"), exports);
|
|
25
|
+
__exportStar(require("./IConvexToken"), exports);
|
|
26
|
+
__exportStar(require("./IConvexV1BaseRewardPoolAdapter"), exports);
|
|
27
|
+
__exportStar(require("./IConvexV1BoosterAdapter"), exports);
|
|
28
|
+
__exportStar(require("./ICreditConfiguratorV3"), exports);
|
|
29
|
+
__exportStar(require("./ICreditFacadeV2Extended"), exports);
|
|
30
|
+
__exportStar(require("./ICreditFacadeV3"), exports);
|
|
31
|
+
__exportStar(require("./ICreditFacadeV3Multicall"), exports);
|
|
32
|
+
__exportStar(require("./ICreditManagerV2"), exports);
|
|
33
|
+
__exportStar(require("./ICreditManagerV3"), exports);
|
|
34
|
+
__exportStar(require("./ICurvePool"), exports);
|
|
35
|
+
__exportStar(require("./ICurveV1_2AssetsAdapter"), exports);
|
|
36
|
+
__exportStar(require("./ICurveV1_3AssetsAdapter"), exports);
|
|
37
|
+
__exportStar(require("./ICurveV1_4AssetsAdapter"), exports);
|
|
38
|
+
__exportStar(require("./IDataCompressorV2_1"), exports);
|
|
39
|
+
__exportStar(require("./IDataCompressorV3"), exports);
|
|
40
|
+
__exportStar(require("./IDegenDistributor"), exports);
|
|
41
|
+
__exportStar(require("./IERC20"), exports);
|
|
42
|
+
__exportStar(require("./IERC20Permit"), exports);
|
|
43
|
+
__exportStar(require("./IERC20ZapperDeposits"), exports);
|
|
44
|
+
__exportStar(require("./IERC4626Adapter"), exports);
|
|
45
|
+
__exportStar(require("./IETHZapperDeposits"), exports);
|
|
46
|
+
__exportStar(require("./IFarmingPool"), exports);
|
|
47
|
+
__exportStar(require("./IGearStakingV3"), exports);
|
|
48
|
+
__exportStar(require("./IInterestRateModel"), exports);
|
|
49
|
+
__exportStar(require("./ILidoV1Adapter"), exports);
|
|
50
|
+
__exportStar(require("./IMulticall3"), exports);
|
|
51
|
+
__exportStar(require("./IOffchainOracle"), exports);
|
|
52
|
+
__exportStar(require("./IPartialLiquidationBotV3"), exports);
|
|
53
|
+
__exportStar(require("./IPoolV3"), exports);
|
|
54
|
+
__exportStar(require("./IPriceFeed"), exports);
|
|
55
|
+
__exportStar(require("./IPriceOracleBase"), exports);
|
|
56
|
+
__exportStar(require("./IPriceOracleV3"), exports);
|
|
57
|
+
__exportStar(require("./IRouterV3"), exports);
|
|
58
|
+
__exportStar(require("./IstETH"), exports);
|
|
59
|
+
__exportStar(require("./IUniswapV2Adapter"), exports);
|
|
60
|
+
__exportStar(require("./IUniswapV3Adapter"), exports);
|
|
61
|
+
__exportStar(require("./IUpdatablePriceFeed"), exports);
|
|
62
|
+
__exportStar(require("./IwstETH"), exports);
|
|
63
|
+
__exportStar(require("./IwstETHV1Adapter"), exports);
|
|
64
|
+
__exportStar(require("./IYearnV2Adapter"), exports);
|
|
65
|
+
__exportStar(require("./IZapper"), exports);
|
|
66
|
+
__exportStar(require("./RedstonePriceFeed"), exports);
|
|
67
|
+
__exportStar(require("./SignUpRepository"), exports);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Abi, Address, PublicClient } from "viem";
|
|
2
|
+
export interface MinimalTxInfo {
|
|
3
|
+
hash: string;
|
|
4
|
+
}
|
|
5
|
+
interface ViemMcall {
|
|
6
|
+
address: Address;
|
|
7
|
+
abi: Abi;
|
|
8
|
+
functionName: string;
|
|
9
|
+
args: Array<any>;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Like multicall from sdk, but uses tryAggregate instead of aggregate
|
|
13
|
+
* @param calls
|
|
14
|
+
* @param p
|
|
15
|
+
* @param overrides
|
|
16
|
+
* @returns
|
|
17
|
+
*/
|
|
18
|
+
export declare function staticMulticallViem<V = any, T extends ViemMcall = ViemMcall>(calls: T[], publicClient: PublicClient): Promise<Array<{
|
|
19
|
+
error?: Error;
|
|
20
|
+
value?: V;
|
|
21
|
+
}>>;
|
|
22
|
+
export type ViemFailableMulticallRes<T> = ({
|
|
23
|
+
error?: undefined;
|
|
24
|
+
result: T;
|
|
25
|
+
status: "success";
|
|
26
|
+
} | {
|
|
27
|
+
error: Error;
|
|
28
|
+
result?: undefined;
|
|
29
|
+
status: "failure";
|
|
30
|
+
})[];
|
|
31
|
+
export {};
|