@gearbox-protocol/sdk 3.0.0-next.204 → 3.0.0-next.206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/contracts/SignUpRepository.sol +85 -0
- package/contracts/index.sol +2 -0
- package/lib/apy/auraAbi.d.ts +15 -17
- package/lib/apy/auraAbi.js +1 -3
- package/lib/apy/convexAPY.d.ts +1186 -10
- package/lib/apy/convexAPY.js +35 -29
- package/lib/apy/curveAPY.d.ts +9 -8
- package/lib/contracts/contractsRegister.d.ts +6 -5
- package/lib/contracts/contractsRegister.js +1 -1
- package/lib/core/assets.d.ts +10 -9
- package/lib/core/bot.d.ts +2 -1
- package/lib/core/creditAccount.d.ts +46 -45
- package/lib/core/creditAccount.js +4 -3
- package/lib/core/creditManager.d.ts +29 -35
- package/lib/core/creditManager.js +66 -59
- package/lib/core/creditSession.d.ts +14 -13
- package/lib/core/eventOrTx.d.ts +3 -2
- package/lib/core/events.d.ts +163 -162
- package/lib/core/gauge.d.ts +19 -5
- package/lib/core/gauge.js +9 -8
- package/lib/core/gaugeMath.d.ts +4 -3
- package/lib/core/pool.d.ts +37 -25
- package/lib/core/pool.js +18 -18
- package/lib/core/priceOracle.d.ts +1 -1
- package/lib/core/rewardClaimer.d.ts +4 -4
- package/lib/core/rewardConvex.d.ts +13 -11
- package/lib/core/rewardConvex.js +26 -16
- package/lib/core/rewardConvex.spec.js +12 -6
- package/lib/core/strategy.d.ts +5 -4
- package/lib/core/trade.d.ts +7 -6
- package/lib/core/transactions.d.ts +78 -77
- package/lib/gearboxRewards/api.d.ts +30 -27
- package/lib/gearboxRewards/api.js +91 -57
- package/lib/gearboxRewards/apy.d.ts +7 -6
- package/lib/gearboxRewards/extraAPY.d.ts +8 -7
- package/lib/gearboxRewards/merklAPI.d.ts +1 -1
- package/lib/index.d.ts +0 -2
- package/lib/index.js +0 -4
- package/lib/parsers/ERC20Parser.d.ts +2 -1
- package/lib/parsers/ERC20Parser.js +7 -7
- package/lib/parsers/aaveV2LendingPoolAdapterParser.d.ts +2 -1
- package/lib/parsers/aaveV2LendingPoolAdapterParser.js +4 -4
- package/lib/parsers/aaveV2WrappedATokenAdapterParser.d.ts +2 -1
- package/lib/parsers/aaveV2WrappedATokenAdapterParser.js +4 -4
- package/lib/parsers/abstractParser.d.ts +21 -17
- package/lib/parsers/abstractParser.js +22 -17
- package/lib/parsers/balancerV2VaultParser.d.ts +2 -1
- package/lib/parsers/balancerV2VaultParser.js +6 -8
- package/lib/parsers/compoundV2CTokenAdapterParser.d.ts +2 -1
- package/lib/parsers/compoundV2CTokenAdapterParser.js +4 -4
- package/lib/parsers/convexBaseRewardPoolAdapterParser.d.ts +3 -2
- package/lib/parsers/convexBaseRewardPoolAdapterParser.js +8 -8
- package/lib/parsers/convexBoosterAdapterParser.d.ts +3 -3
- package/lib/parsers/convexBoosterAdapterParser.js +8 -8
- package/lib/parsers/convextRewardPoolParser.d.ts +2 -1
- package/lib/parsers/convextRewardPoolParser.js +4 -4
- package/lib/parsers/creditFacadeParser.d.ts +3 -2
- package/lib/parsers/creditFacadeParser.js +15 -17
- package/lib/parsers/creditManagerParser.d.ts +2 -1
- package/lib/parsers/creditManagerParser.js +4 -7
- package/lib/parsers/curveAdapterParser.d.ts +3 -2
- package/lib/parsers/curveAdapterParser.js +21 -21
- package/lib/parsers/erc626AdapterParser.d.ts +2 -1
- package/lib/parsers/erc626AdapterParser.js +4 -4
- package/lib/parsers/iParser.d.ts +4 -7
- package/lib/parsers/lidoAdapterParser.d.ts +2 -1
- package/lib/parsers/lidoAdapterParser.js +6 -6
- package/lib/parsers/lidoSTETHParser.d.ts +2 -1
- package/lib/parsers/lidoSTETHParser.js +7 -7
- package/lib/parsers/priceOracleParser.d.ts +2 -1
- package/lib/parsers/priceOracleParser.js +5 -5
- package/lib/parsers/txParser.d.ts +15 -24
- package/lib/parsers/txParser.js +2 -10
- package/lib/parsers/uniV2AdapterParser.d.ts +2 -2
- package/lib/parsers/uniV2AdapterParser.js +7 -10
- package/lib/parsers/uniV2AdapterParser.spec.js +42 -30
- package/lib/parsers/uniV3AdapterParser.d.ts +4 -3
- package/lib/parsers/uniV3AdapterParser.js +16 -10
- package/lib/parsers/uniV3AdapterParser.spec.js +52 -76
- package/lib/parsers/wstETHAdapterParser.d.ts +2 -1
- package/lib/parsers/wstETHAdapterParser.js +11 -13
- package/lib/parsers/wstETHAdapterParser.spec.js +21 -5
- package/lib/parsers/yearnAdapterParser.spec.js +37 -19
- package/lib/parsers/yearnV2AdapterParser.d.ts +2 -1
- package/lib/parsers/yearnV2AdapterParser.js +9 -9
- package/lib/pathfinder/core.d.ts +21 -9
- package/lib/pathfinder/pathOptions.d.ts +5 -4
- package/lib/pathfinder/pathfinder.d.ts +18 -19
- package/lib/pathfinder/pathfinder.js +42 -32
- package/lib/pathfinder/pathfinder.spec.js +3 -3
- package/lib/pathfinder/utils.d.ts +15 -16
- package/lib/pathfinder/utils.js +29 -24
- package/lib/payload/bot.d.ts +6 -6
- package/lib/payload/creditAccount.d.ts +48 -5
- package/lib/payload/creditManager.d.ts +55 -17
- package/lib/payload/creditSession.d.ts +18 -17
- package/lib/payload/gauge.d.ts +38 -9
- package/lib/payload/pool.d.ts +78 -21
- package/lib/payload/token.d.ts +2 -1
- package/lib/redstone/api.d.ts +10 -10
- package/lib/redstone/api.js +114 -94
- package/lib/tokens/tokenData.d.ts +2 -1
- package/lib/types/CompositePriceFeed.d.ts +182 -90
- package/lib/types/CompositePriceFeed.js +121 -0
- package/lib/types/IAaveV2_LendingPoolAdapter.d.ts +151 -127
- package/lib/types/IAaveV2_LendingPoolAdapter.js +96 -0
- package/lib/types/IAaveV2_WrappedATokenAdapter.d.ts +245 -205
- package/lib/types/IAaveV2_WrappedATokenAdapter.js +164 -0
- package/lib/types/IAddressProviderV3.d.ts +85 -0
- package/lib/types/IAddressProviderV3.js +66 -0
- package/lib/types/IAirdropDistributor.d.ts +112 -0
- package/lib/types/{factories/IAirdropDistributor.sol/IAirdropDistributor__factory.js → IAirdropDistributor.js} +30 -86
- package/lib/types/IBalancerV2VaultAdapter.d.ts +507 -0
- package/lib/types/IBalancerV2VaultAdapter.js +322 -0
- package/lib/types/IBaseRewardPool.d.ts +391 -201
- package/lib/types/IBaseRewardPool.js +249 -0
- package/lib/types/ICompoundV2_CTokenAdapter.d.ts +189 -0
- package/lib/types/ICompoundV2_CTokenAdapter.js +130 -0
- package/lib/types/IConvexToken.d.ts +201 -153
- package/lib/types/IConvexToken.js +143 -0
- package/lib/types/IConvexV1BaseRewardPoolAdapter.d.ts +299 -217
- package/lib/types/IConvexV1BaseRewardPoolAdapter.js +202 -0
- package/lib/types/IConvexV1BoosterAdapter.d.ts +182 -0
- package/lib/types/IConvexV1BoosterAdapter.js +125 -0
- package/lib/types/ICreditConfiguratorV3.d.ts +598 -0
- package/lib/types/{factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.js → ICreditConfiguratorV3.js} +134 -318
- package/lib/types/ICreditFacadeV2Extended.d.ts +74 -0
- package/lib/types/ICreditFacadeV2Extended.js +63 -0
- package/lib/types/ICreditFacadeV3.d.ts +543 -0
- package/lib/types/{factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.js → ICreditFacadeV3.js} +123 -347
- package/lib/types/ICreditFacadeV3Multicall.d.ts +197 -194
- package/lib/types/ICreditFacadeV3Multicall.js +142 -0
- package/lib/types/ICreditManagerV2.d.ts +700 -0
- package/lib/types/ICreditManagerV2.js +443 -0
- package/lib/types/ICreditManagerV3.d.ts +1016 -0
- package/lib/types/ICreditManagerV3.js +672 -0
- package/lib/types/ICurvePool.d.ts +559 -347
- package/lib/types/ICurvePool.js +332 -0
- package/lib/types/ICurveV1_2AssetsAdapter.d.ts +665 -457
- package/lib/types/ICurveV1_2AssetsAdapter.js +404 -0
- package/lib/types/ICurveV1_3AssetsAdapter.d.ts +665 -457
- package/lib/types/ICurveV1_3AssetsAdapter.js +404 -0
- package/lib/types/ICurveV1_4AssetsAdapter.d.ts +665 -481
- package/lib/types/ICurveV1_4AssetsAdapter.js +404 -0
- package/lib/types/IDataCompressorV2_1.d.ts +1165 -491
- package/lib/types/IDataCompressorV2_1.js +718 -0
- package/lib/types/IDataCompressorV3.d.ts +1573 -581
- package/lib/types/IDataCompressorV3.js +957 -0
- package/lib/types/IDegenDistributor.d.ts +77 -0
- package/lib/types/IDegenDistributor.js +72 -0
- package/lib/types/IERC20.d.ts +141 -129
- package/lib/types/IERC20.js +101 -0
- package/lib/types/IERC20Permit.d.ts +59 -61
- package/lib/types/IERC20Permit.js +35 -0
- package/lib/types/IERC20ZapperDeposits.d.ts +113 -112
- package/lib/types/IERC20ZapperDeposits.js +64 -0
- package/lib/types/IERC4626Adapter.d.ts +213 -173
- package/lib/types/IERC4626Adapter.js +140 -0
- package/lib/types/IETHZapperDeposits.d.ts +33 -39
- package/lib/types/IETHZapperDeposits.js +27 -0
- package/lib/types/IFarmingPool.d.ts +292 -245
- package/lib/types/IFarmingPool.js +229 -0
- package/lib/types/IGearStakingV3.d.ts +497 -0
- package/lib/types/IGearStakingV3.js +368 -0
- package/lib/types/IInterestRateModel.d.ts +29 -39
- package/lib/types/IInterestRateModel.js +23 -0
- package/lib/types/ILidoV1Adapter.d.ts +137 -97
- package/lib/types/ILidoV1Adapter.js +98 -0
- package/lib/types/IMulticall3.d.ts +332 -0
- package/lib/types/IMulticall3.js +244 -0
- package/lib/types/IOffchainOracle.d.ts +41 -51
- package/lib/types/IOffchainOracle.js +31 -0
- package/lib/types/IPartialLiquidationBotV3.d.ts +210 -154
- package/lib/types/IPartialLiquidationBotV3.js +141 -0
- package/lib/types/IPoolV3.d.ts +1061 -0
- package/lib/types/IPoolV3.js +806 -0
- package/lib/types/IPriceFeed.d.ts +77 -0
- package/lib/types/IPriceFeed.js +56 -0
- package/lib/types/IPriceOracleBase.d.ts +97 -77
- package/lib/types/IPriceOracleBase.js +58 -0
- package/lib/types/IPriceOracleV3.d.ts +319 -0
- package/lib/types/IPriceOracleV3.js +210 -0
- package/lib/types/IRouterV3.d.ts +505 -333
- package/lib/types/IRouterV3.js +326 -0
- package/lib/types/IUniswapV2Adapter.d.ts +214 -0
- package/lib/types/IUniswapV2Adapter.js +139 -0
- package/lib/types/IUniswapV3Adapter.d.ts +391 -0
- package/lib/types/IUniswapV3Adapter.js +260 -0
- package/lib/types/IUpdatablePriceFeed.d.ts +97 -0
- package/lib/types/IUpdatablePriceFeed.js +70 -0
- package/lib/types/IYearnV2Adapter.d.ts +223 -187
- package/lib/types/IYearnV2Adapter.js +146 -0
- package/lib/types/IZapper.d.ts +121 -96
- package/lib/types/IZapper.js +84 -0
- package/lib/types/IstETH.d.ts +257 -0
- package/lib/types/IstETH.js +175 -0
- package/lib/types/IwstETH.d.ts +257 -0
- package/lib/types/IwstETH.js +181 -0
- package/lib/types/IwstETHV1Adapter.d.ts +153 -125
- package/lib/types/IwstETHV1Adapter.js +106 -0
- package/lib/types/RedstonePriceFeed.d.ts +423 -0
- package/lib/types/RedstonePriceFeed.js +287 -0
- package/lib/types/SignUpRepository.d.ts +161 -0
- package/lib/types/SignUpRepository.js +137 -0
- package/lib/types/index.d.ts +51 -371
- package/lib/types/index.js +53 -307
- package/lib/utils/calls.d.ts +28 -4
- package/lib/utils/calls.js +65 -21
- package/lib/utils/formatter.d.ts +1 -1
- package/package.json +7 -7
- package/lib/core/errors.d.ts +0 -5
- package/lib/core/errors.js +0 -2
- package/lib/parsers/addressProviderParser.d.ts +0 -6
- package/lib/parsers/addressProviderParser.js +0 -27
- package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/convexBaseRewardPoolAdapterParser.spec.js +0 -27
- package/lib/parsers/convexBoosterAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/convexBoosterAdapterParser.spec.js +0 -20
- package/lib/parsers/creditFacadeParser.spec.d.ts +0 -1
- package/lib/parsers/creditFacadeParser.spec.js +0 -25
- package/lib/parsers/curveAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/curveAdapterParser.spec.js +0 -46
- package/lib/parsers/lidoAdapterParser.spec.d.ts +0 -1
- package/lib/parsers/lidoAdapterParser.spec.js +0 -17
- package/lib/parsers/poolParser.d.ts +0 -6
- package/lib/parsers/poolParser.js +0 -19
- package/lib/pathfinder/v1/core.d.ts +0 -16
- package/lib/pathfinder/v1/core.js +0 -2
- package/lib/pathfinder/v1/pathfinderv1.d.ts +0 -46
- package/lib/pathfinder/v1/pathfinderv1.js +0 -154
- package/lib/pathfinder/v1/pathfinderv1.spec.d.ts +0 -1
- package/lib/pathfinder/v1/pathfinderv1.spec.js +0 -39
- package/lib/types/AddressProvider.d.ts +0 -201
- package/lib/types/AddressProvider.js +0 -2
- package/lib/types/Balances.sol/BalanceOps.d.ts +0 -20
- package/lib/types/Balances.sol/BalanceOps.js +0 -2
- package/lib/types/Balances.sol/index.d.ts +0 -1
- package/lib/types/Balances.sol/index.js +0 -2
- package/lib/types/CalldataExtractor.d.ts +0 -28
- package/lib/types/CalldataExtractor.js +0 -2
- package/lib/types/Claimable.d.ts +0 -62
- package/lib/types/Claimable.js +0 -2
- package/lib/types/ContractsRegisterTrait.d.ts +0 -25
- package/lib/types/ContractsRegisterTrait.js +0 -2
- package/lib/types/ERC20.d.ts +0 -169
- package/lib/types/ERC20.js +0 -2
- package/lib/types/Errors.d.ts +0 -177
- package/lib/types/Errors.js +0 -2
- package/lib/types/FarmAccounting.d.ts +0 -20
- package/lib/types/FarmAccounting.js +0 -2
- package/lib/types/IAdapter.d.ts +0 -41
- package/lib/types/IAdapter.js +0 -2
- package/lib/types/IAddressProvider.sol/IAddressProvider.d.ts +0 -82
- package/lib/types/IAddressProvider.sol/IAddressProvider.js +0 -2
- package/lib/types/IAddressProvider.sol/IAddressProviderEvents.d.ts +0 -37
- package/lib/types/IAddressProvider.sol/IAddressProviderEvents.js +0 -2
- package/lib/types/IAddressProvider.sol/index.d.ts +0 -2
- package/lib/types/IAddressProvider.sol/index.js +0 -2
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3.d.ts +0 -91
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3.js +0 -2
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3Events.d.ts +0 -42
- package/lib/types/IAddressProviderV3.sol/IAddressProviderV3Events.js +0 -2
- package/lib/types/IAddressProviderV3.sol/index.d.ts +0 -2
- package/lib/types/IAddressProviderV3.sol/index.js +0 -2
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributor.d.ts +0 -116
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributor.js +0 -2
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.d.ts +0 -85
- package/lib/types/IAirdropDistributor.sol/IAirdropDistributorEvents.js +0 -2
- package/lib/types/IAirdropDistributor.sol/index.d.ts +0 -2
- package/lib/types/IAirdropDistributor.sol/index.js +0 -2
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2Vault.d.ts +0 -287
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2Vault.js +0 -2
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2VaultGetters.d.ts +0 -87
- package/lib/types/IBalancerV2Vault.sol/IBalancerV2VaultGetters.js +0 -2
- package/lib/types/IBalancerV2Vault.sol/index.d.ts +0 -2
- package/lib/types/IBalancerV2Vault.sol/index.js +0 -2
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.d.ts +0 -415
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter.js +0 -2
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.d.ts +0 -37
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents.js +0 -2
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.d.ts +0 -20
- package/lib/types/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions.js +0 -2
- package/lib/types/IBalancerV2VaultAdapter.sol/index.d.ts +0 -3
- package/lib/types/IBalancerV2VaultAdapter.sol/index.js +0 -2
- package/lib/types/IBotListV3.sol/IBotListV3.d.ts +0 -300
- package/lib/types/IBotListV3.sol/IBotListV3.js +0 -2
- package/lib/types/IBotListV3.sol/IBotListV3Events.d.ts +0 -127
- package/lib/types/IBotListV3.sol/IBotListV3Events.js +0 -2
- package/lib/types/IBotListV3.sol/index.d.ts +0 -2
- package/lib/types/IBotListV3.sol/index.js +0 -2
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.d.ts +0 -147
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter.js +0 -2
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.d.ts +0 -20
- package/lib/types/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions.js +0 -2
- package/lib/types/ICompoundV2_CTokenAdapter.sol/index.d.ts +0 -2
- package/lib/types/ICompoundV2_CTokenAdapter.sol/index.js +0 -2
- package/lib/types/IContractsRegister.sol/IContractsRegister.d.ts +0 -87
- package/lib/types/IContractsRegister.sol/IContractsRegister.js +0 -2
- package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.d.ts +0 -50
- package/lib/types/IContractsRegister.sol/IContractsRegisterEvents.js +0 -2
- package/lib/types/IContractsRegister.sol/index.d.ts +0 -2
- package/lib/types/IContractsRegister.sol/index.js +0 -2
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3.d.ts +0 -416
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3.js +0 -2
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3Events.d.ts +0 -97
- package/lib/types/IControllerTimelockV3.sol/IControllerTimelockV3Events.js +0 -2
- package/lib/types/IControllerTimelockV3.sol/index.d.ts +0 -2
- package/lib/types/IControllerTimelockV3.sol/index.js +0 -2
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.d.ts +0 -154
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter.js +0 -2
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.d.ts +0 -37
- package/lib/types/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents.js +0 -2
- package/lib/types/IConvexV1BoosterAdapter.sol/index.d.ts +0 -2
- package/lib/types/IConvexV1BoosterAdapter.sol/index.js +0 -2
- package/lib/types/ICreditAccountV3.sol/ICreditAccountBase.d.ts +0 -59
- package/lib/types/ICreditAccountV3.sol/ICreditAccountBase.js +0 -2
- package/lib/types/ICreditAccountV3.sol/ICreditAccountV3.d.ts +0 -77
- package/lib/types/ICreditAccountV3.sol/ICreditAccountV3.js +0 -2
- package/lib/types/ICreditAccountV3.sol/index.d.ts +0 -2
- package/lib/types/ICreditAccountV3.sol/index.js +0 -2
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2.d.ts +0 -588
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2.js +0 -2
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.d.ts +0 -371
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events.js +0 -2
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.d.ts +0 -20
- package/lib/types/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions.js +0 -2
- package/lib/types/ICreditConfiguratorV2.sol/index.d.ts +0 -3
- package/lib/types/ICreditConfiguratorV2.sol/index.js +0 -2
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.d.ts +0 -617
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3.js +0 -2
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.d.ts +0 -354
- package/lib/types/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events.js +0 -2
- package/lib/types/ICreditConfiguratorV3.sol/index.d.ts +0 -2
- package/lib/types/ICreditConfiguratorV3.sol/index.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2.d.ts +0 -662
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Events.d.ts +0 -299
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Events.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.d.ts +0 -20
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.d.ts +0 -75
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2Extended.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2V2.d.ts +0 -47
- package/lib/types/ICreditFacadeV2.sol/ICreditFacadeV2V2.js +0 -2
- package/lib/types/ICreditFacadeV2.sol/index.d.ts +0 -5
- package/lib/types/ICreditFacadeV2.sol/index.js +0 -2
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.d.ts +0 -481
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3.js +0 -2
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.d.ts +0 -218
- package/lib/types/ICreditFacadeV3.sol/ICreditFacadeV3Events.js +0 -2
- package/lib/types/ICreditFacadeV3.sol/index.d.ts +0 -2
- package/lib/types/ICreditFacadeV3.sol/index.js +0 -2
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2.d.ts +0 -510
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2.js +0 -2
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Events.d.ts +0 -51
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Events.js +0 -2
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Exceptions.d.ts +0 -20
- package/lib/types/ICreditManagerV2.sol/ICreditManagerV2Exceptions.js +0 -2
- package/lib/types/ICreditManagerV2.sol/index.d.ts +0 -3
- package/lib/types/ICreditManagerV2.sol/index.js +0 -2
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.d.ts +0 -758
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3.js +0 -2
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3Events.d.ts +0 -36
- package/lib/types/ICreditManagerV3.sol/ICreditManagerV3Events.js +0 -2
- package/lib/types/ICreditManagerV3.sol/index.d.ts +0 -2
- package/lib/types/ICreditManagerV3.sol/index.js +0 -2
- package/lib/types/ICurvePool_2.sol/ICurvePool2Assets.d.ts +0 -444
- package/lib/types/ICurvePool_2.sol/ICurvePool2Assets.js +0 -2
- package/lib/types/ICurvePool_2.sol/index.d.ts +0 -1
- package/lib/types/ICurvePool_2.sol/index.js +0 -2
- package/lib/types/ICurvePool_3.sol/ICurvePool3Assets.d.ts +0 -449
- package/lib/types/ICurvePool_3.sol/ICurvePool3Assets.js +0 -2
- package/lib/types/ICurvePool_3.sol/index.d.ts +0 -1
- package/lib/types/ICurvePool_3.sol/index.js +0 -2
- package/lib/types/ICurvePool_4.sol/ICurvePool4Assets.d.ts +0 -478
- package/lib/types/ICurvePool_4.sol/ICurvePool4Assets.js +0 -2
- package/lib/types/ICurvePool_4.sol/index.d.ts +0 -1
- package/lib/types/ICurvePool_4.sol/index.js +0 -2
- package/lib/types/ICurveV1Adapter.d.ts +0 -397
- package/lib/types/ICurveV1Adapter.js +0 -2
- package/lib/types/IDaiLikePermit.d.ts +0 -56
- package/lib/types/IDaiLikePermit.js +0 -2
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.d.ts +0 -79
- package/lib/types/IDegenDistributor.sol/IDegenDistributor.js +0 -2
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.d.ts +0 -52
- package/lib/types/IDegenDistributor.sol/IDegenDistributorEvents.js +0 -2
- package/lib/types/IDegenDistributor.sol/index.d.ts +0 -2
- package/lib/types/IDegenDistributor.sol/index.js +0 -2
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.d.ts +0 -297
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2.js +0 -2
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.d.ts +0 -64
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Events.js +0 -2
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Exceptions.d.ts +0 -20
- package/lib/types/IDegenNFTV2.sol/IDegenNFTV2Exceptions.js +0 -2
- package/lib/types/IDegenNFTV2.sol/index.d.ts +0 -3
- package/lib/types/IDegenNFTV2.sol/index.js +0 -2
- package/lib/types/IERC165.d.ts +0 -29
- package/lib/types/IERC165.js +0 -2
- package/lib/types/IERC20Metadata.d.ts +0 -141
- package/lib/types/IERC20Metadata.js +0 -2
- package/lib/types/IERC4626.d.ts +0 -318
- package/lib/types/IERC4626.js +0 -2
- package/lib/types/IERC721.d.ts +0 -199
- package/lib/types/IERC721.js +0 -2
- package/lib/types/IERC721Metadata.d.ts +0 -211
- package/lib/types/IERC721Metadata.js +0 -2
- package/lib/types/IGasPricer.d.ts +0 -29
- package/lib/types/IGasPricer.js +0 -2
- package/lib/types/IGaugeV3.sol/IGaugeV3.d.ts +0 -309
- package/lib/types/IGaugeV3.sol/IGaugeV3.js +0 -2
- package/lib/types/IGaugeV3.sol/IGaugeV3Events.d.ts +0 -144
- package/lib/types/IGaugeV3.sol/IGaugeV3Events.js +0 -2
- package/lib/types/IGaugeV3.sol/index.d.ts +0 -2
- package/lib/types/IGaugeV3.sol/index.js +0 -2
- package/lib/types/IGearStakingV3.sol/IGearStakingV3.d.ts +0 -354
- package/lib/types/IGearStakingV3.sol/IGearStakingV3.js +0 -2
- package/lib/types/IGearStakingV3.sol/IGearStakingV3Events.d.ts +0 -135
- package/lib/types/IGearStakingV3.sol/IGearStakingV3Events.js +0 -2
- package/lib/types/IGearStakingV3.sol/index.d.ts +0 -2
- package/lib/types/IGearStakingV3.sol/index.js +0 -2
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.d.ts +0 -164
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeed.js +0 -2
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.d.ts +0 -51
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedEvents.js +0 -2
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.d.ts +0 -20
- package/lib/types/ILPPriceFeed.sol/ILPPriceFeedExceptions.js +0 -2
- package/lib/types/ILPPriceFeed.sol/index.d.ts +0 -3
- package/lib/types/ILPPriceFeed.sol/index.js +0 -2
- package/lib/types/ILinearInterestRateModelV3.d.ts +0 -97
- package/lib/types/ILinearInterestRateModelV3.js +0 -2
- package/lib/types/IPermit2.d.ts +0 -118
- package/lib/types/IPermit2.js +0 -2
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.d.ts +0 -380
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3.js +0 -2
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.d.ts +0 -133
- package/lib/types/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events.js +0 -2
- package/lib/types/IPoolQuotaKeeperV3.sol/index.d.ts +0 -2
- package/lib/types/IPoolQuotaKeeperV3.sol/index.js +0 -2
- package/lib/types/IPoolService.sol/IPoolService.d.ts +0 -346
- package/lib/types/IPoolService.sol/IPoolService.js +0 -2
- package/lib/types/IPoolService.sol/IPoolServiceEvents.d.ts +0 -205
- package/lib/types/IPoolService.sol/IPoolServiceEvents.js +0 -2
- package/lib/types/IPoolService.sol/index.d.ts +0 -2
- package/lib/types/IPoolService.sol/index.js +0 -2
- package/lib/types/IPoolV3.sol/IPoolV3.d.ts +0 -773
- package/lib/types/IPoolV3.sol/IPoolV3.js +0 -2
- package/lib/types/IPoolV3.sol/IPoolV3Events.d.ts +0 -197
- package/lib/types/IPoolV3.sol/IPoolV3Events.js +0 -2
- package/lib/types/IPoolV3.sol/index.d.ts +0 -2
- package/lib/types/IPoolV3.sol/index.js +0 -2
- package/lib/types/IPriceFeed.sol/IPriceFeed.d.ts +0 -69
- package/lib/types/IPriceFeed.sol/IPriceFeed.js +0 -2
- package/lib/types/IPriceFeed.sol/IUpdatablePriceFeed.d.ts +0 -77
- package/lib/types/IPriceFeed.sol/IUpdatablePriceFeed.js +0 -2
- package/lib/types/IPriceFeed.sol/index.d.ts +0 -2
- package/lib/types/IPriceFeed.sol/index.js +0 -2
- package/lib/types/IPriceOracle.sol/IPriceOracleV2.d.ts +0 -146
- package/lib/types/IPriceOracle.sol/IPriceOracleV2.js +0 -2
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.d.ts +0 -37
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Events.js +0 -2
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Exceptions.d.ts +0 -20
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Exceptions.js +0 -2
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Ext.d.ts +0 -160
- package/lib/types/IPriceOracle.sol/IPriceOracleV2Ext.js +0 -2
- package/lib/types/IPriceOracle.sol/index.d.ts +0 -4
- package/lib/types/IPriceOracle.sol/index.js +0 -2
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.d.ts +0 -281
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3.js +0 -2
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3Events.d.ts +0 -94
- package/lib/types/IPriceOracleV3.sol/IPriceOracleV3Events.js +0 -2
- package/lib/types/IPriceOracleV3.sol/index.d.ts +0 -2
- package/lib/types/IPriceOracleV3.sol/index.js +0 -2
- package/lib/types/IRouter.d.ts +0 -286
- package/lib/types/IRouter.js +0 -2
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.d.ts +0 -191
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2Adapter.js +0 -2
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.d.ts +0 -42
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents.js +0 -2
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.d.ts +0 -20
- package/lib/types/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions.js +0 -2
- package/lib/types/IUniswapV2Adapter.sol/index.d.ts +0 -3
- package/lib/types/IUniswapV2Adapter.sol/index.js +0 -2
- package/lib/types/IUniswapV3.sol/ISwapRouter.d.ts +0 -169
- package/lib/types/IUniswapV3.sol/ISwapRouter.js +0 -2
- package/lib/types/IUniswapV3.sol/index.d.ts +0 -1
- package/lib/types/IUniswapV3.sol/index.js +0 -2
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.d.ts +0 -368
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3Adapter.js +0 -2
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.d.ts +0 -49
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents.js +0 -2
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.d.ts +0 -20
- package/lib/types/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions.js +0 -2
- package/lib/types/IUniswapV3Adapter.sol/index.d.ts +0 -3
- package/lib/types/IUniswapV3Adapter.sol/index.js +0 -2
- package/lib/types/IVersion.d.ts +0 -25
- package/lib/types/IVersion.js +0 -2
- package/lib/types/IVotingContractV3.d.ts +0 -53
- package/lib/types/IVotingContractV3.js +0 -2
- package/lib/types/IWETH.d.ts +0 -167
- package/lib/types/IWETH.js +0 -2
- package/lib/types/IWETHGateway.d.ts +0 -67
- package/lib/types/IWETHGateway.js +0 -2
- package/lib/types/IYVault.d.ts +0 -217
- package/lib/types/IYVault.js +0 -2
- package/lib/types/IZapperRegister.d.ts +0 -55
- package/lib/types/IZapperRegister.js +0 -2
- package/lib/types/IstETH.sol/IstETH.d.ts +0 -177
- package/lib/types/IstETH.sol/IstETH.js +0 -2
- package/lib/types/IstETH.sol/IstETHGetters.d.ts +0 -173
- package/lib/types/IstETH.sol/IstETHGetters.js +0 -2
- package/lib/types/IstETH.sol/index.d.ts +0 -2
- package/lib/types/IstETH.sol/index.js +0 -2
- package/lib/types/IwstETH.sol/IwstETH.d.ts +0 -185
- package/lib/types/IwstETH.sol/IwstETH.js +0 -2
- package/lib/types/IwstETH.sol/IwstETHGetters.d.ts +0 -169
- package/lib/types/IwstETH.sol/IwstETHGetters.js +0 -2
- package/lib/types/IwstETH.sol/index.d.ts +0 -2
- package/lib/types/IwstETH.sol/index.js +0 -2
- package/lib/types/IwstETHGateway.sol/IwstETHGateWay.d.ts +0 -51
- package/lib/types/IwstETHGateway.sol/IwstETHGateWay.js +0 -2
- package/lib/types/IwstETHGateway.sol/index.d.ts +0 -1
- package/lib/types/IwstETHGateway.sol/index.js +0 -2
- package/lib/types/NumericArrayLib.d.ts +0 -20
- package/lib/types/NumericArrayLib.js +0 -2
- package/lib/types/Ownable.d.ts +0 -54
- package/lib/types/Ownable.js +0 -2
- package/lib/types/PartialLiquidationBotV3.d.ts +0 -158
- package/lib/types/PartialLiquidationBotV3.js +0 -2
- package/lib/types/RedstoneConstants.d.ts +0 -20
- package/lib/types/RedstoneConstants.js +0 -2
- package/lib/types/RedstoneConsumerBase.d.ts +0 -64
- package/lib/types/RedstoneConsumerBase.js +0 -2
- package/lib/types/RedstoneConsumerNumericBase.d.ts +0 -64
- package/lib/types/RedstoneConsumerNumericBase.js +0 -2
- package/lib/types/RedstoneDefaultsLib.d.ts +0 -20
- package/lib/types/RedstoneDefaultsLib.js +0 -2
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedEvents.d.ts +0 -36
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedEvents.js +0 -2
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions.d.ts +0 -20
- package/lib/types/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions.js +0 -2
- package/lib/types/RedstonePriceFeed.sol/RedstonePriceFeed.d.ts +0 -174
- package/lib/types/RedstonePriceFeed.sol/RedstonePriceFeed.js +0 -2
- package/lib/types/RedstonePriceFeed.sol/index.d.ts +0 -3
- package/lib/types/RedstonePriceFeed.sol/index.js +0 -2
- package/lib/types/SafeERC20.d.ts +0 -20
- package/lib/types/SafeERC20.js +0 -2
- package/lib/types/common.d.ts +0 -50
- package/lib/types/common.js +0 -2
- package/lib/types/factories/AddressProvider__factory.d.ts +0 -322
- package/lib/types/factories/AddressProvider__factory.js +0 -427
- package/lib/types/factories/Balances.sol/BalanceOps__factory.d.ts +0 -30
- package/lib/types/factories/Balances.sol/BalanceOps__factory.js +0 -50
- package/lib/types/factories/Balances.sol/index.d.ts +0 -1
- package/lib/types/factories/Balances.sol/index.js +0 -8
- package/lib/types/factories/CalldataExtractor__factory.d.ts +0 -88
- package/lib/types/factories/CalldataExtractor__factory.js +0 -124
- package/lib/types/factories/Claimable__factory.d.ts +0 -79
- package/lib/types/factories/Claimable__factory.js +0 -111
- package/lib/types/factories/CompositePriceFeed__factory.d.ts +0 -203
- package/lib/types/factories/CompositePriceFeed__factory.js +0 -274
- package/lib/types/factories/ContractsRegisterTrait__factory.d.ts +0 -21
- package/lib/types/factories/ContractsRegisterTrait__factory.js +0 -37
- package/lib/types/factories/ERC20__factory.d.ts +0 -240
- package/lib/types/factories/ERC20__factory.js +0 -325
- package/lib/types/factories/Errors__factory.d.ts +0 -352
- package/lib/types/factories/Errors__factory.js +0 -468
- package/lib/types/factories/FarmAccounting__factory.d.ts +0 -34
- package/lib/types/factories/FarmAccounting__factory.js +0 -54
- package/lib/types/factories/IAaveV2_LendingPoolAdapter__factory.d.ts +0 -157
- package/lib/types/factories/IAaveV2_LendingPoolAdapter__factory.js +0 -215
- package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.d.ts +0 -251
- package/lib/types/factories/IAaveV2_WrappedATokenAdapter__factory.js +0 -341
- package/lib/types/factories/IAdapter__factory.d.ts +0 -57
- package/lib/types/factories/IAdapter__factory.js +0 -84
- package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.d.ts +0 -22
- package/lib/types/factories/IAddressProvider.sol/IAddressProviderEvents__factory.js +0 -38
- package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.d.ts +0 -132
- package/lib/types/factories/IAddressProvider.sol/IAddressProvider__factory.js +0 -181
- package/lib/types/factories/IAddressProvider.sol/index.d.ts +0 -2
- package/lib/types/factories/IAddressProvider.sol/index.js +0 -10
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.d.ts +0 -27
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3Events__factory.js +0 -44
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.d.ts +0 -91
- package/lib/types/factories/IAddressProviderV3.sol/IAddressProviderV3__factory.js +0 -128
- package/lib/types/factories/IAddressProviderV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IAddressProviderV3.sol/index.js +0 -10
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.d.ts +0 -62
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributorEvents__factory.js +0 -88
- package/lib/types/factories/IAirdropDistributor.sol/IAirdropDistributor__factory.d.ts +0 -118
- package/lib/types/factories/IAirdropDistributor.sol/index.d.ts +0 -2
- package/lib/types/factories/IAirdropDistributor.sol/index.js +0 -10
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.d.ts +0 -77
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2VaultGetters__factory.js +0 -111
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.d.ts +0 -359
- package/lib/types/factories/IBalancerV2Vault.sol/IBalancerV2Vault__factory.js +0 -475
- package/lib/types/factories/IBalancerV2Vault.sol/index.d.ts +0 -2
- package/lib/types/factories/IBalancerV2Vault.sol/index.js +0 -10
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.d.ts +0 -22
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterEvents__factory.js +0 -38
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.d.ts +0 -11
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapterExceptions__factory.js +0 -24
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.d.ts +0 -513
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/IBalancerV2VaultAdapter__factory.js +0 -675
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.d.ts +0 -3
- package/lib/types/factories/IBalancerV2VaultAdapter.sol/index.js +0 -12
- package/lib/types/factories/IBaseRewardPool__factory.d.ts +0 -397
- package/lib/types/factories/IBaseRewardPool__factory.js +0 -534
- package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.d.ts +0 -102
- package/lib/types/factories/IBotListV3.sol/IBotListV3Events__factory.js +0 -138
- package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.d.ts +0 -314
- package/lib/types/factories/IBotListV3.sol/IBotListV3__factory.js +0 -416
- package/lib/types/factories/IBotListV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IBotListV3.sol/index.js +0 -10
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.d.ts +0 -195
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_CTokenAdapter__factory.js +0 -267
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.d.ts +0 -15
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/ICompoundV2_Exceptions__factory.js +0 -30
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.d.ts +0 -2
- package/lib/types/factories/ICompoundV2_CTokenAdapter.sol/index.js +0 -10
- package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.d.ts +0 -27
- package/lib/types/factories/IContractsRegister.sol/IContractsRegisterEvents__factory.js +0 -45
- package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.d.ts +0 -133
- package/lib/types/factories/IContractsRegister.sol/IContractsRegister__factory.js +0 -186
- package/lib/types/factories/IContractsRegister.sol/index.d.ts +0 -2
- package/lib/types/factories/IContractsRegister.sol/index.js +0 -10
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.d.ts +0 -72
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3Events__factory.js +0 -101
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.d.ts +0 -426
- package/lib/types/factories/IControllerTimelockV3.sol/IControllerTimelockV3__factory.js +0 -556
- package/lib/types/factories/IControllerTimelockV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IControllerTimelockV3.sol/index.js +0 -10
- package/lib/types/factories/IConvexToken__factory.d.ts +0 -207
- package/lib/types/factories/IConvexToken__factory.js +0 -280
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.d.ts +0 -305
- package/lib/types/factories/IConvexV1BaseRewardPoolAdapter__factory.js +0 -409
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.d.ts +0 -22
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapterEvents__factory.js +0 -38
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.d.ts +0 -188
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/IConvexV1BoosterAdapter__factory.js +0 -255
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.d.ts +0 -2
- package/lib/types/factories/IConvexV1BoosterAdapter.sol/index.js +0 -10
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountBase__factory.d.ts +0 -63
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountBase__factory.js +0 -92
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountV3__factory.d.ts +0 -87
- package/lib/types/factories/ICreditAccountV3.sol/ICreditAccountV3__factory.js +0 -123
- package/lib/types/factories/ICreditAccountV3.sol/index.d.ts +0 -2
- package/lib/types/factories/ICreditAccountV3.sol/index.js +0 -10
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.d.ts +0 -267
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Events__factory.js +0 -353
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.d.ts +0 -43
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2Exceptions__factory.js +0 -64
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.d.ts +0 -575
- package/lib/types/factories/ICreditConfiguratorV2.sol/ICreditConfiguratorV2__factory.js +0 -749
- package/lib/types/factories/ICreditConfiguratorV2.sol/index.d.ts +0 -3
- package/lib/types/factories/ICreditConfiguratorV2.sol/index.js +0 -12
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.d.ts +0 -272
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3Events__factory.js +0 -357
- package/lib/types/factories/ICreditConfiguratorV3.sol/ICreditConfiguratorV3__factory.d.ts +0 -604
- package/lib/types/factories/ICreditConfiguratorV3.sol/index.d.ts +0 -2
- package/lib/types/factories/ICreditConfiguratorV3.sol/index.js +0 -10
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.d.ts +0 -262
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Events__factory.js +0 -340
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.d.ts +0 -139
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Exceptions__factory.js +0 -185
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.d.ts +0 -80
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2Extended__factory.js +0 -114
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.d.ts +0 -25
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2V2__factory.js +0 -42
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.d.ts +0 -900
- package/lib/types/factories/ICreditFacadeV2.sol/ICreditFacadeV2__factory.js +0 -1163
- package/lib/types/factories/ICreditFacadeV2.sol/index.d.ts +0 -5
- package/lib/types/factories/ICreditFacadeV2.sol/index.js +0 -16
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.d.ts +0 -182
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3Events__factory.js +0 -238
- package/lib/types/factories/ICreditFacadeV3.sol/ICreditFacadeV3__factory.d.ts +0 -549
- package/lib/types/factories/ICreditFacadeV3.sol/index.d.ts +0 -2
- package/lib/types/factories/ICreditFacadeV3.sol/index.js +0 -10
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.d.ts +0 -203
- package/lib/types/factories/ICreditFacadeV3Multicall__factory.js +0 -271
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.d.ts +0 -32
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Events__factory.js +0 -51
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.d.ts +0 -59
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2Exceptions__factory.js +0 -84
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.d.ts +0 -706
- package/lib/types/factories/ICreditManagerV2.sol/ICreditManagerV2__factory.js +0 -932
- package/lib/types/factories/ICreditManagerV2.sol/index.d.ts +0 -3
- package/lib/types/factories/ICreditManagerV2.sol/index.js +0 -12
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.d.ts +0 -17
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3Events__factory.js +0 -32
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.d.ts +0 -1022
- package/lib/types/factories/ICreditManagerV3.sol/ICreditManagerV3__factory.js +0 -1341
- package/lib/types/factories/ICreditManagerV3.sol/index.d.ts +0 -2
- package/lib/types/factories/ICreditManagerV3.sol/index.js +0 -10
- package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.d.ts +0 -677
- package/lib/types/factories/ICurvePool_2.sol/ICurvePool2Assets__factory.js +0 -897
- package/lib/types/factories/ICurvePool_2.sol/index.d.ts +0 -1
- package/lib/types/factories/ICurvePool_2.sol/index.js +0 -8
- package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.d.ts +0 -677
- package/lib/types/factories/ICurvePool_3.sol/ICurvePool3Assets__factory.js +0 -897
- package/lib/types/factories/ICurvePool_3.sol/index.d.ts +0 -1
- package/lib/types/factories/ICurvePool_3.sol/index.js +0 -8
- package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.d.ts +0 -677
- package/lib/types/factories/ICurvePool_4.sol/ICurvePool4Assets__factory.js +0 -897
- package/lib/types/factories/ICurvePool_4.sol/index.d.ts +0 -1
- package/lib/types/factories/ICurvePool_4.sol/index.js +0 -8
- package/lib/types/factories/ICurvePool__factory.d.ts +0 -565
- package/lib/types/factories/ICurvePool__factory.js +0 -751
- package/lib/types/factories/ICurveV1Adapter__factory.d.ts +0 -605
- package/lib/types/factories/ICurveV1Adapter__factory.js +0 -798
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.d.ts +0 -671
- package/lib/types/factories/ICurveV1_2AssetsAdapter__factory.js +0 -885
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.d.ts +0 -671
- package/lib/types/factories/ICurveV1_3AssetsAdapter__factory.js +0 -885
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.d.ts +0 -671
- package/lib/types/factories/ICurveV1_4AssetsAdapter__factory.js +0 -885
- package/lib/types/factories/IDaiLikePermit__factory.d.ts +0 -45
- package/lib/types/factories/IDaiLikePermit__factory.js +0 -67
- package/lib/types/factories/IDataCompressorV2_1__factory.d.ts +0 -1171
- package/lib/types/factories/IDataCompressorV2_1__factory.js +0 -1501
- package/lib/types/factories/IDataCompressorV3__factory.d.ts +0 -1579
- package/lib/types/factories/IDataCompressorV3__factory.js +0 -2020
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.d.ts +0 -37
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributorEvents__factory.js +0 -57
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.d.ts +0 -83
- package/lib/types/factories/IDegenDistributor.sol/IDegenDistributor__factory.js +0 -117
- package/lib/types/factories/IDegenDistributor.sol/index.d.ts +0 -2
- package/lib/types/factories/IDegenDistributor.sol/index.js +0 -10
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.d.ts +0 -37
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Events__factory.js +0 -58
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.d.ts +0 -23
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2Exceptions__factory.js +0 -39
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2__factory.d.ts +0 -375
- package/lib/types/factories/IDegenNFTV2.sol/IDegenNFTV2__factory.js +0 -496
- package/lib/types/factories/IDegenNFTV2.sol/index.d.ts +0 -3
- package/lib/types/factories/IDegenNFTV2.sol/index.js +0 -12
- package/lib/types/factories/IERC165__factory.d.ts +0 -21
- package/lib/types/factories/IERC165__factory.js +0 -38
- package/lib/types/factories/IERC20Metadata__factory.d.ts +0 -177
- package/lib/types/factories/IERC20Metadata__factory.js +0 -241
- package/lib/types/factories/IERC20Permit__factory.d.ts +0 -65
- package/lib/types/factories/IERC20Permit__factory.js +0 -94
- package/lib/types/factories/IERC20ZapperDeposits__factory.d.ts +0 -119
- package/lib/types/factories/IERC20ZapperDeposits__factory.js +0 -165
- package/lib/types/factories/IERC20__factory.d.ts +0 -147
- package/lib/types/factories/IERC20__factory.js +0 -202
- package/lib/types/factories/IERC4626Adapter__factory.d.ts +0 -219
- package/lib/types/factories/IERC4626Adapter__factory.js +0 -297
- package/lib/types/factories/IERC4626__factory.d.ts +0 -472
- package/lib/types/factories/IERC4626__factory.js +0 -631
- package/lib/types/factories/IERC721Metadata__factory.d.ts +0 -261
- package/lib/types/factories/IERC721Metadata__factory.js +0 -349
- package/lib/types/factories/IERC721__factory.d.ts +0 -227
- package/lib/types/factories/IERC721__factory.js +0 -304
- package/lib/types/factories/IETHZapperDeposits__factory.d.ts +0 -39
- package/lib/types/factories/IETHZapperDeposits__factory.js +0 -62
- package/lib/types/factories/IFarmingPool__factory.d.ts +0 -298
- package/lib/types/factories/IFarmingPool__factory.js +0 -396
- package/lib/types/factories/IGasPricer__factory.d.ts +0 -21
- package/lib/types/factories/IGasPricer__factory.js +0 -38
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.d.ts +0 -117
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3Events__factory.js +0 -157
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.d.ts +0 -341
- package/lib/types/factories/IGaugeV3.sol/IGaugeV3__factory.js +0 -448
- package/lib/types/factories/IGaugeV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IGaugeV3.sol/index.js +0 -10
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3Events__factory.d.ts +0 -112
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3Events__factory.js +0 -152
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.d.ts +0 -503
- package/lib/types/factories/IGearStakingV3.sol/IGearStakingV3__factory.js +0 -660
- package/lib/types/factories/IGearStakingV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IGearStakingV3.sol/index.js +0 -10
- package/lib/types/factories/IInterestRateModel__factory.d.ts +0 -35
- package/lib/types/factories/IInterestRateModel__factory.js +0 -56
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.d.ts +0 -32
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedEvents__factory.js +0 -51
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.d.ts +0 -27
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeedExceptions__factory.js +0 -44
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.d.ts +0 -260
- package/lib/types/factories/ILPPriceFeed.sol/ILPPriceFeed__factory.js +0 -344
- package/lib/types/factories/ILPPriceFeed.sol/index.d.ts +0 -3
- package/lib/types/factories/ILPPriceFeed.sol/index.js +0 -12
- package/lib/types/factories/ILidoV1Adapter__factory.d.ts +0 -143
- package/lib/types/factories/ILidoV1Adapter__factory.js +0 -197
- package/lib/types/factories/ILinearInterestRateModelV3__factory.d.ts +0 -97
- package/lib/types/factories/ILinearInterestRateModelV3__factory.js +0 -136
- package/lib/types/factories/IOffchainOracle__factory.d.ts +0 -47
- package/lib/types/factories/IOffchainOracle__factory.js +0 -72
- package/lib/types/factories/IPartialLiquidationBotV3__factory.d.ts +0 -216
- package/lib/types/factories/IPartialLiquidationBotV3__factory.js +0 -287
- package/lib/types/factories/IPermit2__factory.d.ts +0 -112
- package/lib/types/factories/IPermit2__factory.js +0 -155
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.d.ts +0 -102
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3Events__factory.js +0 -140
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.d.ts +0 -440
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/IPoolQuotaKeeperV3__factory.js +0 -580
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IPoolQuotaKeeperV3.sol/index.js +0 -10
- package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.d.ts +0 -162
- package/lib/types/factories/IPoolService.sol/IPoolServiceEvents__factory.js +0 -215
- package/lib/types/factories/IPoolService.sol/IPoolService__factory.d.ts +0 -436
- package/lib/types/factories/IPoolService.sol/IPoolService__factory.js +0 -574
- package/lib/types/factories/IPoolService.sol/index.d.ts +0 -2
- package/lib/types/factories/IPoolService.sol/index.js +0 -10
- package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.d.ts +0 -152
- package/lib/types/factories/IPoolV3.sol/IPoolV3Events__factory.js +0 -203
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.d.ts +0 -1067
- package/lib/types/factories/IPoolV3.sol/IPoolV3__factory.js +0 -1402
- package/lib/types/factories/IPoolV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IPoolV3.sol/index.js +0 -10
- package/lib/types/factories/IPriceFeed.sol/IPriceFeed__factory.d.ts +0 -83
- package/lib/types/factories/IPriceFeed.sol/IPriceFeed__factory.js +0 -117
- package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.d.ts +0 -103
- package/lib/types/factories/IPriceFeed.sol/IUpdatablePriceFeed__factory.js +0 -143
- package/lib/types/factories/IPriceFeed.sol/index.d.ts +0 -2
- package/lib/types/factories/IPriceFeed.sol/index.js +0 -10
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Events__factory.d.ts +0 -22
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Events__factory.js +0 -38
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.d.ts +0 -19
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Exceptions__factory.js +0 -34
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Ext__factory.d.ts +0 -196
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2Ext__factory.js +0 -267
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2__factory.d.ts +0 -182
- package/lib/types/factories/IPriceOracle.sol/IPriceOracleV2__factory.js +0 -249
- package/lib/types/factories/IPriceOracle.sol/index.d.ts +0 -4
- package/lib/types/factories/IPriceOracle.sol/index.js +0 -14
- package/lib/types/factories/IPriceOracleBase__factory.d.ts +0 -103
- package/lib/types/factories/IPriceOracleBase__factory.js +0 -147
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.d.ts +0 -77
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3Events__factory.js +0 -106
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.d.ts +0 -325
- package/lib/types/factories/IPriceOracleV3.sol/IPriceOracleV3__factory.js +0 -433
- package/lib/types/factories/IPriceOracleV3.sol/index.d.ts +0 -2
- package/lib/types/factories/IPriceOracleV3.sol/index.js +0 -10
- package/lib/types/factories/IRouterV3__factory.d.ts +0 -511
- package/lib/types/factories/IRouterV3__factory.js +0 -676
- package/lib/types/factories/IRouter__factory.d.ts +0 -395
- package/lib/types/factories/IRouter__factory.js +0 -526
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.d.ts +0 -27
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterEvents__factory.js +0 -44
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.d.ts +0 -11
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2AdapterExceptions__factory.js +0 -24
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.d.ts +0 -220
- package/lib/types/factories/IUniswapV2Adapter.sol/IUniswapV2Adapter__factory.js +0 -295
- package/lib/types/factories/IUniswapV2Adapter.sol/index.d.ts +0 -3
- package/lib/types/factories/IUniswapV2Adapter.sol/index.js +0 -12
- package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.d.ts +0 -171
- package/lib/types/factories/IUniswapV3.sol/ISwapRouter__factory.js +0 -233
- package/lib/types/factories/IUniswapV3.sol/index.d.ts +0 -1
- package/lib/types/factories/IUniswapV3.sol/index.js +0 -8
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.d.ts +0 -32
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterEvents__factory.js +0 -50
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.d.ts +0 -11
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3AdapterExceptions__factory.js +0 -24
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.d.ts +0 -397
- package/lib/types/factories/IUniswapV3Adapter.sol/IUniswapV3Adapter__factory.js +0 -525
- package/lib/types/factories/IUniswapV3Adapter.sol/index.d.ts +0 -3
- package/lib/types/factories/IUniswapV3Adapter.sol/index.js +0 -12
- package/lib/types/factories/IVersion__factory.d.ts +0 -17
- package/lib/types/factories/IVersion__factory.js +0 -32
- package/lib/types/factories/IVotingContractV3__factory.d.ts +0 -43
- package/lib/types/factories/IVotingContractV3__factory.js +0 -65
- package/lib/types/factories/IWETHGateway__factory.d.ts +0 -57
- package/lib/types/factories/IWETHGateway__factory.js +0 -83
- package/lib/types/factories/IWETH__factory.d.ts +0 -193
- package/lib/types/factories/IWETH__factory.js +0 -260
- package/lib/types/factories/IYVault__factory.d.ts +0 -303
- package/lib/types/factories/IYVault__factory.js +0 -408
- package/lib/types/factories/IYearnV2Adapter__factory.d.ts +0 -229
- package/lib/types/factories/IYearnV2Adapter__factory.js +0 -311
- package/lib/types/factories/IZapperRegister__factory.d.ts +0 -41
- package/lib/types/factories/IZapperRegister__factory.js +0 -64
- package/lib/types/factories/IZapper__factory.d.ts +0 -127
- package/lib/types/factories/IZapper__factory.js +0 -177
- package/lib/types/factories/IstETH.sol/IstETHGetters__factory.d.ts +0 -249
- package/lib/types/factories/IstETH.sol/IstETHGetters__factory.js +0 -337
- package/lib/types/factories/IstETH.sol/IstETH__factory.d.ts +0 -263
- package/lib/types/factories/IstETH.sol/IstETH__factory.js +0 -356
- package/lib/types/factories/IstETH.sol/index.d.ts +0 -2
- package/lib/types/factories/IstETH.sol/index.js +0 -10
- package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.d.ts +0 -235
- package/lib/types/factories/IwstETH.sol/IwstETHGetters__factory.js +0 -318
- package/lib/types/factories/IwstETH.sol/IwstETH__factory.d.ts +0 -263
- package/lib/types/factories/IwstETH.sol/IwstETH__factory.js +0 -356
- package/lib/types/factories/IwstETH.sol/index.d.ts +0 -2
- package/lib/types/factories/IwstETH.sol/index.js +0 -10
- package/lib/types/factories/IwstETHGateway.sol/IwstETHGateWay__factory.d.ts +0 -47
- package/lib/types/factories/IwstETHGateway.sol/IwstETHGateWay__factory.js +0 -71
- package/lib/types/factories/IwstETHGateway.sol/index.d.ts +0 -1
- package/lib/types/factories/IwstETHGateway.sol/index.js +0 -8
- package/lib/types/factories/IwstETHV1Adapter__factory.d.ts +0 -159
- package/lib/types/factories/IwstETHV1Adapter__factory.js +0 -219
- package/lib/types/factories/NumericArrayLib__factory.d.ts +0 -26
- package/lib/types/factories/NumericArrayLib__factory.js +0 -44
- package/lib/types/factories/Ownable__factory.d.ts +0 -48
- package/lib/types/factories/Ownable__factory.js +0 -71
- package/lib/types/factories/PartialLiquidationBotV3__factory.d.ts +0 -285
- package/lib/types/factories/PartialLiquidationBotV3__factory.js +0 -376
- package/lib/types/factories/RedstoneConstants__factory.d.ts +0 -66
- package/lib/types/factories/RedstoneConstants__factory.js +0 -96
- package/lib/types/factories/RedstoneConsumerBase__factory.d.ts +0 -163
- package/lib/types/factories/RedstoneConsumerBase__factory.js +0 -223
- package/lib/types/factories/RedstoneConsumerNumericBase__factory.d.ts +0 -163
- package/lib/types/factories/RedstoneConsumerNumericBase__factory.js +0 -223
- package/lib/types/factories/RedstoneDefaultsLib__factory.d.ts +0 -46
- package/lib/types/factories/RedstoneDefaultsLib__factory.js +0 -71
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedEvents__factory.d.ts +0 -17
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedEvents__factory.js +0 -32
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions__factory.d.ts +0 -27
- package/lib/types/factories/RedstonePriceFeed.sol/IRedstonePriceFeedExceptions__factory.js +0 -44
- package/lib/types/factories/RedstonePriceFeed.sol/RedstonePriceFeed__factory.d.ts +0 -444
- package/lib/types/factories/RedstonePriceFeed.sol/RedstonePriceFeed__factory.js +0 -586
- package/lib/types/factories/RedstonePriceFeed.sol/index.d.ts +0 -3
- package/lib/types/factories/RedstonePriceFeed.sol/index.js +0 -12
- package/lib/types/factories/SafeERC20__factory.d.ts +0 -50
- package/lib/types/factories/SafeERC20__factory.js +0 -74
- package/lib/types/factories/index.d.ts +0 -100
- package/lib/types/factories/index.js +0 -191
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CalldataExtractor__factory = void 0;
|
|
4
|
-
/* Autogenerated file. Do not edit manually. */
|
|
5
|
-
/* tslint:disable */
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
const ethers_1 = require("ethers");
|
|
8
|
-
const _abi = [
|
|
9
|
-
{
|
|
10
|
-
type: "function",
|
|
11
|
-
name: "extractTimestampsAndAssertAllAreEqual",
|
|
12
|
-
inputs: [],
|
|
13
|
-
outputs: [
|
|
14
|
-
{
|
|
15
|
-
name: "extractedTimestamp",
|
|
16
|
-
type: "uint256",
|
|
17
|
-
internalType: "uint256",
|
|
18
|
-
},
|
|
19
|
-
],
|
|
20
|
-
stateMutability: "pure",
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
type: "error",
|
|
24
|
-
name: "CalldataMustHaveValidPayload",
|
|
25
|
-
inputs: [],
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
type: "error",
|
|
29
|
-
name: "CalldataOverOrUnderFlow",
|
|
30
|
-
inputs: [],
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
type: "error",
|
|
34
|
-
name: "DataPackageTimestampMustNotBeZero",
|
|
35
|
-
inputs: [],
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
type: "error",
|
|
39
|
-
name: "DataPackageTimestampsMustBeEqual",
|
|
40
|
-
inputs: [],
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
type: "error",
|
|
44
|
-
name: "EachSignerMustProvideTheSameValue",
|
|
45
|
-
inputs: [],
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
type: "error",
|
|
49
|
-
name: "EmptyCalldataPointersArr",
|
|
50
|
-
inputs: [],
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
type: "error",
|
|
54
|
-
name: "IncorrectUnsignedMetadataSize",
|
|
55
|
-
inputs: [],
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
type: "error",
|
|
59
|
-
name: "InsufficientNumberOfUniqueSigners",
|
|
60
|
-
inputs: [
|
|
61
|
-
{
|
|
62
|
-
name: "receivedSignersCount",
|
|
63
|
-
type: "uint256",
|
|
64
|
-
internalType: "uint256",
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
name: "requiredSignersCount",
|
|
68
|
-
type: "uint256",
|
|
69
|
-
internalType: "uint256",
|
|
70
|
-
},
|
|
71
|
-
],
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
type: "error",
|
|
75
|
-
name: "InvalidCalldataPointer",
|
|
76
|
-
inputs: [],
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
type: "error",
|
|
80
|
-
name: "RedstonePayloadMustHaveAtLeastOneDataPackage",
|
|
81
|
-
inputs: [],
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
type: "error",
|
|
85
|
-
name: "SignerNotAuthorised",
|
|
86
|
-
inputs: [
|
|
87
|
-
{
|
|
88
|
-
name: "receivedSigner",
|
|
89
|
-
type: "address",
|
|
90
|
-
internalType: "address",
|
|
91
|
-
},
|
|
92
|
-
],
|
|
93
|
-
},
|
|
94
|
-
];
|
|
95
|
-
const _bytecode = "0x608060405234801561001057600080fd5b506104b7806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c806355a547d514610030575b600080fd5b61003861004a565b60405190815260200160405180910390f35b6000806100556101ad565b90506000610062826102e2565b61ffff169050806000036100a2576040517f8552ff3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6100ad60028361040c565b915060005b818110156101a75760006100c584610335565b90506000806100d560688761040c565b905060006100e3823661041f565b9050803592508265ffffffffffff1660000361012b576040517f336dc9d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b87600003610143578265ffffffffffff169750610184565b878365ffffffffffff1614610184576040517fd9d1f46500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61018e848861040c565b965050505050808061019f90610432565b9150506100b2565b50505090565b60006602ed57011e00007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe036013581161480610215576040517fe7764c9e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003660291115610252576040517f5796f78a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd73601356000600961028b600362ffffff851661040c565b610295919061040c565b9050366102a360028361040c565b11156102db576040517fc30a7bd700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b9392505050565b6000806102f060208461040c565b90503681111561032c576040517f5796f78a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b36033592915050565b600080600061034384610371565b9092509050604e61035582602061040c565b61035f908461046a565b610369919061040c565b949350505050565b60008080808061038260418761040c565b9050600061039b61039460208461040c565b36906103c8565b8035945090506103ac8160036103c8565b62ffffff9490941697933563ffffffff16965092945050505050565b60006103d4828461041f565b90505b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808201808211156103d7576103d76103dd565b818103818111156103d7576103d76103dd565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610463576104636103dd565b5060010190565b80820281158282048414176103d7576103d76103dd56fea26469706673582212200c8cf363a34f56630ab2f1396b79389f83dba2498c9ffbce953e050f90996f7e64736f6c63430008110033";
|
|
96
|
-
const isSuperArgs = (xs) => xs.length > 1;
|
|
97
|
-
class CalldataExtractor__factory extends ethers_1.ContractFactory {
|
|
98
|
-
constructor(...args) {
|
|
99
|
-
if (isSuperArgs(args)) {
|
|
100
|
-
super(...args);
|
|
101
|
-
}
|
|
102
|
-
else {
|
|
103
|
-
super(_abi, _bytecode, args[0]);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
getDeployTransaction(overrides) {
|
|
107
|
-
return super.getDeployTransaction(overrides || {});
|
|
108
|
-
}
|
|
109
|
-
deploy(overrides) {
|
|
110
|
-
return super.deploy(overrides || {});
|
|
111
|
-
}
|
|
112
|
-
connect(runner) {
|
|
113
|
-
return super.connect(runner);
|
|
114
|
-
}
|
|
115
|
-
static bytecode = _bytecode;
|
|
116
|
-
static abi = _abi;
|
|
117
|
-
static createInterface() {
|
|
118
|
-
return new ethers_1.Interface(_abi);
|
|
119
|
-
}
|
|
120
|
-
static connect(address, runner) {
|
|
121
|
-
return new ethers_1.Contract(address, _abi, runner);
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
exports.CalldataExtractor__factory = CalldataExtractor__factory;
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
-
import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
-
import type { NonPayableOverrides } from "../common";
|
|
4
|
-
import type { Claimable, ClaimableInterface } from "../Claimable";
|
|
5
|
-
type ClaimableConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
-
export declare class Claimable__factory extends ContractFactory {
|
|
7
|
-
constructor(...args: ClaimableConstructorParams);
|
|
8
|
-
getDeployTransaction(overrides?: NonPayableOverrides & {
|
|
9
|
-
from?: string;
|
|
10
|
-
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(overrides?: NonPayableOverrides & {
|
|
12
|
-
from?: string;
|
|
13
|
-
}): Promise<Claimable & {
|
|
14
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
-
}>;
|
|
16
|
-
connect(runner: ContractRunner | null): Claimable__factory;
|
|
17
|
-
static readonly bytecode = "0x608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61045b8061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100675760003560e01c80638da5cb5b116100505780638da5cb5b1461007e578063e30c3978146100c1578063f2fde38b146100e157600080fd5b80634e71e0c81461006c578063715018a614610076575b600080fd5b6100746100f4565b005b6100746101ec565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b6001546100989073ffffffffffffffffffffffffffffffffffffffff1681565b6100746100ef3660046103e8565b610200565b60015473ffffffffffffffffffffffffffffffffffffffff1633146101a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f436c61696d61626c653a2053656e646572206973206e6f742070656e64696e6760448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6001546101c29073ffffffffffffffffffffffffffffffffffffffff166102f2565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6101f4610367565b6101fe60006102f2565b565b610208610367565b73ffffffffffffffffffffffffffffffffffffffff81166102ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f436c61696d61626c653a206e6577206f776e657220697320746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610197565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610197565b6000602082840312156103fa57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461041e57600080fd5b939250505056fea2646970667358221220c7bbeef6e1a7155e6c0d8d791460d36c10ef5a98101ce08d24dd37089d899dab64736f6c63430008110033";
|
|
18
|
-
static readonly abi: readonly [{
|
|
19
|
-
readonly type: "function";
|
|
20
|
-
readonly name: "claimOwnership";
|
|
21
|
-
readonly inputs: readonly [];
|
|
22
|
-
readonly outputs: readonly [];
|
|
23
|
-
readonly stateMutability: "nonpayable";
|
|
24
|
-
}, {
|
|
25
|
-
readonly type: "function";
|
|
26
|
-
readonly name: "owner";
|
|
27
|
-
readonly inputs: readonly [];
|
|
28
|
-
readonly outputs: readonly [{
|
|
29
|
-
readonly name: "";
|
|
30
|
-
readonly type: "address";
|
|
31
|
-
readonly internalType: "address";
|
|
32
|
-
}];
|
|
33
|
-
readonly stateMutability: "view";
|
|
34
|
-
}, {
|
|
35
|
-
readonly type: "function";
|
|
36
|
-
readonly name: "pendingOwner";
|
|
37
|
-
readonly inputs: readonly [];
|
|
38
|
-
readonly outputs: readonly [{
|
|
39
|
-
readonly name: "";
|
|
40
|
-
readonly type: "address";
|
|
41
|
-
readonly internalType: "address";
|
|
42
|
-
}];
|
|
43
|
-
readonly stateMutability: "view";
|
|
44
|
-
}, {
|
|
45
|
-
readonly type: "function";
|
|
46
|
-
readonly name: "renounceOwnership";
|
|
47
|
-
readonly inputs: readonly [];
|
|
48
|
-
readonly outputs: readonly [];
|
|
49
|
-
readonly stateMutability: "nonpayable";
|
|
50
|
-
}, {
|
|
51
|
-
readonly type: "function";
|
|
52
|
-
readonly name: "transferOwnership";
|
|
53
|
-
readonly inputs: readonly [{
|
|
54
|
-
readonly name: "newOwner";
|
|
55
|
-
readonly type: "address";
|
|
56
|
-
readonly internalType: "address";
|
|
57
|
-
}];
|
|
58
|
-
readonly outputs: readonly [];
|
|
59
|
-
readonly stateMutability: "nonpayable";
|
|
60
|
-
}, {
|
|
61
|
-
readonly type: "event";
|
|
62
|
-
readonly name: "OwnershipTransferred";
|
|
63
|
-
readonly inputs: readonly [{
|
|
64
|
-
readonly name: "previousOwner";
|
|
65
|
-
readonly type: "address";
|
|
66
|
-
readonly indexed: true;
|
|
67
|
-
readonly internalType: "address";
|
|
68
|
-
}, {
|
|
69
|
-
readonly name: "newOwner";
|
|
70
|
-
readonly type: "address";
|
|
71
|
-
readonly indexed: true;
|
|
72
|
-
readonly internalType: "address";
|
|
73
|
-
}];
|
|
74
|
-
readonly anonymous: false;
|
|
75
|
-
}];
|
|
76
|
-
static createInterface(): ClaimableInterface;
|
|
77
|
-
static connect(address: string, runner?: ContractRunner | null): Claimable;
|
|
78
|
-
}
|
|
79
|
-
export {};
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Claimable__factory = void 0;
|
|
4
|
-
/* Autogenerated file. Do not edit manually. */
|
|
5
|
-
/* tslint:disable */
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
const ethers_1 = require("ethers");
|
|
8
|
-
const _abi = [
|
|
9
|
-
{
|
|
10
|
-
type: "function",
|
|
11
|
-
name: "claimOwnership",
|
|
12
|
-
inputs: [],
|
|
13
|
-
outputs: [],
|
|
14
|
-
stateMutability: "nonpayable",
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
type: "function",
|
|
18
|
-
name: "owner",
|
|
19
|
-
inputs: [],
|
|
20
|
-
outputs: [
|
|
21
|
-
{
|
|
22
|
-
name: "",
|
|
23
|
-
type: "address",
|
|
24
|
-
internalType: "address",
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
stateMutability: "view",
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
type: "function",
|
|
31
|
-
name: "pendingOwner",
|
|
32
|
-
inputs: [],
|
|
33
|
-
outputs: [
|
|
34
|
-
{
|
|
35
|
-
name: "",
|
|
36
|
-
type: "address",
|
|
37
|
-
internalType: "address",
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
|
-
stateMutability: "view",
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
type: "function",
|
|
44
|
-
name: "renounceOwnership",
|
|
45
|
-
inputs: [],
|
|
46
|
-
outputs: [],
|
|
47
|
-
stateMutability: "nonpayable",
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
type: "function",
|
|
51
|
-
name: "transferOwnership",
|
|
52
|
-
inputs: [
|
|
53
|
-
{
|
|
54
|
-
name: "newOwner",
|
|
55
|
-
type: "address",
|
|
56
|
-
internalType: "address",
|
|
57
|
-
},
|
|
58
|
-
],
|
|
59
|
-
outputs: [],
|
|
60
|
-
stateMutability: "nonpayable",
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
type: "event",
|
|
64
|
-
name: "OwnershipTransferred",
|
|
65
|
-
inputs: [
|
|
66
|
-
{
|
|
67
|
-
name: "previousOwner",
|
|
68
|
-
type: "address",
|
|
69
|
-
indexed: true,
|
|
70
|
-
internalType: "address",
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
name: "newOwner",
|
|
74
|
-
type: "address",
|
|
75
|
-
indexed: true,
|
|
76
|
-
internalType: "address",
|
|
77
|
-
},
|
|
78
|
-
],
|
|
79
|
-
anonymous: false,
|
|
80
|
-
},
|
|
81
|
-
];
|
|
82
|
-
const _bytecode = "0x608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61045b8061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100675760003560e01c80638da5cb5b116100505780638da5cb5b1461007e578063e30c3978146100c1578063f2fde38b146100e157600080fd5b80634e71e0c81461006c578063715018a614610076575b600080fd5b6100746100f4565b005b6100746101ec565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b6001546100989073ffffffffffffffffffffffffffffffffffffffff1681565b6100746100ef3660046103e8565b610200565b60015473ffffffffffffffffffffffffffffffffffffffff1633146101a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f436c61696d61626c653a2053656e646572206973206e6f742070656e64696e6760448201527f206f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6001546101c29073ffffffffffffffffffffffffffffffffffffffff166102f2565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b6101f4610367565b6101fe60006102f2565b565b610208610367565b73ffffffffffffffffffffffffffffffffffffffff81166102ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f436c61696d61626c653a206e6577206f776e657220697320746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610197565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610197565b6000602082840312156103fa57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461041e57600080fd5b939250505056fea2646970667358221220c7bbeef6e1a7155e6c0d8d791460d36c10ef5a98101ce08d24dd37089d899dab64736f6c63430008110033";
|
|
83
|
-
const isSuperArgs = (xs) => xs.length > 1;
|
|
84
|
-
class Claimable__factory extends ethers_1.ContractFactory {
|
|
85
|
-
constructor(...args) {
|
|
86
|
-
if (isSuperArgs(args)) {
|
|
87
|
-
super(...args);
|
|
88
|
-
}
|
|
89
|
-
else {
|
|
90
|
-
super(_abi, _bytecode, args[0]);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
getDeployTransaction(overrides) {
|
|
94
|
-
return super.getDeployTransaction(overrides || {});
|
|
95
|
-
}
|
|
96
|
-
deploy(overrides) {
|
|
97
|
-
return super.deploy(overrides || {});
|
|
98
|
-
}
|
|
99
|
-
connect(runner) {
|
|
100
|
-
return super.connect(runner);
|
|
101
|
-
}
|
|
102
|
-
static bytecode = _bytecode;
|
|
103
|
-
static abi = _abi;
|
|
104
|
-
static createInterface() {
|
|
105
|
-
return new ethers_1.Interface(_abi);
|
|
106
|
-
}
|
|
107
|
-
static connect(address, runner) {
|
|
108
|
-
return new ethers_1.Contract(address, _abi, runner);
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
exports.Claimable__factory = Claimable__factory;
|
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
-
import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
-
import type { NonPayableOverrides } from "../common";
|
|
4
|
-
import type { CompositePriceFeed, CompositePriceFeedInterface, PriceFeedParamsStruct } from "../CompositePriceFeed";
|
|
5
|
-
type CompositePriceFeedConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
-
export declare class CompositePriceFeed__factory extends ContractFactory {
|
|
7
|
-
constructor(...args: CompositePriceFeedConstructorParams);
|
|
8
|
-
getDeployTransaction(priceFeeds: [PriceFeedParamsStruct, PriceFeedParamsStruct], overrides?: NonPayableOverrides & {
|
|
9
|
-
from?: string;
|
|
10
|
-
}): Promise<ContractDeployTransaction>;
|
|
11
|
-
deploy(priceFeeds: [PriceFeedParamsStruct, PriceFeedParamsStruct], overrides?: NonPayableOverrides & {
|
|
12
|
-
from?: string;
|
|
13
|
-
}): Promise<CompositePriceFeed & {
|
|
14
|
-
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
-
}>;
|
|
16
|
-
connect(runner: ContractRunner | null): CompositePriceFeed__factory;
|
|
17
|
-
static readonly bytecode = "0x6101406040523480156200001257600080fd5b5060405162001265380380620012658339810160408190526200003591620004a9565b805151620000438162000121565b602082015151620000548162000121565b8251516001600160a01b039081166080819052602080860180515190931660c052855181015163ffffffff90811660a052925181015190921660e0526040805163313ce56760e01b81529051919263313ce567926004808401938290030181865afa158015620000c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000ee919062000565565b620000fb90600a620006a4565b6101205260c05160e0516200011191906200014c565b1515610100525062000761915050565b6001600160a01b0381166200014957604051635919af9760e11b815260040160405180910390fd5b50565b60006200016d836001600160a01b03166200040060201b6200054b1760201c565b6200019a5760405163df4c572d60e01b81526001600160a01b038416600482015260240160405180910390fd5b826001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015620001f7575060408051601f3d908101601f19168201909252620001f49181019062000565565b60015b62000215576040516367a7cd4360e01b815260040160405180910390fd5b8060ff166008146200023a576040516367a7cd4360e01b815260040160405180910390fd5b50826001600160a01b031663d62ada116040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801562000298575060408051601f3d908101601f191682019092526200029591810190620006b5565b60015b15620002a15790505b826001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa925050508015620002fe575060408051601f3d908101601f19168201909252620002fb91810190620006f6565b60015b6200031c576040516367a7cd4360e01b815260040160405180910390fd5b85156200034f5763ffffffff87161562000349576040516347fbaa9760e01b815260040160405180910390fd5b620003f4565b8663ffffffff1660000362000377576040516347fbaa9760e01b815260040160405180910390fd5b6000886001600160a01b031663e75aeec86040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015620003d6575060408051601f3d908101601f19168201909252620003d391810190620006b5565b60015b15620003df5790505b80620003f257620003f285848a6200040f565b505b50505050505b92915050565b6001600160a01b03163b151590565b6000831362000431576040516329dbcc7160e11b815260040160405180910390fd5b6200044363ffffffff8216836200074b565b421062000463576040516316dd0ffb60e01b815260040160405180910390fd5b505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715620004a357620004a362000468565b60405290565b600060808284031215620004bc57600080fd5b82601f830112620004cc57600080fd5b620004d66200047e565b806080840185811115620004e957600080fd5b845b818110156200055a5760408188031215620005065760008081fd5b620005106200047e565b81516001600160a01b0381168114620005295760008081fd5b815260208281015163ffffffff81168114620005455760008081fd5b828201529085529390930192604001620004eb565b509095945050505050565b6000602082840312156200057857600080fd5b815160ff811681146200058a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005e8578160001904821115620005cc57620005cc62000591565b80851615620005da57918102915b93841c9390800290620005ac565b509250929050565b6000826200060157506001620003fa565b816200061057506000620003fa565b8160018114620006295760028114620006345762000654565b6001915050620003fa565b60ff84111562000648576200064862000591565b50506001821b620003fa565b5060208310610133831016604e8410600b841016171562000679575081810a620003fa565b620006858383620005a7565b80600019048211156200069c576200069c62000591565b029392505050565b60006200058a60ff841683620005f0565b600060208284031215620006c857600080fd5b815180151581146200058a57600080fd5b80516001600160501b0381168114620006f157600080fd5b919050565b600080600080600060a086880312156200070f57600080fd5b6200071a86620006d9565b94506020860151935060408601519250606086015191506200073f60808701620006d9565b90509295509295909350565b80820180821115620003fa57620003fa62000591565b60805160a05160c05160e0516101005161012051610a7d620007e86000396000818160de015261050401526000818161021401526104dc0152600081816101ba01526104bb01526000818161024b01528181610369015261049a015260008181610118015261046b01526000818161016e015281816102b8015261044a0152610a7d6000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c806354fd4d5011610081578063ab0ca0e11161005b578063ab0ca0e114610246578063d62ada111461026d578063feaf968c1461027557600080fd5b806354fd4d50146101f15780637284e416146101fa5780637ff361ec1461020f57600080fd5b8063385aee1b116100b2578063385aee1b146101695780633e777fd2146101b55780633fd0875f146101dc57600080fd5b80630ff8bdd2146100d9578063178793e814610113578063313ce5671461014f575b600080fd5b6101007f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020015b60405180910390f35b61013a7f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff909116815260200161010a565b610157600881565b60405160ff909116815260200161010a565b6101907f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161010a565b61013a7f000000000000000000000000000000000000000000000000000000000000000081565b6101e4600881565b60405161010a9190610683565b61010061012c81565b6102026102b4565b60405161010a91906106e8565b6102367f000000000000000000000000000000000000000000000000000000000000000081565b604051901515815260200161010a565b6101907f000000000000000000000000000000000000000000000000000000000000000081565b610236600181565b61027d61043d565b6040805169ffffffffffffffffffff968716815260208101959095528401929092526060830152909116608082015260a00161010a565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637284e4166040518163ffffffff1660e01b8152600401600060405180830381865afa158015610321573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526103679190810190610768565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637284e4166040518163ffffffff1660e01b8152600401600060405180830381865afa1580156103d2573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526104189190810190610768565b604051602001610429929190610833565b604051602081830303815290604052905090565b60008060008060006104917f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006000610567565b935060006105007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610567565b90507f000000000000000000000000000000000000000000000000000000000000000061052d82876108e4565b6105379190610936565b600097909650879550859450849350915050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b6000808473ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156105b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d991906109e4565b509194509092508491506105f49050576105f48282866105fc565b509392505050565b60008313610636576040517f53b798e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61064663ffffffff821683610a34565b421061067e576040517f16dd0ffb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60208101601383106106be577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b60005b838110156106df5781810151838201526020016106c7565b50506000910152565b60208152600082518060208401526107078160408501602087016106c4565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60006020828403121561077a57600080fd5b815167ffffffffffffffff8082111561079257600080fd5b818401915084601f8301126107a657600080fd5b8151818111156107b8576107b8610739565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156107fe576107fe610739565b8160405282815287602084870101111561081757600080fd5b6108288360208301602088016106c4565b979650505050505050565b600083516108458184602088016106c4565b7f202a200000000000000000000000000000000000000000000000000000000000908301908152835161087f8160038401602088016106c4565b7f20636f6d706f736974652070726963652066656564000000000000000000000060039290910191820152601801949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202600082127f80000000000000000000000000000000000000000000000000000000000000008414161561091c5761091c6108b5565b8181058314821517610930576109306108b5565b92915050565b60008261096c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83147f8000000000000000000000000000000000000000000000000000000000000000831416156109c0576109c06108b5565b500590565b805169ffffffffffffffffffff811681146109df57600080fd5b919050565b600080600080600060a086880312156109fc57600080fd5b610a05866109c5565b9450602086015193506040860151925060608601519150610a28608087016109c5565b90509295509295909350565b80820180821115610930576109306108b556fea264697066735822122017d09f3ba908f59cd4d31e27f918b97aebb6e7bbd9ff58813df49af79b13f50864736f6c63430008110033";
|
|
18
|
-
static readonly abi: readonly [{
|
|
19
|
-
readonly type: "constructor";
|
|
20
|
-
readonly inputs: readonly [{
|
|
21
|
-
readonly name: "priceFeeds";
|
|
22
|
-
readonly type: "tuple[2]";
|
|
23
|
-
readonly internalType: "struct PriceFeedParams[2]";
|
|
24
|
-
readonly components: readonly [{
|
|
25
|
-
readonly name: "priceFeed";
|
|
26
|
-
readonly type: "address";
|
|
27
|
-
readonly internalType: "address";
|
|
28
|
-
}, {
|
|
29
|
-
readonly name: "stalenessPeriod";
|
|
30
|
-
readonly type: "uint32";
|
|
31
|
-
readonly internalType: "uint32";
|
|
32
|
-
}];
|
|
33
|
-
}];
|
|
34
|
-
readonly stateMutability: "nonpayable";
|
|
35
|
-
}, {
|
|
36
|
-
readonly type: "function";
|
|
37
|
-
readonly name: "decimals";
|
|
38
|
-
readonly inputs: readonly [];
|
|
39
|
-
readonly outputs: readonly [{
|
|
40
|
-
readonly name: "";
|
|
41
|
-
readonly type: "uint8";
|
|
42
|
-
readonly internalType: "uint8";
|
|
43
|
-
}];
|
|
44
|
-
readonly stateMutability: "view";
|
|
45
|
-
}, {
|
|
46
|
-
readonly type: "function";
|
|
47
|
-
readonly name: "description";
|
|
48
|
-
readonly inputs: readonly [];
|
|
49
|
-
readonly outputs: readonly [{
|
|
50
|
-
readonly name: "";
|
|
51
|
-
readonly type: "string";
|
|
52
|
-
readonly internalType: "string";
|
|
53
|
-
}];
|
|
54
|
-
readonly stateMutability: "view";
|
|
55
|
-
}, {
|
|
56
|
-
readonly type: "function";
|
|
57
|
-
readonly name: "latestRoundData";
|
|
58
|
-
readonly inputs: readonly [];
|
|
59
|
-
readonly outputs: readonly [{
|
|
60
|
-
readonly name: "";
|
|
61
|
-
readonly type: "uint80";
|
|
62
|
-
readonly internalType: "uint80";
|
|
63
|
-
}, {
|
|
64
|
-
readonly name: "answer";
|
|
65
|
-
readonly type: "int256";
|
|
66
|
-
readonly internalType: "int256";
|
|
67
|
-
}, {
|
|
68
|
-
readonly name: "";
|
|
69
|
-
readonly type: "uint256";
|
|
70
|
-
readonly internalType: "uint256";
|
|
71
|
-
}, {
|
|
72
|
-
readonly name: "";
|
|
73
|
-
readonly type: "uint256";
|
|
74
|
-
readonly internalType: "uint256";
|
|
75
|
-
}, {
|
|
76
|
-
readonly name: "";
|
|
77
|
-
readonly type: "uint80";
|
|
78
|
-
readonly internalType: "uint80";
|
|
79
|
-
}];
|
|
80
|
-
readonly stateMutability: "view";
|
|
81
|
-
}, {
|
|
82
|
-
readonly type: "function";
|
|
83
|
-
readonly name: "priceFeed0";
|
|
84
|
-
readonly inputs: readonly [];
|
|
85
|
-
readonly outputs: readonly [{
|
|
86
|
-
readonly name: "";
|
|
87
|
-
readonly type: "address";
|
|
88
|
-
readonly internalType: "address";
|
|
89
|
-
}];
|
|
90
|
-
readonly stateMutability: "view";
|
|
91
|
-
}, {
|
|
92
|
-
readonly type: "function";
|
|
93
|
-
readonly name: "priceFeed1";
|
|
94
|
-
readonly inputs: readonly [];
|
|
95
|
-
readonly outputs: readonly [{
|
|
96
|
-
readonly name: "";
|
|
97
|
-
readonly type: "address";
|
|
98
|
-
readonly internalType: "address";
|
|
99
|
-
}];
|
|
100
|
-
readonly stateMutability: "view";
|
|
101
|
-
}, {
|
|
102
|
-
readonly type: "function";
|
|
103
|
-
readonly name: "priceFeedType";
|
|
104
|
-
readonly inputs: readonly [];
|
|
105
|
-
readonly outputs: readonly [{
|
|
106
|
-
readonly name: "";
|
|
107
|
-
readonly type: "uint8";
|
|
108
|
-
readonly internalType: "enum PriceFeedType";
|
|
109
|
-
}];
|
|
110
|
-
readonly stateMutability: "view";
|
|
111
|
-
}, {
|
|
112
|
-
readonly type: "function";
|
|
113
|
-
readonly name: "skipCheck1";
|
|
114
|
-
readonly inputs: readonly [];
|
|
115
|
-
readonly outputs: readonly [{
|
|
116
|
-
readonly name: "";
|
|
117
|
-
readonly type: "bool";
|
|
118
|
-
readonly internalType: "bool";
|
|
119
|
-
}];
|
|
120
|
-
readonly stateMutability: "view";
|
|
121
|
-
}, {
|
|
122
|
-
readonly type: "function";
|
|
123
|
-
readonly name: "skipPriceCheck";
|
|
124
|
-
readonly inputs: readonly [];
|
|
125
|
-
readonly outputs: readonly [{
|
|
126
|
-
readonly name: "";
|
|
127
|
-
readonly type: "bool";
|
|
128
|
-
readonly internalType: "bool";
|
|
129
|
-
}];
|
|
130
|
-
readonly stateMutability: "view";
|
|
131
|
-
}, {
|
|
132
|
-
readonly type: "function";
|
|
133
|
-
readonly name: "stalenessPeriod0";
|
|
134
|
-
readonly inputs: readonly [];
|
|
135
|
-
readonly outputs: readonly [{
|
|
136
|
-
readonly name: "";
|
|
137
|
-
readonly type: "uint32";
|
|
138
|
-
readonly internalType: "uint32";
|
|
139
|
-
}];
|
|
140
|
-
readonly stateMutability: "view";
|
|
141
|
-
}, {
|
|
142
|
-
readonly type: "function";
|
|
143
|
-
readonly name: "stalenessPeriod1";
|
|
144
|
-
readonly inputs: readonly [];
|
|
145
|
-
readonly outputs: readonly [{
|
|
146
|
-
readonly name: "";
|
|
147
|
-
readonly type: "uint32";
|
|
148
|
-
readonly internalType: "uint32";
|
|
149
|
-
}];
|
|
150
|
-
readonly stateMutability: "view";
|
|
151
|
-
}, {
|
|
152
|
-
readonly type: "function";
|
|
153
|
-
readonly name: "targetFeedScale";
|
|
154
|
-
readonly inputs: readonly [];
|
|
155
|
-
readonly outputs: readonly [{
|
|
156
|
-
readonly name: "";
|
|
157
|
-
readonly type: "int256";
|
|
158
|
-
readonly internalType: "int256";
|
|
159
|
-
}];
|
|
160
|
-
readonly stateMutability: "view";
|
|
161
|
-
}, {
|
|
162
|
-
readonly type: "function";
|
|
163
|
-
readonly name: "version";
|
|
164
|
-
readonly inputs: readonly [];
|
|
165
|
-
readonly outputs: readonly [{
|
|
166
|
-
readonly name: "";
|
|
167
|
-
readonly type: "uint256";
|
|
168
|
-
readonly internalType: "uint256";
|
|
169
|
-
}];
|
|
170
|
-
readonly stateMutability: "view";
|
|
171
|
-
}, {
|
|
172
|
-
readonly type: "error";
|
|
173
|
-
readonly name: "AddressIsNotContractException";
|
|
174
|
-
readonly inputs: readonly [{
|
|
175
|
-
readonly name: "";
|
|
176
|
-
readonly type: "address";
|
|
177
|
-
readonly internalType: "address";
|
|
178
|
-
}];
|
|
179
|
-
}, {
|
|
180
|
-
readonly type: "error";
|
|
181
|
-
readonly name: "IncorrectParameterException";
|
|
182
|
-
readonly inputs: readonly [];
|
|
183
|
-
}, {
|
|
184
|
-
readonly type: "error";
|
|
185
|
-
readonly name: "IncorrectPriceException";
|
|
186
|
-
readonly inputs: readonly [];
|
|
187
|
-
}, {
|
|
188
|
-
readonly type: "error";
|
|
189
|
-
readonly name: "IncorrectPriceFeedException";
|
|
190
|
-
readonly inputs: readonly [];
|
|
191
|
-
}, {
|
|
192
|
-
readonly type: "error";
|
|
193
|
-
readonly name: "StalePriceException";
|
|
194
|
-
readonly inputs: readonly [];
|
|
195
|
-
}, {
|
|
196
|
-
readonly type: "error";
|
|
197
|
-
readonly name: "ZeroAddressException";
|
|
198
|
-
readonly inputs: readonly [];
|
|
199
|
-
}];
|
|
200
|
-
static createInterface(): CompositePriceFeedInterface;
|
|
201
|
-
static connect(address: string, runner?: ContractRunner | null): CompositePriceFeed;
|
|
202
|
-
}
|
|
203
|
-
export {};
|