@gearbox-protocol/sdk 3.0.0-next.6 → 3.0.0-next.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/contracts/IAirdropDistributor.sol +55 -0
- package/contracts/IDegenDistributor.sol +28 -0
- package/contracts/IOffchainOracle.sol +17 -0
- package/contracts/IWETHGateway.sol +33 -0
- package/contracts/IwstETHGateway.sol +24 -0
- package/contracts/index.sol +26 -3
- package/lib/apy/curveAPY.js +2 -1
- package/lib/apy/index.d.ts +2 -2
- package/lib/apy/yearnAPY.js +1 -1
- package/lib/config.d.ts +0 -1
- package/lib/config.js +1 -2
- package/lib/core/assets.d.ts +4 -4
- package/lib/core/assets.js +28 -17
- package/lib/core/creditAccount.d.ts +32 -8
- package/lib/core/creditAccount.js +101 -44
- package/lib/core/creditAccount.spec.js +693 -10
- package/lib/core/creditManager.d.ts +23 -9
- package/lib/core/creditManager.js +97 -31
- package/lib/core/events.js +14 -14
- package/lib/core/gauge.d.ts +26 -0
- package/lib/core/gauge.js +63 -0
- package/lib/core/gaugeMath.d.ts +40 -0
- package/lib/core/gaugeMath.js +108 -0
- package/lib/core/gaugeMath.spec.d.ts +1 -0
- package/lib/core/gaugeMath.spec.js +388 -0
- package/lib/core/{pool/data.d.ts → pool.d.ts} +18 -10
- package/lib/core/{pool/data.js → pool.js} +69 -24
- package/lib/core/rewardClaimer.d.ts +2 -2
- package/lib/core/strategy.js +2 -2
- package/lib/core/trade.d.ts +14 -32
- package/lib/core/trade.js +33 -82
- package/lib/core/transactions.d.ts +65 -3
- package/lib/core/transactions.js +162 -105
- package/lib/index.d.ts +3 -0
- package/lib/index.js +3 -0
- package/lib/parsers/abstractParser.js +1 -2
- package/lib/parsers/convexBaseRewardPoolAdapterParser.js +10 -8
- package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.js +9 -6
- package/lib/parsers/convexBoosterAdapterParser.js +6 -6
- package/lib/parsers/convexBoosterAdapterParser.spec.js +4 -4
- package/lib/parsers/creditFacadeParser.d.ts +2 -1
- package/lib/parsers/creditFacadeParser.js +25 -5
- package/lib/parsers/creditFacadeParser.spec.js +2 -3
- package/lib/parsers/curveAdapterParser.js +10 -11
- package/lib/parsers/curveAdapterParser.spec.js +6 -2
- package/lib/parsers/lidoAdapterParser.js +3 -2
- package/lib/parsers/lidoAdapterParser.spec.js +2 -2
- package/lib/parsers/txParser.d.ts +4 -4
- package/lib/parsers/txParser.js +9 -3
- package/lib/parsers/uniV2AdapterParser.js +5 -4
- package/lib/parsers/uniV2AdapterParser.spec.js +3 -2
- package/lib/parsers/uniV3AdapterParser.js +9 -7
- package/lib/parsers/uniV3AdapterParser.spec.js +3 -2
- package/lib/parsers/wstETHAdapterParser.js +6 -4
- package/lib/parsers/wstETHAdapterParser.spec.js +4 -4
- package/lib/parsers/yearnAdapterParser.spec.js +4 -4
- package/lib/parsers/yearnV2AdapterParser.js +13 -3
- package/lib/pathfinder/core.d.ts +11 -9
- package/lib/pathfinder/pathOptions.d.ts +2 -1
- package/lib/pathfinder/pathOptions.js +20 -1
- package/lib/pathfinder/pathOptions.spec.js +2 -2
- package/lib/pathfinder/pathfinder.d.ts +37 -10
- package/lib/pathfinder/pathfinder.js +46 -33
- package/lib/pathfinder/pathfinder.spec.js +7 -3
- package/lib/payload/creditAccount.d.ts +3 -4
- package/lib/payload/gauge.d.ts +12 -0
- package/lib/payload/pool.d.ts +6 -1
- package/lib/types/IAaveV2_LendingPoolAdapter.d.ts +171 -0
- package/lib/types/IAaveV2_WrappedATokenAdapter.d.ts +290 -0
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributor.d.ts +124 -0
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +73 -0
- package/lib/types/IAirdropDistributor.sol/index.d.ts +2 -0
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2Vault.d.ts +308 -0
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2VaultGetters.d.ts +112 -0
- package/lib/types/IBalancerV2Vault.sol/index.d.ts +2 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.d.ts +466 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.d.ts +43 -0
- package/lib/types/{ILidoV1Adapter.sol/ILidoV1AdapterEvents.d.ts → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.d.ts} +6 -18
- package/lib/types/IBalancerV2VaultAdapter.sol/index.d.ts +3 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.d.ts +216 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.d.ts +27 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/index.d.ts +2 -0
- package/lib/types/IContractsRegister.sol/IContractsRegister.d.ts +128 -0
- package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.d.ts +50 -0
- package/lib/types/IContractsRegister.sol/index.d.ts +2 -0
- package/lib/types/IConvexToken.d.ts +9 -1
- package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +46 -30
- package/lib/types/{IConvexV1BoosterAdapter.d.ts → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.d.ts} +40 -21
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.d.ts +43 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/index.d.ts +2 -0
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.d.ts +716 -0
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.d.ts +275 -0
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.js +2 -0
- package/lib/types/ICreditConfiguratorV3.sol/index.d.ts +2 -0
- package/lib/types/ICreditConfiguratorV3.sol/index.js +2 -0
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.d.ts +7 -11
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.d.ts +201 -94
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +31 -33
- package/lib/types/ICreditFacadeV3Multicall.d.ts +91 -60
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.d.ts +360 -98
- package/lib/types/ICurveV1Adapter.d.ts +41 -105
- package/lib/types/ICurveV1_2AssetsAdapter.d.ts +41 -105
- package/lib/types/ICurveV1_3AssetsAdapter.d.ts +41 -105
- package/lib/types/ICurveV1_4AssetsAdapter.d.ts +41 -105
- package/lib/types/IDataCompressorV2_10.d.ts +44 -36
- package/lib/types/IDataCompressorV3_00.d.ts +141 -37
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.d.ts +96 -0
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.js +2 -0
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +53 -0
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.js +2 -0
- package/lib/types/IDegenDistributor.sol/index.d.ts +2 -0
- package/lib/types/IDegenDistributor.sol/index.js +2 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.d.ts +339 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.js +2 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.d.ts +61 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.js +2 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Exceptions.d.ts +27 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Exceptions.js +2 -0
- package/lib/types/IDegenNFTV2.sol/index.d.ts +3 -0
- package/lib/types/IDegenNFTV2.sol/index.js +2 -0
- package/lib/types/IERC165.d.ts +42 -0
- package/lib/types/IERC165.js +2 -0
- package/lib/types/{draft-IERC20Permit.sol/IERC20Permit.d.ts → IERC20Permit.d.ts} +1 -1
- package/lib/types/IERC20Permit.js +2 -0
- package/lib/types/IERC20ZapperDeposits.d.ts +117 -0
- package/lib/types/IERC20ZapperDeposits.js +2 -0
- package/lib/types/IERC4626Adapter.d.ts +238 -0
- package/lib/types/IERC4626Adapter.js +2 -0
- package/lib/types/IERC721.d.ts +220 -0
- package/lib/types/IERC721.js +2 -0
- package/lib/types/IERC721Metadata.d.ts +244 -0
- package/lib/types/IERC721Metadata.js +2 -0
- package/lib/types/IETHZapperDeposits.d.ts +66 -0
- package/lib/types/IETHZapperDeposits.js +2 -0
- package/lib/types/IGasPricer.d.ts +44 -0
- package/lib/types/IGasPricer.js +2 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3.d.ts +366 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3.js +2 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3Events.d.ts +114 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3Events.js +2 -0
- package/lib/types/IGaugeV3.sol/index.d.ts +2 -0
- package/lib/types/IGaugeV3.sol/index.js +2 -0
- package/lib/types/IGearStakingV3.sol/IGearStakingV3.d.ts +408 -0
- package/lib/types/IGearStakingV3.sol/IGearStakingV3.js +2 -0
- package/lib/types/IGearStakingV3.sol/IGearStakingV3Events.d.ts +117 -0
- package/lib/types/IGearStakingV3.sol/IGearStakingV3Events.js +2 -0
- package/lib/types/IGearStakingV3.sol/index.d.ts +2 -0
- package/lib/types/IGearStakingV3.sol/index.js +2 -0
- package/lib/types/{ILidoV1Adapter.sol/ILidoV1Adapter.d.ts → ILidoV1Adapter.d.ts} +13 -48
- package/lib/types/ILidoV1Adapter.js +2 -0
- package/lib/types/ILinearInterestRateModelV3.d.ts +120 -0
- package/lib/types/ILinearInterestRateModelV3.js +2 -0
- package/lib/types/IOffchainOracle.d.ts +58 -0
- package/lib/types/IOffchainOracle.js +2 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.d.ts +473 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.js +2 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.d.ts +113 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.js +2 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/index.d.ts +2 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/index.js +2 -0
- package/lib/types/IPoolV3.sol/IPoolV3.d.ts +43 -11
- package/lib/types/IPoolV3.sol/index.d.ts +0 -1
- package/lib/types/IPriceFeed.sol/IPriceFeed.d.ts +109 -0
- package/lib/types/IPriceFeed.sol/IPriceFeed.js +2 -0
- package/lib/types/IPriceFeed.sol/IUpdatablePriceFeed.d.ts +133 -0
- package/lib/types/IPriceFeed.sol/IUpdatablePriceFeed.js +2 -0
- package/lib/types/IPriceFeed.sol/index.d.ts +2 -0
- package/lib/types/IPriceFeed.sol/index.js +2 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2.d.ts +166 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2.js +2 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.d.ts +43 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.js +2 -0
- package/lib/types/{ILidoV1Adapter.sol/ILidoV1AdapterExceptions.d.ts → IPriceOracle.sol/IPriceOracleV2Exceptions.d.ts} +3 -3
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Exceptions.js +2 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Ext.d.ts +182 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Ext.js +2 -0
- package/lib/types/IPriceOracle.sol/index.d.ts +4 -0
- package/lib/types/IPriceOracle.sol/index.js +2 -0
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.d.ts +272 -0
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.js +2 -0
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3Events.d.ts +79 -0
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3Events.js +2 -0
- package/lib/types/IPriceOracleV3.sol/index.d.ts +2 -0
- package/lib/types/IPriceOracleV3.sol/index.js +2 -0
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +10 -9
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +27 -21
- package/lib/types/IVotingContractV3.d.ts +74 -0
- package/lib/types/IVotingContractV3.js +2 -0
- package/lib/types/IWETHGateway.d.ts +90 -0
- package/lib/types/IWETHGateway.js +2 -0
- package/lib/types/IYearnV2Adapter.d.ts +22 -22
- package/lib/types/IZapper.d.ts +125 -0
- package/lib/types/IZapper.js +2 -0
- package/lib/types/IwstETHGateway.sol/IwstETHGateWay.d.ts +70 -0
- package/lib/types/IwstETHGateway.sol/IwstETHGateWay.js +2 -0
- package/lib/types/IwstETHGateway.sol/index.d.ts +1 -0
- package/lib/types/IwstETHGateway.sol/index.js +2 -0
- package/lib/types/IwstETHV1Adapter.d.ts +17 -17
- package/lib/types/factories/AddressProvider__factory.d.ts +1 -1
- package/lib/types/factories/AddressProvider__factory.js +1 -1
- package/lib/types/factories/Balances.sol/BalanceOps__factory.d.ts +1 -1
- package/lib/types/factories/Balances.sol/BalanceOps__factory.js +1 -1
- package/lib/types/factories/Claimable__factory.d.ts +1 -1
- package/lib/types/factories/Claimable__factory.js +1 -1
- package/lib/types/factories/Errors__factory.d.ts +1 -1
- package/lib/types/factories/Errors__factory.js +1 -1
- package/lib/types/factories/IAaveV2_LendingPoolAdapter__factory.d.ts +158 -0
- package/lib/types/factories/IAaveV2_LendingPoolAdapter__factory.js +215 -0
- package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.d.ts +252 -0
- package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.js +341 -0
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +63 -0
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.js +88 -0
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +119 -0
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributor__factory.js +161 -0
- package/lib/types/factories/IAirdropDistributor.sol/index.d.ts +2 -0
- package/lib/types/factories/IAirdropDistributor.sol/index.js +10 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.d.ts +78 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.js +111 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.d.ts +360 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.js +475 -0
- package/lib/types/factories/IBalancerV2Vault.sol/index.d.ts +2 -0
- package/lib/types/factories/IBalancerV2Vault.sol/index.js +10 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.d.ts +23 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.js +38 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.d.ts +12 -0
- package/lib/types/factories/{ILidoV1Adapter.sol/ILidoV1AdapterExceptions__factory.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.js} +4 -4
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.d.ts +514 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.js +675 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.d.ts +3 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.js +12 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.d.ts +196 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.js +267 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.d.ts +16 -0
- package/lib/types/factories/{ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.js → ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.js} +6 -8
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.d.ts +2 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.js +10 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.d.ts +28 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.js +45 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.d.ts +134 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.js +186 -0
- package/lib/types/factories/IContractsRegister.sol/index.d.ts +2 -0
- package/lib/types/factories/IContractsRegister.sol/index.js +10 -0
- package/lib/types/factories/IConvexToken__factory.d.ts +10 -0
- package/lib/types/factories/IConvexToken__factory.js +13 -0
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.d.ts +38 -6
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.js +48 -6
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.d.ts +23 -0
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.js +38 -0
- package/lib/types/factories/{IConvexV1BoosterAdapter__factory.d.ts → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.d.ts} +26 -3
- package/lib/types/factories/{IConvexV1BoosterAdapter__factory.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.js} +31 -2
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.d.ts +2 -0
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.js +10 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.d.ts +273 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.js +357 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.d.ts +605 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.js +785 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/index.d.ts +2 -0
- package/lib/types/factories/ICreditConfiguratorV3.sol/index.js +10 -0
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.d.ts +0 -4
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.js +0 -5
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.d.ts +19 -24
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +21 -27
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +151 -72
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js +189 -85
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.d.ts +77 -43
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +96 -54
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.d.ts +339 -147
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.js +427 -180
- package/lib/types/factories/ICurveV1Adapter__factory.d.ts +13 -71
- package/lib/types/factories/ICurveV1Adapter__factory.js +14 -91
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.d.ts +13 -71
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.js +14 -91
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.d.ts +13 -71
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.js +14 -91
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.d.ts +13 -71
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.js +14 -91
- package/lib/types/factories/IDataCompressorV2_10__factory.d.ts +110 -54
- package/lib/types/factories/IDataCompressorV2_10__factory.js +138 -68
- package/lib/types/factories/IDataCompressorV3_00__factory.d.ts +379 -79
- package/lib/types/factories/IDataCompressorV3_00__factory.js +481 -100
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +38 -0
- package/lib/types/factories/{AaveV2_WrappedAToken.sol/IWrappedATokenEvents__factory.js → IDegenDistributor.sol/IDegenDistributorEvents__factory.js} +13 -25
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +84 -0
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.js +117 -0
- package/lib/types/factories/IDegenDistributor.sol/index.d.ts +2 -0
- package/lib/types/factories/IDegenDistributor.sol/index.js +10 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.d.ts +38 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.js +58 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.d.ts +24 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.js +39 -0
- package/lib/types/factories/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory.d.ts → IDegenNFTV2.sol/IDegenNFTV2__factory.d.ts} +190 -180
- package/lib/types/factories/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory.js → IDegenNFTV2.sol/IDegenNFTV2__factory.js} +212 -195
- package/lib/types/factories/IDegenNFTV2.sol/index.d.ts +3 -0
- package/lib/types/factories/IDegenNFTV2.sol/index.js +12 -0
- package/lib/types/factories/IERC165__factory.d.ts +22 -0
- package/lib/types/factories/IERC165__factory.js +38 -0
- package/lib/types/factories/{draft-IERC20Permit.sol/IERC20Permit__factory.d.ts → IERC20Permit__factory.d.ts} +1 -1
- package/lib/types/factories/IERC20ZapperDeposits__factory.d.ts +120 -0
- package/lib/types/factories/IERC20ZapperDeposits__factory.js +165 -0
- package/lib/types/factories/IERC4626Adapter__factory.d.ts +220 -0
- package/lib/types/factories/IERC4626Adapter__factory.js +297 -0
- package/lib/types/factories/IERC721Metadata__factory.d.ts +262 -0
- package/lib/types/factories/IERC721Metadata__factory.js +349 -0
- package/lib/types/factories/IERC721__factory.d.ts +228 -0
- package/lib/types/factories/IERC721__factory.js +304 -0
- package/lib/types/factories/IETHZapperDeposits__factory.d.ts +40 -0
- package/lib/types/factories/IETHZapperDeposits__factory.js +62 -0
- package/lib/types/factories/IGasPricer__factory.d.ts +22 -0
- package/lib/types/factories/IGasPricer__factory.js +38 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.d.ts +118 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.js +157 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.d.ts +342 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.js +448 -0
- package/lib/types/factories/IGaugeV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IGaugeV3.sol/index.js +10 -0
- package/lib/types/factories/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory.d.ts → IGearStakingV3.sol/IGearStakingV3Events__factory.d.ts} +33 -63
- package/lib/types/factories/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory.js → IGearStakingV3.sol/IGearStakingV3Events__factory.js} +34 -70
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.d.ts +504 -0
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.js +660 -0
- package/lib/types/factories/IGearStakingV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IGearStakingV3.sol/index.js +10 -0
- package/lib/types/factories/{ILidoV1Adapter.sol/ILidoV1Adapter__factory.d.ts → ILidoV1Adapter__factory.d.ts} +7 -37
- package/lib/types/factories/{ILidoV1Adapter.sol/ILidoV1Adapter__factory.js → ILidoV1Adapter__factory.js} +8 -46
- package/lib/types/factories/ILinearInterestRateModelV3__factory.d.ts +98 -0
- package/lib/types/factories/ILinearInterestRateModelV3__factory.js +136 -0
- package/lib/types/factories/IOffchainOracle__factory.d.ts +48 -0
- package/lib/types/factories/IOffchainOracle__factory.js +72 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.d.ts +103 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.js +140 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.d.ts +441 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.js +580 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.js +10 -0
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.d.ts +62 -14
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.js +79 -17
- package/lib/types/factories/IPoolV3.sol/index.d.ts +0 -1
- package/lib/types/factories/IPoolV3.sol/index.js +1 -3
- package/lib/types/factories/{IPoolV3.sol/IPoolBase__factory.d.ts → IPriceFeed.sol/IPriceFeed__factory.d.ts} +39 -35
- package/lib/types/factories/{IPoolV3.sol/IPoolBase__factory.js → IPriceFeed.sol/IPriceFeed__factory.js} +40 -35
- package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.d.ts +104 -0
- package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.js +143 -0
- package/lib/types/factories/IPriceFeed.sol/index.d.ts +2 -0
- package/lib/types/factories/IPriceFeed.sol/index.js +10 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Events__factory.d.ts +23 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Events__factory.js +38 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.d.ts +20 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.js +34 -0
- package/lib/types/factories/{IAToken__factory.d.ts → IPriceOracle.sol/IPriceOracleV2Ext__factory.d.ts} +98 -99
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Ext__factory.js +267 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2__factory.d.ts +183 -0
- package/lib/types/factories/{IAToken__factory.js → IPriceOracle.sol/IPriceOracleV2__factory.js} +94 -112
- package/lib/types/factories/IPriceOracle.sol/index.d.ts +4 -0
- package/lib/types/factories/IPriceOracle.sol/index.js +14 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.d.ts +78 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.js +106 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.d.ts +326 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.js +433 -0
- package/lib/types/factories/IPriceOracleV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IPriceOracleV3.sol/index.js +10 -0
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.d.ts +5 -1
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +6 -1
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +12 -4
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +14 -4
- package/lib/types/factories/IVotingContractV3__factory.d.ts +44 -0
- package/lib/types/factories/IVotingContractV3__factory.js +65 -0
- package/lib/types/factories/IWETHGateway__factory.d.ts +58 -0
- package/lib/types/factories/IWETHGateway__factory.js +83 -0
- package/lib/types/factories/IYearnV2Adapter__factory.d.ts +21 -13
- package/lib/types/factories/IYearnV2Adapter__factory.js +27 -15
- package/lib/types/factories/{WERC20ZapperBase__factory.d.ts → IZapper__factory.d.ts} +52 -64
- package/lib/types/factories/{WERC20ZapperBase__factory.js → IZapper__factory.js} +58 -74
- package/lib/types/factories/{ZapperBase__factory.d.ts → IwstETHGateway.sol/IwstETHGateWay__factory.d.ts} +22 -34
- package/lib/types/factories/{ZapperBase__factory.js → IwstETHGateway.sol/IwstETHGateWay__factory.js} +22 -39
- package/lib/types/factories/IwstETHGateway.sol/index.d.ts +1 -0
- package/lib/types/factories/IwstETHGateway.sol/index.js +8 -0
- package/lib/types/factories/IwstETHV1Adapter__factory.d.ts +12 -4
- package/lib/types/factories/IwstETHV1Adapter__factory.js +16 -4
- package/lib/types/factories/SafeERC20__factory.d.ts +1 -1
- package/lib/types/factories/SafeERC20__factory.js +1 -1
- package/lib/types/factories/index.d.ts +33 -14
- package/lib/types/factories/index.js +51 -26
- package/lib/types/factories/{IRouter__factory.d.ts → interfaces/IRouter__factory.d.ts} +75 -6
- package/lib/types/factories/{IRouter__factory.js → interfaces/IRouter__factory.js} +96 -6
- package/lib/types/factories/interfaces/index.d.ts +1 -0
- package/lib/types/factories/interfaces/index.js +8 -0
- package/lib/types/index.d.ts +146 -54
- package/lib/types/index.js +117 -50
- package/lib/types/{IRouter.d.ts → interfaces/IRouter.d.ts} +48 -35
- package/lib/types/interfaces/IRouter.js +2 -0
- package/lib/types/interfaces/index.d.ts +1 -0
- package/lib/types/interfaces/index.js +2 -0
- package/lib/utils/formatter.d.ts +0 -3
- package/lib/utils/formatter.js +1 -67
- package/lib/utils/math.d.ts +2 -0
- package/lib/utils/math.js +2 -0
- package/lib/utils/types.d.ts +1 -0
- package/lib/watchers/creditAccountWatcher.d.ts +3 -2
- package/lib/watchers/creditAccountWatcher.js +19 -13
- package/lib/watchers/creditAccountWatcher.spec.js +18 -18
- package/lib/watchers/creditManagerWatcher.d.ts +5 -3
- package/lib/watchers/creditManagerWatcher.js +32 -10
- package/lib/watchers/creditManagerWatcher.spec.js +12 -4
- package/package.json +10 -9
- package/contracts/IRouter.sol +0 -100
- package/lib/core/pool/index.d.ts +0 -1
- package/lib/core/pool/index.js +0 -17
- package/lib/types/AaveV2_WrappedAToken.sol/IWrappedATokenEvents.d.ts +0 -60
- package/lib/types/AaveV2_WrappedAToken.sol/WrappedAToken.d.ts +0 -332
- package/lib/types/AaveV2_WrappedAToken.sol/index.d.ts +0 -2
- package/lib/types/ERC20.d.ts +0 -198
- package/lib/types/IAToken.d.ts +0 -182
- package/lib/types/ILendingPool.d.ts +0 -140
- package/lib/types/ILidoV1Adapter.sol/index.d.ts +0 -3
- package/lib/types/IPoolV3.sol/IPoolBase.d.ts +0 -102
- package/lib/types/IWithdrawalManagerV3.sol/IWithdrawalManagerV3.d.ts +0 -370
- package/lib/types/IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events.d.ts +0 -133
- package/lib/types/IWithdrawalManagerV3.sol/index.d.ts +0 -2
- package/lib/types/WATokenZapper.d.ts +0 -134
- package/lib/types/WERC20ZapperBase.d.ts +0 -134
- package/lib/types/WETHZapper.d.ts +0 -122
- package/lib/types/WstETHZapper.d.ts +0 -134
- package/lib/types/ZapperBase.d.ts +0 -70
- package/lib/types/draft-IERC20Permit.sol/index.d.ts +0 -1
- package/lib/types/factories/AaveV2_WrappedAToken.sol/IWrappedATokenEvents__factory.d.ts +0 -48
- package/lib/types/factories/AaveV2_WrappedAToken.sol/WrappedAToken__factory.d.ts +0 -397
- package/lib/types/factories/AaveV2_WrappedAToken.sol/WrappedAToken__factory.js +0 -535
- package/lib/types/factories/AaveV2_WrappedAToken.sol/index.d.ts +0 -2
- package/lib/types/factories/AaveV2_WrappedAToken.sol/index.js +0 -10
- package/lib/types/factories/ERC20__factory.d.ts +0 -239
- package/lib/types/factories/ERC20__factory.js +0 -328
- package/lib/types/factories/ILendingPool__factory.d.ts +0 -134
- package/lib/types/factories/ILendingPool__factory.js +0 -183
- package/lib/types/factories/ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.d.ts +0 -18
- package/lib/types/factories/ILidoV1Adapter.sol/ILidoV1AdapterExceptions__factory.d.ts +0 -12
- package/lib/types/factories/ILidoV1Adapter.sol/index.d.ts +0 -3
- package/lib/types/factories/ILidoV1Adapter.sol/index.js +0 -12
- 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/WATokenZapper__factory.d.ts +0 -161
- package/lib/types/factories/WATokenZapper__factory.js +0 -227
- package/lib/types/factories/WETHZapper__factory.d.ts +0 -138
- package/lib/types/factories/WETHZapper__factory.js +0 -198
- package/lib/types/factories/WstETHZapper__factory.d.ts +0 -161
- package/lib/types/factories/WstETHZapper__factory.js +0 -227
- package/lib/types/factories/draft-IERC20Permit.sol/index.d.ts +0 -1
- package/lib/types/factories/draft-IERC20Permit.sol/index.js +0 -8
- /package/lib/{types/AaveV2_WrappedAToken.sol/IWrappedATokenEvents.js → payload/gauge.js} +0 -0
- /package/lib/types/{AaveV2_WrappedAToken.sol/WrappedAToken.js → IAaveV2_LendingPoolAdapter.js} +0 -0
- /package/lib/types/{AaveV2_WrappedAToken.sol/index.js → IAaveV2_WrappedATokenAdapter.js} +0 -0
- /package/lib/types/{ERC20.js → IAirdropDistributor.sol/IAirdropDistributor.js} +0 -0
- /package/lib/types/{IAToken.js → IAirdropDistributor.sol/IAirdropDistributorEvents.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol → IAirdropDistributor.sol}/index.js +0 -0
- /package/lib/types/{IConvexV1BoosterAdapter.js → IBalancerV2Vault.sol/IBalancerV2Vault.js} +0 -0
- /package/lib/types/{ILendingPool.js → IBalancerV2Vault.sol/IBalancerV2VaultGetters.js} +0 -0
- /package/lib/types/{IWithdrawalManagerV3.sol → IBalancerV2Vault.sol}/index.js +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1Adapter.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1AdapterEvents.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1AdapterExceptions.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.js} +0 -0
- /package/lib/types/{draft-IERC20Permit.sol → IBalancerV2VaultAdapter.sol}/index.js +0 -0
- /package/lib/types/{IPoolV3.sol/IPoolBase.js → ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.js} +0 -0
- /package/lib/types/{IRouter.js → ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.js} +0 -0
- /package/lib/types/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3.js → ICompoundV2_CTokenAdapter.sol/index.js} +0 -0
- /package/lib/types/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events.js → IContractsRegister.sol/IContractsRegister.js} +0 -0
- /package/lib/types/{WATokenZapper.js → IContractsRegister.sol/IContractsRegisterEvents.js} +0 -0
- /package/lib/types/{WERC20ZapperBase.js → IContractsRegister.sol/index.js} +0 -0
- /package/lib/types/{WETHZapper.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.js} +0 -0
- /package/lib/types/{WstETHZapper.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.js} +0 -0
- /package/lib/types/{ZapperBase.js → IConvexV1BoosterAdapter.sol/index.js} +0 -0
- /package/lib/types/{draft-IERC20Permit.sol/IERC20Permit.js → ICreditConfiguratorV3.sol/ICreditConfiguratorV3.js} +0 -0
- /package/lib/types/factories/{draft-IERC20Permit.sol/IERC20Permit__factory.js → IERC20Permit__factory.js} +0 -0
|
@@ -1,60 +1,48 @@
|
|
|
1
1
|
import { Signer } from "ethers";
|
|
2
2
|
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import type {
|
|
4
|
-
export declare class
|
|
3
|
+
import type { IwstETHGateWay, IwstETHGateWayInterface } from "../../IwstETHGateway.sol/IwstETHGateWay";
|
|
4
|
+
export declare class IwstETHGateWay__factory {
|
|
5
5
|
static readonly abi: readonly [{
|
|
6
6
|
readonly inputs: readonly [];
|
|
7
|
-
readonly name: "
|
|
7
|
+
readonly name: "NonRegisterPoolException";
|
|
8
8
|
readonly type: "error";
|
|
9
|
-
}, {
|
|
10
|
-
readonly inputs: readonly [];
|
|
11
|
-
readonly name: "pool";
|
|
12
|
-
readonly outputs: readonly [{
|
|
13
|
-
readonly internalType: "address";
|
|
14
|
-
readonly name: "";
|
|
15
|
-
readonly type: "address";
|
|
16
|
-
}];
|
|
17
|
-
readonly stateMutability: "view";
|
|
18
|
-
readonly type: "function";
|
|
19
9
|
}, {
|
|
20
10
|
readonly inputs: readonly [{
|
|
21
11
|
readonly internalType: "uint256";
|
|
22
12
|
readonly name: "amount";
|
|
23
13
|
readonly type: "uint256";
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
14
|
+
}, {
|
|
15
|
+
readonly internalType: "address";
|
|
16
|
+
readonly name: "onBehalfOf";
|
|
17
|
+
readonly type: "address";
|
|
18
|
+
}, {
|
|
27
19
|
readonly internalType: "uint256";
|
|
28
|
-
readonly name: "
|
|
20
|
+
readonly name: "referralCode";
|
|
29
21
|
readonly type: "uint256";
|
|
30
22
|
}];
|
|
31
|
-
readonly
|
|
23
|
+
readonly name: "addLiquidity";
|
|
24
|
+
readonly outputs: readonly [];
|
|
25
|
+
readonly stateMutability: "nonpayable";
|
|
32
26
|
readonly type: "function";
|
|
33
27
|
}, {
|
|
34
28
|
readonly inputs: readonly [{
|
|
35
29
|
readonly internalType: "uint256";
|
|
36
|
-
readonly name: "
|
|
30
|
+
readonly name: "amount";
|
|
37
31
|
readonly type: "uint256";
|
|
32
|
+
}, {
|
|
33
|
+
readonly internalType: "address";
|
|
34
|
+
readonly name: "to";
|
|
35
|
+
readonly type: "address";
|
|
38
36
|
}];
|
|
39
|
-
readonly name: "
|
|
37
|
+
readonly name: "removeLiquidity";
|
|
40
38
|
readonly outputs: readonly [{
|
|
41
39
|
readonly internalType: "uint256";
|
|
42
|
-
readonly name: "
|
|
40
|
+
readonly name: "amountGet";
|
|
43
41
|
readonly type: "uint256";
|
|
44
42
|
}];
|
|
45
|
-
readonly stateMutability: "
|
|
46
|
-
readonly type: "function";
|
|
47
|
-
}, {
|
|
48
|
-
readonly inputs: readonly [];
|
|
49
|
-
readonly name: "wrappedToken";
|
|
50
|
-
readonly outputs: readonly [{
|
|
51
|
-
readonly internalType: "address";
|
|
52
|
-
readonly name: "";
|
|
53
|
-
readonly type: "address";
|
|
54
|
-
}];
|
|
55
|
-
readonly stateMutability: "view";
|
|
43
|
+
readonly stateMutability: "nonpayable";
|
|
56
44
|
readonly type: "function";
|
|
57
45
|
}];
|
|
58
|
-
static createInterface():
|
|
59
|
-
static connect(address: string, signerOrProvider: Signer | Provider):
|
|
46
|
+
static createInterface(): IwstETHGateWayInterface;
|
|
47
|
+
static connect(address: string, signerOrProvider: Signer | Provider): IwstETHGateWay;
|
|
60
48
|
}
|
package/lib/types/factories/{ZapperBase__factory.js → IwstETHGateway.sol/IwstETHGateWay__factory.js}
RENAMED
|
@@ -3,27 +3,14 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.IwstETHGateWay__factory = void 0;
|
|
7
7
|
const ethers_1 = require("ethers");
|
|
8
8
|
const _abi = [
|
|
9
9
|
{
|
|
10
10
|
inputs: [],
|
|
11
|
-
name: "
|
|
11
|
+
name: "NonRegisterPoolException",
|
|
12
12
|
type: "error",
|
|
13
13
|
},
|
|
14
|
-
{
|
|
15
|
-
inputs: [],
|
|
16
|
-
name: "pool",
|
|
17
|
-
outputs: [
|
|
18
|
-
{
|
|
19
|
-
internalType: "address",
|
|
20
|
-
name: "",
|
|
21
|
-
type: "address",
|
|
22
|
-
},
|
|
23
|
-
],
|
|
24
|
-
stateMutability: "view",
|
|
25
|
-
type: "function",
|
|
26
|
-
},
|
|
27
14
|
{
|
|
28
15
|
inputs: [
|
|
29
16
|
{
|
|
@@ -31,52 +18,48 @@ const _abi = [
|
|
|
31
18
|
name: "amount",
|
|
32
19
|
type: "uint256",
|
|
33
20
|
},
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
21
|
+
{
|
|
22
|
+
internalType: "address",
|
|
23
|
+
name: "onBehalfOf",
|
|
24
|
+
type: "address",
|
|
25
|
+
},
|
|
37
26
|
{
|
|
38
27
|
internalType: "uint256",
|
|
39
|
-
name: "
|
|
28
|
+
name: "referralCode",
|
|
40
29
|
type: "uint256",
|
|
41
30
|
},
|
|
42
31
|
],
|
|
43
|
-
|
|
32
|
+
name: "addLiquidity",
|
|
33
|
+
outputs: [],
|
|
34
|
+
stateMutability: "nonpayable",
|
|
44
35
|
type: "function",
|
|
45
36
|
},
|
|
46
37
|
{
|
|
47
38
|
inputs: [
|
|
48
39
|
{
|
|
49
40
|
internalType: "uint256",
|
|
50
|
-
name: "
|
|
41
|
+
name: "amount",
|
|
51
42
|
type: "uint256",
|
|
52
43
|
},
|
|
53
|
-
],
|
|
54
|
-
name: "previewRedeem",
|
|
55
|
-
outputs: [
|
|
56
44
|
{
|
|
57
|
-
internalType: "
|
|
58
|
-
name: "
|
|
59
|
-
type: "
|
|
45
|
+
internalType: "address",
|
|
46
|
+
name: "to",
|
|
47
|
+
type: "address",
|
|
60
48
|
},
|
|
61
49
|
],
|
|
62
|
-
|
|
63
|
-
type: "function",
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
inputs: [],
|
|
67
|
-
name: "wrappedToken",
|
|
50
|
+
name: "removeLiquidity",
|
|
68
51
|
outputs: [
|
|
69
52
|
{
|
|
70
|
-
internalType: "
|
|
71
|
-
name: "",
|
|
72
|
-
type: "
|
|
53
|
+
internalType: "uint256",
|
|
54
|
+
name: "amountGet",
|
|
55
|
+
type: "uint256",
|
|
73
56
|
},
|
|
74
57
|
],
|
|
75
|
-
stateMutability: "
|
|
58
|
+
stateMutability: "nonpayable",
|
|
76
59
|
type: "function",
|
|
77
60
|
},
|
|
78
61
|
];
|
|
79
|
-
class
|
|
62
|
+
class IwstETHGateWay__factory {
|
|
80
63
|
static abi = _abi;
|
|
81
64
|
static createInterface() {
|
|
82
65
|
return new ethers_1.utils.Interface(_abi);
|
|
@@ -85,4 +68,4 @@ class ZapperBase__factory {
|
|
|
85
68
|
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
86
69
|
}
|
|
87
70
|
}
|
|
88
|
-
exports.
|
|
71
|
+
exports.IwstETHGateWay__factory = IwstETHGateWay__factory;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { IwstETHGateWay__factory } from "./IwstETHGateWay__factory";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IwstETHGateWay__factory = void 0;
|
|
4
|
+
/* Autogenerated file. Do not edit manually. */
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
var IwstETHGateWay__factory_1 = require("./IwstETHGateWay__factory");
|
|
8
|
+
Object.defineProperty(exports, "IwstETHGateWay__factory", { enumerable: true, get: function () { return IwstETHGateWay__factory_1.IwstETHGateWay__factory; } });
|
|
@@ -91,8 +91,12 @@ export declare class IwstETHV1Adapter__factory {
|
|
|
91
91
|
readonly stateMutability: "nonpayable";
|
|
92
92
|
readonly type: "function";
|
|
93
93
|
}, {
|
|
94
|
-
readonly inputs: readonly [
|
|
95
|
-
|
|
94
|
+
readonly inputs: readonly [{
|
|
95
|
+
readonly internalType: "uint256";
|
|
96
|
+
readonly name: "leftoverAmount";
|
|
97
|
+
readonly type: "uint256";
|
|
98
|
+
}];
|
|
99
|
+
readonly name: "unwrapDiff";
|
|
96
100
|
readonly outputs: readonly [{
|
|
97
101
|
readonly internalType: "uint256";
|
|
98
102
|
readonly name: "tokensToEnable";
|
|
@@ -123,8 +127,12 @@ export declare class IwstETHV1Adapter__factory {
|
|
|
123
127
|
readonly stateMutability: "nonpayable";
|
|
124
128
|
readonly type: "function";
|
|
125
129
|
}, {
|
|
126
|
-
readonly inputs: readonly [
|
|
127
|
-
|
|
130
|
+
readonly inputs: readonly [{
|
|
131
|
+
readonly internalType: "uint256";
|
|
132
|
+
readonly name: "leftoverAmount";
|
|
133
|
+
readonly type: "uint256";
|
|
134
|
+
}];
|
|
135
|
+
readonly name: "wrapDiff";
|
|
128
136
|
readonly outputs: readonly [{
|
|
129
137
|
readonly internalType: "uint256";
|
|
130
138
|
readonly name: "tokensToEnable";
|
|
@@ -122,8 +122,14 @@ const _abi = [
|
|
|
122
122
|
type: "function",
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
|
-
inputs: [
|
|
126
|
-
|
|
125
|
+
inputs: [
|
|
126
|
+
{
|
|
127
|
+
internalType: "uint256",
|
|
128
|
+
name: "leftoverAmount",
|
|
129
|
+
type: "uint256",
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
name: "unwrapDiff",
|
|
127
133
|
outputs: [
|
|
128
134
|
{
|
|
129
135
|
internalType: "uint256",
|
|
@@ -164,8 +170,14 @@ const _abi = [
|
|
|
164
170
|
type: "function",
|
|
165
171
|
},
|
|
166
172
|
{
|
|
167
|
-
inputs: [
|
|
168
|
-
|
|
173
|
+
inputs: [
|
|
174
|
+
{
|
|
175
|
+
internalType: "uint256",
|
|
176
|
+
name: "leftoverAmount",
|
|
177
|
+
type: "uint256",
|
|
178
|
+
},
|
|
179
|
+
],
|
|
180
|
+
name: "wrapDiff",
|
|
169
181
|
outputs: [
|
|
170
182
|
{
|
|
171
183
|
internalType: "uint256",
|
|
@@ -13,7 +13,7 @@ export declare class SafeERC20__factory extends ContractFactory {
|
|
|
13
13
|
}): TransactionRequest;
|
|
14
14
|
attach(address: string): SafeERC20;
|
|
15
15
|
connect(signer: Signer): SafeERC20__factory;
|
|
16
|
-
static readonly bytecode = "
|
|
16
|
+
static readonly bytecode = "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122054806207e434004ec3495d30f8d79da13af5a28ca33bbae0688f09824c1fbcfa64736f6c63430008110033";
|
|
17
17
|
static readonly abi: readonly [{
|
|
18
18
|
readonly inputs: readonly [];
|
|
19
19
|
readonly name: "ForceApproveFailed";
|
|
@@ -42,7 +42,7 @@ const _abi = [
|
|
|
42
42
|
type: "error",
|
|
43
43
|
},
|
|
44
44
|
];
|
|
45
|
-
const _bytecode = "
|
|
45
|
+
const _bytecode = "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122054806207e434004ec3495d30f8d79da13af5a28ca33bbae0688f09824c1fbcfa64736f6c63430008110033";
|
|
46
46
|
const isSuperArgs = (xs) => xs.length > 1;
|
|
47
47
|
class SafeERC20__factory extends ethers_1.ContractFactory {
|
|
48
48
|
constructor(...args) {
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
export * as aaveV2WrappedATokenSol from "./AaveV2_WrappedAToken.sol";
|
|
2
1
|
export * as balancesSol from "./Balances.sol";
|
|
3
2
|
export * as iAddressProviderSol from "./IAddressProvider.sol";
|
|
4
3
|
export * as iAddressProviderV3Sol from "./IAddressProviderV3.sol";
|
|
4
|
+
export * as iAirdropDistributorSol from "./IAirdropDistributor.sol";
|
|
5
|
+
export * as iBalancerV2VaultSol from "./IBalancerV2Vault.sol";
|
|
6
|
+
export * as iBalancerV2VaultAdapterSol from "./IBalancerV2VaultAdapter.sol";
|
|
7
|
+
export * as iCompoundV2CTokenAdapterSol from "./ICompoundV2_CTokenAdapter.sol";
|
|
8
|
+
export * as iContractsRegisterSol from "./IContractsRegister.sol";
|
|
9
|
+
export * as iConvexV1BoosterAdapterSol from "./IConvexV1BoosterAdapter.sol";
|
|
5
10
|
export * as iCreditConfiguratorV2Sol from "./ICreditConfiguratorV2.sol";
|
|
11
|
+
export * as iCreditConfiguratorV3Sol from "./ICreditConfiguratorV3.sol";
|
|
6
12
|
export * as iCreditFacadeV2Sol from "./ICreditFacadeV2.sol";
|
|
7
13
|
export * as iCreditFacadeV3Sol from "./ICreditFacadeV3.sol";
|
|
8
14
|
export * as iCreditManagerV2Sol from "./ICreditManagerV2.sol";
|
|
@@ -10,26 +16,32 @@ export * as iCreditManagerV3Sol from "./ICreditManagerV3.sol";
|
|
|
10
16
|
export * as iCurvePool2Sol from "./ICurvePool_2.sol";
|
|
11
17
|
export * as iCurvePool3Sol from "./ICurvePool_3.sol";
|
|
12
18
|
export * as iCurvePool4Sol from "./ICurvePool_4.sol";
|
|
13
|
-
export * as
|
|
19
|
+
export * as iDegenDistributorSol from "./IDegenDistributor.sol";
|
|
20
|
+
export * as iDegenNftv2Sol from "./IDegenNFTV2.sol";
|
|
21
|
+
export * as iGaugeV3Sol from "./IGaugeV3.sol";
|
|
22
|
+
export * as iGearStakingV3Sol from "./IGearStakingV3.sol";
|
|
23
|
+
export * as iPoolQuotaKeeperV3Sol from "./IPoolQuotaKeeperV3.sol";
|
|
14
24
|
export * as iPoolServiceSol from "./IPoolService.sol";
|
|
15
25
|
export * as iPoolV3Sol from "./IPoolV3.sol";
|
|
26
|
+
export * as iPriceFeedSol from "./IPriceFeed.sol";
|
|
27
|
+
export * as iPriceOracleSol from "./IPriceOracle.sol";
|
|
28
|
+
export * as iPriceOracleV3Sol from "./IPriceOracleV3.sol";
|
|
16
29
|
export * as iUniswapV2AdapterSol from "./IUniswapV2Adapter.sol";
|
|
17
30
|
export * as iUniswapV3Sol from "./IUniswapV3.sol";
|
|
18
31
|
export * as iUniswapV3AdapterSol from "./IUniswapV3Adapter.sol";
|
|
19
|
-
export * as iWithdrawalManagerV3Sol from "./IWithdrawalManagerV3.sol";
|
|
20
32
|
export * as istEthSol from "./IstETH.sol";
|
|
21
33
|
export * as iwstEthSol from "./IwstETH.sol";
|
|
22
|
-
export * as
|
|
34
|
+
export * as iwstEthGatewaySol from "./IwstETHGateway.sol";
|
|
35
|
+
export * as interfaces from "./interfaces";
|
|
23
36
|
export { AddressProvider__factory } from "./AddressProvider__factory";
|
|
24
37
|
export { Claimable__factory } from "./Claimable__factory";
|
|
25
|
-
export { ERC20__factory } from "./ERC20__factory";
|
|
26
38
|
export { Errors__factory } from "./Errors__factory";
|
|
27
|
-
export {
|
|
39
|
+
export { IAaveV2_LendingPoolAdapter__factory } from "./IAaveV2_LendingPoolAdapter__factory";
|
|
40
|
+
export { IAaveV2_WrappedATokenAdapter__factory } from "./IAaveV2_WrappedATokenAdapter__factory";
|
|
28
41
|
export { IAdapter__factory } from "./IAdapter__factory";
|
|
29
42
|
export { IBaseRewardPool__factory } from "./IBaseRewardPool__factory";
|
|
30
43
|
export { IConvexToken__factory } from "./IConvexToken__factory";
|
|
31
44
|
export { IConvexV1BaseRewardPoolAdapter__factory } from "./IConvexV1BaseRewardPoolAdapter__factory";
|
|
32
|
-
export { IConvexV1BoosterAdapter__factory } from "./IConvexV1BoosterAdapter__factory";
|
|
33
45
|
export { ICreditFacadeV3Multicall__factory } from "./ICreditFacadeV3Multicall__factory";
|
|
34
46
|
export { ICurvePool__factory } from "./ICurvePool__factory";
|
|
35
47
|
export { ICurveV1Adapter__factory } from "./ICurveV1Adapter__factory";
|
|
@@ -39,23 +51,30 @@ export { ICurveV1_4AssetsAdapter__factory } from "./ICurveV1_4AssetsAdapter__fac
|
|
|
39
51
|
export { IDaiLikePermit__factory } from "./IDaiLikePermit__factory";
|
|
40
52
|
export { IDataCompressorV2_10__factory } from "./IDataCompressorV2_10__factory";
|
|
41
53
|
export { IDataCompressorV3_00__factory } from "./IDataCompressorV3_00__factory";
|
|
54
|
+
export { IERC165__factory } from "./IERC165__factory";
|
|
42
55
|
export { IERC20__factory } from "./IERC20__factory";
|
|
43
56
|
export { IERC20Metadata__factory } from "./IERC20Metadata__factory";
|
|
57
|
+
export { IERC20Permit__factory } from "./IERC20Permit__factory";
|
|
58
|
+
export { IERC20ZapperDeposits__factory } from "./IERC20ZapperDeposits__factory";
|
|
44
59
|
export { IERC4626__factory } from "./IERC4626__factory";
|
|
60
|
+
export { IERC4626Adapter__factory } from "./IERC4626Adapter__factory";
|
|
61
|
+
export { IERC721__factory } from "./IERC721__factory";
|
|
62
|
+
export { IERC721Metadata__factory } from "./IERC721Metadata__factory";
|
|
63
|
+
export { IETHZapperDeposits__factory } from "./IETHZapperDeposits__factory";
|
|
64
|
+
export { IGasPricer__factory } from "./IGasPricer__factory";
|
|
45
65
|
export { IInterestRateModel__factory } from "./IInterestRateModel__factory";
|
|
46
|
-
export {
|
|
66
|
+
export { ILidoV1Adapter__factory } from "./ILidoV1Adapter__factory";
|
|
67
|
+
export { ILinearInterestRateModelV3__factory } from "./ILinearInterestRateModelV3__factory";
|
|
68
|
+
export { IOffchainOracle__factory } from "./IOffchainOracle__factory";
|
|
47
69
|
export { IPermit2__factory } from "./IPermit2__factory";
|
|
48
70
|
export { IPriceOracleBase__factory } from "./IPriceOracleBase__factory";
|
|
49
|
-
export { IRouter__factory } from "./IRouter__factory";
|
|
50
71
|
export { IVersion__factory } from "./IVersion__factory";
|
|
72
|
+
export { IVotingContractV3__factory } from "./IVotingContractV3__factory";
|
|
51
73
|
export { IWETH__factory } from "./IWETH__factory";
|
|
74
|
+
export { IWETHGateway__factory } from "./IWETHGateway__factory";
|
|
52
75
|
export { IYVault__factory } from "./IYVault__factory";
|
|
53
76
|
export { IYearnV2Adapter__factory } from "./IYearnV2Adapter__factory";
|
|
77
|
+
export { IZapper__factory } from "./IZapper__factory";
|
|
54
78
|
export { IwstETHV1Adapter__factory } from "./IwstETHV1Adapter__factory";
|
|
55
79
|
export { Ownable__factory } from "./Ownable__factory";
|
|
56
80
|
export { SafeERC20__factory } from "./SafeERC20__factory";
|
|
57
|
-
export { WATokenZapper__factory } from "./WATokenZapper__factory";
|
|
58
|
-
export { WERC20ZapperBase__factory } from "./WERC20ZapperBase__factory";
|
|
59
|
-
export { WETHZapper__factory } from "./WETHZapper__factory";
|
|
60
|
-
export { WstETHZapper__factory } from "./WstETHZapper__factory";
|
|
61
|
-
export { ZapperBase__factory } from "./ZapperBase__factory";
|
|
@@ -23,16 +23,22 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
26
|
+
exports.ICurveV1_4AssetsAdapter__factory = exports.ICurveV1_3AssetsAdapter__factory = exports.ICurveV1_2AssetsAdapter__factory = exports.ICurveV1Adapter__factory = exports.ICurvePool__factory = exports.ICreditFacadeV3Multicall__factory = exports.IConvexV1BaseRewardPoolAdapter__factory = exports.IConvexToken__factory = exports.IBaseRewardPool__factory = exports.IAdapter__factory = exports.IAaveV2_WrappedATokenAdapter__factory = exports.IAaveV2_LendingPoolAdapter__factory = exports.Errors__factory = exports.Claimable__factory = exports.AddressProvider__factory = exports.interfaces = exports.iwstEthGatewaySol = exports.iwstEthSol = exports.istEthSol = exports.iUniswapV3AdapterSol = exports.iUniswapV3Sol = exports.iUniswapV2AdapterSol = exports.iPriceOracleV3Sol = exports.iPriceOracleSol = exports.iPriceFeedSol = exports.iPoolV3Sol = exports.iPoolServiceSol = exports.iPoolQuotaKeeperV3Sol = exports.iGearStakingV3Sol = exports.iGaugeV3Sol = exports.iDegenNftv2Sol = exports.iDegenDistributorSol = exports.iCurvePool4Sol = exports.iCurvePool3Sol = exports.iCurvePool2Sol = exports.iCreditManagerV3Sol = exports.iCreditManagerV2Sol = exports.iCreditFacadeV3Sol = exports.iCreditFacadeV2Sol = exports.iCreditConfiguratorV3Sol = exports.iCreditConfiguratorV2Sol = exports.iConvexV1BoosterAdapterSol = exports.iContractsRegisterSol = exports.iCompoundV2CTokenAdapterSol = exports.iBalancerV2VaultAdapterSol = exports.iBalancerV2VaultSol = exports.iAirdropDistributorSol = exports.iAddressProviderV3Sol = exports.iAddressProviderSol = exports.balancesSol = void 0;
|
|
27
|
+
exports.SafeERC20__factory = exports.Ownable__factory = exports.IwstETHV1Adapter__factory = exports.IZapper__factory = exports.IYearnV2Adapter__factory = exports.IYVault__factory = exports.IWETHGateway__factory = exports.IWETH__factory = exports.IVotingContractV3__factory = exports.IVersion__factory = exports.IPriceOracleBase__factory = exports.IPermit2__factory = exports.IOffchainOracle__factory = exports.ILinearInterestRateModelV3__factory = exports.ILidoV1Adapter__factory = exports.IInterestRateModel__factory = exports.IGasPricer__factory = exports.IETHZapperDeposits__factory = exports.IERC721Metadata__factory = exports.IERC721__factory = exports.IERC4626Adapter__factory = exports.IERC4626__factory = exports.IERC20ZapperDeposits__factory = exports.IERC20Permit__factory = exports.IERC20Metadata__factory = exports.IERC20__factory = exports.IERC165__factory = exports.IDataCompressorV3_00__factory = exports.IDataCompressorV2_10__factory = exports.IDaiLikePermit__factory = void 0;
|
|
28
28
|
/* Autogenerated file. Do not edit manually. */
|
|
29
29
|
/* tslint:disable */
|
|
30
30
|
/* eslint-disable */
|
|
31
|
-
exports.aaveV2WrappedATokenSol = __importStar(require("./AaveV2_WrappedAToken.sol"));
|
|
32
31
|
exports.balancesSol = __importStar(require("./Balances.sol"));
|
|
33
32
|
exports.iAddressProviderSol = __importStar(require("./IAddressProvider.sol"));
|
|
34
33
|
exports.iAddressProviderV3Sol = __importStar(require("./IAddressProviderV3.sol"));
|
|
34
|
+
exports.iAirdropDistributorSol = __importStar(require("./IAirdropDistributor.sol"));
|
|
35
|
+
exports.iBalancerV2VaultSol = __importStar(require("./IBalancerV2Vault.sol"));
|
|
36
|
+
exports.iBalancerV2VaultAdapterSol = __importStar(require("./IBalancerV2VaultAdapter.sol"));
|
|
37
|
+
exports.iCompoundV2CTokenAdapterSol = __importStar(require("./ICompoundV2_CTokenAdapter.sol"));
|
|
38
|
+
exports.iContractsRegisterSol = __importStar(require("./IContractsRegister.sol"));
|
|
39
|
+
exports.iConvexV1BoosterAdapterSol = __importStar(require("./IConvexV1BoosterAdapter.sol"));
|
|
35
40
|
exports.iCreditConfiguratorV2Sol = __importStar(require("./ICreditConfiguratorV2.sol"));
|
|
41
|
+
exports.iCreditConfiguratorV3Sol = __importStar(require("./ICreditConfiguratorV3.sol"));
|
|
36
42
|
exports.iCreditFacadeV2Sol = __importStar(require("./ICreditFacadeV2.sol"));
|
|
37
43
|
exports.iCreditFacadeV3Sol = __importStar(require("./ICreditFacadeV3.sol"));
|
|
38
44
|
exports.iCreditManagerV2Sol = __importStar(require("./ICreditManagerV2.sol"));
|
|
@@ -40,26 +46,33 @@ exports.iCreditManagerV3Sol = __importStar(require("./ICreditManagerV3.sol"));
|
|
|
40
46
|
exports.iCurvePool2Sol = __importStar(require("./ICurvePool_2.sol"));
|
|
41
47
|
exports.iCurvePool3Sol = __importStar(require("./ICurvePool_3.sol"));
|
|
42
48
|
exports.iCurvePool4Sol = __importStar(require("./ICurvePool_4.sol"));
|
|
43
|
-
exports.
|
|
49
|
+
exports.iDegenDistributorSol = __importStar(require("./IDegenDistributor.sol"));
|
|
50
|
+
exports.iDegenNftv2Sol = __importStar(require("./IDegenNFTV2.sol"));
|
|
51
|
+
exports.iGaugeV3Sol = __importStar(require("./IGaugeV3.sol"));
|
|
52
|
+
exports.iGearStakingV3Sol = __importStar(require("./IGearStakingV3.sol"));
|
|
53
|
+
exports.iPoolQuotaKeeperV3Sol = __importStar(require("./IPoolQuotaKeeperV3.sol"));
|
|
44
54
|
exports.iPoolServiceSol = __importStar(require("./IPoolService.sol"));
|
|
45
55
|
exports.iPoolV3Sol = __importStar(require("./IPoolV3.sol"));
|
|
56
|
+
exports.iPriceFeedSol = __importStar(require("./IPriceFeed.sol"));
|
|
57
|
+
exports.iPriceOracleSol = __importStar(require("./IPriceOracle.sol"));
|
|
58
|
+
exports.iPriceOracleV3Sol = __importStar(require("./IPriceOracleV3.sol"));
|
|
46
59
|
exports.iUniswapV2AdapterSol = __importStar(require("./IUniswapV2Adapter.sol"));
|
|
47
60
|
exports.iUniswapV3Sol = __importStar(require("./IUniswapV3.sol"));
|
|
48
61
|
exports.iUniswapV3AdapterSol = __importStar(require("./IUniswapV3Adapter.sol"));
|
|
49
|
-
exports.iWithdrawalManagerV3Sol = __importStar(require("./IWithdrawalManagerV3.sol"));
|
|
50
62
|
exports.istEthSol = __importStar(require("./IstETH.sol"));
|
|
51
63
|
exports.iwstEthSol = __importStar(require("./IwstETH.sol"));
|
|
52
|
-
exports.
|
|
64
|
+
exports.iwstEthGatewaySol = __importStar(require("./IwstETHGateway.sol"));
|
|
65
|
+
exports.interfaces = __importStar(require("./interfaces"));
|
|
53
66
|
var AddressProvider__factory_1 = require("./AddressProvider__factory");
|
|
54
67
|
Object.defineProperty(exports, "AddressProvider__factory", { enumerable: true, get: function () { return AddressProvider__factory_1.AddressProvider__factory; } });
|
|
55
68
|
var Claimable__factory_1 = require("./Claimable__factory");
|
|
56
69
|
Object.defineProperty(exports, "Claimable__factory", { enumerable: true, get: function () { return Claimable__factory_1.Claimable__factory; } });
|
|
57
|
-
var ERC20__factory_1 = require("./ERC20__factory");
|
|
58
|
-
Object.defineProperty(exports, "ERC20__factory", { enumerable: true, get: function () { return ERC20__factory_1.ERC20__factory; } });
|
|
59
70
|
var Errors__factory_1 = require("./Errors__factory");
|
|
60
71
|
Object.defineProperty(exports, "Errors__factory", { enumerable: true, get: function () { return Errors__factory_1.Errors__factory; } });
|
|
61
|
-
var
|
|
62
|
-
Object.defineProperty(exports, "
|
|
72
|
+
var IAaveV2_LendingPoolAdapter__factory_1 = require("./IAaveV2_LendingPoolAdapter__factory");
|
|
73
|
+
Object.defineProperty(exports, "IAaveV2_LendingPoolAdapter__factory", { enumerable: true, get: function () { return IAaveV2_LendingPoolAdapter__factory_1.IAaveV2_LendingPoolAdapter__factory; } });
|
|
74
|
+
var IAaveV2_WrappedATokenAdapter__factory_1 = require("./IAaveV2_WrappedATokenAdapter__factory");
|
|
75
|
+
Object.defineProperty(exports, "IAaveV2_WrappedATokenAdapter__factory", { enumerable: true, get: function () { return IAaveV2_WrappedATokenAdapter__factory_1.IAaveV2_WrappedATokenAdapter__factory; } });
|
|
63
76
|
var IAdapter__factory_1 = require("./IAdapter__factory");
|
|
64
77
|
Object.defineProperty(exports, "IAdapter__factory", { enumerable: true, get: function () { return IAdapter__factory_1.IAdapter__factory; } });
|
|
65
78
|
var IBaseRewardPool__factory_1 = require("./IBaseRewardPool__factory");
|
|
@@ -68,8 +81,6 @@ var IConvexToken__factory_1 = require("./IConvexToken__factory");
|
|
|
68
81
|
Object.defineProperty(exports, "IConvexToken__factory", { enumerable: true, get: function () { return IConvexToken__factory_1.IConvexToken__factory; } });
|
|
69
82
|
var IConvexV1BaseRewardPoolAdapter__factory_1 = require("./IConvexV1BaseRewardPoolAdapter__factory");
|
|
70
83
|
Object.defineProperty(exports, "IConvexV1BaseRewardPoolAdapter__factory", { enumerable: true, get: function () { return IConvexV1BaseRewardPoolAdapter__factory_1.IConvexV1BaseRewardPoolAdapter__factory; } });
|
|
71
|
-
var IConvexV1BoosterAdapter__factory_1 = require("./IConvexV1BoosterAdapter__factory");
|
|
72
|
-
Object.defineProperty(exports, "IConvexV1BoosterAdapter__factory", { enumerable: true, get: function () { return IConvexV1BoosterAdapter__factory_1.IConvexV1BoosterAdapter__factory; } });
|
|
73
84
|
var ICreditFacadeV3Multicall__factory_1 = require("./ICreditFacadeV3Multicall__factory");
|
|
74
85
|
Object.defineProperty(exports, "ICreditFacadeV3Multicall__factory", { enumerable: true, get: function () { return ICreditFacadeV3Multicall__factory_1.ICreditFacadeV3Multicall__factory; } });
|
|
75
86
|
var ICurvePool__factory_1 = require("./ICurvePool__factory");
|
|
@@ -88,43 +99,57 @@ var IDataCompressorV2_10__factory_1 = require("./IDataCompressorV2_10__factory")
|
|
|
88
99
|
Object.defineProperty(exports, "IDataCompressorV2_10__factory", { enumerable: true, get: function () { return IDataCompressorV2_10__factory_1.IDataCompressorV2_10__factory; } });
|
|
89
100
|
var IDataCompressorV3_00__factory_1 = require("./IDataCompressorV3_00__factory");
|
|
90
101
|
Object.defineProperty(exports, "IDataCompressorV3_00__factory", { enumerable: true, get: function () { return IDataCompressorV3_00__factory_1.IDataCompressorV3_00__factory; } });
|
|
102
|
+
var IERC165__factory_1 = require("./IERC165__factory");
|
|
103
|
+
Object.defineProperty(exports, "IERC165__factory", { enumerable: true, get: function () { return IERC165__factory_1.IERC165__factory; } });
|
|
91
104
|
var IERC20__factory_1 = require("./IERC20__factory");
|
|
92
105
|
Object.defineProperty(exports, "IERC20__factory", { enumerable: true, get: function () { return IERC20__factory_1.IERC20__factory; } });
|
|
93
106
|
var IERC20Metadata__factory_1 = require("./IERC20Metadata__factory");
|
|
94
107
|
Object.defineProperty(exports, "IERC20Metadata__factory", { enumerable: true, get: function () { return IERC20Metadata__factory_1.IERC20Metadata__factory; } });
|
|
108
|
+
var IERC20Permit__factory_1 = require("./IERC20Permit__factory");
|
|
109
|
+
Object.defineProperty(exports, "IERC20Permit__factory", { enumerable: true, get: function () { return IERC20Permit__factory_1.IERC20Permit__factory; } });
|
|
110
|
+
var IERC20ZapperDeposits__factory_1 = require("./IERC20ZapperDeposits__factory");
|
|
111
|
+
Object.defineProperty(exports, "IERC20ZapperDeposits__factory", { enumerable: true, get: function () { return IERC20ZapperDeposits__factory_1.IERC20ZapperDeposits__factory; } });
|
|
95
112
|
var IERC4626__factory_1 = require("./IERC4626__factory");
|
|
96
113
|
Object.defineProperty(exports, "IERC4626__factory", { enumerable: true, get: function () { return IERC4626__factory_1.IERC4626__factory; } });
|
|
114
|
+
var IERC4626Adapter__factory_1 = require("./IERC4626Adapter__factory");
|
|
115
|
+
Object.defineProperty(exports, "IERC4626Adapter__factory", { enumerable: true, get: function () { return IERC4626Adapter__factory_1.IERC4626Adapter__factory; } });
|
|
116
|
+
var IERC721__factory_1 = require("./IERC721__factory");
|
|
117
|
+
Object.defineProperty(exports, "IERC721__factory", { enumerable: true, get: function () { return IERC721__factory_1.IERC721__factory; } });
|
|
118
|
+
var IERC721Metadata__factory_1 = require("./IERC721Metadata__factory");
|
|
119
|
+
Object.defineProperty(exports, "IERC721Metadata__factory", { enumerable: true, get: function () { return IERC721Metadata__factory_1.IERC721Metadata__factory; } });
|
|
120
|
+
var IETHZapperDeposits__factory_1 = require("./IETHZapperDeposits__factory");
|
|
121
|
+
Object.defineProperty(exports, "IETHZapperDeposits__factory", { enumerable: true, get: function () { return IETHZapperDeposits__factory_1.IETHZapperDeposits__factory; } });
|
|
122
|
+
var IGasPricer__factory_1 = require("./IGasPricer__factory");
|
|
123
|
+
Object.defineProperty(exports, "IGasPricer__factory", { enumerable: true, get: function () { return IGasPricer__factory_1.IGasPricer__factory; } });
|
|
97
124
|
var IInterestRateModel__factory_1 = require("./IInterestRateModel__factory");
|
|
98
125
|
Object.defineProperty(exports, "IInterestRateModel__factory", { enumerable: true, get: function () { return IInterestRateModel__factory_1.IInterestRateModel__factory; } });
|
|
99
|
-
var
|
|
100
|
-
Object.defineProperty(exports, "
|
|
126
|
+
var ILidoV1Adapter__factory_1 = require("./ILidoV1Adapter__factory");
|
|
127
|
+
Object.defineProperty(exports, "ILidoV1Adapter__factory", { enumerable: true, get: function () { return ILidoV1Adapter__factory_1.ILidoV1Adapter__factory; } });
|
|
128
|
+
var ILinearInterestRateModelV3__factory_1 = require("./ILinearInterestRateModelV3__factory");
|
|
129
|
+
Object.defineProperty(exports, "ILinearInterestRateModelV3__factory", { enumerable: true, get: function () { return ILinearInterestRateModelV3__factory_1.ILinearInterestRateModelV3__factory; } });
|
|
130
|
+
var IOffchainOracle__factory_1 = require("./IOffchainOracle__factory");
|
|
131
|
+
Object.defineProperty(exports, "IOffchainOracle__factory", { enumerable: true, get: function () { return IOffchainOracle__factory_1.IOffchainOracle__factory; } });
|
|
101
132
|
var IPermit2__factory_1 = require("./IPermit2__factory");
|
|
102
133
|
Object.defineProperty(exports, "IPermit2__factory", { enumerable: true, get: function () { return IPermit2__factory_1.IPermit2__factory; } });
|
|
103
134
|
var IPriceOracleBase__factory_1 = require("./IPriceOracleBase__factory");
|
|
104
135
|
Object.defineProperty(exports, "IPriceOracleBase__factory", { enumerable: true, get: function () { return IPriceOracleBase__factory_1.IPriceOracleBase__factory; } });
|
|
105
|
-
var IRouter__factory_1 = require("./IRouter__factory");
|
|
106
|
-
Object.defineProperty(exports, "IRouter__factory", { enumerable: true, get: function () { return IRouter__factory_1.IRouter__factory; } });
|
|
107
136
|
var IVersion__factory_1 = require("./IVersion__factory");
|
|
108
137
|
Object.defineProperty(exports, "IVersion__factory", { enumerable: true, get: function () { return IVersion__factory_1.IVersion__factory; } });
|
|
138
|
+
var IVotingContractV3__factory_1 = require("./IVotingContractV3__factory");
|
|
139
|
+
Object.defineProperty(exports, "IVotingContractV3__factory", { enumerable: true, get: function () { return IVotingContractV3__factory_1.IVotingContractV3__factory; } });
|
|
109
140
|
var IWETH__factory_1 = require("./IWETH__factory");
|
|
110
141
|
Object.defineProperty(exports, "IWETH__factory", { enumerable: true, get: function () { return IWETH__factory_1.IWETH__factory; } });
|
|
142
|
+
var IWETHGateway__factory_1 = require("./IWETHGateway__factory");
|
|
143
|
+
Object.defineProperty(exports, "IWETHGateway__factory", { enumerable: true, get: function () { return IWETHGateway__factory_1.IWETHGateway__factory; } });
|
|
111
144
|
var IYVault__factory_1 = require("./IYVault__factory");
|
|
112
145
|
Object.defineProperty(exports, "IYVault__factory", { enumerable: true, get: function () { return IYVault__factory_1.IYVault__factory; } });
|
|
113
146
|
var IYearnV2Adapter__factory_1 = require("./IYearnV2Adapter__factory");
|
|
114
147
|
Object.defineProperty(exports, "IYearnV2Adapter__factory", { enumerable: true, get: function () { return IYearnV2Adapter__factory_1.IYearnV2Adapter__factory; } });
|
|
148
|
+
var IZapper__factory_1 = require("./IZapper__factory");
|
|
149
|
+
Object.defineProperty(exports, "IZapper__factory", { enumerable: true, get: function () { return IZapper__factory_1.IZapper__factory; } });
|
|
115
150
|
var IwstETHV1Adapter__factory_1 = require("./IwstETHV1Adapter__factory");
|
|
116
151
|
Object.defineProperty(exports, "IwstETHV1Adapter__factory", { enumerable: true, get: function () { return IwstETHV1Adapter__factory_1.IwstETHV1Adapter__factory; } });
|
|
117
152
|
var Ownable__factory_1 = require("./Ownable__factory");
|
|
118
153
|
Object.defineProperty(exports, "Ownable__factory", { enumerable: true, get: function () { return Ownable__factory_1.Ownable__factory; } });
|
|
119
154
|
var SafeERC20__factory_1 = require("./SafeERC20__factory");
|
|
120
155
|
Object.defineProperty(exports, "SafeERC20__factory", { enumerable: true, get: function () { return SafeERC20__factory_1.SafeERC20__factory; } });
|
|
121
|
-
var WATokenZapper__factory_1 = require("./WATokenZapper__factory");
|
|
122
|
-
Object.defineProperty(exports, "WATokenZapper__factory", { enumerable: true, get: function () { return WATokenZapper__factory_1.WATokenZapper__factory; } });
|
|
123
|
-
var WERC20ZapperBase__factory_1 = require("./WERC20ZapperBase__factory");
|
|
124
|
-
Object.defineProperty(exports, "WERC20ZapperBase__factory", { enumerable: true, get: function () { return WERC20ZapperBase__factory_1.WERC20ZapperBase__factory; } });
|
|
125
|
-
var WETHZapper__factory_1 = require("./WETHZapper__factory");
|
|
126
|
-
Object.defineProperty(exports, "WETHZapper__factory", { enumerable: true, get: function () { return WETHZapper__factory_1.WETHZapper__factory; } });
|
|
127
|
-
var WstETHZapper__factory_1 = require("./WstETHZapper__factory");
|
|
128
|
-
Object.defineProperty(exports, "WstETHZapper__factory", { enumerable: true, get: function () { return WstETHZapper__factory_1.WstETHZapper__factory; } });
|
|
129
|
-
var ZapperBase__factory_1 = require("./ZapperBase__factory");
|
|
130
|
-
Object.defineProperty(exports, "ZapperBase__factory", { enumerable: true, get: function () { return ZapperBase__factory_1.ZapperBase__factory; } });
|