@gearbox-protocol/sdk 3.0.0-next.18 → 3.0.0-next.181
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/index.sol +37 -5
- package/lib/apy/auraAPY.d.ts +1 -0
- package/lib/apy/auraAPY.js +23 -0
- package/lib/apy/auraAbi.d.ts +17 -0
- package/lib/apy/auraAbi.js +26 -0
- package/lib/apy/convexAPY.d.ts +10 -7
- package/lib/apy/convexAPY.js +32 -24
- package/lib/apy/curveAPY.d.ts +54 -5
- package/lib/apy/curveAPY.js +118 -71
- package/lib/apy/defiLamaAPY.d.ts +3 -0
- package/lib/apy/defiLamaAPY.js +68 -0
- package/lib/apy/index.d.ts +4 -3
- package/lib/apy/index.js +15 -3
- 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 +13 -6
- package/lib/contracts/contractsRegister.js +47 -2
- package/lib/core/assets.js +2 -2
- package/lib/core/bot.d.ts +11 -0
- package/lib/core/bot.js +23 -0
- package/lib/core/creditAccount.d.ts +59 -20
- package/lib/core/creditAccount.js +208 -105
- package/lib/core/creditAccount.spec.js +739 -92
- package/lib/core/creditManager.d.ts +18 -5
- package/lib/core/creditManager.js +89 -31
- package/lib/core/creditSession.d.ts +24 -3
- 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 +2 -3
- package/lib/core/events.js +16 -16
- 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 +105 -0
- package/lib/core/gaugeMath.spec.js +388 -0
- package/lib/core/{pool/data.d.ts → pool.d.ts} +21 -13
- package/lib/core/{pool/data.js → pool.js} +70 -45
- package/lib/core/rewardClaimer.d.ts +6 -4
- package/lib/core/rewardConvex.d.ts +27 -11
- package/lib/core/rewardConvex.js +192 -56
- package/lib/core/rewardConvex.spec.js +32 -69
- package/lib/core/strategy.d.ts +18 -21
- package/lib/core/strategy.js +14 -34
- package/lib/core/trade.d.ts +11 -12
- package/lib/core/trade.js +36 -29
- package/lib/core/transactions.d.ts +118 -18
- package/lib/core/transactions.js +211 -122
- package/lib/gearboxRewards/abi.d.ts +2 -0
- package/lib/gearboxRewards/abi.js +54 -0
- package/lib/gearboxRewards/api.d.ts +82 -0
- package/lib/gearboxRewards/api.js +259 -0
- package/lib/gearboxRewards/apy.d.ts +37 -0
- package/lib/gearboxRewards/apy.js +65 -0
- package/lib/gearboxRewards/extraAPY.d.ts +34 -0
- package/lib/gearboxRewards/extraAPY.js +130 -0
- package/lib/gearboxRewards/index.d.ts +4 -0
- package/lib/{core/pool → gearboxRewards}/index.js +4 -1
- package/lib/index.d.ts +10 -5
- package/lib/index.js +11 -6
- package/lib/parsers/ERC20Parser.js +1 -1
- package/lib/parsers/aaveV2LendingPoolAdapterParser.d.ts +7 -0
- package/lib/parsers/aaveV2LendingPoolAdapterParser.js +21 -0
- package/lib/parsers/aaveV2WrappedATokenAdapterParser.d.ts +7 -0
- package/lib/parsers/aaveV2WrappedATokenAdapterParser.js +21 -0
- package/lib/parsers/abstractParser.d.ts +11 -9
- package/lib/parsers/abstractParser.js +15 -4
- package/lib/parsers/addressProviderParser.js +1 -1
- package/lib/parsers/balancerV2VaultParser.d.ts +7 -0
- package/lib/parsers/balancerV2VaultParser.js +34 -0
- package/lib/parsers/compoundV2CTokenAdapterParser.d.ts +7 -0
- package/lib/parsers/compoundV2CTokenAdapterParser.js +21 -0
- package/lib/parsers/convexBaseRewardPoolAdapterParser.js +13 -9
- package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.js +9 -6
- package/lib/parsers/convexBoosterAdapterParser.js +7 -7
- package/lib/parsers/convexBoosterAdapterParser.spec.js +4 -4
- package/lib/parsers/convextRewardPoolParser.js +1 -1
- package/lib/parsers/creditFacadeParser.js +34 -7
- package/lib/parsers/creditFacadeParser.spec.js +2 -3
- package/lib/parsers/creditManagerParser.js +1 -1
- package/lib/parsers/curveAdapterParser.js +11 -12
- package/lib/parsers/curveAdapterParser.spec.js +6 -2
- package/lib/parsers/erc626AdapterParser.d.ts +7 -0
- package/lib/parsers/erc626AdapterParser.js +21 -0
- package/lib/parsers/iParser.d.ts +1 -1
- package/lib/parsers/lidoAdapterParser.js +4 -3
- package/lib/parsers/lidoAdapterParser.spec.js +2 -2
- package/lib/parsers/lidoSTETHParser.js +1 -1
- package/lib/parsers/poolParser.js +1 -1
- package/lib/parsers/priceOracleParser.js +1 -1
- package/lib/parsers/txParser.d.ts +17 -11
- package/lib/parsers/txParser.js +41 -4
- package/lib/parsers/uniV2AdapterParser.js +6 -5
- package/lib/parsers/uniV2AdapterParser.spec.js +3 -2
- package/lib/parsers/uniV3AdapterParser.js +10 -8
- package/lib/parsers/uniV3AdapterParser.spec.js +3 -2
- package/lib/parsers/wstETHAdapterParser.js +7 -5
- package/lib/parsers/wstETHAdapterParser.spec.js +4 -4
- package/lib/parsers/yearnAdapterParser.spec.js +4 -4
- package/lib/parsers/yearnV2AdapterParser.js +14 -4
- package/lib/pathfinder/balancerVault.d.ts +33 -0
- package/lib/pathfinder/balancerVault.js +59 -0
- package/lib/pathfinder/core.d.ts +7 -9
- package/lib/pathfinder/index.d.ts +4 -0
- package/lib/pathfinder/index.js +20 -0
- package/lib/pathfinder/pathOptions.d.ts +3 -3
- package/lib/pathfinder/pathOptions.js +34 -18
- package/lib/pathfinder/pathOptions.spec.js +3 -6
- package/lib/pathfinder/pathfinder.d.ts +47 -19
- package/lib/pathfinder/pathfinder.js +71 -60
- package/lib/pathfinder/pathfinder.spec.js +23 -10
- package/lib/pathfinder/utils.d.ts +35 -0
- package/lib/pathfinder/utils.js +181 -0
- package/lib/pathfinder/v1/core.d.ts +16 -0
- package/lib/pathfinder/v1/pathfinderv1.d.ts +46 -0
- package/lib/pathfinder/v1/pathfinderv1.js +154 -0
- package/lib/pathfinder/v1/pathfinderv1.spec.js +39 -0
- package/lib/payload/bot.d.ts +13 -0
- package/lib/payload/creditAccount.d.ts +3 -4
- package/lib/payload/creditManager.d.ts +7 -4
- package/lib/payload/creditSession.d.ts +15 -1
- package/lib/payload/gauge.d.ts +11 -0
- package/lib/payload/pool.d.ts +8 -2
- package/lib/payload/token.d.ts +3 -1
- package/lib/tokens/tokenData.d.ts +5 -4
- package/lib/tokens/tokenData.js +24 -5
- package/lib/types/AddressProvider.d.ts +151 -332
- package/lib/types/Balances.sol/BalanceOps.d.ts +15 -22
- package/lib/types/CalldataExtractor.d.ts +28 -0
- package/lib/types/Claimable.d.ts +46 -97
- package/lib/types/CompositePriceFeed.d.ts +90 -0
- package/lib/types/ContractsRegisterTrait.d.ts +25 -0
- package/lib/types/ERC20.d.ts +169 -0
- package/lib/types/Errors.d.ts +106 -227
- package/lib/types/FarmAccounting.d.ts +20 -0
- package/lib/types/IAaveV2_LendingPoolAdapter.d.ts +127 -0
- package/lib/types/IAaveV2_WrappedATokenAdapter.d.ts +205 -0
- package/lib/types/IAdapter.d.ts +26 -59
- package/lib/types/IAddressProvider.sol/IAddressProvider.d.ts +53 -108
- package/lib/types/IAddressProvider.sol/IAddressProviderEvents.d.ts +29 -35
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3.d.ts +79 -85
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3Events.d.ts +34 -37
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributor.d.ts +101 -109
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +76 -64
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2Vault.d.ts +287 -0
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2VaultGetters.d.ts +87 -0
- package/lib/types/IBalancerV2Vault.sol/index.d.ts +2 -0
- package/lib/types/IBalancerV2Vault.sol/index.js +2 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.d.ts +415 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.js +2 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.d.ts +37 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.js +2 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.d.ts +20 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.js +2 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/index.d.ts +3 -0
- package/lib/types/IBalancerV2VaultAdapter.sol/index.js +2 -0
- package/lib/types/IBaseRewardPool.d.ts +143 -320
- package/lib/types/IBotListV3.sol/IBotListV3.d.ts +300 -0
- package/lib/types/IBotListV3.sol/IBotListV3.js +2 -0
- package/lib/types/IBotListV3.sol/IBotListV3Events.d.ts +127 -0
- package/lib/types/IBotListV3.sol/IBotListV3Events.js +2 -0
- package/lib/types/IBotListV3.sol/index.d.ts +2 -0
- package/lib/types/IBotListV3.sol/index.js +2 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.d.ts +147 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.js +2 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.d.ts +20 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.js +2 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/index.d.ts +2 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/index.js +2 -0
- package/lib/types/IContractsRegister.sol/IContractsRegister.d.ts +87 -0
- package/lib/types/IContractsRegister.sol/IContractsRegister.js +2 -0
- package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.d.ts +50 -0
- package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.js +2 -0
- package/lib/types/IContractsRegister.sol/index.d.ts +2 -0
- package/lib/types/IContractsRegister.sol/index.js +2 -0
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3.d.ts +416 -0
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3.js +2 -0
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3Events.d.ts +97 -0
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3Events.js +2 -0
- package/lib/types/IControllerTimelockV3.sol/index.d.ts +2 -0
- package/lib/types/IControllerTimelockV3.sol/index.js +2 -0
- package/lib/types/IConvexToken.d.ts +128 -157
- package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +183 -250
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.d.ts +154 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.js +2 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.d.ts +37 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.js +2 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/index.d.ts +2 -0
- package/lib/types/IConvexV1BoosterAdapter.sol/index.js +2 -0
- package/lib/types/ICreditAccountV3.sol/ICreditAccountBase.d.ts +59 -0
- package/lib/types/ICreditAccountV3.sol/ICreditAccountBase.js +2 -0
- package/lib/types/ICreditAccountV3.sol/ICreditAccountV3.d.ts +77 -0
- package/lib/types/ICreditAccountV3.sol/ICreditAccountV3.js +2 -0
- package/lib/types/ICreditAccountV3.sol/index.d.ts +2 -0
- package/lib/types/ICreditAccountV3.sol/index.js +2 -0
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2.d.ts +526 -579
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.d.ts +342 -264
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.d.ts +15 -22
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.d.ts +549 -648
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.d.ts +327 -248
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2.d.ts +587 -635
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Events.d.ts +294 -239
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.d.ts +15 -22
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.d.ts +59 -126
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2V2.d.ts +34 -53
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.d.ts +421 -512
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +202 -152
- package/lib/types/ICreditFacadeV3Multicall.d.ts +170 -245
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2.d.ts +438 -567
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Events.d.ts +43 -46
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Exceptions.d.ts +15 -22
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.d.ts +652 -841
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3Events.d.ts +28 -33
- package/lib/types/ICurvePool.d.ts +285 -376
- package/lib/types/ICurvePool_2.sol/ICurvePool2Assets.d.ts +365 -511
- package/lib/types/ICurvePool_3.sol/ICurvePool3Assets.d.ts +370 -607
- package/lib/types/ICurvePool_4.sol/ICurvePool4Assets.d.ts +387 -631
- package/lib/types/ICurveV1Adapter.d.ts +330 -547
- package/lib/types/ICurveV1_2AssetsAdapter.d.ts +387 -628
- package/lib/types/ICurveV1_3AssetsAdapter.d.ts +387 -691
- package/lib/types/ICurveV1_4AssetsAdapter.d.ts +399 -697
- package/lib/types/IDaiLikePermit.d.ts +56 -0
- package/lib/types/IDaiLikePermit.js +2 -0
- package/lib/types/IDataCompressorV2_1.d.ts +491 -0
- package/lib/types/IDataCompressorV2_1.js +2 -0
- package/lib/types/IDataCompressorV3.d.ts +581 -0
- package/lib/types/IDataCompressorV3.js +2 -0
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.d.ts +67 -84
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +44 -45
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.d.ts +297 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.js +2 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.d.ts +64 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.js +2 -0
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Exceptions.d.ts +20 -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 +29 -0
- package/lib/types/IERC165.js +2 -0
- package/lib/types/IERC20.d.ts +114 -127
- package/lib/types/IERC20Metadata.d.ts +120 -145
- package/lib/types/IERC20Permit.d.ts +50 -63
- package/lib/types/IERC20ZapperDeposits.d.ts +112 -0
- package/lib/types/IERC20ZapperDeposits.js +2 -0
- package/lib/types/IERC4626.d.ts +277 -353
- package/lib/types/IERC4626Adapter.d.ts +173 -0
- package/lib/types/IERC4626Adapter.js +2 -0
- package/lib/types/IERC721.d.ts +199 -0
- package/lib/types/IERC721.js +2 -0
- package/lib/types/IERC721Metadata.d.ts +211 -0
- package/lib/types/IERC721Metadata.js +2 -0
- package/lib/types/IETHZapperDeposits.d.ts +39 -0
- package/lib/types/IETHZapperDeposits.js +2 -0
- package/lib/types/IFarmingPool.d.ts +245 -0
- package/lib/types/IFarmingPool.js +2 -0
- package/lib/types/IGasPricer.d.ts +29 -0
- package/lib/types/IGasPricer.js +2 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3.d.ts +309 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3.js +2 -0
- package/lib/types/IGaugeV3.sol/IGaugeV3Events.d.ts +144 -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 +354 -0
- package/lib/types/IGearStakingV3.sol/IGearStakingV3.js +2 -0
- package/lib/types/IGearStakingV3.sol/IGearStakingV3Events.d.ts +135 -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/IInterestRateModel.d.ts +31 -42
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.d.ts +164 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.js +2 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.d.ts +51 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.js +2 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +20 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.js +2 -0
- package/lib/types/ILPPriceFeed.sol/index.d.ts +3 -0
- package/lib/types/ILPPriceFeed.sol/index.js +2 -0
- package/lib/types/ILidoV1Adapter.d.ts +97 -0
- package/lib/types/ILidoV1Adapter.js +2 -0
- package/lib/types/ILinearInterestRateModelV3.d.ts +97 -0
- package/lib/types/ILinearInterestRateModelV3.js +2 -0
- package/lib/types/IOffchainOracle.d.ts +44 -51
- package/lib/types/IPartialLiquidationBotV3.d.ts +154 -0
- package/lib/types/IPartialLiquidationBotV3.js +2 -0
- package/lib/types/IPermit2.d.ts +118 -0
- package/lib/types/IPermit2.js +2 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.d.ts +380 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.js +2 -0
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.d.ts +133 -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/IPoolService.sol/IPoolService.d.ts +292 -338
- package/lib/types/IPoolService.sol/IPoolServiceEvents.d.ts +189 -146
- package/lib/types/IPoolV3.sol/IPoolV3.d.ts +662 -825
- package/lib/types/IPoolV3.sol/IPoolV3Events.d.ts +181 -142
- package/lib/types/IPriceFeed.sol/IPriceFeed.d.ts +69 -0
- package/lib/types/IPriceFeed.sol/IPriceFeed.js +2 -0
- package/lib/types/IPriceFeed.sol/IUpdatablePriceFeed.d.ts +77 -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 +146 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2.js +2 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.d.ts +37 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.js +2 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Exceptions.d.ts +20 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Exceptions.js +2 -0
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Ext.d.ts +160 -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/IPriceOracleBase.d.ts +65 -76
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.d.ts +281 -0
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.js +2 -0
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3Events.d.ts +94 -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/IRouter.d.ts +226 -208
- package/lib/types/IRouterV3.d.ts +333 -0
- package/lib/types/IRouterV3.js +2 -0
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +159 -175
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.d.ts +34 -37
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.d.ts +15 -22
- package/lib/types/IUniswapV3.sol/ISwapRouter.d.ts +124 -153
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +289 -330
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.d.ts +41 -39
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.d.ts +15 -22
- package/lib/types/IVersion.d.ts +18 -35
- package/lib/types/IVotingContractV3.d.ts +53 -0
- package/lib/types/IVotingContractV3.js +2 -0
- package/lib/types/IWETH.d.ts +167 -0
- package/lib/types/IWETH.js +2 -0
- package/lib/types/IWETHGateway.d.ts +59 -82
- package/lib/types/IYVault.d.ts +183 -264
- package/lib/types/IYearnV2Adapter.d.ts +161 -230
- package/lib/types/IZapper.d.ts +81 -115
- package/lib/types/IZapperRegister.d.ts +55 -0
- package/lib/types/IZapperRegister.js +2 -0
- package/lib/types/IstETH.sol/IstETH.d.ts +146 -199
- package/lib/types/IstETH.sol/IstETHGetters.d.ts +143 -184
- package/lib/types/IwstETH.sol/IwstETH.d.ts +154 -207
- package/lib/types/IwstETH.sol/IwstETHGetters.d.ts +140 -177
- package/lib/types/IwstETHGateway.sol/IwstETHGateWay.d.ts +44 -63
- package/lib/types/IwstETHV1Adapter.d.ts +102 -163
- package/lib/types/NumericArrayLib.d.ts +20 -0
- package/lib/types/NumericArrayLib.js +2 -0
- package/lib/types/Ownable.d.ts +42 -77
- package/lib/types/PartialLiquidationBotV3.d.ts +158 -0
- package/lib/types/PartialLiquidationBotV3.js +2 -0
- package/lib/types/RedstoneConstants.d.ts +20 -0
- package/lib/types/RedstoneConstants.js +2 -0
- package/lib/types/RedstoneConsumerBase.d.ts +64 -0
- package/lib/types/RedstoneConsumerBase.js +2 -0
- package/lib/types/RedstoneConsumerNumericBase.d.ts +64 -0
- package/lib/types/RedstoneConsumerNumericBase.js +2 -0
- package/lib/types/RedstoneDefaultsLib.d.ts +20 -0
- package/lib/types/RedstoneDefaultsLib.js +2 -0
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedEvents.d.ts +36 -0
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedEvents.js +2 -0
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions.d.ts +20 -0
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions.js +2 -0
- package/lib/types/RedstonePriceFeed.sol/RedstonePriceFeed.d.ts +174 -0
- package/lib/types/RedstonePriceFeed.sol/RedstonePriceFeed.js +2 -0
- package/lib/types/RedstonePriceFeed.sol/index.d.ts +3 -0
- package/lib/types/RedstonePriceFeed.sol/index.js +2 -0
- package/lib/types/SafeERC20.d.ts +20 -0
- package/lib/types/SafeERC20.js +2 -0
- package/lib/types/common.d.ts +40 -12
- package/lib/types/factories/AddressProvider__factory.d.ts +125 -124
- package/lib/types/factories/AddressProvider__factory.js +127 -130
- package/lib/types/factories/Balances.sol/BalanceOps__factory.d.ts +17 -16
- package/lib/types/factories/Balances.sol/BalanceOps__factory.js +11 -14
- package/lib/types/factories/CalldataExtractor__factory.d.ts +88 -0
- package/lib/types/factories/CalldataExtractor__factory.js +124 -0
- package/lib/types/factories/Claimable__factory.d.ts +42 -41
- package/lib/types/factories/Claimable__factory.js +40 -43
- package/lib/types/factories/CompositePriceFeed__factory.d.ts +203 -0
- package/lib/types/factories/CompositePriceFeed__factory.js +274 -0
- package/lib/types/factories/ContractsRegisterTrait__factory.d.ts +21 -0
- package/lib/types/factories/ContractsRegisterTrait__factory.js +37 -0
- package/lib/types/factories/ERC20__factory.d.ts +240 -0
- package/lib/types/factories/ERC20__factory.js +325 -0
- package/lib/types/factories/Errors__factory.d.ts +113 -112
- package/lib/types/factories/Errors__factory.js +107 -110
- package/lib/types/factories/FarmAccounting__factory.d.ts +34 -0
- package/lib/types/factories/FarmAccounting__factory.js +54 -0
- package/lib/types/factories/{IWERC20Zapper__factory.d.ts → IAaveV2_LendingPoolAdapter__factory.d.ts} +97 -116
- package/lib/types/factories/{IWETHZapper__factory.js → IAaveV2_LendingPoolAdapter__factory.js} +108 -123
- package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.d.ts +251 -0
- package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.js +341 -0
- package/lib/types/factories/IAdapter__factory.d.ts +17 -18
- package/lib/types/factories/IAdapter__factory.js +18 -18
- package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.d.ts +9 -10
- package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.js +10 -10
- package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.d.ts +50 -51
- package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.js +55 -55
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.d.ts +11 -12
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.js +12 -12
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.d.ts +39 -40
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.js +45 -45
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +27 -28
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.js +28 -28
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +73 -74
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributor__factory.js +88 -88
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.d.ts +77 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.js +111 -0
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.d.ts +359 -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 +22 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.js +38 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.d.ts +11 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.js +24 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.d.ts +513 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.js +675 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.d.ts +3 -0
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.js +12 -0
- package/lib/types/factories/IBaseRewardPool__factory.d.ts +116 -117
- package/lib/types/factories/IBaseRewardPool__factory.js +117 -117
- package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.d.ts +102 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.js +138 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.d.ts +314 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.js +416 -0
- package/lib/types/factories/IBotListV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IBotListV3.sol/index.js +10 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.d.ts +195 -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 +15 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.js +30 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.d.ts +2 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.js +10 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.d.ts +27 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.js +45 -0
- package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.d.ts +133 -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/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.d.ts +72 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.js +101 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.d.ts +426 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.js +556 -0
- package/lib/types/factories/IControllerTimelockV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IControllerTimelockV3.sol/index.js +10 -0
- package/lib/types/factories/IConvexToken__factory.d.ts +91 -82
- package/lib/types/factories/IConvexToken__factory.js +102 -89
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.d.ts +123 -72
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.js +140 -72
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.d.ts +22 -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} +69 -47
- package/lib/types/factories/{IConvexV1BoosterAdapter__factory.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.js} +75 -46
- 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/ICreditAccountV3.sol/ICreditAccountBase__factory.d.ts +63 -0
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountBase__factory.js +92 -0
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountV3__factory.d.ts +87 -0
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountV3__factory.js +123 -0
- package/lib/types/factories/ICreditAccountV3.sol/index.d.ts +2 -0
- package/lib/types/factories/ICreditAccountV3.sol/index.js +10 -0
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.d.ts +123 -124
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.js +130 -130
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.d.ts +20 -21
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.js +21 -21
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.d.ts +378 -379
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.js +420 -420
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.d.ts +120 -121
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.js +130 -130
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.d.ts +397 -398
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.js +423 -423
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.d.ts +109 -110
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.js +121 -121
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.d.ts +67 -68
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.js +68 -68
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.d.ts +25 -30
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.js +26 -31
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.d.ts +7 -8
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.js +8 -8
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.d.ts +603 -604
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.js +752 -752
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.d.ts +80 -86
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +88 -94
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +283 -351
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js +375 -460
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.d.ts +87 -84
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +96 -92
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.d.ts +13 -14
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.js +15 -15
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.d.ts +28 -29
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.js +29 -29
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.d.ts +254 -255
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.js +275 -275
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.d.ts +7 -8
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.js +8 -8
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.d.ts +400 -393
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.js +439 -429
- package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.d.ts +193 -194
- package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.js +194 -194
- package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.d.ts +193 -194
- package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.js +194 -194
- package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.d.ts +193 -194
- package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.js +194 -194
- package/lib/types/factories/ICurvePool__factory.d.ts +161 -162
- package/lib/types/factories/ICurvePool__factory.js +162 -162
- package/lib/types/factories/ICurveV1Adapter__factory.d.ts +173 -232
- package/lib/types/factories/ICurveV1Adapter__factory.js +174 -251
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.d.ts +191 -250
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.js +192 -269
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.d.ts +191 -250
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.js +192 -269
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.d.ts +191 -250
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.js +192 -269
- package/lib/types/factories/IDaiLikePermit__factory.d.ts +45 -0
- package/lib/types/factories/IDaiLikePermit__factory.js +67 -0
- package/lib/types/factories/{IDataCompressorV2_10__factory.d.ts → IDataCompressorV2_1__factory.d.ts} +349 -400
- package/lib/types/factories/{IDataCompressorV2_10__factory.js → IDataCompressorV2_1__factory.js} +352 -416
- package/lib/types/factories/{IDataCompressorV3_00__factory.d.ts → IDataCompressorV3__factory.d.ts} +655 -474
- package/lib/types/factories/{IDataCompressorV3_00__factory.js → IDataCompressorV3__factory.js} +730 -498
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +16 -17
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.js +17 -17
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +45 -46
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.js +54 -54
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.d.ts +37 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.js +58 -0
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.d.ts +23 -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} +249 -240
- package/lib/types/factories/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3__factory.js → IDegenNFTV2.sol/IDegenNFTV2__factory.js} +273 -256
- 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 +21 -0
- package/lib/types/factories/IERC165__factory.js +38 -0
- package/lib/types/factories/IERC20Metadata__factory.d.ts +78 -79
- package/lib/types/factories/IERC20Metadata__factory.js +89 -89
- package/lib/types/factories/IERC20Permit__factory.d.ts +18 -19
- package/lib/types/factories/IERC20Permit__factory.js +19 -19
- package/lib/types/factories/IERC20ZapperDeposits__factory.d.ts +119 -0
- package/lib/types/factories/IERC20ZapperDeposits__factory.js +165 -0
- package/lib/types/factories/IERC20__factory.d.ts +69 -70
- package/lib/types/factories/IERC20__factory.js +80 -80
- package/lib/types/factories/IERC4626Adapter__factory.d.ts +219 -0
- package/lib/types/factories/IERC4626Adapter__factory.js +297 -0
- package/lib/types/factories/IERC4626__factory.d.ts +200 -201
- package/lib/types/factories/IERC4626__factory.js +224 -224
- package/lib/types/factories/IERC721Metadata__factory.d.ts +261 -0
- package/lib/types/factories/IERC721Metadata__factory.js +349 -0
- package/lib/types/factories/IERC721__factory.d.ts +227 -0
- package/lib/types/factories/IERC721__factory.js +304 -0
- package/lib/types/factories/IETHZapperDeposits__factory.d.ts +39 -0
- package/lib/types/factories/IETHZapperDeposits__factory.js +62 -0
- package/lib/types/factories/IFarmingPool__factory.d.ts +298 -0
- package/lib/types/factories/IFarmingPool__factory.js +396 -0
- package/lib/types/factories/IGasPricer__factory.d.ts +21 -0
- package/lib/types/factories/IGasPricer__factory.js +38 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.d.ts +117 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.js +157 -0
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.d.ts +341 -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} +56 -87
- package/lib/types/factories/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events__factory.js → IGearStakingV3.sol/IGearStakingV3Events__factory.js} +61 -97
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.d.ts +503 -0
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.js +660 -0
- package/lib/types/factories/IGearStakingV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IGearStakingV3.sol/index.js +10 -0
- package/lib/types/factories/IInterestRateModel__factory.d.ts +10 -11
- package/lib/types/factories/IInterestRateModel__factory.js +11 -11
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +32 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +51 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +27 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +44 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +260 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.js +344 -0
- package/lib/types/factories/ILPPriceFeed.sol/index.d.ts +3 -0
- package/lib/types/factories/ILPPriceFeed.sol/index.js +12 -0
- package/lib/types/factories/{ILidoV1Adapter.sol/ILidoV1Adapter__factory.d.ts → ILidoV1Adapter__factory.d.ts} +46 -77
- package/lib/types/factories/{ILidoV1Adapter.sol/ILidoV1Adapter__factory.js → ILidoV1Adapter__factory.js} +48 -86
- package/lib/types/factories/ILinearInterestRateModelV3__factory.d.ts +97 -0
- package/lib/types/factories/ILinearInterestRateModelV3__factory.js +136 -0
- package/lib/types/factories/IOffchainOracle__factory.d.ts +13 -14
- package/lib/types/factories/IOffchainOracle__factory.js +14 -14
- package/lib/types/factories/IPartialLiquidationBotV3__factory.d.ts +216 -0
- package/lib/types/factories/IPartialLiquidationBotV3__factory.js +287 -0
- package/lib/types/factories/IPermit2__factory.d.ts +112 -0
- package/lib/types/factories/IPermit2__factory.js +155 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.d.ts +102 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.js +140 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.d.ts +440 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.js +580 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.js +10 -0
- package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.d.ts +68 -69
- package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.js +75 -75
- package/lib/types/factories/IPoolService.sol/IPoolService__factory.d.ts +237 -238
- package/lib/types/factories/IPoolService.sol/IPoolService__factory.js +289 -289
- package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.d.ts +67 -68
- package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.js +71 -71
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.d.ts +576 -577
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.js +701 -701
- package/lib/types/factories/IPriceFeed.sol/IPriceFeed__factory.d.ts +83 -0
- package/lib/types/factories/IPriceFeed.sol/IPriceFeed__factory.js +117 -0
- package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.d.ts +103 -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 +22 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Events__factory.js +38 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.d.ts +19 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.js +34 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Ext__factory.d.ts +196 -0
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Ext__factory.js +267 -0
- package/lib/types/factories/{IWETHZapper__factory.d.ts → IPriceOracle.sol/IPriceOracleV2__factory.d.ts} +115 -101
- package/lib/types/factories/{IWERC20Zapper__factory.js → IPriceOracle.sol/IPriceOracleV2__factory.js} +122 -113
- 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/IPriceOracleBase__factory.d.ts +29 -30
- package/lib/types/factories/IPriceOracleBase__factory.js +30 -30
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.d.ts +77 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.js +106 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.d.ts +325 -0
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.js +433 -0
- package/lib/types/factories/IPriceOracleV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IPriceOracleV3.sol/index.js +10 -0
- package/lib/types/factories/IRouterV3__factory.d.ts +511 -0
- package/lib/types/factories/IRouterV3__factory.js +676 -0
- package/lib/types/factories/IRouter__factory.d.ts +170 -157
- package/lib/types/factories/IRouter__factory.js +189 -170
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.d.ts +10 -11
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.js +12 -12
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.d.ts +4 -5
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.js +5 -5
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.d.ts +82 -79
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +90 -85
- package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.d.ts +52 -53
- package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.js +53 -53
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.d.ts +12 -13
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.js +14 -14
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.d.ts +4 -5
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.js +5 -5
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +144 -137
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +154 -144
- package/lib/types/factories/IVersion__factory.d.ts +5 -6
- package/lib/types/factories/IVersion__factory.js +6 -6
- package/lib/types/factories/IVotingContractV3__factory.d.ts +43 -0
- package/lib/types/factories/IVotingContractV3__factory.js +65 -0
- package/lib/types/factories/IWETHGateway__factory.d.ts +16 -17
- package/lib/types/factories/IWETHGateway__factory.js +17 -17
- package/lib/types/factories/IWETH__factory.d.ts +193 -0
- package/lib/types/factories/IWETH__factory.js +260 -0
- package/lib/types/factories/IYVault__factory.d.ts +114 -115
- package/lib/types/factories/IYVault__factory.js +125 -125
- package/lib/types/factories/IYearnV2Adapter__factory.d.ts +78 -71
- package/lib/types/factories/IYearnV2Adapter__factory.js +85 -73
- package/lib/types/factories/IZapperRegister__factory.d.ts +41 -0
- package/lib/types/factories/IZapperRegister__factory.js +64 -0
- package/lib/types/factories/IZapper__factory.d.ts +42 -51
- package/lib/types/factories/IZapper__factory.js +43 -53
- package/lib/types/factories/IstETH.sol/IstETHGetters__factory.d.ts +99 -100
- package/lib/types/factories/IstETH.sol/IstETHGetters__factory.js +110 -110
- package/lib/types/factories/IstETH.sol/IstETH__factory.d.ts +103 -104
- package/lib/types/factories/IstETH.sol/IstETH__factory.js +114 -114
- package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.d.ts +95 -96
- package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.js +106 -106
- package/lib/types/factories/IwstETH.sol/IwstETH__factory.d.ts +103 -104
- package/lib/types/factories/IwstETH.sol/IwstETH__factory.js +114 -114
- package/lib/types/factories/IwstETHGateway.sol/IwstETHGateWay__factory.d.ts +16 -17
- package/lib/types/factories/IwstETHGateway.sol/IwstETHGateWay__factory.js +18 -18
- package/lib/types/factories/IwstETHV1Adapter__factory.d.ts +54 -47
- package/lib/types/factories/IwstETHV1Adapter__factory.js +59 -47
- package/lib/types/factories/NumericArrayLib__factory.d.ts +26 -0
- package/lib/types/factories/NumericArrayLib__factory.js +44 -0
- package/lib/types/factories/Ownable__factory.d.ts +25 -26
- package/lib/types/factories/Ownable__factory.js +30 -30
- package/lib/types/factories/PartialLiquidationBotV3__factory.d.ts +285 -0
- package/lib/types/factories/PartialLiquidationBotV3__factory.js +376 -0
- package/lib/types/factories/RedstoneConstants__factory.d.ts +66 -0
- package/lib/types/factories/RedstoneConstants__factory.js +96 -0
- package/lib/types/factories/RedstoneConsumerBase__factory.d.ts +163 -0
- package/lib/types/factories/RedstoneConsumerBase__factory.js +223 -0
- package/lib/types/factories/RedstoneConsumerNumericBase__factory.d.ts +163 -0
- package/lib/types/factories/RedstoneConsumerNumericBase__factory.js +223 -0
- package/lib/types/factories/RedstoneDefaultsLib__factory.d.ts +46 -0
- package/lib/types/factories/RedstoneDefaultsLib__factory.js +71 -0
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedEvents__factory.d.ts +17 -0
- package/lib/types/factories/{ILidoV1Adapter.sol/ILidoV1AdapterEvents__factory.js → RedstonePriceFeed.sol/IRedstonePriceFeedEvents__factory.js} +11 -11
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions__factory.d.ts +27 -0
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions__factory.js +44 -0
- package/lib/types/factories/RedstonePriceFeed.sol/RedstonePriceFeed__factory.d.ts +444 -0
- package/lib/types/factories/RedstonePriceFeed.sol/RedstonePriceFeed__factory.js +586 -0
- package/lib/types/factories/RedstonePriceFeed.sol/index.d.ts +3 -0
- package/lib/types/factories/RedstonePriceFeed.sol/index.js +12 -0
- package/lib/types/factories/SafeERC20__factory.d.ts +50 -0
- package/lib/types/factories/SafeERC20__factory.js +74 -0
- package/lib/types/factories/index.d.ts +50 -7
- package/lib/types/factories/index.js +85 -14
- package/lib/types/index.d.ts +180 -24
- package/lib/types/index.js +147 -20
- package/lib/utils/calls.d.ts +7 -0
- package/lib/utils/{repeater.js → calls.js} +11 -1
- package/lib/utils/formatter.d.ts +1 -4
- package/lib/utils/formatter.js +3 -69
- 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 +16 -11
- package/contracts/IRouter.sol +0 -100
- package/lib/core/pool/index.d.ts +0 -1
- package/lib/core/strategy.spec.js +0 -62
- package/lib/types/IConvexV1BoosterAdapter.d.ts +0 -190
- package/lib/types/IDataCompressorV2_10.d.ts +0 -511
- package/lib/types/IDataCompressorV3_00.d.ts +0 -533
- package/lib/types/ILidoV1Adapter.sol/ILidoV1Adapter.d.ts +0 -193
- package/lib/types/ILidoV1Adapter.sol/ILidoV1AdapterEvents.d.ts +0 -39
- package/lib/types/ILidoV1Adapter.sol/ILidoV1AdapterExceptions.d.ts +0 -27
- package/lib/types/ILidoV1Adapter.sol/index.d.ts +0 -3
- package/lib/types/IWERC20Zapper.d.ts +0 -166
- package/lib/types/IWETHZapper.d.ts +0 -162
- 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/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/ILidoV1AdapterExceptions__factory.js +0 -24
- 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/utils/repeater.d.ts +0 -1
- package/lib/watchers/creditAccountWatcher.d.ts +0 -36
- package/lib/watchers/creditAccountWatcher.js +0 -238
- 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/{types/IConvexV1BoosterAdapter.js → pathfinder/v1/core.js} +0 -0
- /package/lib/{watchers/creditAccountWatcher.spec.d.ts → pathfinder/v1/pathfinderv1.spec.d.ts} +0 -0
- /package/lib/{types/IDataCompressorV2_10.js → payload/bot.js} +0 -0
- /package/lib/{types/IDataCompressorV3_00.js → payload/gauge.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1Adapter.js → CalldataExtractor.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1AdapterEvents.js → CompositePriceFeed.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1AdapterExceptions.js → ContractsRegisterTrait.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/index.js → ERC20.js} +0 -0
- /package/lib/types/{IWERC20Zapper.js → FarmAccounting.js} +0 -0
- /package/lib/types/{IWETHZapper.js → IAaveV2_LendingPoolAdapter.js} +0 -0
- /package/lib/types/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3.js → IAaveV2_WrappedATokenAdapter.js} +0 -0
- /package/lib/types/{IWithdrawalManagerV3.sol/IWithdrawalManagerV3Events.js → IBalancerV2Vault.sol/IBalancerV2Vault.js} +0 -0
- /package/lib/types/{IWithdrawalManagerV3.sol/index.js → IBalancerV2Vault.sol/IBalancerV2VaultGetters.js} +0 -0
|
@@ -1,678 +1,677 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
3
2
|
import type { ICurvePool2Assets, ICurvePool2AssetsInterface } from "../../ICurvePool_2.sol/ICurvePool2Assets";
|
|
4
3
|
export declare class ICurvePool2Assets__factory {
|
|
5
4
|
static readonly abi: readonly [{
|
|
6
|
-
readonly
|
|
5
|
+
readonly type: "function";
|
|
7
6
|
readonly name: "A";
|
|
7
|
+
readonly inputs: readonly [];
|
|
8
8
|
readonly outputs: readonly [{
|
|
9
|
-
readonly internalType: "uint256";
|
|
10
9
|
readonly name: "";
|
|
11
10
|
readonly type: "uint256";
|
|
11
|
+
readonly internalType: "uint256";
|
|
12
12
|
}];
|
|
13
13
|
readonly stateMutability: "view";
|
|
14
|
-
readonly type: "function";
|
|
15
14
|
}, {
|
|
16
|
-
readonly
|
|
15
|
+
readonly type: "function";
|
|
17
16
|
readonly name: "A_precise";
|
|
17
|
+
readonly inputs: readonly [];
|
|
18
18
|
readonly outputs: readonly [{
|
|
19
|
-
readonly internalType: "uint256";
|
|
20
19
|
readonly name: "";
|
|
21
20
|
readonly type: "uint256";
|
|
21
|
+
readonly internalType: "uint256";
|
|
22
22
|
}];
|
|
23
23
|
readonly stateMutability: "view";
|
|
24
|
-
readonly type: "function";
|
|
25
24
|
}, {
|
|
25
|
+
readonly type: "function";
|
|
26
|
+
readonly name: "add_liquidity";
|
|
26
27
|
readonly inputs: readonly [{
|
|
27
|
-
readonly internalType: "uint256[2]";
|
|
28
28
|
readonly name: "amounts";
|
|
29
29
|
readonly type: "uint256[2]";
|
|
30
|
+
readonly internalType: "uint256[2]";
|
|
30
31
|
}, {
|
|
31
|
-
readonly internalType: "uint256";
|
|
32
32
|
readonly name: "min_mint_amount";
|
|
33
33
|
readonly type: "uint256";
|
|
34
|
+
readonly internalType: "uint256";
|
|
34
35
|
}];
|
|
35
|
-
readonly name: "add_liquidity";
|
|
36
36
|
readonly outputs: readonly [];
|
|
37
37
|
readonly stateMutability: "nonpayable";
|
|
38
|
-
readonly type: "function";
|
|
39
38
|
}, {
|
|
40
|
-
readonly
|
|
39
|
+
readonly type: "function";
|
|
41
40
|
readonly name: "admin";
|
|
41
|
+
readonly inputs: readonly [];
|
|
42
42
|
readonly outputs: readonly [{
|
|
43
|
-
readonly internalType: "address";
|
|
44
43
|
readonly name: "";
|
|
45
44
|
readonly type: "address";
|
|
45
|
+
readonly internalType: "address";
|
|
46
46
|
}];
|
|
47
47
|
readonly stateMutability: "view";
|
|
48
|
-
readonly type: "function";
|
|
49
48
|
}, {
|
|
49
|
+
readonly type: "function";
|
|
50
|
+
readonly name: "admin_balances";
|
|
50
51
|
readonly inputs: readonly [{
|
|
51
|
-
readonly internalType: "uint256";
|
|
52
52
|
readonly name: "i";
|
|
53
53
|
readonly type: "uint256";
|
|
54
|
+
readonly internalType: "uint256";
|
|
54
55
|
}];
|
|
55
|
-
readonly name: "admin_balances";
|
|
56
56
|
readonly outputs: readonly [{
|
|
57
|
-
readonly internalType: "uint256";
|
|
58
57
|
readonly name: "";
|
|
59
58
|
readonly type: "uint256";
|
|
59
|
+
readonly internalType: "uint256";
|
|
60
60
|
}];
|
|
61
61
|
readonly stateMutability: "view";
|
|
62
|
-
readonly type: "function";
|
|
63
62
|
}, {
|
|
64
|
-
readonly
|
|
63
|
+
readonly type: "function";
|
|
65
64
|
readonly name: "admin_fee";
|
|
65
|
+
readonly inputs: readonly [];
|
|
66
66
|
readonly outputs: readonly [{
|
|
67
|
-
readonly internalType: "uint256";
|
|
68
67
|
readonly name: "";
|
|
69
68
|
readonly type: "uint256";
|
|
69
|
+
readonly internalType: "uint256";
|
|
70
70
|
}];
|
|
71
71
|
readonly stateMutability: "view";
|
|
72
|
-
readonly type: "function";
|
|
73
72
|
}, {
|
|
73
|
+
readonly type: "function";
|
|
74
|
+
readonly name: "allowance";
|
|
74
75
|
readonly inputs: readonly [{
|
|
75
|
-
readonly internalType: "address";
|
|
76
76
|
readonly name: "";
|
|
77
77
|
readonly type: "address";
|
|
78
|
-
}, {
|
|
79
78
|
readonly internalType: "address";
|
|
79
|
+
}, {
|
|
80
80
|
readonly name: "";
|
|
81
81
|
readonly type: "address";
|
|
82
|
+
readonly internalType: "address";
|
|
82
83
|
}];
|
|
83
|
-
readonly name: "allowance";
|
|
84
84
|
readonly outputs: readonly [{
|
|
85
|
-
readonly internalType: "uint256";
|
|
86
85
|
readonly name: "";
|
|
87
86
|
readonly type: "uint256";
|
|
87
|
+
readonly internalType: "uint256";
|
|
88
88
|
}];
|
|
89
89
|
readonly stateMutability: "view";
|
|
90
|
-
readonly type: "function";
|
|
91
90
|
}, {
|
|
91
|
+
readonly type: "function";
|
|
92
|
+
readonly name: "balanceOf";
|
|
92
93
|
readonly inputs: readonly [{
|
|
93
|
-
readonly internalType: "address";
|
|
94
94
|
readonly name: "";
|
|
95
95
|
readonly type: "address";
|
|
96
|
+
readonly internalType: "address";
|
|
96
97
|
}];
|
|
97
|
-
readonly name: "balanceOf";
|
|
98
98
|
readonly outputs: readonly [{
|
|
99
|
-
readonly internalType: "uint256";
|
|
100
99
|
readonly name: "";
|
|
101
100
|
readonly type: "uint256";
|
|
101
|
+
readonly internalType: "uint256";
|
|
102
102
|
}];
|
|
103
103
|
readonly stateMutability: "view";
|
|
104
|
-
readonly type: "function";
|
|
105
104
|
}, {
|
|
105
|
+
readonly type: "function";
|
|
106
|
+
readonly name: "balances";
|
|
106
107
|
readonly inputs: readonly [{
|
|
107
|
-
readonly internalType: "int128";
|
|
108
108
|
readonly name: "";
|
|
109
109
|
readonly type: "int128";
|
|
110
|
+
readonly internalType: "int128";
|
|
110
111
|
}];
|
|
111
|
-
readonly name: "balances";
|
|
112
112
|
readonly outputs: readonly [{
|
|
113
|
-
readonly internalType: "uint256";
|
|
114
113
|
readonly name: "";
|
|
115
114
|
readonly type: "uint256";
|
|
115
|
+
readonly internalType: "uint256";
|
|
116
116
|
}];
|
|
117
117
|
readonly stateMutability: "view";
|
|
118
|
-
readonly type: "function";
|
|
119
118
|
}, {
|
|
119
|
+
readonly type: "function";
|
|
120
|
+
readonly name: "balances";
|
|
120
121
|
readonly inputs: readonly [{
|
|
121
|
-
readonly internalType: "uint256";
|
|
122
122
|
readonly name: "i";
|
|
123
123
|
readonly type: "uint256";
|
|
124
|
+
readonly internalType: "uint256";
|
|
124
125
|
}];
|
|
125
|
-
readonly name: "balances";
|
|
126
126
|
readonly outputs: readonly [{
|
|
127
|
-
readonly internalType: "uint256";
|
|
128
127
|
readonly name: "";
|
|
129
128
|
readonly type: "uint256";
|
|
129
|
+
readonly internalType: "uint256";
|
|
130
130
|
}];
|
|
131
131
|
readonly stateMutability: "view";
|
|
132
|
-
readonly type: "function";
|
|
133
132
|
}, {
|
|
134
|
-
readonly
|
|
133
|
+
readonly type: "function";
|
|
135
134
|
readonly name: "block_timestamp_last";
|
|
135
|
+
readonly inputs: readonly [];
|
|
136
136
|
readonly outputs: readonly [{
|
|
137
|
-
readonly internalType: "uint256";
|
|
138
137
|
readonly name: "";
|
|
139
138
|
readonly type: "uint256";
|
|
139
|
+
readonly internalType: "uint256";
|
|
140
140
|
}];
|
|
141
141
|
readonly stateMutability: "view";
|
|
142
|
-
readonly type: "function";
|
|
143
142
|
}, {
|
|
143
|
+
readonly type: "function";
|
|
144
|
+
readonly name: "calc_token_amount";
|
|
144
145
|
readonly inputs: readonly [{
|
|
145
|
-
readonly internalType: "uint256[2]";
|
|
146
146
|
readonly name: "_amounts";
|
|
147
147
|
readonly type: "uint256[2]";
|
|
148
|
+
readonly internalType: "uint256[2]";
|
|
148
149
|
}, {
|
|
149
|
-
readonly internalType: "bool";
|
|
150
150
|
readonly name: "_is_deposit";
|
|
151
151
|
readonly type: "bool";
|
|
152
|
+
readonly internalType: "bool";
|
|
152
153
|
}];
|
|
153
|
-
readonly name: "calc_token_amount";
|
|
154
154
|
readonly outputs: readonly [{
|
|
155
|
-
readonly internalType: "uint256";
|
|
156
155
|
readonly name: "";
|
|
157
156
|
readonly type: "uint256";
|
|
157
|
+
readonly internalType: "uint256";
|
|
158
158
|
}];
|
|
159
159
|
readonly stateMutability: "view";
|
|
160
|
-
readonly type: "function";
|
|
161
160
|
}, {
|
|
161
|
+
readonly type: "function";
|
|
162
|
+
readonly name: "calc_withdraw_one_coin";
|
|
162
163
|
readonly inputs: readonly [{
|
|
163
|
-
readonly internalType: "uint256";
|
|
164
164
|
readonly name: "_burn_amount";
|
|
165
165
|
readonly type: "uint256";
|
|
166
|
-
}, {
|
|
167
166
|
readonly internalType: "uint256";
|
|
167
|
+
}, {
|
|
168
168
|
readonly name: "i";
|
|
169
169
|
readonly type: "uint256";
|
|
170
|
+
readonly internalType: "uint256";
|
|
170
171
|
}];
|
|
171
|
-
readonly name: "calc_withdraw_one_coin";
|
|
172
172
|
readonly outputs: readonly [{
|
|
173
|
-
readonly internalType: "uint256";
|
|
174
173
|
readonly name: "";
|
|
175
174
|
readonly type: "uint256";
|
|
175
|
+
readonly internalType: "uint256";
|
|
176
176
|
}];
|
|
177
177
|
readonly stateMutability: "view";
|
|
178
|
-
readonly type: "function";
|
|
179
178
|
}, {
|
|
179
|
+
readonly type: "function";
|
|
180
|
+
readonly name: "calc_withdraw_one_coin";
|
|
180
181
|
readonly inputs: readonly [{
|
|
181
|
-
readonly internalType: "uint256";
|
|
182
182
|
readonly name: "_burn_amount";
|
|
183
183
|
readonly type: "uint256";
|
|
184
|
+
readonly internalType: "uint256";
|
|
184
185
|
}, {
|
|
185
|
-
readonly internalType: "int128";
|
|
186
186
|
readonly name: "i";
|
|
187
187
|
readonly type: "int128";
|
|
188
|
+
readonly internalType: "int128";
|
|
188
189
|
}];
|
|
189
|
-
readonly name: "calc_withdraw_one_coin";
|
|
190
190
|
readonly outputs: readonly [{
|
|
191
|
-
readonly internalType: "uint256";
|
|
192
191
|
readonly name: "";
|
|
193
192
|
readonly type: "uint256";
|
|
193
|
+
readonly internalType: "uint256";
|
|
194
194
|
}];
|
|
195
195
|
readonly stateMutability: "view";
|
|
196
|
-
readonly type: "function";
|
|
197
196
|
}, {
|
|
197
|
+
readonly type: "function";
|
|
198
|
+
readonly name: "coins";
|
|
198
199
|
readonly inputs: readonly [{
|
|
199
|
-
readonly internalType: "int128";
|
|
200
200
|
readonly name: "";
|
|
201
201
|
readonly type: "int128";
|
|
202
|
+
readonly internalType: "int128";
|
|
202
203
|
}];
|
|
203
|
-
readonly name: "coins";
|
|
204
204
|
readonly outputs: readonly [{
|
|
205
|
-
readonly internalType: "address";
|
|
206
205
|
readonly name: "";
|
|
207
206
|
readonly type: "address";
|
|
207
|
+
readonly internalType: "address";
|
|
208
208
|
}];
|
|
209
209
|
readonly stateMutability: "view";
|
|
210
|
-
readonly type: "function";
|
|
211
210
|
}, {
|
|
211
|
+
readonly type: "function";
|
|
212
|
+
readonly name: "coins";
|
|
212
213
|
readonly inputs: readonly [{
|
|
213
|
-
readonly internalType: "uint256";
|
|
214
214
|
readonly name: "i";
|
|
215
215
|
readonly type: "uint256";
|
|
216
|
+
readonly internalType: "uint256";
|
|
216
217
|
}];
|
|
217
|
-
readonly name: "coins";
|
|
218
218
|
readonly outputs: readonly [{
|
|
219
|
-
readonly internalType: "address";
|
|
220
219
|
readonly name: "";
|
|
221
220
|
readonly type: "address";
|
|
221
|
+
readonly internalType: "address";
|
|
222
222
|
}];
|
|
223
223
|
readonly stateMutability: "view";
|
|
224
|
-
readonly type: "function";
|
|
225
224
|
}, {
|
|
226
|
-
readonly
|
|
225
|
+
readonly type: "function";
|
|
227
226
|
readonly name: "decimals";
|
|
227
|
+
readonly inputs: readonly [];
|
|
228
228
|
readonly outputs: readonly [{
|
|
229
|
-
readonly internalType: "uint256";
|
|
230
229
|
readonly name: "";
|
|
231
230
|
readonly type: "uint256";
|
|
231
|
+
readonly internalType: "uint256";
|
|
232
232
|
}];
|
|
233
233
|
readonly stateMutability: "view";
|
|
234
|
-
readonly type: "function";
|
|
235
234
|
}, {
|
|
235
|
+
readonly type: "function";
|
|
236
|
+
readonly name: "exchange";
|
|
236
237
|
readonly inputs: readonly [{
|
|
237
|
-
readonly internalType: "int128";
|
|
238
238
|
readonly name: "i";
|
|
239
239
|
readonly type: "int128";
|
|
240
|
-
}, {
|
|
241
240
|
readonly internalType: "int128";
|
|
241
|
+
}, {
|
|
242
242
|
readonly name: "j";
|
|
243
243
|
readonly type: "int128";
|
|
244
|
+
readonly internalType: "int128";
|
|
244
245
|
}, {
|
|
245
|
-
readonly internalType: "uint256";
|
|
246
246
|
readonly name: "dx";
|
|
247
247
|
readonly type: "uint256";
|
|
248
|
-
}, {
|
|
249
248
|
readonly internalType: "uint256";
|
|
249
|
+
}, {
|
|
250
250
|
readonly name: "min_dy";
|
|
251
251
|
readonly type: "uint256";
|
|
252
|
+
readonly internalType: "uint256";
|
|
252
253
|
}];
|
|
253
|
-
readonly name: "exchange";
|
|
254
254
|
readonly outputs: readonly [];
|
|
255
255
|
readonly stateMutability: "nonpayable";
|
|
256
|
-
readonly type: "function";
|
|
257
256
|
}, {
|
|
257
|
+
readonly type: "function";
|
|
258
|
+
readonly name: "exchange";
|
|
258
259
|
readonly inputs: readonly [{
|
|
259
|
-
readonly internalType: "uint256";
|
|
260
260
|
readonly name: "i";
|
|
261
261
|
readonly type: "uint256";
|
|
262
|
-
}, {
|
|
263
262
|
readonly internalType: "uint256";
|
|
263
|
+
}, {
|
|
264
264
|
readonly name: "j";
|
|
265
265
|
readonly type: "uint256";
|
|
266
|
-
}, {
|
|
267
266
|
readonly internalType: "uint256";
|
|
267
|
+
}, {
|
|
268
268
|
readonly name: "dx";
|
|
269
269
|
readonly type: "uint256";
|
|
270
|
-
}, {
|
|
271
270
|
readonly internalType: "uint256";
|
|
271
|
+
}, {
|
|
272
272
|
readonly name: "min_dy";
|
|
273
273
|
readonly type: "uint256";
|
|
274
|
+
readonly internalType: "uint256";
|
|
274
275
|
}];
|
|
275
|
-
readonly name: "exchange";
|
|
276
276
|
readonly outputs: readonly [];
|
|
277
277
|
readonly stateMutability: "nonpayable";
|
|
278
|
-
readonly type: "function";
|
|
279
278
|
}, {
|
|
279
|
+
readonly type: "function";
|
|
280
|
+
readonly name: "exchange_underlying";
|
|
280
281
|
readonly inputs: readonly [{
|
|
281
|
-
readonly internalType: "uint256";
|
|
282
282
|
readonly name: "i";
|
|
283
283
|
readonly type: "uint256";
|
|
284
|
-
}, {
|
|
285
284
|
readonly internalType: "uint256";
|
|
285
|
+
}, {
|
|
286
286
|
readonly name: "j";
|
|
287
287
|
readonly type: "uint256";
|
|
288
|
-
}, {
|
|
289
288
|
readonly internalType: "uint256";
|
|
289
|
+
}, {
|
|
290
290
|
readonly name: "dx";
|
|
291
291
|
readonly type: "uint256";
|
|
292
|
-
}, {
|
|
293
292
|
readonly internalType: "uint256";
|
|
293
|
+
}, {
|
|
294
294
|
readonly name: "min_dy";
|
|
295
295
|
readonly type: "uint256";
|
|
296
|
+
readonly internalType: "uint256";
|
|
296
297
|
}];
|
|
297
|
-
readonly name: "exchange_underlying";
|
|
298
298
|
readonly outputs: readonly [];
|
|
299
299
|
readonly stateMutability: "nonpayable";
|
|
300
|
-
readonly type: "function";
|
|
301
300
|
}, {
|
|
301
|
+
readonly type: "function";
|
|
302
|
+
readonly name: "exchange_underlying";
|
|
302
303
|
readonly inputs: readonly [{
|
|
303
|
-
readonly internalType: "int128";
|
|
304
304
|
readonly name: "i";
|
|
305
305
|
readonly type: "int128";
|
|
306
|
-
}, {
|
|
307
306
|
readonly internalType: "int128";
|
|
307
|
+
}, {
|
|
308
308
|
readonly name: "j";
|
|
309
309
|
readonly type: "int128";
|
|
310
|
+
readonly internalType: "int128";
|
|
310
311
|
}, {
|
|
311
|
-
readonly internalType: "uint256";
|
|
312
312
|
readonly name: "dx";
|
|
313
313
|
readonly type: "uint256";
|
|
314
|
-
}, {
|
|
315
314
|
readonly internalType: "uint256";
|
|
315
|
+
}, {
|
|
316
316
|
readonly name: "min_dy";
|
|
317
317
|
readonly type: "uint256";
|
|
318
|
+
readonly internalType: "uint256";
|
|
318
319
|
}];
|
|
319
|
-
readonly name: "exchange_underlying";
|
|
320
320
|
readonly outputs: readonly [];
|
|
321
321
|
readonly stateMutability: "nonpayable";
|
|
322
|
-
readonly type: "function";
|
|
323
322
|
}, {
|
|
324
|
-
readonly
|
|
323
|
+
readonly type: "function";
|
|
325
324
|
readonly name: "fee";
|
|
325
|
+
readonly inputs: readonly [];
|
|
326
326
|
readonly outputs: readonly [{
|
|
327
|
-
readonly internalType: "uint256";
|
|
328
327
|
readonly name: "";
|
|
329
328
|
readonly type: "uint256";
|
|
329
|
+
readonly internalType: "uint256";
|
|
330
330
|
}];
|
|
331
331
|
readonly stateMutability: "view";
|
|
332
|
-
readonly type: "function";
|
|
333
332
|
}, {
|
|
334
|
-
readonly
|
|
333
|
+
readonly type: "function";
|
|
335
334
|
readonly name: "future_A";
|
|
335
|
+
readonly inputs: readonly [];
|
|
336
336
|
readonly outputs: readonly [{
|
|
337
|
-
readonly internalType: "uint256";
|
|
338
337
|
readonly name: "";
|
|
339
338
|
readonly type: "uint256";
|
|
339
|
+
readonly internalType: "uint256";
|
|
340
340
|
}];
|
|
341
341
|
readonly stateMutability: "view";
|
|
342
|
-
readonly type: "function";
|
|
343
342
|
}, {
|
|
344
|
-
readonly
|
|
343
|
+
readonly type: "function";
|
|
345
344
|
readonly name: "future_A_time";
|
|
345
|
+
readonly inputs: readonly [];
|
|
346
346
|
readonly outputs: readonly [{
|
|
347
|
-
readonly internalType: "uint256";
|
|
348
347
|
readonly name: "";
|
|
349
348
|
readonly type: "uint256";
|
|
349
|
+
readonly internalType: "uint256";
|
|
350
350
|
}];
|
|
351
351
|
readonly stateMutability: "view";
|
|
352
|
-
readonly type: "function";
|
|
353
352
|
}, {
|
|
354
|
-
readonly
|
|
353
|
+
readonly type: "function";
|
|
355
354
|
readonly name: "get_balances";
|
|
355
|
+
readonly inputs: readonly [];
|
|
356
356
|
readonly outputs: readonly [{
|
|
357
|
-
readonly internalType: "uint256[2]";
|
|
358
357
|
readonly name: "";
|
|
359
358
|
readonly type: "uint256[2]";
|
|
359
|
+
readonly internalType: "uint256[2]";
|
|
360
360
|
}];
|
|
361
361
|
readonly stateMutability: "view";
|
|
362
|
-
readonly type: "function";
|
|
363
362
|
}, {
|
|
363
|
+
readonly type: "function";
|
|
364
|
+
readonly name: "get_dy";
|
|
364
365
|
readonly inputs: readonly [{
|
|
365
|
-
readonly internalType: "uint256";
|
|
366
366
|
readonly name: "i";
|
|
367
367
|
readonly type: "uint256";
|
|
368
|
-
}, {
|
|
369
368
|
readonly internalType: "uint256";
|
|
369
|
+
}, {
|
|
370
370
|
readonly name: "j";
|
|
371
371
|
readonly type: "uint256";
|
|
372
|
-
}, {
|
|
373
372
|
readonly internalType: "uint256";
|
|
373
|
+
}, {
|
|
374
374
|
readonly name: "dx";
|
|
375
375
|
readonly type: "uint256";
|
|
376
|
+
readonly internalType: "uint256";
|
|
376
377
|
}];
|
|
377
|
-
readonly name: "get_dy";
|
|
378
378
|
readonly outputs: readonly [{
|
|
379
|
-
readonly internalType: "uint256";
|
|
380
379
|
readonly name: "";
|
|
381
380
|
readonly type: "uint256";
|
|
381
|
+
readonly internalType: "uint256";
|
|
382
382
|
}];
|
|
383
383
|
readonly stateMutability: "view";
|
|
384
|
-
readonly type: "function";
|
|
385
384
|
}, {
|
|
385
|
+
readonly type: "function";
|
|
386
|
+
readonly name: "get_dy";
|
|
386
387
|
readonly inputs: readonly [{
|
|
387
|
-
readonly internalType: "int128";
|
|
388
388
|
readonly name: "i";
|
|
389
389
|
readonly type: "int128";
|
|
390
|
-
}, {
|
|
391
390
|
readonly internalType: "int128";
|
|
391
|
+
}, {
|
|
392
392
|
readonly name: "j";
|
|
393
393
|
readonly type: "int128";
|
|
394
|
+
readonly internalType: "int128";
|
|
394
395
|
}, {
|
|
395
|
-
readonly internalType: "uint256";
|
|
396
396
|
readonly name: "dx";
|
|
397
397
|
readonly type: "uint256";
|
|
398
|
+
readonly internalType: "uint256";
|
|
398
399
|
}];
|
|
399
|
-
readonly name: "get_dy";
|
|
400
400
|
readonly outputs: readonly [{
|
|
401
|
-
readonly internalType: "uint256";
|
|
402
401
|
readonly name: "";
|
|
403
402
|
readonly type: "uint256";
|
|
403
|
+
readonly internalType: "uint256";
|
|
404
404
|
}];
|
|
405
405
|
readonly stateMutability: "view";
|
|
406
|
-
readonly type: "function";
|
|
407
406
|
}, {
|
|
407
|
+
readonly type: "function";
|
|
408
|
+
readonly name: "get_dy_underlying";
|
|
408
409
|
readonly inputs: readonly [{
|
|
409
|
-
readonly internalType: "int128";
|
|
410
410
|
readonly name: "i";
|
|
411
411
|
readonly type: "int128";
|
|
412
|
-
}, {
|
|
413
412
|
readonly internalType: "int128";
|
|
413
|
+
}, {
|
|
414
414
|
readonly name: "j";
|
|
415
415
|
readonly type: "int128";
|
|
416
|
+
readonly internalType: "int128";
|
|
416
417
|
}, {
|
|
417
|
-
readonly internalType: "uint256";
|
|
418
418
|
readonly name: "dx";
|
|
419
419
|
readonly type: "uint256";
|
|
420
|
+
readonly internalType: "uint256";
|
|
420
421
|
}];
|
|
421
|
-
readonly name: "get_dy_underlying";
|
|
422
422
|
readonly outputs: readonly [{
|
|
423
|
-
readonly internalType: "uint256";
|
|
424
423
|
readonly name: "";
|
|
425
424
|
readonly type: "uint256";
|
|
425
|
+
readonly internalType: "uint256";
|
|
426
426
|
}];
|
|
427
427
|
readonly stateMutability: "view";
|
|
428
|
-
readonly type: "function";
|
|
429
428
|
}, {
|
|
429
|
+
readonly type: "function";
|
|
430
|
+
readonly name: "get_dy_underlying";
|
|
430
431
|
readonly inputs: readonly [{
|
|
431
|
-
readonly internalType: "uint256";
|
|
432
432
|
readonly name: "i";
|
|
433
433
|
readonly type: "uint256";
|
|
434
|
-
}, {
|
|
435
434
|
readonly internalType: "uint256";
|
|
435
|
+
}, {
|
|
436
436
|
readonly name: "j";
|
|
437
437
|
readonly type: "uint256";
|
|
438
|
-
}, {
|
|
439
438
|
readonly internalType: "uint256";
|
|
439
|
+
}, {
|
|
440
440
|
readonly name: "dx";
|
|
441
441
|
readonly type: "uint256";
|
|
442
|
+
readonly internalType: "uint256";
|
|
442
443
|
}];
|
|
443
|
-
readonly name: "get_dy_underlying";
|
|
444
444
|
readonly outputs: readonly [{
|
|
445
|
-
readonly internalType: "uint256";
|
|
446
445
|
readonly name: "";
|
|
447
446
|
readonly type: "uint256";
|
|
447
|
+
readonly internalType: "uint256";
|
|
448
448
|
}];
|
|
449
449
|
readonly stateMutability: "view";
|
|
450
|
-
readonly type: "function";
|
|
451
450
|
}, {
|
|
452
|
-
readonly
|
|
451
|
+
readonly type: "function";
|
|
453
452
|
readonly name: "get_previous_balances";
|
|
453
|
+
readonly inputs: readonly [];
|
|
454
454
|
readonly outputs: readonly [{
|
|
455
|
-
readonly internalType: "uint256[2]";
|
|
456
455
|
readonly name: "";
|
|
457
456
|
readonly type: "uint256[2]";
|
|
457
|
+
readonly internalType: "uint256[2]";
|
|
458
458
|
}];
|
|
459
459
|
readonly stateMutability: "view";
|
|
460
|
-
readonly type: "function";
|
|
461
460
|
}, {
|
|
462
|
-
readonly
|
|
461
|
+
readonly type: "function";
|
|
463
462
|
readonly name: "get_price_cumulative_last";
|
|
463
|
+
readonly inputs: readonly [];
|
|
464
464
|
readonly outputs: readonly [{
|
|
465
|
-
readonly internalType: "uint256[2]";
|
|
466
465
|
readonly name: "";
|
|
467
466
|
readonly type: "uint256[2]";
|
|
467
|
+
readonly internalType: "uint256[2]";
|
|
468
468
|
}];
|
|
469
469
|
readonly stateMutability: "view";
|
|
470
|
-
readonly type: "function";
|
|
471
470
|
}, {
|
|
471
|
+
readonly type: "function";
|
|
472
|
+
readonly name: "get_twap_balances";
|
|
472
473
|
readonly inputs: readonly [{
|
|
473
|
-
readonly internalType: "uint256[2]";
|
|
474
474
|
readonly name: "_first_balances";
|
|
475
475
|
readonly type: "uint256[2]";
|
|
476
|
-
}, {
|
|
477
476
|
readonly internalType: "uint256[2]";
|
|
477
|
+
}, {
|
|
478
478
|
readonly name: "_last_balances";
|
|
479
479
|
readonly type: "uint256[2]";
|
|
480
|
+
readonly internalType: "uint256[2]";
|
|
480
481
|
}, {
|
|
481
|
-
readonly internalType: "uint256";
|
|
482
482
|
readonly name: "_time_elapsed";
|
|
483
483
|
readonly type: "uint256";
|
|
484
|
+
readonly internalType: "uint256";
|
|
484
485
|
}];
|
|
485
|
-
readonly name: "get_twap_balances";
|
|
486
486
|
readonly outputs: readonly [{
|
|
487
|
-
readonly internalType: "uint256[2]";
|
|
488
487
|
readonly name: "";
|
|
489
488
|
readonly type: "uint256[2]";
|
|
489
|
+
readonly internalType: "uint256[2]";
|
|
490
490
|
}];
|
|
491
491
|
readonly stateMutability: "view";
|
|
492
|
-
readonly type: "function";
|
|
493
492
|
}, {
|
|
494
|
-
readonly
|
|
493
|
+
readonly type: "function";
|
|
495
494
|
readonly name: "get_virtual_price";
|
|
495
|
+
readonly inputs: readonly [];
|
|
496
496
|
readonly outputs: readonly [{
|
|
497
|
-
readonly internalType: "uint256";
|
|
498
497
|
readonly name: "";
|
|
499
498
|
readonly type: "uint256";
|
|
499
|
+
readonly internalType: "uint256";
|
|
500
500
|
}];
|
|
501
501
|
readonly stateMutability: "view";
|
|
502
|
-
readonly type: "function";
|
|
503
502
|
}, {
|
|
504
|
-
readonly
|
|
503
|
+
readonly type: "function";
|
|
505
504
|
readonly name: "initial_A";
|
|
505
|
+
readonly inputs: readonly [];
|
|
506
506
|
readonly outputs: readonly [{
|
|
507
|
-
readonly internalType: "uint256";
|
|
508
507
|
readonly name: "";
|
|
509
508
|
readonly type: "uint256";
|
|
509
|
+
readonly internalType: "uint256";
|
|
510
510
|
}];
|
|
511
511
|
readonly stateMutability: "view";
|
|
512
|
-
readonly type: "function";
|
|
513
512
|
}, {
|
|
514
|
-
readonly
|
|
513
|
+
readonly type: "function";
|
|
515
514
|
readonly name: "initial_A_time";
|
|
515
|
+
readonly inputs: readonly [];
|
|
516
516
|
readonly outputs: readonly [{
|
|
517
|
-
readonly internalType: "uint256";
|
|
518
517
|
readonly name: "";
|
|
519
518
|
readonly type: "uint256";
|
|
519
|
+
readonly internalType: "uint256";
|
|
520
520
|
}];
|
|
521
521
|
readonly stateMutability: "view";
|
|
522
|
-
readonly type: "function";
|
|
523
522
|
}, {
|
|
524
|
-
readonly
|
|
523
|
+
readonly type: "function";
|
|
525
524
|
readonly name: "mid_fee";
|
|
525
|
+
readonly inputs: readonly [];
|
|
526
526
|
readonly outputs: readonly [{
|
|
527
|
-
readonly internalType: "uint256";
|
|
528
527
|
readonly name: "";
|
|
529
528
|
readonly type: "uint256";
|
|
529
|
+
readonly internalType: "uint256";
|
|
530
530
|
}];
|
|
531
531
|
readonly stateMutability: "view";
|
|
532
|
-
readonly type: "function";
|
|
533
532
|
}, {
|
|
534
|
-
readonly
|
|
533
|
+
readonly type: "function";
|
|
535
534
|
readonly name: "name";
|
|
535
|
+
readonly inputs: readonly [];
|
|
536
536
|
readonly outputs: readonly [{
|
|
537
|
-
readonly internalType: "string";
|
|
538
537
|
readonly name: "";
|
|
539
538
|
readonly type: "string";
|
|
539
|
+
readonly internalType: "string";
|
|
540
540
|
}];
|
|
541
541
|
readonly stateMutability: "view";
|
|
542
|
-
readonly type: "function";
|
|
543
542
|
}, {
|
|
543
|
+
readonly type: "function";
|
|
544
|
+
readonly name: "remove_liquidity";
|
|
544
545
|
readonly inputs: readonly [{
|
|
545
|
-
readonly internalType: "uint256";
|
|
546
546
|
readonly name: "_amount";
|
|
547
547
|
readonly type: "uint256";
|
|
548
|
+
readonly internalType: "uint256";
|
|
548
549
|
}, {
|
|
549
|
-
readonly internalType: "uint256[2]";
|
|
550
550
|
readonly name: "min_amounts";
|
|
551
551
|
readonly type: "uint256[2]";
|
|
552
|
+
readonly internalType: "uint256[2]";
|
|
552
553
|
}];
|
|
553
|
-
readonly name: "remove_liquidity";
|
|
554
554
|
readonly outputs: readonly [];
|
|
555
555
|
readonly stateMutability: "nonpayable";
|
|
556
|
-
readonly type: "function";
|
|
557
556
|
}, {
|
|
557
|
+
readonly type: "function";
|
|
558
|
+
readonly name: "remove_liquidity_imbalance";
|
|
558
559
|
readonly inputs: readonly [{
|
|
559
|
-
readonly internalType: "uint256[2]";
|
|
560
560
|
readonly name: "amounts";
|
|
561
561
|
readonly type: "uint256[2]";
|
|
562
|
+
readonly internalType: "uint256[2]";
|
|
562
563
|
}, {
|
|
563
|
-
readonly internalType: "uint256";
|
|
564
564
|
readonly name: "max_burn_amount";
|
|
565
565
|
readonly type: "uint256";
|
|
566
|
+
readonly internalType: "uint256";
|
|
566
567
|
}];
|
|
567
|
-
readonly name: "remove_liquidity_imbalance";
|
|
568
568
|
readonly outputs: readonly [];
|
|
569
569
|
readonly stateMutability: "nonpayable";
|
|
570
|
-
readonly type: "function";
|
|
571
570
|
}, {
|
|
571
|
+
readonly type: "function";
|
|
572
|
+
readonly name: "remove_liquidity_one_coin";
|
|
572
573
|
readonly inputs: readonly [{
|
|
573
|
-
readonly internalType: "uint256";
|
|
574
574
|
readonly name: "_token_amount";
|
|
575
575
|
readonly type: "uint256";
|
|
576
|
+
readonly internalType: "uint256";
|
|
576
577
|
}, {
|
|
577
|
-
readonly internalType: "int128";
|
|
578
578
|
readonly name: "i";
|
|
579
579
|
readonly type: "int128";
|
|
580
|
+
readonly internalType: "int128";
|
|
580
581
|
}, {
|
|
581
|
-
readonly internalType: "uint256";
|
|
582
582
|
readonly name: "min_amount";
|
|
583
583
|
readonly type: "uint256";
|
|
584
|
+
readonly internalType: "uint256";
|
|
584
585
|
}];
|
|
585
|
-
readonly name: "remove_liquidity_one_coin";
|
|
586
586
|
readonly outputs: readonly [];
|
|
587
587
|
readonly stateMutability: "nonpayable";
|
|
588
|
-
readonly type: "function";
|
|
589
588
|
}, {
|
|
589
|
+
readonly type: "function";
|
|
590
|
+
readonly name: "remove_liquidity_one_coin";
|
|
590
591
|
readonly inputs: readonly [{
|
|
591
|
-
readonly internalType: "uint256";
|
|
592
592
|
readonly name: "_token_amount";
|
|
593
593
|
readonly type: "uint256";
|
|
594
|
-
}, {
|
|
595
594
|
readonly internalType: "uint256";
|
|
595
|
+
}, {
|
|
596
596
|
readonly name: "i";
|
|
597
597
|
readonly type: "uint256";
|
|
598
|
-
}, {
|
|
599
598
|
readonly internalType: "uint256";
|
|
599
|
+
}, {
|
|
600
600
|
readonly name: "min_amount";
|
|
601
601
|
readonly type: "uint256";
|
|
602
|
+
readonly internalType: "uint256";
|
|
602
603
|
}];
|
|
603
|
-
readonly name: "remove_liquidity_one_coin";
|
|
604
604
|
readonly outputs: readonly [];
|
|
605
605
|
readonly stateMutability: "nonpayable";
|
|
606
|
-
readonly type: "function";
|
|
607
606
|
}, {
|
|
608
|
-
readonly
|
|
607
|
+
readonly type: "function";
|
|
609
608
|
readonly name: "symbol";
|
|
609
|
+
readonly inputs: readonly [];
|
|
610
610
|
readonly outputs: readonly [{
|
|
611
|
-
readonly internalType: "string";
|
|
612
611
|
readonly name: "";
|
|
613
612
|
readonly type: "string";
|
|
613
|
+
readonly internalType: "string";
|
|
614
614
|
}];
|
|
615
615
|
readonly stateMutability: "view";
|
|
616
|
-
readonly type: "function";
|
|
617
616
|
}, {
|
|
618
|
-
readonly
|
|
617
|
+
readonly type: "function";
|
|
619
618
|
readonly name: "token";
|
|
619
|
+
readonly inputs: readonly [];
|
|
620
620
|
readonly outputs: readonly [{
|
|
621
|
-
readonly internalType: "address";
|
|
622
621
|
readonly name: "";
|
|
623
622
|
readonly type: "address";
|
|
623
|
+
readonly internalType: "address";
|
|
624
624
|
}];
|
|
625
625
|
readonly stateMutability: "view";
|
|
626
|
-
readonly type: "function";
|
|
627
626
|
}, {
|
|
628
|
-
readonly
|
|
627
|
+
readonly type: "function";
|
|
629
628
|
readonly name: "totalSupply";
|
|
629
|
+
readonly inputs: readonly [];
|
|
630
630
|
readonly outputs: readonly [{
|
|
631
|
-
readonly internalType: "uint256";
|
|
632
631
|
readonly name: "";
|
|
633
632
|
readonly type: "uint256";
|
|
633
|
+
readonly internalType: "uint256";
|
|
634
634
|
}];
|
|
635
635
|
readonly stateMutability: "view";
|
|
636
|
-
readonly type: "function";
|
|
637
636
|
}, {
|
|
637
|
+
readonly type: "function";
|
|
638
|
+
readonly name: "underlying_coins";
|
|
638
639
|
readonly inputs: readonly [{
|
|
639
|
-
readonly internalType: "int128";
|
|
640
640
|
readonly name: "";
|
|
641
641
|
readonly type: "int128";
|
|
642
|
+
readonly internalType: "int128";
|
|
642
643
|
}];
|
|
643
|
-
readonly name: "underlying_coins";
|
|
644
644
|
readonly outputs: readonly [{
|
|
645
|
-
readonly internalType: "address";
|
|
646
645
|
readonly name: "";
|
|
647
646
|
readonly type: "address";
|
|
647
|
+
readonly internalType: "address";
|
|
648
648
|
}];
|
|
649
649
|
readonly stateMutability: "view";
|
|
650
|
-
readonly type: "function";
|
|
651
650
|
}, {
|
|
651
|
+
readonly type: "function";
|
|
652
|
+
readonly name: "underlying_coins";
|
|
652
653
|
readonly inputs: readonly [{
|
|
653
|
-
readonly internalType: "uint256";
|
|
654
654
|
readonly name: "i";
|
|
655
655
|
readonly type: "uint256";
|
|
656
|
+
readonly internalType: "uint256";
|
|
656
657
|
}];
|
|
657
|
-
readonly name: "underlying_coins";
|
|
658
658
|
readonly outputs: readonly [{
|
|
659
|
-
readonly internalType: "address";
|
|
660
659
|
readonly name: "";
|
|
661
660
|
readonly type: "address";
|
|
661
|
+
readonly internalType: "address";
|
|
662
662
|
}];
|
|
663
663
|
readonly stateMutability: "view";
|
|
664
|
-
readonly type: "function";
|
|
665
664
|
}, {
|
|
666
|
-
readonly
|
|
665
|
+
readonly type: "function";
|
|
667
666
|
readonly name: "virtual_price";
|
|
667
|
+
readonly inputs: readonly [];
|
|
668
668
|
readonly outputs: readonly [{
|
|
669
|
-
readonly internalType: "uint256";
|
|
670
669
|
readonly name: "";
|
|
671
670
|
readonly type: "uint256";
|
|
671
|
+
readonly internalType: "uint256";
|
|
672
672
|
}];
|
|
673
673
|
readonly stateMutability: "view";
|
|
674
|
-
readonly type: "function";
|
|
675
674
|
}];
|
|
676
675
|
static createInterface(): ICurvePool2AssetsInterface;
|
|
677
|
-
static connect(address: string,
|
|
676
|
+
static connect(address: string, runner?: ContractRunner | null): ICurvePool2Assets;
|
|
678
677
|
}
|