@gearbox-protocol/sdk 3.0.0-next.7 → 3.0.0-next.71
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 +29 -4
- package/lib/apy/curveAPY.js +2 -1
- package/lib/apy/index.d.ts +2 -2
- package/lib/apy/yearnAPY.js +1 -1
- 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 +12 -3
- package/lib/core/creditManager.js +43 -10
- 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} +17 -10
- package/lib/core/{pool/data.js → pool.js} +66 -24
- package/lib/core/strategy.d.ts +4 -3
- package/lib/core/strategy.js +15 -14
- package/lib/core/strategy.spec.js +68 -3
- package/lib/core/trade.d.ts +12 -29
- 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 +40 -5
- package/lib/parsers/creditFacadeParser.spec.js +3 -4
- 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 +1 -1
- 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 +8 -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 +38 -10
- package/lib/pathfinder/pathfinder.js +53 -34
- 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/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/IBotListV3.sol/IBotListV3.d.ts +286 -0
- package/lib/types/IBotListV3.sol/IBotListV3Events.d.ts +103 -0
- package/lib/types/IBotListV3.sol/index.d.ts +2 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.d.ts +216 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.d.ts +27 -0
- package/lib/types/ICompoundV2_CTokenAdapter.sol/index.d.ts +2 -0
- package/lib/types/IContractsRegister.sol/IContractsRegister.d.ts +128 -0
- package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.d.ts +50 -0
- package/lib/types/IContractsRegister.sol/index.d.ts +2 -0
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3.d.ts +504 -0
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3Events.d.ts +82 -0
- package/lib/types/IControllerTimelockV3.sol/index.d.ts +2 -0
- package/lib/types/IConvexToken.d.ts +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/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/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.d.ts +716 -0
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.js +2 -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/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/ILPPriceFeed.sol/ILPPriceFeed.d.ts +285 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.js +2 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.d.ts +54 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.js +2 -0
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +27 -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.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/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/IYearnV2Adapter.d.ts +22 -22
- package/lib/types/IZapper.d.ts +125 -0
- package/lib/types/IZapper.js +2 -0
- package/lib/types/IZapperRegister.d.ts +62 -0
- package/lib/types/IZapperRegister.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/Claimable__factory.d.ts +1 -1
- package/lib/types/factories/Claimable__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/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.d.ts +78 -0
- package/lib/types/factories/{ZapperBase__factory.js → IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.js} +54 -31
- 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/IBotListV3.sol/IBotListV3Events__factory.d.ts +103 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.js +138 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.d.ts +315 -0
- package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.js +416 -0
- package/lib/types/factories/IBotListV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IBotListV3.sol/index.js +10 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.d.ts +196 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.js +267 -0
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.d.ts +16 -0
- package/lib/types/factories/{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/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.d.ts +73 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.js +101 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.d.ts +427 -0
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.js +556 -0
- package/lib/types/factories/IControllerTimelockV3.sol/index.d.ts +2 -0
- package/lib/types/factories/IControllerTimelockV3.sol/index.js +10 -0
- package/lib/types/factories/IConvexToken__factory.d.ts +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/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/{AaveV2_WrappedAToken.sol/IWrappedATokenEvents__factory.js → IETHZapperDeposits__factory.js} +18 -25
- 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/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +33 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +51 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +24 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +39 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +257 -0
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.js +339 -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} +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/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/IYearnV2Adapter__factory.d.ts +21 -13
- package/lib/types/factories/IYearnV2Adapter__factory.js +27 -15
- package/lib/types/factories/IZapperRegister__factory.d.ts +42 -0
- package/lib/types/factories/IZapperRegister__factory.js +64 -0
- 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/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 +32 -14
- package/lib/types/factories/index.js +49 -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 +141 -46
- package/lib/types/index.js +109 -38
- 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/ZapperBase__factory.d.ts +0 -60
- 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 → IBalancerV2Vault.sol/IBalancerV2Vault.js} +0 -0
- /package/lib/types/{IAToken.js → IBalancerV2Vault.sol/IBalancerV2VaultGetters.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol → IBalancerV2Vault.sol}/index.js +0 -0
- /package/lib/types/{IConvexV1BoosterAdapter.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.js} +0 -0
- /package/lib/types/{ILendingPool.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1Adapter.js → IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.js} +0 -0
- /package/lib/types/{IWithdrawalManagerV3.sol → IBalancerV2VaultAdapter.sol}/index.js +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1AdapterEvents.js → IBotListV3.sol/IBotListV3.js} +0 -0
- /package/lib/types/{ILidoV1Adapter.sol/ILidoV1AdapterExceptions.js → IBotListV3.sol/IBotListV3Events.js} +0 -0
- /package/lib/types/{draft-IERC20Permit.sol → IBotListV3.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 → IControllerTimelockV3.sol/IControllerTimelockV3.js} +0 -0
- /package/lib/types/{WstETHZapper.js → IControllerTimelockV3.sol/IControllerTimelockV3Events.js} +0 -0
- /package/lib/types/{ZapperBase.js → IControllerTimelockV3.sol/index.js} +0 -0
- /package/lib/types/{draft-IERC20Permit.sol/IERC20Permit.js → IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.js} +0 -0
- /package/lib/types/factories/{draft-IERC20Permit.sol/IERC20Permit__factory.js → IERC20Permit__factory.js} +0 -0
|
@@ -3,21 +3,28 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.IDegenNFTV2__factory = void 0;
|
|
7
7
|
const ethers_1 = require("ethers");
|
|
8
8
|
const _abi = [
|
|
9
9
|
{
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
10
|
+
inputs: [],
|
|
11
|
+
name: "CreditFacadeOrConfiguratorOnlyException",
|
|
12
|
+
type: "error",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
inputs: [],
|
|
16
|
+
name: "InsufficientBalanceException",
|
|
17
|
+
type: "error",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
inputs: [],
|
|
21
|
+
name: "InvalidCreditFacadeException",
|
|
22
|
+
type: "error",
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
inputs: [],
|
|
26
|
+
name: "MinterOnlyException",
|
|
27
|
+
type: "error",
|
|
21
28
|
},
|
|
22
29
|
{
|
|
23
30
|
anonymous: false,
|
|
@@ -25,23 +32,23 @@ const _abi = [
|
|
|
25
32
|
{
|
|
26
33
|
indexed: true,
|
|
27
34
|
internalType: "address",
|
|
28
|
-
name: "
|
|
35
|
+
name: "owner",
|
|
29
36
|
type: "address",
|
|
30
37
|
},
|
|
31
38
|
{
|
|
32
39
|
indexed: true,
|
|
33
40
|
internalType: "address",
|
|
34
|
-
name: "
|
|
41
|
+
name: "approved",
|
|
35
42
|
type: "address",
|
|
36
43
|
},
|
|
37
44
|
{
|
|
38
|
-
indexed:
|
|
45
|
+
indexed: true,
|
|
39
46
|
internalType: "uint256",
|
|
40
|
-
name: "
|
|
47
|
+
name: "tokenId",
|
|
41
48
|
type: "uint256",
|
|
42
49
|
},
|
|
43
50
|
],
|
|
44
|
-
name: "
|
|
51
|
+
name: "Approval",
|
|
45
52
|
type: "event",
|
|
46
53
|
},
|
|
47
54
|
{
|
|
@@ -50,29 +57,23 @@ const _abi = [
|
|
|
50
57
|
{
|
|
51
58
|
indexed: true,
|
|
52
59
|
internalType: "address",
|
|
53
|
-
name: "
|
|
60
|
+
name: "owner",
|
|
54
61
|
type: "address",
|
|
55
62
|
},
|
|
56
63
|
{
|
|
57
64
|
indexed: true,
|
|
58
65
|
internalType: "address",
|
|
59
|
-
name: "
|
|
66
|
+
name: "operator",
|
|
60
67
|
type: "address",
|
|
61
68
|
},
|
|
62
69
|
{
|
|
63
70
|
indexed: false,
|
|
64
|
-
internalType: "
|
|
65
|
-
name: "
|
|
66
|
-
type: "
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
indexed: false,
|
|
70
|
-
internalType: "uint40",
|
|
71
|
-
name: "maturity",
|
|
72
|
-
type: "uint40",
|
|
71
|
+
internalType: "bool",
|
|
72
|
+
name: "approved",
|
|
73
|
+
type: "bool",
|
|
73
74
|
},
|
|
74
75
|
],
|
|
75
|
-
name: "
|
|
76
|
+
name: "ApprovalForAll",
|
|
76
77
|
type: "event",
|
|
77
78
|
},
|
|
78
79
|
{
|
|
@@ -81,23 +82,24 @@ const _abi = [
|
|
|
81
82
|
{
|
|
82
83
|
indexed: true,
|
|
83
84
|
internalType: "address",
|
|
84
|
-
name: "
|
|
85
|
+
name: "",
|
|
85
86
|
type: "address",
|
|
86
87
|
},
|
|
88
|
+
],
|
|
89
|
+
name: "NewCreditFacadeAdded",
|
|
90
|
+
type: "event",
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
anonymous: false,
|
|
94
|
+
inputs: [
|
|
87
95
|
{
|
|
88
96
|
indexed: true,
|
|
89
97
|
internalType: "address",
|
|
90
|
-
name: "
|
|
98
|
+
name: "",
|
|
91
99
|
type: "address",
|
|
92
100
|
},
|
|
93
|
-
{
|
|
94
|
-
indexed: false,
|
|
95
|
-
internalType: "uint256",
|
|
96
|
-
name: "amount",
|
|
97
|
-
type: "uint256",
|
|
98
|
-
},
|
|
99
101
|
],
|
|
100
|
-
name: "
|
|
102
|
+
name: "NewCreditFacadeRemoved",
|
|
101
103
|
type: "event",
|
|
102
104
|
},
|
|
103
105
|
{
|
|
@@ -106,84 +108,102 @@ const _abi = [
|
|
|
106
108
|
{
|
|
107
109
|
indexed: true,
|
|
108
110
|
internalType: "address",
|
|
109
|
-
name: "
|
|
111
|
+
name: "",
|
|
110
112
|
type: "address",
|
|
111
113
|
},
|
|
114
|
+
],
|
|
115
|
+
name: "NewMinterSet",
|
|
116
|
+
type: "event",
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
anonymous: false,
|
|
120
|
+
inputs: [
|
|
112
121
|
{
|
|
113
122
|
indexed: true,
|
|
114
123
|
internalType: "address",
|
|
115
|
-
name: "
|
|
124
|
+
name: "from",
|
|
116
125
|
type: "address",
|
|
117
126
|
},
|
|
118
127
|
{
|
|
119
|
-
indexed:
|
|
128
|
+
indexed: true,
|
|
120
129
|
internalType: "address",
|
|
121
130
|
name: "to",
|
|
122
131
|
type: "address",
|
|
123
132
|
},
|
|
124
133
|
{
|
|
125
|
-
indexed:
|
|
134
|
+
indexed: true,
|
|
126
135
|
internalType: "uint256",
|
|
127
|
-
name: "
|
|
136
|
+
name: "tokenId",
|
|
128
137
|
type: "uint256",
|
|
129
138
|
},
|
|
130
139
|
],
|
|
131
|
-
name: "
|
|
140
|
+
name: "Transfer",
|
|
132
141
|
type: "event",
|
|
133
142
|
},
|
|
134
143
|
{
|
|
135
|
-
anonymous: false,
|
|
136
144
|
inputs: [
|
|
137
145
|
{
|
|
138
|
-
indexed: true,
|
|
139
146
|
internalType: "address",
|
|
140
|
-
name: "
|
|
147
|
+
name: "to",
|
|
141
148
|
type: "address",
|
|
142
149
|
},
|
|
143
150
|
{
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
type: "address",
|
|
151
|
+
internalType: "uint256",
|
|
152
|
+
name: "tokenId",
|
|
153
|
+
type: "uint256",
|
|
148
154
|
},
|
|
155
|
+
],
|
|
156
|
+
name: "approve",
|
|
157
|
+
outputs: [],
|
|
158
|
+
stateMutability: "nonpayable",
|
|
159
|
+
type: "function",
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
inputs: [
|
|
149
163
|
{
|
|
150
|
-
indexed: false,
|
|
151
164
|
internalType: "address",
|
|
152
|
-
name: "
|
|
165
|
+
name: "owner",
|
|
153
166
|
type: "address",
|
|
154
167
|
},
|
|
168
|
+
],
|
|
169
|
+
name: "balanceOf",
|
|
170
|
+
outputs: [
|
|
155
171
|
{
|
|
156
|
-
indexed: false,
|
|
157
172
|
internalType: "uint256",
|
|
158
|
-
name: "
|
|
173
|
+
name: "balance",
|
|
159
174
|
type: "uint256",
|
|
160
175
|
},
|
|
161
176
|
],
|
|
162
|
-
|
|
163
|
-
type: "
|
|
177
|
+
stateMutability: "view",
|
|
178
|
+
type: "function",
|
|
164
179
|
},
|
|
165
180
|
{
|
|
166
|
-
|
|
167
|
-
|
|
181
|
+
inputs: [],
|
|
182
|
+
name: "baseURI",
|
|
183
|
+
outputs: [
|
|
168
184
|
{
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
type: "uint40",
|
|
185
|
+
internalType: "string",
|
|
186
|
+
name: "",
|
|
187
|
+
type: "string",
|
|
173
188
|
},
|
|
174
189
|
],
|
|
175
|
-
|
|
176
|
-
type: "
|
|
190
|
+
stateMutability: "view",
|
|
191
|
+
type: "function",
|
|
177
192
|
},
|
|
178
193
|
{
|
|
179
194
|
inputs: [
|
|
180
195
|
{
|
|
181
196
|
internalType: "address",
|
|
182
|
-
name: "
|
|
197
|
+
name: "from",
|
|
183
198
|
type: "address",
|
|
184
199
|
},
|
|
200
|
+
{
|
|
201
|
+
internalType: "uint256",
|
|
202
|
+
name: "amount",
|
|
203
|
+
type: "uint256",
|
|
204
|
+
},
|
|
185
205
|
],
|
|
186
|
-
name: "
|
|
206
|
+
name: "burn",
|
|
187
207
|
outputs: [],
|
|
188
208
|
stateMutability: "nonpayable",
|
|
189
209
|
type: "function",
|
|
@@ -191,36 +211,51 @@ const _abi = [
|
|
|
191
211
|
{
|
|
192
212
|
inputs: [
|
|
193
213
|
{
|
|
194
|
-
internalType: "
|
|
195
|
-
name: "
|
|
196
|
-
type: "
|
|
214
|
+
internalType: "uint256",
|
|
215
|
+
name: "tokenId",
|
|
216
|
+
type: "uint256",
|
|
197
217
|
},
|
|
218
|
+
],
|
|
219
|
+
name: "getApproved",
|
|
220
|
+
outputs: [
|
|
198
221
|
{
|
|
199
222
|
internalType: "address",
|
|
200
|
-
name: "
|
|
223
|
+
name: "operator",
|
|
201
224
|
type: "address",
|
|
202
225
|
},
|
|
203
|
-
{
|
|
204
|
-
internalType: "uint256",
|
|
205
|
-
name: "amount",
|
|
206
|
-
type: "uint256",
|
|
207
|
-
},
|
|
208
226
|
],
|
|
209
|
-
|
|
210
|
-
outputs: [],
|
|
211
|
-
stateMutability: "nonpayable",
|
|
227
|
+
stateMutability: "view",
|
|
212
228
|
type: "function",
|
|
213
229
|
},
|
|
214
230
|
{
|
|
215
231
|
inputs: [
|
|
216
232
|
{
|
|
217
233
|
internalType: "address",
|
|
218
|
-
name: "
|
|
234
|
+
name: "owner",
|
|
235
|
+
type: "address",
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
internalType: "address",
|
|
239
|
+
name: "operator",
|
|
219
240
|
type: "address",
|
|
220
241
|
},
|
|
242
|
+
],
|
|
243
|
+
name: "isApprovedForAll",
|
|
244
|
+
outputs: [
|
|
245
|
+
{
|
|
246
|
+
internalType: "bool",
|
|
247
|
+
name: "",
|
|
248
|
+
type: "bool",
|
|
249
|
+
},
|
|
250
|
+
],
|
|
251
|
+
stateMutability: "view",
|
|
252
|
+
type: "function",
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
inputs: [
|
|
221
256
|
{
|
|
222
257
|
internalType: "address",
|
|
223
|
-
name: "
|
|
258
|
+
name: "to",
|
|
224
259
|
type: "address",
|
|
225
260
|
},
|
|
226
261
|
{
|
|
@@ -228,61 +263,85 @@ const _abi = [
|
|
|
228
263
|
name: "amount",
|
|
229
264
|
type: "uint256",
|
|
230
265
|
},
|
|
231
|
-
{
|
|
232
|
-
internalType: "uint8",
|
|
233
|
-
name: "tokenIndex",
|
|
234
|
-
type: "uint8",
|
|
235
|
-
},
|
|
236
266
|
],
|
|
237
|
-
name: "
|
|
267
|
+
name: "mint",
|
|
238
268
|
outputs: [],
|
|
239
269
|
stateMutability: "nonpayable",
|
|
240
270
|
type: "function",
|
|
241
271
|
},
|
|
242
272
|
{
|
|
243
|
-
inputs: [
|
|
273
|
+
inputs: [],
|
|
274
|
+
name: "minter",
|
|
275
|
+
outputs: [
|
|
244
276
|
{
|
|
245
277
|
internalType: "address",
|
|
246
|
-
name: "
|
|
278
|
+
name: "",
|
|
247
279
|
type: "address",
|
|
248
280
|
},
|
|
281
|
+
],
|
|
282
|
+
stateMutability: "view",
|
|
283
|
+
type: "function",
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
inputs: [],
|
|
287
|
+
name: "name",
|
|
288
|
+
outputs: [
|
|
249
289
|
{
|
|
250
|
-
internalType: "
|
|
251
|
-
name: "
|
|
252
|
-
type: "
|
|
290
|
+
internalType: "string",
|
|
291
|
+
name: "",
|
|
292
|
+
type: "string",
|
|
293
|
+
},
|
|
294
|
+
],
|
|
295
|
+
stateMutability: "view",
|
|
296
|
+
type: "function",
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
inputs: [
|
|
300
|
+
{
|
|
301
|
+
internalType: "uint256",
|
|
302
|
+
name: "tokenId",
|
|
303
|
+
type: "uint256",
|
|
253
304
|
},
|
|
254
305
|
],
|
|
255
|
-
name: "
|
|
306
|
+
name: "ownerOf",
|
|
256
307
|
outputs: [
|
|
257
308
|
{
|
|
258
309
|
internalType: "address",
|
|
259
|
-
name: "
|
|
310
|
+
name: "owner",
|
|
260
311
|
type: "address",
|
|
261
312
|
},
|
|
313
|
+
],
|
|
314
|
+
stateMutability: "view",
|
|
315
|
+
type: "function",
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
inputs: [
|
|
262
319
|
{
|
|
263
|
-
internalType: "
|
|
264
|
-
name: "
|
|
265
|
-
type: "
|
|
320
|
+
internalType: "address",
|
|
321
|
+
name: "from",
|
|
322
|
+
type: "address",
|
|
266
323
|
},
|
|
267
324
|
{
|
|
268
325
|
internalType: "address",
|
|
269
|
-
name: "
|
|
326
|
+
name: "to",
|
|
270
327
|
type: "address",
|
|
271
328
|
},
|
|
272
329
|
{
|
|
273
330
|
internalType: "uint256",
|
|
274
|
-
name: "
|
|
331
|
+
name: "tokenId",
|
|
275
332
|
type: "uint256",
|
|
276
333
|
},
|
|
277
334
|
],
|
|
278
|
-
|
|
335
|
+
name: "safeTransferFrom",
|
|
336
|
+
outputs: [],
|
|
337
|
+
stateMutability: "nonpayable",
|
|
279
338
|
type: "function",
|
|
280
339
|
},
|
|
281
340
|
{
|
|
282
341
|
inputs: [
|
|
283
342
|
{
|
|
284
343
|
internalType: "address",
|
|
285
|
-
name: "
|
|
344
|
+
name: "from",
|
|
286
345
|
type: "address",
|
|
287
346
|
},
|
|
288
347
|
{
|
|
@@ -290,8 +349,18 @@ const _abi = [
|
|
|
290
349
|
name: "to",
|
|
291
350
|
type: "address",
|
|
292
351
|
},
|
|
352
|
+
{
|
|
353
|
+
internalType: "uint256",
|
|
354
|
+
name: "tokenId",
|
|
355
|
+
type: "uint256",
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
internalType: "bytes",
|
|
359
|
+
name: "data",
|
|
360
|
+
type: "bytes",
|
|
361
|
+
},
|
|
293
362
|
],
|
|
294
|
-
name: "
|
|
363
|
+
name: "safeTransferFrom",
|
|
295
364
|
outputs: [],
|
|
296
365
|
stateMutability: "nonpayable",
|
|
297
366
|
type: "function",
|
|
@@ -300,44 +369,47 @@ const _abi = [
|
|
|
300
369
|
inputs: [
|
|
301
370
|
{
|
|
302
371
|
internalType: "address",
|
|
303
|
-
name: "
|
|
372
|
+
name: "operator",
|
|
304
373
|
type: "address",
|
|
305
374
|
},
|
|
306
375
|
{
|
|
307
|
-
internalType: "
|
|
308
|
-
name: "
|
|
309
|
-
type: "
|
|
376
|
+
internalType: "bool",
|
|
377
|
+
name: "approved",
|
|
378
|
+
type: "bool",
|
|
310
379
|
},
|
|
380
|
+
],
|
|
381
|
+
name: "setApprovalForAll",
|
|
382
|
+
outputs: [],
|
|
383
|
+
stateMutability: "nonpayable",
|
|
384
|
+
type: "function",
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
inputs: [
|
|
311
388
|
{
|
|
312
|
-
internalType: "
|
|
313
|
-
name: "
|
|
314
|
-
type: "
|
|
389
|
+
internalType: "bytes4",
|
|
390
|
+
name: "interfaceId",
|
|
391
|
+
type: "bytes4",
|
|
315
392
|
},
|
|
316
393
|
],
|
|
317
|
-
name: "
|
|
394
|
+
name: "supportsInterface",
|
|
318
395
|
outputs: [
|
|
319
396
|
{
|
|
320
397
|
internalType: "bool",
|
|
321
|
-
name: "
|
|
398
|
+
name: "",
|
|
322
399
|
type: "bool",
|
|
323
400
|
},
|
|
324
|
-
{
|
|
325
|
-
internalType: "uint256",
|
|
326
|
-
name: "tokensToEnable",
|
|
327
|
-
type: "uint256",
|
|
328
|
-
},
|
|
329
401
|
],
|
|
330
|
-
stateMutability: "
|
|
402
|
+
stateMutability: "view",
|
|
331
403
|
type: "function",
|
|
332
404
|
},
|
|
333
405
|
{
|
|
334
406
|
inputs: [],
|
|
335
|
-
name: "
|
|
407
|
+
name: "symbol",
|
|
336
408
|
outputs: [
|
|
337
409
|
{
|
|
338
|
-
internalType: "
|
|
410
|
+
internalType: "string",
|
|
339
411
|
name: "",
|
|
340
|
-
type: "
|
|
412
|
+
type: "string",
|
|
341
413
|
},
|
|
342
414
|
],
|
|
343
415
|
stateMutability: "view",
|
|
@@ -346,41 +418,30 @@ const _abi = [
|
|
|
346
418
|
{
|
|
347
419
|
inputs: [
|
|
348
420
|
{
|
|
349
|
-
internalType: "
|
|
350
|
-
name: "
|
|
351
|
-
type: "
|
|
352
|
-
},
|
|
353
|
-
{
|
|
354
|
-
internalType: "address",
|
|
355
|
-
name: "token",
|
|
356
|
-
type: "address",
|
|
421
|
+
internalType: "uint256",
|
|
422
|
+
name: "tokenId",
|
|
423
|
+
type: "uint256",
|
|
357
424
|
},
|
|
358
425
|
],
|
|
359
|
-
name: "
|
|
426
|
+
name: "tokenURI",
|
|
360
427
|
outputs: [
|
|
361
428
|
{
|
|
362
|
-
internalType: "
|
|
429
|
+
internalType: "string",
|
|
363
430
|
name: "",
|
|
364
|
-
type: "
|
|
431
|
+
type: "string",
|
|
365
432
|
},
|
|
366
433
|
],
|
|
367
434
|
stateMutability: "view",
|
|
368
435
|
type: "function",
|
|
369
436
|
},
|
|
370
437
|
{
|
|
371
|
-
inputs: [
|
|
372
|
-
|
|
373
|
-
internalType: "address",
|
|
374
|
-
name: "addr",
|
|
375
|
-
type: "address",
|
|
376
|
-
},
|
|
377
|
-
],
|
|
378
|
-
name: "isValidCreditManager",
|
|
438
|
+
inputs: [],
|
|
439
|
+
name: "totalSupply",
|
|
379
440
|
outputs: [
|
|
380
441
|
{
|
|
381
|
-
internalType: "
|
|
442
|
+
internalType: "uint256",
|
|
382
443
|
name: "",
|
|
383
|
-
type: "
|
|
444
|
+
type: "uint256",
|
|
384
445
|
},
|
|
385
446
|
],
|
|
386
447
|
stateMutability: "view",
|
|
@@ -390,52 +451,21 @@ const _abi = [
|
|
|
390
451
|
inputs: [
|
|
391
452
|
{
|
|
392
453
|
internalType: "address",
|
|
393
|
-
name: "
|
|
454
|
+
name: "from",
|
|
394
455
|
type: "address",
|
|
395
456
|
},
|
|
396
|
-
],
|
|
397
|
-
name: "scheduledWithdrawals",
|
|
398
|
-
outputs: [
|
|
399
457
|
{
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
name: "tokenIndex",
|
|
404
|
-
type: "uint8",
|
|
405
|
-
},
|
|
406
|
-
{
|
|
407
|
-
internalType: "uint40",
|
|
408
|
-
name: "maturity",
|
|
409
|
-
type: "uint40",
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
internalType: "address",
|
|
413
|
-
name: "token",
|
|
414
|
-
type: "address",
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
internalType: "uint256",
|
|
418
|
-
name: "amount",
|
|
419
|
-
type: "uint256",
|
|
420
|
-
},
|
|
421
|
-
],
|
|
422
|
-
internalType: "struct ScheduledWithdrawal[2]",
|
|
423
|
-
name: "withdrawals",
|
|
424
|
-
type: "tuple[2]",
|
|
458
|
+
internalType: "address",
|
|
459
|
+
name: "to",
|
|
460
|
+
type: "address",
|
|
425
461
|
},
|
|
426
|
-
],
|
|
427
|
-
stateMutability: "view",
|
|
428
|
-
type: "function",
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
inputs: [
|
|
432
462
|
{
|
|
433
|
-
internalType: "
|
|
434
|
-
name: "
|
|
435
|
-
type: "
|
|
463
|
+
internalType: "uint256",
|
|
464
|
+
name: "tokenId",
|
|
465
|
+
type: "uint256",
|
|
436
466
|
},
|
|
437
467
|
],
|
|
438
|
-
name: "
|
|
468
|
+
name: "transferFrom",
|
|
439
469
|
outputs: [],
|
|
440
470
|
stateMutability: "nonpayable",
|
|
441
471
|
type: "function",
|
|
@@ -453,21 +483,8 @@ const _abi = [
|
|
|
453
483
|
stateMutability: "view",
|
|
454
484
|
type: "function",
|
|
455
485
|
},
|
|
456
|
-
{
|
|
457
|
-
inputs: [],
|
|
458
|
-
name: "weth",
|
|
459
|
-
outputs: [
|
|
460
|
-
{
|
|
461
|
-
internalType: "address",
|
|
462
|
-
name: "",
|
|
463
|
-
type: "address",
|
|
464
|
-
},
|
|
465
|
-
],
|
|
466
|
-
stateMutability: "view",
|
|
467
|
-
type: "function",
|
|
468
|
-
},
|
|
469
486
|
];
|
|
470
|
-
class
|
|
487
|
+
class IDegenNFTV2__factory {
|
|
471
488
|
static abi = _abi;
|
|
472
489
|
static createInterface() {
|
|
473
490
|
return new ethers_1.utils.Interface(_abi);
|
|
@@ -476,4 +493,4 @@ class IWithdrawalManagerV3__factory {
|
|
|
476
493
|
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
477
494
|
}
|
|
478
495
|
}
|
|
479
|
-
exports.
|
|
496
|
+
exports.IDegenNFTV2__factory = IDegenNFTV2__factory;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IDegenNFTV2Exceptions__factory = exports.IDegenNFTV2Events__factory = exports.IDegenNFTV2__factory = void 0;
|
|
4
|
+
/* Autogenerated file. Do not edit manually. */
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
var IDegenNFTV2__factory_1 = require("./IDegenNFTV2__factory");
|
|
8
|
+
Object.defineProperty(exports, "IDegenNFTV2__factory", { enumerable: true, get: function () { return IDegenNFTV2__factory_1.IDegenNFTV2__factory; } });
|
|
9
|
+
var IDegenNFTV2Events__factory_1 = require("./IDegenNFTV2Events__factory");
|
|
10
|
+
Object.defineProperty(exports, "IDegenNFTV2Events__factory", { enumerable: true, get: function () { return IDegenNFTV2Events__factory_1.IDegenNFTV2Events__factory; } });
|
|
11
|
+
var IDegenNFTV2Exceptions__factory_1 = require("./IDegenNFTV2Exceptions__factory");
|
|
12
|
+
Object.defineProperty(exports, "IDegenNFTV2Exceptions__factory", { enumerable: true, get: function () { return IDegenNFTV2Exceptions__factory_1.IDegenNFTV2Exceptions__factory; } });
|