@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,1022 +0,0 @@
|
|
|
1
|
-
import { type ContractRunner } from "ethers";
|
|
2
|
-
import type { ICreditManagerV3, ICreditManagerV3Interface } from "../../ICreditManagerV3.sol/ICreditManagerV3";
|
|
3
|
-
export declare class ICreditManagerV3__factory {
|
|
4
|
-
static readonly abi: readonly [{
|
|
5
|
-
readonly type: "function";
|
|
6
|
-
readonly name: "accountFactory";
|
|
7
|
-
readonly inputs: readonly [];
|
|
8
|
-
readonly outputs: readonly [{
|
|
9
|
-
readonly name: "";
|
|
10
|
-
readonly type: "address";
|
|
11
|
-
readonly internalType: "address";
|
|
12
|
-
}];
|
|
13
|
-
readonly stateMutability: "view";
|
|
14
|
-
}, {
|
|
15
|
-
readonly type: "function";
|
|
16
|
-
readonly name: "adapterToContract";
|
|
17
|
-
readonly inputs: readonly [{
|
|
18
|
-
readonly name: "adapter";
|
|
19
|
-
readonly type: "address";
|
|
20
|
-
readonly internalType: "address";
|
|
21
|
-
}];
|
|
22
|
-
readonly outputs: readonly [{
|
|
23
|
-
readonly name: "targetContract";
|
|
24
|
-
readonly type: "address";
|
|
25
|
-
readonly internalType: "address";
|
|
26
|
-
}];
|
|
27
|
-
readonly stateMutability: "view";
|
|
28
|
-
}, {
|
|
29
|
-
readonly type: "function";
|
|
30
|
-
readonly name: "addCollateral";
|
|
31
|
-
readonly inputs: readonly [{
|
|
32
|
-
readonly name: "payer";
|
|
33
|
-
readonly type: "address";
|
|
34
|
-
readonly internalType: "address";
|
|
35
|
-
}, {
|
|
36
|
-
readonly name: "creditAccount";
|
|
37
|
-
readonly type: "address";
|
|
38
|
-
readonly internalType: "address";
|
|
39
|
-
}, {
|
|
40
|
-
readonly name: "token";
|
|
41
|
-
readonly type: "address";
|
|
42
|
-
readonly internalType: "address";
|
|
43
|
-
}, {
|
|
44
|
-
readonly name: "amount";
|
|
45
|
-
readonly type: "uint256";
|
|
46
|
-
readonly internalType: "uint256";
|
|
47
|
-
}];
|
|
48
|
-
readonly outputs: readonly [{
|
|
49
|
-
readonly name: "tokensToEnable";
|
|
50
|
-
readonly type: "uint256";
|
|
51
|
-
readonly internalType: "uint256";
|
|
52
|
-
}];
|
|
53
|
-
readonly stateMutability: "nonpayable";
|
|
54
|
-
}, {
|
|
55
|
-
readonly type: "function";
|
|
56
|
-
readonly name: "addToken";
|
|
57
|
-
readonly inputs: readonly [{
|
|
58
|
-
readonly name: "token";
|
|
59
|
-
readonly type: "address";
|
|
60
|
-
readonly internalType: "address";
|
|
61
|
-
}];
|
|
62
|
-
readonly outputs: readonly [];
|
|
63
|
-
readonly stateMutability: "nonpayable";
|
|
64
|
-
}, {
|
|
65
|
-
readonly type: "function";
|
|
66
|
-
readonly name: "addressProvider";
|
|
67
|
-
readonly inputs: readonly [];
|
|
68
|
-
readonly outputs: readonly [{
|
|
69
|
-
readonly name: "";
|
|
70
|
-
readonly type: "address";
|
|
71
|
-
readonly internalType: "address";
|
|
72
|
-
}];
|
|
73
|
-
readonly stateMutability: "view";
|
|
74
|
-
}, {
|
|
75
|
-
readonly type: "function";
|
|
76
|
-
readonly name: "approveCreditAccount";
|
|
77
|
-
readonly inputs: readonly [{
|
|
78
|
-
readonly name: "token";
|
|
79
|
-
readonly type: "address";
|
|
80
|
-
readonly internalType: "address";
|
|
81
|
-
}, {
|
|
82
|
-
readonly name: "amount";
|
|
83
|
-
readonly type: "uint256";
|
|
84
|
-
readonly internalType: "uint256";
|
|
85
|
-
}];
|
|
86
|
-
readonly outputs: readonly [];
|
|
87
|
-
readonly stateMutability: "nonpayable";
|
|
88
|
-
}, {
|
|
89
|
-
readonly type: "function";
|
|
90
|
-
readonly name: "approveToken";
|
|
91
|
-
readonly inputs: readonly [{
|
|
92
|
-
readonly name: "creditAccount";
|
|
93
|
-
readonly type: "address";
|
|
94
|
-
readonly internalType: "address";
|
|
95
|
-
}, {
|
|
96
|
-
readonly name: "token";
|
|
97
|
-
readonly type: "address";
|
|
98
|
-
readonly internalType: "address";
|
|
99
|
-
}, {
|
|
100
|
-
readonly name: "spender";
|
|
101
|
-
readonly type: "address";
|
|
102
|
-
readonly internalType: "address";
|
|
103
|
-
}, {
|
|
104
|
-
readonly name: "amount";
|
|
105
|
-
readonly type: "uint256";
|
|
106
|
-
readonly internalType: "uint256";
|
|
107
|
-
}];
|
|
108
|
-
readonly outputs: readonly [];
|
|
109
|
-
readonly stateMutability: "nonpayable";
|
|
110
|
-
}, {
|
|
111
|
-
readonly type: "function";
|
|
112
|
-
readonly name: "calcDebtAndCollateral";
|
|
113
|
-
readonly inputs: readonly [{
|
|
114
|
-
readonly name: "creditAccount";
|
|
115
|
-
readonly type: "address";
|
|
116
|
-
readonly internalType: "address";
|
|
117
|
-
}, {
|
|
118
|
-
readonly name: "task";
|
|
119
|
-
readonly type: "uint8";
|
|
120
|
-
readonly internalType: "enum CollateralCalcTask";
|
|
121
|
-
}];
|
|
122
|
-
readonly outputs: readonly [{
|
|
123
|
-
readonly name: "cdd";
|
|
124
|
-
readonly type: "tuple";
|
|
125
|
-
readonly internalType: "struct CollateralDebtData";
|
|
126
|
-
readonly components: readonly [{
|
|
127
|
-
readonly name: "debt";
|
|
128
|
-
readonly type: "uint256";
|
|
129
|
-
readonly internalType: "uint256";
|
|
130
|
-
}, {
|
|
131
|
-
readonly name: "cumulativeIndexNow";
|
|
132
|
-
readonly type: "uint256";
|
|
133
|
-
readonly internalType: "uint256";
|
|
134
|
-
}, {
|
|
135
|
-
readonly name: "cumulativeIndexLastUpdate";
|
|
136
|
-
readonly type: "uint256";
|
|
137
|
-
readonly internalType: "uint256";
|
|
138
|
-
}, {
|
|
139
|
-
readonly name: "cumulativeQuotaInterest";
|
|
140
|
-
readonly type: "uint128";
|
|
141
|
-
readonly internalType: "uint128";
|
|
142
|
-
}, {
|
|
143
|
-
readonly name: "accruedInterest";
|
|
144
|
-
readonly type: "uint256";
|
|
145
|
-
readonly internalType: "uint256";
|
|
146
|
-
}, {
|
|
147
|
-
readonly name: "accruedFees";
|
|
148
|
-
readonly type: "uint256";
|
|
149
|
-
readonly internalType: "uint256";
|
|
150
|
-
}, {
|
|
151
|
-
readonly name: "totalDebtUSD";
|
|
152
|
-
readonly type: "uint256";
|
|
153
|
-
readonly internalType: "uint256";
|
|
154
|
-
}, {
|
|
155
|
-
readonly name: "totalValue";
|
|
156
|
-
readonly type: "uint256";
|
|
157
|
-
readonly internalType: "uint256";
|
|
158
|
-
}, {
|
|
159
|
-
readonly name: "totalValueUSD";
|
|
160
|
-
readonly type: "uint256";
|
|
161
|
-
readonly internalType: "uint256";
|
|
162
|
-
}, {
|
|
163
|
-
readonly name: "twvUSD";
|
|
164
|
-
readonly type: "uint256";
|
|
165
|
-
readonly internalType: "uint256";
|
|
166
|
-
}, {
|
|
167
|
-
readonly name: "enabledTokensMask";
|
|
168
|
-
readonly type: "uint256";
|
|
169
|
-
readonly internalType: "uint256";
|
|
170
|
-
}, {
|
|
171
|
-
readonly name: "quotedTokensMask";
|
|
172
|
-
readonly type: "uint256";
|
|
173
|
-
readonly internalType: "uint256";
|
|
174
|
-
}, {
|
|
175
|
-
readonly name: "quotedTokens";
|
|
176
|
-
readonly type: "address[]";
|
|
177
|
-
readonly internalType: "address[]";
|
|
178
|
-
}, {
|
|
179
|
-
readonly name: "_poolQuotaKeeper";
|
|
180
|
-
readonly type: "address";
|
|
181
|
-
readonly internalType: "address";
|
|
182
|
-
}];
|
|
183
|
-
}];
|
|
184
|
-
readonly stateMutability: "view";
|
|
185
|
-
}, {
|
|
186
|
-
readonly type: "function";
|
|
187
|
-
readonly name: "closeCreditAccount";
|
|
188
|
-
readonly inputs: readonly [{
|
|
189
|
-
readonly name: "creditAccount";
|
|
190
|
-
readonly type: "address";
|
|
191
|
-
readonly internalType: "address";
|
|
192
|
-
}];
|
|
193
|
-
readonly outputs: readonly [];
|
|
194
|
-
readonly stateMutability: "nonpayable";
|
|
195
|
-
}, {
|
|
196
|
-
readonly type: "function";
|
|
197
|
-
readonly name: "collateralTokenByMask";
|
|
198
|
-
readonly inputs: readonly [{
|
|
199
|
-
readonly name: "tokenMask";
|
|
200
|
-
readonly type: "uint256";
|
|
201
|
-
readonly internalType: "uint256";
|
|
202
|
-
}];
|
|
203
|
-
readonly outputs: readonly [{
|
|
204
|
-
readonly name: "token";
|
|
205
|
-
readonly type: "address";
|
|
206
|
-
readonly internalType: "address";
|
|
207
|
-
}, {
|
|
208
|
-
readonly name: "liquidationThreshold";
|
|
209
|
-
readonly type: "uint16";
|
|
210
|
-
readonly internalType: "uint16";
|
|
211
|
-
}];
|
|
212
|
-
readonly stateMutability: "view";
|
|
213
|
-
}, {
|
|
214
|
-
readonly type: "function";
|
|
215
|
-
readonly name: "collateralTokensCount";
|
|
216
|
-
readonly inputs: readonly [];
|
|
217
|
-
readonly outputs: readonly [{
|
|
218
|
-
readonly name: "";
|
|
219
|
-
readonly type: "uint8";
|
|
220
|
-
readonly internalType: "uint8";
|
|
221
|
-
}];
|
|
222
|
-
readonly stateMutability: "view";
|
|
223
|
-
}, {
|
|
224
|
-
readonly type: "function";
|
|
225
|
-
readonly name: "contractToAdapter";
|
|
226
|
-
readonly inputs: readonly [{
|
|
227
|
-
readonly name: "targetContract";
|
|
228
|
-
readonly type: "address";
|
|
229
|
-
readonly internalType: "address";
|
|
230
|
-
}];
|
|
231
|
-
readonly outputs: readonly [{
|
|
232
|
-
readonly name: "adapter";
|
|
233
|
-
readonly type: "address";
|
|
234
|
-
readonly internalType: "address";
|
|
235
|
-
}];
|
|
236
|
-
readonly stateMutability: "view";
|
|
237
|
-
}, {
|
|
238
|
-
readonly type: "function";
|
|
239
|
-
readonly name: "creditAccountInfo";
|
|
240
|
-
readonly inputs: readonly [{
|
|
241
|
-
readonly name: "creditAccount";
|
|
242
|
-
readonly type: "address";
|
|
243
|
-
readonly internalType: "address";
|
|
244
|
-
}];
|
|
245
|
-
readonly outputs: readonly [{
|
|
246
|
-
readonly name: "debt";
|
|
247
|
-
readonly type: "uint256";
|
|
248
|
-
readonly internalType: "uint256";
|
|
249
|
-
}, {
|
|
250
|
-
readonly name: "cumulativeIndexLastUpdate";
|
|
251
|
-
readonly type: "uint256";
|
|
252
|
-
readonly internalType: "uint256";
|
|
253
|
-
}, {
|
|
254
|
-
readonly name: "cumulativeQuotaInterest";
|
|
255
|
-
readonly type: "uint128";
|
|
256
|
-
readonly internalType: "uint128";
|
|
257
|
-
}, {
|
|
258
|
-
readonly name: "quotaFees";
|
|
259
|
-
readonly type: "uint128";
|
|
260
|
-
readonly internalType: "uint128";
|
|
261
|
-
}, {
|
|
262
|
-
readonly name: "enabledTokensMask";
|
|
263
|
-
readonly type: "uint256";
|
|
264
|
-
readonly internalType: "uint256";
|
|
265
|
-
}, {
|
|
266
|
-
readonly name: "flags";
|
|
267
|
-
readonly type: "uint16";
|
|
268
|
-
readonly internalType: "uint16";
|
|
269
|
-
}, {
|
|
270
|
-
readonly name: "lastDebtUpdate";
|
|
271
|
-
readonly type: "uint64";
|
|
272
|
-
readonly internalType: "uint64";
|
|
273
|
-
}, {
|
|
274
|
-
readonly name: "borrower";
|
|
275
|
-
readonly type: "address";
|
|
276
|
-
readonly internalType: "address";
|
|
277
|
-
}];
|
|
278
|
-
readonly stateMutability: "view";
|
|
279
|
-
}, {
|
|
280
|
-
readonly type: "function";
|
|
281
|
-
readonly name: "creditAccounts";
|
|
282
|
-
readonly inputs: readonly [{
|
|
283
|
-
readonly name: "offset";
|
|
284
|
-
readonly type: "uint256";
|
|
285
|
-
readonly internalType: "uint256";
|
|
286
|
-
}, {
|
|
287
|
-
readonly name: "limit";
|
|
288
|
-
readonly type: "uint256";
|
|
289
|
-
readonly internalType: "uint256";
|
|
290
|
-
}];
|
|
291
|
-
readonly outputs: readonly [{
|
|
292
|
-
readonly name: "";
|
|
293
|
-
readonly type: "address[]";
|
|
294
|
-
readonly internalType: "address[]";
|
|
295
|
-
}];
|
|
296
|
-
readonly stateMutability: "view";
|
|
297
|
-
}, {
|
|
298
|
-
readonly type: "function";
|
|
299
|
-
readonly name: "creditAccounts";
|
|
300
|
-
readonly inputs: readonly [];
|
|
301
|
-
readonly outputs: readonly [{
|
|
302
|
-
readonly name: "";
|
|
303
|
-
readonly type: "address[]";
|
|
304
|
-
readonly internalType: "address[]";
|
|
305
|
-
}];
|
|
306
|
-
readonly stateMutability: "view";
|
|
307
|
-
}, {
|
|
308
|
-
readonly type: "function";
|
|
309
|
-
readonly name: "creditAccountsLen";
|
|
310
|
-
readonly inputs: readonly [];
|
|
311
|
-
readonly outputs: readonly [{
|
|
312
|
-
readonly name: "";
|
|
313
|
-
readonly type: "uint256";
|
|
314
|
-
readonly internalType: "uint256";
|
|
315
|
-
}];
|
|
316
|
-
readonly stateMutability: "view";
|
|
317
|
-
}, {
|
|
318
|
-
readonly type: "function";
|
|
319
|
-
readonly name: "creditConfigurator";
|
|
320
|
-
readonly inputs: readonly [];
|
|
321
|
-
readonly outputs: readonly [{
|
|
322
|
-
readonly name: "";
|
|
323
|
-
readonly type: "address";
|
|
324
|
-
readonly internalType: "address";
|
|
325
|
-
}];
|
|
326
|
-
readonly stateMutability: "view";
|
|
327
|
-
}, {
|
|
328
|
-
readonly type: "function";
|
|
329
|
-
readonly name: "creditFacade";
|
|
330
|
-
readonly inputs: readonly [];
|
|
331
|
-
readonly outputs: readonly [{
|
|
332
|
-
readonly name: "";
|
|
333
|
-
readonly type: "address";
|
|
334
|
-
readonly internalType: "address";
|
|
335
|
-
}];
|
|
336
|
-
readonly stateMutability: "view";
|
|
337
|
-
}, {
|
|
338
|
-
readonly type: "function";
|
|
339
|
-
readonly name: "enabledTokensMaskOf";
|
|
340
|
-
readonly inputs: readonly [{
|
|
341
|
-
readonly name: "creditAccount";
|
|
342
|
-
readonly type: "address";
|
|
343
|
-
readonly internalType: "address";
|
|
344
|
-
}];
|
|
345
|
-
readonly outputs: readonly [{
|
|
346
|
-
readonly name: "";
|
|
347
|
-
readonly type: "uint256";
|
|
348
|
-
readonly internalType: "uint256";
|
|
349
|
-
}];
|
|
350
|
-
readonly stateMutability: "view";
|
|
351
|
-
}, {
|
|
352
|
-
readonly type: "function";
|
|
353
|
-
readonly name: "execute";
|
|
354
|
-
readonly inputs: readonly [{
|
|
355
|
-
readonly name: "data";
|
|
356
|
-
readonly type: "bytes";
|
|
357
|
-
readonly internalType: "bytes";
|
|
358
|
-
}];
|
|
359
|
-
readonly outputs: readonly [{
|
|
360
|
-
readonly name: "result";
|
|
361
|
-
readonly type: "bytes";
|
|
362
|
-
readonly internalType: "bytes";
|
|
363
|
-
}];
|
|
364
|
-
readonly stateMutability: "nonpayable";
|
|
365
|
-
}, {
|
|
366
|
-
readonly type: "function";
|
|
367
|
-
readonly name: "externalCall";
|
|
368
|
-
readonly inputs: readonly [{
|
|
369
|
-
readonly name: "creditAccount";
|
|
370
|
-
readonly type: "address";
|
|
371
|
-
readonly internalType: "address";
|
|
372
|
-
}, {
|
|
373
|
-
readonly name: "target";
|
|
374
|
-
readonly type: "address";
|
|
375
|
-
readonly internalType: "address";
|
|
376
|
-
}, {
|
|
377
|
-
readonly name: "callData";
|
|
378
|
-
readonly type: "bytes";
|
|
379
|
-
readonly internalType: "bytes";
|
|
380
|
-
}];
|
|
381
|
-
readonly outputs: readonly [{
|
|
382
|
-
readonly name: "result";
|
|
383
|
-
readonly type: "bytes";
|
|
384
|
-
readonly internalType: "bytes";
|
|
385
|
-
}];
|
|
386
|
-
readonly stateMutability: "nonpayable";
|
|
387
|
-
}, {
|
|
388
|
-
readonly type: "function";
|
|
389
|
-
readonly name: "fees";
|
|
390
|
-
readonly inputs: readonly [];
|
|
391
|
-
readonly outputs: readonly [{
|
|
392
|
-
readonly name: "feeInterest";
|
|
393
|
-
readonly type: "uint16";
|
|
394
|
-
readonly internalType: "uint16";
|
|
395
|
-
}, {
|
|
396
|
-
readonly name: "feeLiquidation";
|
|
397
|
-
readonly type: "uint16";
|
|
398
|
-
readonly internalType: "uint16";
|
|
399
|
-
}, {
|
|
400
|
-
readonly name: "liquidationDiscount";
|
|
401
|
-
readonly type: "uint16";
|
|
402
|
-
readonly internalType: "uint16";
|
|
403
|
-
}, {
|
|
404
|
-
readonly name: "feeLiquidationExpired";
|
|
405
|
-
readonly type: "uint16";
|
|
406
|
-
readonly internalType: "uint16";
|
|
407
|
-
}, {
|
|
408
|
-
readonly name: "liquidationDiscountExpired";
|
|
409
|
-
readonly type: "uint16";
|
|
410
|
-
readonly internalType: "uint16";
|
|
411
|
-
}];
|
|
412
|
-
readonly stateMutability: "view";
|
|
413
|
-
}, {
|
|
414
|
-
readonly type: "function";
|
|
415
|
-
readonly name: "flagsOf";
|
|
416
|
-
readonly inputs: readonly [{
|
|
417
|
-
readonly name: "creditAccount";
|
|
418
|
-
readonly type: "address";
|
|
419
|
-
readonly internalType: "address";
|
|
420
|
-
}];
|
|
421
|
-
readonly outputs: readonly [{
|
|
422
|
-
readonly name: "";
|
|
423
|
-
readonly type: "uint16";
|
|
424
|
-
readonly internalType: "uint16";
|
|
425
|
-
}];
|
|
426
|
-
readonly stateMutability: "view";
|
|
427
|
-
}, {
|
|
428
|
-
readonly type: "function";
|
|
429
|
-
readonly name: "fullCollateralCheck";
|
|
430
|
-
readonly inputs: readonly [{
|
|
431
|
-
readonly name: "creditAccount";
|
|
432
|
-
readonly type: "address";
|
|
433
|
-
readonly internalType: "address";
|
|
434
|
-
}, {
|
|
435
|
-
readonly name: "enabledTokensMask";
|
|
436
|
-
readonly type: "uint256";
|
|
437
|
-
readonly internalType: "uint256";
|
|
438
|
-
}, {
|
|
439
|
-
readonly name: "collateralHints";
|
|
440
|
-
readonly type: "uint256[]";
|
|
441
|
-
readonly internalType: "uint256[]";
|
|
442
|
-
}, {
|
|
443
|
-
readonly name: "minHealthFactor";
|
|
444
|
-
readonly type: "uint16";
|
|
445
|
-
readonly internalType: "uint16";
|
|
446
|
-
}, {
|
|
447
|
-
readonly name: "useSafePrices";
|
|
448
|
-
readonly type: "bool";
|
|
449
|
-
readonly internalType: "bool";
|
|
450
|
-
}];
|
|
451
|
-
readonly outputs: readonly [{
|
|
452
|
-
readonly name: "enabledTokensMaskAfter";
|
|
453
|
-
readonly type: "uint256";
|
|
454
|
-
readonly internalType: "uint256";
|
|
455
|
-
}];
|
|
456
|
-
readonly stateMutability: "nonpayable";
|
|
457
|
-
}, {
|
|
458
|
-
readonly type: "function";
|
|
459
|
-
readonly name: "getActiveCreditAccountOrRevert";
|
|
460
|
-
readonly inputs: readonly [];
|
|
461
|
-
readonly outputs: readonly [{
|
|
462
|
-
readonly name: "creditAccount";
|
|
463
|
-
readonly type: "address";
|
|
464
|
-
readonly internalType: "address";
|
|
465
|
-
}];
|
|
466
|
-
readonly stateMutability: "view";
|
|
467
|
-
}, {
|
|
468
|
-
readonly type: "function";
|
|
469
|
-
readonly name: "getBorrowerOrRevert";
|
|
470
|
-
readonly inputs: readonly [{
|
|
471
|
-
readonly name: "creditAccount";
|
|
472
|
-
readonly type: "address";
|
|
473
|
-
readonly internalType: "address";
|
|
474
|
-
}];
|
|
475
|
-
readonly outputs: readonly [{
|
|
476
|
-
readonly name: "borrower";
|
|
477
|
-
readonly type: "address";
|
|
478
|
-
readonly internalType: "address";
|
|
479
|
-
}];
|
|
480
|
-
readonly stateMutability: "view";
|
|
481
|
-
}, {
|
|
482
|
-
readonly type: "function";
|
|
483
|
-
readonly name: "getTokenByMask";
|
|
484
|
-
readonly inputs: readonly [{
|
|
485
|
-
readonly name: "tokenMask";
|
|
486
|
-
readonly type: "uint256";
|
|
487
|
-
readonly internalType: "uint256";
|
|
488
|
-
}];
|
|
489
|
-
readonly outputs: readonly [{
|
|
490
|
-
readonly name: "token";
|
|
491
|
-
readonly type: "address";
|
|
492
|
-
readonly internalType: "address";
|
|
493
|
-
}];
|
|
494
|
-
readonly stateMutability: "view";
|
|
495
|
-
}, {
|
|
496
|
-
readonly type: "function";
|
|
497
|
-
readonly name: "getTokenMaskOrRevert";
|
|
498
|
-
readonly inputs: readonly [{
|
|
499
|
-
readonly name: "token";
|
|
500
|
-
readonly type: "address";
|
|
501
|
-
readonly internalType: "address";
|
|
502
|
-
}];
|
|
503
|
-
readonly outputs: readonly [{
|
|
504
|
-
readonly name: "tokenMask";
|
|
505
|
-
readonly type: "uint256";
|
|
506
|
-
readonly internalType: "uint256";
|
|
507
|
-
}];
|
|
508
|
-
readonly stateMutability: "view";
|
|
509
|
-
}, {
|
|
510
|
-
readonly type: "function";
|
|
511
|
-
readonly name: "isLiquidatable";
|
|
512
|
-
readonly inputs: readonly [{
|
|
513
|
-
readonly name: "creditAccount";
|
|
514
|
-
readonly type: "address";
|
|
515
|
-
readonly internalType: "address";
|
|
516
|
-
}, {
|
|
517
|
-
readonly name: "minHealthFactor";
|
|
518
|
-
readonly type: "uint16";
|
|
519
|
-
readonly internalType: "uint16";
|
|
520
|
-
}];
|
|
521
|
-
readonly outputs: readonly [{
|
|
522
|
-
readonly name: "";
|
|
523
|
-
readonly type: "bool";
|
|
524
|
-
readonly internalType: "bool";
|
|
525
|
-
}];
|
|
526
|
-
readonly stateMutability: "view";
|
|
527
|
-
}, {
|
|
528
|
-
readonly type: "function";
|
|
529
|
-
readonly name: "liquidateCreditAccount";
|
|
530
|
-
readonly inputs: readonly [{
|
|
531
|
-
readonly name: "creditAccount";
|
|
532
|
-
readonly type: "address";
|
|
533
|
-
readonly internalType: "address";
|
|
534
|
-
}, {
|
|
535
|
-
readonly name: "collateralDebtData";
|
|
536
|
-
readonly type: "tuple";
|
|
537
|
-
readonly internalType: "struct CollateralDebtData";
|
|
538
|
-
readonly components: readonly [{
|
|
539
|
-
readonly name: "debt";
|
|
540
|
-
readonly type: "uint256";
|
|
541
|
-
readonly internalType: "uint256";
|
|
542
|
-
}, {
|
|
543
|
-
readonly name: "cumulativeIndexNow";
|
|
544
|
-
readonly type: "uint256";
|
|
545
|
-
readonly internalType: "uint256";
|
|
546
|
-
}, {
|
|
547
|
-
readonly name: "cumulativeIndexLastUpdate";
|
|
548
|
-
readonly type: "uint256";
|
|
549
|
-
readonly internalType: "uint256";
|
|
550
|
-
}, {
|
|
551
|
-
readonly name: "cumulativeQuotaInterest";
|
|
552
|
-
readonly type: "uint128";
|
|
553
|
-
readonly internalType: "uint128";
|
|
554
|
-
}, {
|
|
555
|
-
readonly name: "accruedInterest";
|
|
556
|
-
readonly type: "uint256";
|
|
557
|
-
readonly internalType: "uint256";
|
|
558
|
-
}, {
|
|
559
|
-
readonly name: "accruedFees";
|
|
560
|
-
readonly type: "uint256";
|
|
561
|
-
readonly internalType: "uint256";
|
|
562
|
-
}, {
|
|
563
|
-
readonly name: "totalDebtUSD";
|
|
564
|
-
readonly type: "uint256";
|
|
565
|
-
readonly internalType: "uint256";
|
|
566
|
-
}, {
|
|
567
|
-
readonly name: "totalValue";
|
|
568
|
-
readonly type: "uint256";
|
|
569
|
-
readonly internalType: "uint256";
|
|
570
|
-
}, {
|
|
571
|
-
readonly name: "totalValueUSD";
|
|
572
|
-
readonly type: "uint256";
|
|
573
|
-
readonly internalType: "uint256";
|
|
574
|
-
}, {
|
|
575
|
-
readonly name: "twvUSD";
|
|
576
|
-
readonly type: "uint256";
|
|
577
|
-
readonly internalType: "uint256";
|
|
578
|
-
}, {
|
|
579
|
-
readonly name: "enabledTokensMask";
|
|
580
|
-
readonly type: "uint256";
|
|
581
|
-
readonly internalType: "uint256";
|
|
582
|
-
}, {
|
|
583
|
-
readonly name: "quotedTokensMask";
|
|
584
|
-
readonly type: "uint256";
|
|
585
|
-
readonly internalType: "uint256";
|
|
586
|
-
}, {
|
|
587
|
-
readonly name: "quotedTokens";
|
|
588
|
-
readonly type: "address[]";
|
|
589
|
-
readonly internalType: "address[]";
|
|
590
|
-
}, {
|
|
591
|
-
readonly name: "_poolQuotaKeeper";
|
|
592
|
-
readonly type: "address";
|
|
593
|
-
readonly internalType: "address";
|
|
594
|
-
}];
|
|
595
|
-
}, {
|
|
596
|
-
readonly name: "to";
|
|
597
|
-
readonly type: "address";
|
|
598
|
-
readonly internalType: "address";
|
|
599
|
-
}, {
|
|
600
|
-
readonly name: "isExpired";
|
|
601
|
-
readonly type: "bool";
|
|
602
|
-
readonly internalType: "bool";
|
|
603
|
-
}];
|
|
604
|
-
readonly outputs: readonly [{
|
|
605
|
-
readonly name: "remainingFunds";
|
|
606
|
-
readonly type: "uint256";
|
|
607
|
-
readonly internalType: "uint256";
|
|
608
|
-
}, {
|
|
609
|
-
readonly name: "loss";
|
|
610
|
-
readonly type: "uint256";
|
|
611
|
-
readonly internalType: "uint256";
|
|
612
|
-
}];
|
|
613
|
-
readonly stateMutability: "nonpayable";
|
|
614
|
-
}, {
|
|
615
|
-
readonly type: "function";
|
|
616
|
-
readonly name: "liquidationThresholds";
|
|
617
|
-
readonly inputs: readonly [{
|
|
618
|
-
readonly name: "token";
|
|
619
|
-
readonly type: "address";
|
|
620
|
-
readonly internalType: "address";
|
|
621
|
-
}];
|
|
622
|
-
readonly outputs: readonly [{
|
|
623
|
-
readonly name: "lt";
|
|
624
|
-
readonly type: "uint16";
|
|
625
|
-
readonly internalType: "uint16";
|
|
626
|
-
}];
|
|
627
|
-
readonly stateMutability: "view";
|
|
628
|
-
}, {
|
|
629
|
-
readonly type: "function";
|
|
630
|
-
readonly name: "ltParams";
|
|
631
|
-
readonly inputs: readonly [{
|
|
632
|
-
readonly name: "token";
|
|
633
|
-
readonly type: "address";
|
|
634
|
-
readonly internalType: "address";
|
|
635
|
-
}];
|
|
636
|
-
readonly outputs: readonly [{
|
|
637
|
-
readonly name: "ltInitial";
|
|
638
|
-
readonly type: "uint16";
|
|
639
|
-
readonly internalType: "uint16";
|
|
640
|
-
}, {
|
|
641
|
-
readonly name: "ltFinal";
|
|
642
|
-
readonly type: "uint16";
|
|
643
|
-
readonly internalType: "uint16";
|
|
644
|
-
}, {
|
|
645
|
-
readonly name: "timestampRampStart";
|
|
646
|
-
readonly type: "uint40";
|
|
647
|
-
readonly internalType: "uint40";
|
|
648
|
-
}, {
|
|
649
|
-
readonly name: "rampDuration";
|
|
650
|
-
readonly type: "uint24";
|
|
651
|
-
readonly internalType: "uint24";
|
|
652
|
-
}];
|
|
653
|
-
readonly stateMutability: "view";
|
|
654
|
-
}, {
|
|
655
|
-
readonly type: "function";
|
|
656
|
-
readonly name: "manageDebt";
|
|
657
|
-
readonly inputs: readonly [{
|
|
658
|
-
readonly name: "creditAccount";
|
|
659
|
-
readonly type: "address";
|
|
660
|
-
readonly internalType: "address";
|
|
661
|
-
}, {
|
|
662
|
-
readonly name: "amount";
|
|
663
|
-
readonly type: "uint256";
|
|
664
|
-
readonly internalType: "uint256";
|
|
665
|
-
}, {
|
|
666
|
-
readonly name: "enabledTokensMask";
|
|
667
|
-
readonly type: "uint256";
|
|
668
|
-
readonly internalType: "uint256";
|
|
669
|
-
}, {
|
|
670
|
-
readonly name: "action";
|
|
671
|
-
readonly type: "uint8";
|
|
672
|
-
readonly internalType: "enum ManageDebtAction";
|
|
673
|
-
}];
|
|
674
|
-
readonly outputs: readonly [{
|
|
675
|
-
readonly name: "newDebt";
|
|
676
|
-
readonly type: "uint256";
|
|
677
|
-
readonly internalType: "uint256";
|
|
678
|
-
}, {
|
|
679
|
-
readonly name: "tokensToEnable";
|
|
680
|
-
readonly type: "uint256";
|
|
681
|
-
readonly internalType: "uint256";
|
|
682
|
-
}, {
|
|
683
|
-
readonly name: "tokensToDisable";
|
|
684
|
-
readonly type: "uint256";
|
|
685
|
-
readonly internalType: "uint256";
|
|
686
|
-
}];
|
|
687
|
-
readonly stateMutability: "nonpayable";
|
|
688
|
-
}, {
|
|
689
|
-
readonly type: "function";
|
|
690
|
-
readonly name: "maxEnabledTokens";
|
|
691
|
-
readonly inputs: readonly [];
|
|
692
|
-
readonly outputs: readonly [{
|
|
693
|
-
readonly name: "";
|
|
694
|
-
readonly type: "uint8";
|
|
695
|
-
readonly internalType: "uint8";
|
|
696
|
-
}];
|
|
697
|
-
readonly stateMutability: "view";
|
|
698
|
-
}, {
|
|
699
|
-
readonly type: "function";
|
|
700
|
-
readonly name: "name";
|
|
701
|
-
readonly inputs: readonly [];
|
|
702
|
-
readonly outputs: readonly [{
|
|
703
|
-
readonly name: "";
|
|
704
|
-
readonly type: "string";
|
|
705
|
-
readonly internalType: "string";
|
|
706
|
-
}];
|
|
707
|
-
readonly stateMutability: "view";
|
|
708
|
-
}, {
|
|
709
|
-
readonly type: "function";
|
|
710
|
-
readonly name: "openCreditAccount";
|
|
711
|
-
readonly inputs: readonly [{
|
|
712
|
-
readonly name: "onBehalfOf";
|
|
713
|
-
readonly type: "address";
|
|
714
|
-
readonly internalType: "address";
|
|
715
|
-
}];
|
|
716
|
-
readonly outputs: readonly [{
|
|
717
|
-
readonly name: "";
|
|
718
|
-
readonly type: "address";
|
|
719
|
-
readonly internalType: "address";
|
|
720
|
-
}];
|
|
721
|
-
readonly stateMutability: "nonpayable";
|
|
722
|
-
}, {
|
|
723
|
-
readonly type: "function";
|
|
724
|
-
readonly name: "pool";
|
|
725
|
-
readonly inputs: readonly [];
|
|
726
|
-
readonly outputs: readonly [{
|
|
727
|
-
readonly name: "";
|
|
728
|
-
readonly type: "address";
|
|
729
|
-
readonly internalType: "address";
|
|
730
|
-
}];
|
|
731
|
-
readonly stateMutability: "view";
|
|
732
|
-
}, {
|
|
733
|
-
readonly type: "function";
|
|
734
|
-
readonly name: "poolQuotaKeeper";
|
|
735
|
-
readonly inputs: readonly [];
|
|
736
|
-
readonly outputs: readonly [{
|
|
737
|
-
readonly name: "";
|
|
738
|
-
readonly type: "address";
|
|
739
|
-
readonly internalType: "address";
|
|
740
|
-
}];
|
|
741
|
-
readonly stateMutability: "view";
|
|
742
|
-
}, {
|
|
743
|
-
readonly type: "function";
|
|
744
|
-
readonly name: "priceOracle";
|
|
745
|
-
readonly inputs: readonly [];
|
|
746
|
-
readonly outputs: readonly [{
|
|
747
|
-
readonly name: "";
|
|
748
|
-
readonly type: "address";
|
|
749
|
-
readonly internalType: "address";
|
|
750
|
-
}];
|
|
751
|
-
readonly stateMutability: "view";
|
|
752
|
-
}, {
|
|
753
|
-
readonly type: "function";
|
|
754
|
-
readonly name: "quotedTokensMask";
|
|
755
|
-
readonly inputs: readonly [];
|
|
756
|
-
readonly outputs: readonly [{
|
|
757
|
-
readonly name: "";
|
|
758
|
-
readonly type: "uint256";
|
|
759
|
-
readonly internalType: "uint256";
|
|
760
|
-
}];
|
|
761
|
-
readonly stateMutability: "view";
|
|
762
|
-
}, {
|
|
763
|
-
readonly type: "function";
|
|
764
|
-
readonly name: "revokeAdapterAllowances";
|
|
765
|
-
readonly inputs: readonly [{
|
|
766
|
-
readonly name: "creditAccount";
|
|
767
|
-
readonly type: "address";
|
|
768
|
-
readonly internalType: "address";
|
|
769
|
-
}, {
|
|
770
|
-
readonly name: "revocations";
|
|
771
|
-
readonly type: "tuple[]";
|
|
772
|
-
readonly internalType: "struct RevocationPair[]";
|
|
773
|
-
readonly components: readonly [{
|
|
774
|
-
readonly name: "spender";
|
|
775
|
-
readonly type: "address";
|
|
776
|
-
readonly internalType: "address";
|
|
777
|
-
}, {
|
|
778
|
-
readonly name: "token";
|
|
779
|
-
readonly type: "address";
|
|
780
|
-
readonly internalType: "address";
|
|
781
|
-
}];
|
|
782
|
-
}];
|
|
783
|
-
readonly outputs: readonly [];
|
|
784
|
-
readonly stateMutability: "nonpayable";
|
|
785
|
-
}, {
|
|
786
|
-
readonly type: "function";
|
|
787
|
-
readonly name: "setActiveCreditAccount";
|
|
788
|
-
readonly inputs: readonly [{
|
|
789
|
-
readonly name: "creditAccount";
|
|
790
|
-
readonly type: "address";
|
|
791
|
-
readonly internalType: "address";
|
|
792
|
-
}];
|
|
793
|
-
readonly outputs: readonly [];
|
|
794
|
-
readonly stateMutability: "nonpayable";
|
|
795
|
-
}, {
|
|
796
|
-
readonly type: "function";
|
|
797
|
-
readonly name: "setCollateralTokenData";
|
|
798
|
-
readonly inputs: readonly [{
|
|
799
|
-
readonly name: "token";
|
|
800
|
-
readonly type: "address";
|
|
801
|
-
readonly internalType: "address";
|
|
802
|
-
}, {
|
|
803
|
-
readonly name: "ltInitial";
|
|
804
|
-
readonly type: "uint16";
|
|
805
|
-
readonly internalType: "uint16";
|
|
806
|
-
}, {
|
|
807
|
-
readonly name: "ltFinal";
|
|
808
|
-
readonly type: "uint16";
|
|
809
|
-
readonly internalType: "uint16";
|
|
810
|
-
}, {
|
|
811
|
-
readonly name: "timestampRampStart";
|
|
812
|
-
readonly type: "uint40";
|
|
813
|
-
readonly internalType: "uint40";
|
|
814
|
-
}, {
|
|
815
|
-
readonly name: "rampDuration";
|
|
816
|
-
readonly type: "uint24";
|
|
817
|
-
readonly internalType: "uint24";
|
|
818
|
-
}];
|
|
819
|
-
readonly outputs: readonly [];
|
|
820
|
-
readonly stateMutability: "nonpayable";
|
|
821
|
-
}, {
|
|
822
|
-
readonly type: "function";
|
|
823
|
-
readonly name: "setContractAllowance";
|
|
824
|
-
readonly inputs: readonly [{
|
|
825
|
-
readonly name: "adapter";
|
|
826
|
-
readonly type: "address";
|
|
827
|
-
readonly internalType: "address";
|
|
828
|
-
}, {
|
|
829
|
-
readonly name: "targetContract";
|
|
830
|
-
readonly type: "address";
|
|
831
|
-
readonly internalType: "address";
|
|
832
|
-
}];
|
|
833
|
-
readonly outputs: readonly [];
|
|
834
|
-
readonly stateMutability: "nonpayable";
|
|
835
|
-
}, {
|
|
836
|
-
readonly type: "function";
|
|
837
|
-
readonly name: "setCreditConfigurator";
|
|
838
|
-
readonly inputs: readonly [{
|
|
839
|
-
readonly name: "creditConfigurator";
|
|
840
|
-
readonly type: "address";
|
|
841
|
-
readonly internalType: "address";
|
|
842
|
-
}];
|
|
843
|
-
readonly outputs: readonly [];
|
|
844
|
-
readonly stateMutability: "nonpayable";
|
|
845
|
-
}, {
|
|
846
|
-
readonly type: "function";
|
|
847
|
-
readonly name: "setCreditFacade";
|
|
848
|
-
readonly inputs: readonly [{
|
|
849
|
-
readonly name: "creditFacade";
|
|
850
|
-
readonly type: "address";
|
|
851
|
-
readonly internalType: "address";
|
|
852
|
-
}];
|
|
853
|
-
readonly outputs: readonly [];
|
|
854
|
-
readonly stateMutability: "nonpayable";
|
|
855
|
-
}, {
|
|
856
|
-
readonly type: "function";
|
|
857
|
-
readonly name: "setFees";
|
|
858
|
-
readonly inputs: readonly [{
|
|
859
|
-
readonly name: "feeInterest";
|
|
860
|
-
readonly type: "uint16";
|
|
861
|
-
readonly internalType: "uint16";
|
|
862
|
-
}, {
|
|
863
|
-
readonly name: "feeLiquidation";
|
|
864
|
-
readonly type: "uint16";
|
|
865
|
-
readonly internalType: "uint16";
|
|
866
|
-
}, {
|
|
867
|
-
readonly name: "liquidationDiscount";
|
|
868
|
-
readonly type: "uint16";
|
|
869
|
-
readonly internalType: "uint16";
|
|
870
|
-
}, {
|
|
871
|
-
readonly name: "feeLiquidationExpired";
|
|
872
|
-
readonly type: "uint16";
|
|
873
|
-
readonly internalType: "uint16";
|
|
874
|
-
}, {
|
|
875
|
-
readonly name: "liquidationDiscountExpired";
|
|
876
|
-
readonly type: "uint16";
|
|
877
|
-
readonly internalType: "uint16";
|
|
878
|
-
}];
|
|
879
|
-
readonly outputs: readonly [];
|
|
880
|
-
readonly stateMutability: "nonpayable";
|
|
881
|
-
}, {
|
|
882
|
-
readonly type: "function";
|
|
883
|
-
readonly name: "setFlagFor";
|
|
884
|
-
readonly inputs: readonly [{
|
|
885
|
-
readonly name: "creditAccount";
|
|
886
|
-
readonly type: "address";
|
|
887
|
-
readonly internalType: "address";
|
|
888
|
-
}, {
|
|
889
|
-
readonly name: "flag";
|
|
890
|
-
readonly type: "uint16";
|
|
891
|
-
readonly internalType: "uint16";
|
|
892
|
-
}, {
|
|
893
|
-
readonly name: "value";
|
|
894
|
-
readonly type: "bool";
|
|
895
|
-
readonly internalType: "bool";
|
|
896
|
-
}];
|
|
897
|
-
readonly outputs: readonly [];
|
|
898
|
-
readonly stateMutability: "nonpayable";
|
|
899
|
-
}, {
|
|
900
|
-
readonly type: "function";
|
|
901
|
-
readonly name: "setMaxEnabledTokens";
|
|
902
|
-
readonly inputs: readonly [{
|
|
903
|
-
readonly name: "maxEnabledTokens";
|
|
904
|
-
readonly type: "uint8";
|
|
905
|
-
readonly internalType: "uint8";
|
|
906
|
-
}];
|
|
907
|
-
readonly outputs: readonly [];
|
|
908
|
-
readonly stateMutability: "nonpayable";
|
|
909
|
-
}, {
|
|
910
|
-
readonly type: "function";
|
|
911
|
-
readonly name: "setPriceOracle";
|
|
912
|
-
readonly inputs: readonly [{
|
|
913
|
-
readonly name: "priceOracle";
|
|
914
|
-
readonly type: "address";
|
|
915
|
-
readonly internalType: "address";
|
|
916
|
-
}];
|
|
917
|
-
readonly outputs: readonly [];
|
|
918
|
-
readonly stateMutability: "nonpayable";
|
|
919
|
-
}, {
|
|
920
|
-
readonly type: "function";
|
|
921
|
-
readonly name: "setQuotedMask";
|
|
922
|
-
readonly inputs: readonly [{
|
|
923
|
-
readonly name: "quotedTokensMask";
|
|
924
|
-
readonly type: "uint256";
|
|
925
|
-
readonly internalType: "uint256";
|
|
926
|
-
}];
|
|
927
|
-
readonly outputs: readonly [];
|
|
928
|
-
readonly stateMutability: "nonpayable";
|
|
929
|
-
}, {
|
|
930
|
-
readonly type: "function";
|
|
931
|
-
readonly name: "underlying";
|
|
932
|
-
readonly inputs: readonly [];
|
|
933
|
-
readonly outputs: readonly [{
|
|
934
|
-
readonly name: "";
|
|
935
|
-
readonly type: "address";
|
|
936
|
-
readonly internalType: "address";
|
|
937
|
-
}];
|
|
938
|
-
readonly stateMutability: "view";
|
|
939
|
-
}, {
|
|
940
|
-
readonly type: "function";
|
|
941
|
-
readonly name: "updateQuota";
|
|
942
|
-
readonly inputs: readonly [{
|
|
943
|
-
readonly name: "creditAccount";
|
|
944
|
-
readonly type: "address";
|
|
945
|
-
readonly internalType: "address";
|
|
946
|
-
}, {
|
|
947
|
-
readonly name: "token";
|
|
948
|
-
readonly type: "address";
|
|
949
|
-
readonly internalType: "address";
|
|
950
|
-
}, {
|
|
951
|
-
readonly name: "quotaChange";
|
|
952
|
-
readonly type: "int96";
|
|
953
|
-
readonly internalType: "int96";
|
|
954
|
-
}, {
|
|
955
|
-
readonly name: "minQuota";
|
|
956
|
-
readonly type: "uint96";
|
|
957
|
-
readonly internalType: "uint96";
|
|
958
|
-
}, {
|
|
959
|
-
readonly name: "maxQuota";
|
|
960
|
-
readonly type: "uint96";
|
|
961
|
-
readonly internalType: "uint96";
|
|
962
|
-
}];
|
|
963
|
-
readonly outputs: readonly [{
|
|
964
|
-
readonly name: "tokensToEnable";
|
|
965
|
-
readonly type: "uint256";
|
|
966
|
-
readonly internalType: "uint256";
|
|
967
|
-
}, {
|
|
968
|
-
readonly name: "tokensToDisable";
|
|
969
|
-
readonly type: "uint256";
|
|
970
|
-
readonly internalType: "uint256";
|
|
971
|
-
}];
|
|
972
|
-
readonly stateMutability: "nonpayable";
|
|
973
|
-
}, {
|
|
974
|
-
readonly type: "function";
|
|
975
|
-
readonly name: "version";
|
|
976
|
-
readonly inputs: readonly [];
|
|
977
|
-
readonly outputs: readonly [{
|
|
978
|
-
readonly name: "";
|
|
979
|
-
readonly type: "uint256";
|
|
980
|
-
readonly internalType: "uint256";
|
|
981
|
-
}];
|
|
982
|
-
readonly stateMutability: "view";
|
|
983
|
-
}, {
|
|
984
|
-
readonly type: "function";
|
|
985
|
-
readonly name: "withdrawCollateral";
|
|
986
|
-
readonly inputs: readonly [{
|
|
987
|
-
readonly name: "creditAccount";
|
|
988
|
-
readonly type: "address";
|
|
989
|
-
readonly internalType: "address";
|
|
990
|
-
}, {
|
|
991
|
-
readonly name: "token";
|
|
992
|
-
readonly type: "address";
|
|
993
|
-
readonly internalType: "address";
|
|
994
|
-
}, {
|
|
995
|
-
readonly name: "amount";
|
|
996
|
-
readonly type: "uint256";
|
|
997
|
-
readonly internalType: "uint256";
|
|
998
|
-
}, {
|
|
999
|
-
readonly name: "to";
|
|
1000
|
-
readonly type: "address";
|
|
1001
|
-
readonly internalType: "address";
|
|
1002
|
-
}];
|
|
1003
|
-
readonly outputs: readonly [{
|
|
1004
|
-
readonly name: "tokensToDisable";
|
|
1005
|
-
readonly type: "uint256";
|
|
1006
|
-
readonly internalType: "uint256";
|
|
1007
|
-
}];
|
|
1008
|
-
readonly stateMutability: "nonpayable";
|
|
1009
|
-
}, {
|
|
1010
|
-
readonly type: "event";
|
|
1011
|
-
readonly name: "SetCreditConfigurator";
|
|
1012
|
-
readonly inputs: readonly [{
|
|
1013
|
-
readonly name: "newConfigurator";
|
|
1014
|
-
readonly type: "address";
|
|
1015
|
-
readonly indexed: true;
|
|
1016
|
-
readonly internalType: "address";
|
|
1017
|
-
}];
|
|
1018
|
-
readonly anonymous: false;
|
|
1019
|
-
}];
|
|
1020
|
-
static createInterface(): ICreditManagerV3Interface;
|
|
1021
|
-
static connect(address: string, runner?: ContractRunner | null): ICreditManagerV3;
|
|
1022
|
-
}
|