@gearbox-protocol/sdk 3.0.0-vfour.261 → 3.0.0-vfour.262

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.
@@ -56651,8 +56651,6 @@ var AP_CONTROLLER_TIMELOCK = "CONTROLLER_TIMELOCK";
56651
56651
  var AP_CREDIT_ACCOUNT_COMPRESSOR = "CREDIT_ACCOUNT_COMPRESSOR";
56652
56652
  var AP_CREDIT_SUITE_COMPRESSOR = "CREDIT_SUITE_COMPRESSOR";
56653
56653
  var AP_DATA_COMPRESSOR = "DATA_COMPRESSOR";
56654
- var AP_DEGEN_DISTRIBUTOR = "DEGEN_DISTRIBUTOR";
56655
- var AP_DEGEN_NFT = "DEGEN_NFT";
56656
56654
  var AP_DELEVERAGE_BOT_HV = "DELEVERAGE_BOT_HV";
56657
56655
  var AP_DELEVERAGE_BOT_LV = "DELEVERAGE_BOT_LV";
56658
56656
  var AP_DELEVERAGE_BOT_PEGGED = "DELEVERAGE_BOT_PEGGED";
@@ -56663,14 +56661,13 @@ var AP_INFLATION_ATTACK_BLOCKER = "INFLATION_ATTACK_BLOCKER";
56663
56661
  var AP_INSOLVENCY_CHECKER = "INSOLVENCY_CHECKER";
56664
56662
  var AP_MARKET_COMPRESSOR = "MARKET_COMPRESSOR";
56665
56663
  var AP_MARKET_CONFIGURATOR = "MARKET_CONFIGURATOR";
56666
- var AP_MULTI_PAUSE = "MULTI_PAUSE";
56667
56664
  var AP_PARTIAL_LIQUIDATION_BOT = "PARTIAL_LIQUIDATION_BOT";
56668
56665
  var AP_PERIPHERY_COMPRESSOR = "PERIPHERY_COMPRESSOR";
56669
56666
  var AP_POOL_COMPRESSOR = "POOL_COMPRESSOR";
56670
56667
  var AP_PRICE_FEED_COMPRESSOR = "PRICE_FEED_COMPRESSOR";
56671
56668
  var AP_PRICE_ORACLE = "PRICE_ORACLE";
56672
56669
  var AP_REWARDS_COMPRESSOR = "REWARDS_COMPRESSOR";
56673
- var AP_ROUTER = "ROUTER";
56670
+ var AP_ROUTER = "LOCAL::ROUTER";
56674
56671
  var AP_TOKEN_COMPRESSOR = "TOKEN_COMPRESSOR";
56675
56672
  var AP_TREASURY = "TREASURY";
56676
56673
  var AP_WETH_GATEWAY = "WETH_GATEWAY";
@@ -56766,6 +56763,13 @@ var BLOCKS_PER_WEEK_BY_NETWORK = {
56766
56763
  Base: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Base)),
56767
56764
  Sonic: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Sonic))
56768
56765
  };
56766
+
56767
+ // src/sdk/constants/periphery.ts
56768
+ var PERIPHERY_CONTRACTS = [
56769
+ "DEGEN_DISTRIBUTOR",
56770
+ "DEGEN_NFT",
56771
+ "MULTI_PAUSE"
56772
+ ];
56769
56773
  var AddressMap = class {
56770
56774
  #map;
56771
56775
  #frozen = false;
@@ -58699,8 +58703,6 @@ async function simulateMulticall(client, parameters) {
58699
58703
  throw new viem.BaseError("multicall results mismatch");
58700
58704
  return results;
58701
58705
  }
58702
-
58703
- // src/sdk/market/MarketConfiguratorContract.ts
58704
58706
  var abi28 = iMarketConfiguratorV310Abi;
58705
58707
  var MarketConfiguratorContract = class extends BaseContract {
58706
58708
  #curatorName;
@@ -58723,6 +58725,18 @@ var MarketConfiguratorContract = class extends BaseContract {
58723
58725
  "Market configurator " + this.#curatorName
58724
58726
  );
58725
58727
  }
58728
+ async getPeripheryContract(contract) {
58729
+ const resp = await this.sdk.provider.publicClient.readContract({
58730
+ address: this.address,
58731
+ abi: this.abi,
58732
+ functionName: "getPeripheryContracts",
58733
+ args: [viem.stringToHex(contract, { size: 32 })]
58734
+ });
58735
+ if (resp.length === 0) {
58736
+ throw new Error(`periphery contract ${contract} not found`);
58737
+ }
58738
+ return resp[0];
58739
+ }
58726
58740
  processLog(log) {
58727
58741
  switch (log.eventName) {
58728
58742
  // case "DeployDegenNFT":
@@ -72952,8 +72966,6 @@ exports.AP_CONTROLLER_TIMELOCK = AP_CONTROLLER_TIMELOCK;
72952
72966
  exports.AP_CREDIT_ACCOUNT_COMPRESSOR = AP_CREDIT_ACCOUNT_COMPRESSOR;
72953
72967
  exports.AP_CREDIT_SUITE_COMPRESSOR = AP_CREDIT_SUITE_COMPRESSOR;
72954
72968
  exports.AP_DATA_COMPRESSOR = AP_DATA_COMPRESSOR;
72955
- exports.AP_DEGEN_DISTRIBUTOR = AP_DEGEN_DISTRIBUTOR;
72956
- exports.AP_DEGEN_NFT = AP_DEGEN_NFT;
72957
72969
  exports.AP_DELEVERAGE_BOT_HV = AP_DELEVERAGE_BOT_HV;
72958
72970
  exports.AP_DELEVERAGE_BOT_LV = AP_DELEVERAGE_BOT_LV;
72959
72971
  exports.AP_DELEVERAGE_BOT_PEGGED = AP_DELEVERAGE_BOT_PEGGED;
@@ -72964,7 +72976,6 @@ exports.AP_INFLATION_ATTACK_BLOCKER = AP_INFLATION_ATTACK_BLOCKER;
72964
72976
  exports.AP_INSOLVENCY_CHECKER = AP_INSOLVENCY_CHECKER;
72965
72977
  exports.AP_MARKET_COMPRESSOR = AP_MARKET_COMPRESSOR;
72966
72978
  exports.AP_MARKET_CONFIGURATOR = AP_MARKET_CONFIGURATOR;
72967
- exports.AP_MULTI_PAUSE = AP_MULTI_PAUSE;
72968
72979
  exports.AP_PARTIAL_LIQUIDATION_BOT = AP_PARTIAL_LIQUIDATION_BOT;
72969
72980
  exports.AP_PERIPHERY_COMPRESSOR = AP_PERIPHERY_COMPRESSOR;
72970
72981
  exports.AP_POOL_COMPRESSOR = AP_POOL_COMPRESSOR;
@@ -73063,6 +73074,7 @@ exports.NOT_DEPLOYED = NOT_DEPLOYED;
73063
73074
  exports.NO_VERSION = NO_VERSION;
73064
73075
  exports.PERCENTAGE_DECIMALS = PERCENTAGE_DECIMALS;
73065
73076
  exports.PERCENTAGE_FACTOR = PERCENTAGE_FACTOR;
73077
+ exports.PERIPHERY_CONTRACTS = PERIPHERY_CONTRACTS;
73066
73078
  exports.PRICE_DECIMALS = PRICE_DECIMALS;
73067
73079
  exports.PRICE_DECIMALS_POW = PRICE_DECIMALS_POW;
73068
73080
  exports.PendleRouterAdapterContract = PendleRouterAdapterContract;
@@ -93313,6 +93313,114 @@ declare class CreditSuite extends SDKConstruct {
93313
93313
  stateHuman(raw?: boolean): CreditSuiteStateHuman;
93314
93314
  }
93315
93315
 
93316
+ declare const NO_VERSION = 0;
93317
+ declare const AP_ACCOUNT_FACTORY = "ACCOUNT_FACTORY";
93318
+ declare const AP_ACL = "ACL";
93319
+ declare const AP_ADAPTER_COMPRESSOR = "ADAPTER_COMPRESSOR";
93320
+ declare const AP_BOT_LIST = "BOT_LIST";
93321
+ declare const AP_CONTRACTS_REGISTER = "CONTRACTS_REGISTER";
93322
+ declare const AP_CONTROLLER_TIMELOCK = "CONTROLLER_TIMELOCK";
93323
+ declare const AP_CREDIT_ACCOUNT_COMPRESSOR = "CREDIT_ACCOUNT_COMPRESSOR";
93324
+ declare const AP_CREDIT_SUITE_COMPRESSOR = "CREDIT_SUITE_COMPRESSOR";
93325
+ declare const AP_DATA_COMPRESSOR = "DATA_COMPRESSOR";
93326
+ declare const AP_DELEVERAGE_BOT_HV = "DELEVERAGE_BOT_HV";
93327
+ declare const AP_DELEVERAGE_BOT_LV = "DELEVERAGE_BOT_LV";
93328
+ declare const AP_DELEVERAGE_BOT_PEGGED = "DELEVERAGE_BOT_PEGGED";
93329
+ declare const AP_GAUGE_COMPRESSOR = "GAUGE_COMPRESSOR";
93330
+ declare const AP_GEAR_STAKING = "GEAR_STAKING";
93331
+ declare const AP_GEAR_TOKEN = "GEAR_TOKEN";
93332
+ declare const AP_INFLATION_ATTACK_BLOCKER = "INFLATION_ATTACK_BLOCKER";
93333
+ declare const AP_INSOLVENCY_CHECKER = "INSOLVENCY_CHECKER";
93334
+ declare const AP_MARKET_COMPRESSOR = "MARKET_COMPRESSOR";
93335
+ declare const AP_MARKET_CONFIGURATOR = "MARKET_CONFIGURATOR";
93336
+ declare const AP_PARTIAL_LIQUIDATION_BOT = "PARTIAL_LIQUIDATION_BOT";
93337
+ declare const AP_PERIPHERY_COMPRESSOR = "PERIPHERY_COMPRESSOR";
93338
+ declare const AP_POOL_COMPRESSOR = "POOL_COMPRESSOR";
93339
+ declare const AP_PRICE_FEED_COMPRESSOR = "PRICE_FEED_COMPRESSOR";
93340
+ declare const AP_PRICE_ORACLE = "PRICE_ORACLE";
93341
+ declare const AP_REWARDS_COMPRESSOR = "REWARDS_COMPRESSOR";
93342
+ declare const AP_ROUTER = "LOCAL::ROUTER";
93343
+ declare const AP_TOKEN_COMPRESSOR = "TOKEN_COMPRESSOR";
93344
+ declare const AP_TREASURY = "TREASURY";
93345
+ declare const AP_WETH_GATEWAY = "WETH_GATEWAY";
93346
+ declare const AP_WETH_TOKEN = "WETH_TOKEN";
93347
+ declare const AP_ZAPPER_REGISTER = "ZAPPER_REGISTER";
93348
+ declare const AP_ZERO_PRICE_FEED = "ZERO_PRICE_FEED";
93349
+ declare const ADDRESS_PROVIDER: Record<NetworkType, Address>;
93350
+
93351
+ declare const MULTICALL_ADDRESS: Address;
93352
+ /**
93353
+ * Address 0x0000000000000000000000000000000000000000
93354
+ */
93355
+ declare const ADDRESS_0X0: Address;
93356
+ /**
93357
+ * Dummy address to satisfy `0x${string}` typecheck, but fail on `isAddress` check
93358
+ */
93359
+ declare const NOT_DEPLOYED = "0xNOT DEPLOYED";
93360
+ /**
93361
+ * Well-known USDC token address used to determine NetworkType on testnets with different chain ids
93362
+ */
93363
+ declare const USDC: Record<NetworkType, Address>;
93364
+ declare const USDT: Record<NetworkType, Address>;
93365
+ declare const WETH: Record<NetworkType, Address>;
93366
+ declare const TIMELOCK: Record<NetworkType, Address>;
93367
+ declare const GEARBOX_MULTISIG: Record<NetworkType, Address>;
93368
+ declare const GEARBOX_RISK_CURATORS: Record<NetworkType, Address[]>;
93369
+ /**
93370
+ * Depreciated pools
93371
+ */
93372
+ declare const DEPRECIATED_POOLS: {
93373
+ readonly Mainnet: {
93374
+ readonly USDT_V3_BROKEN: string;
93375
+ };
93376
+ readonly Arbitrum: {};
93377
+ readonly Optimism: {};
93378
+ readonly Base: {};
93379
+ readonly Sonic: {};
93380
+ };
93381
+
93382
+ declare enum BotPermissions {
93383
+ ADD_COLLATERAL = 1,
93384
+ INCREASE_DEBT = 2,
93385
+ DECREASE_DEBT = 4,
93386
+ ENABLE_TOKEN = 8,
93387
+ DISABLE_TOKEN = 16,
93388
+ WITHDRAW_COLLATERAL = 32,
93389
+ UPDATE_QUOTA = 64,
93390
+ REVOKE_ALLOWANCES = 128,
93391
+ EXTERNAL_CALLS = 65536,
93392
+ ALL_CREDIT_FACADE_CALLS = 255,
93393
+ ALLS = 65791
93394
+ }
93395
+ declare function botPermissionsToString(value: bigint): string;
93396
+
93397
+ declare const MAX_INT: bigint;
93398
+ declare const MIN_INT96 = -39614081257132168796771975168n;
93399
+ declare const MAX_UINT256 = 115792089237316195423570985008687907853269984665640564039457584007913129639935n;
93400
+ declare const MAX_UINT16 = 65535n;
93401
+ declare const RAY_DECIMALS_POW = 27;
93402
+ declare const RAY: bigint;
93403
+ declare const halfRAY: bigint;
93404
+ declare const WAD_DECIMALS_POW = 18;
93405
+ declare const WAD: bigint;
93406
+ declare const PRICE_DECIMALS_POW = 8;
93407
+ declare const PRICE_DECIMALS: bigint;
93408
+ declare const SECONDS_PER_YEAR: number;
93409
+ declare const PERCENTAGE_DECIMALS = 100n;
93410
+ declare const PERCENTAGE_FACTOR = 10000n;
93411
+ declare const LEVERAGE_DECIMALS = 100n;
93412
+ declare const SLIPPAGE_DECIMALS = 100n;
93413
+
93414
+ /**
93415
+ * Block number when address provider was deployed
93416
+ */
93417
+ declare const ADDRESS_PROVIDER_BLOCK: Record<NetworkType, bigint>;
93418
+ declare const RAMP_DURATION_BY_NETWORK: Record<NetworkType, bigint>;
93419
+ declare const BLOCKS_PER_WEEK_BY_NETWORK: Record<NetworkType, bigint>;
93420
+
93421
+ declare const PERIPHERY_CONTRACTS: readonly ["DEGEN_DISTRIBUTOR", "DEGEN_NFT", "MULTI_PAUSE"];
93422
+ type PeripheryContract = (typeof PERIPHERY_CONTRACTS)[number];
93423
+
93316
93424
  declare const abi$b: readonly [{
93317
93425
  readonly type: "function";
93318
93426
  readonly name: "acl";
@@ -94841,6 +94949,7 @@ declare class MarketConfiguratorContract extends BaseContract<typeof abi$b> {
94841
94949
  #private;
94842
94950
  constructor(sdk: GearboxSDK, address: Address);
94843
94951
  loadCuratorName(): Promise<void>;
94952
+ getPeripheryContract(contract: PeripheryContract): Promise<Address>;
94844
94953
  processLog(log: Log<bigint, number, false, undefined, undefined, typeof abi$b, ContractEventName<typeof abi$b>>): void;
94845
94954
  }
94846
94955
 
@@ -98956,114 +99065,6 @@ declare class BotsService extends SDKConstruct {
98956
99065
  getBotsData(addresses: BotAddresses): Promise<Record<"liquidationProtection", BotDataPayload[]>>;
98957
99066
  }
98958
99067
 
98959
- declare const NO_VERSION = 0;
98960
- declare const AP_ACCOUNT_FACTORY = "ACCOUNT_FACTORY";
98961
- declare const AP_ACL = "ACL";
98962
- declare const AP_ADAPTER_COMPRESSOR = "ADAPTER_COMPRESSOR";
98963
- declare const AP_BOT_LIST = "BOT_LIST";
98964
- declare const AP_CONTRACTS_REGISTER = "CONTRACTS_REGISTER";
98965
- declare const AP_CONTROLLER_TIMELOCK = "CONTROLLER_TIMELOCK";
98966
- declare const AP_CREDIT_ACCOUNT_COMPRESSOR = "CREDIT_ACCOUNT_COMPRESSOR";
98967
- declare const AP_CREDIT_SUITE_COMPRESSOR = "CREDIT_SUITE_COMPRESSOR";
98968
- declare const AP_DATA_COMPRESSOR = "DATA_COMPRESSOR";
98969
- declare const AP_DEGEN_DISTRIBUTOR = "DEGEN_DISTRIBUTOR";
98970
- declare const AP_DEGEN_NFT = "DEGEN_NFT";
98971
- declare const AP_DELEVERAGE_BOT_HV = "DELEVERAGE_BOT_HV";
98972
- declare const AP_DELEVERAGE_BOT_LV = "DELEVERAGE_BOT_LV";
98973
- declare const AP_DELEVERAGE_BOT_PEGGED = "DELEVERAGE_BOT_PEGGED";
98974
- declare const AP_GAUGE_COMPRESSOR = "GAUGE_COMPRESSOR";
98975
- declare const AP_GEAR_STAKING = "GEAR_STAKING";
98976
- declare const AP_GEAR_TOKEN = "GEAR_TOKEN";
98977
- declare const AP_INFLATION_ATTACK_BLOCKER = "INFLATION_ATTACK_BLOCKER";
98978
- declare const AP_INSOLVENCY_CHECKER = "INSOLVENCY_CHECKER";
98979
- declare const AP_MARKET_COMPRESSOR = "MARKET_COMPRESSOR";
98980
- declare const AP_MARKET_CONFIGURATOR = "MARKET_CONFIGURATOR";
98981
- declare const AP_MULTI_PAUSE = "MULTI_PAUSE";
98982
- declare const AP_PARTIAL_LIQUIDATION_BOT = "PARTIAL_LIQUIDATION_BOT";
98983
- declare const AP_PERIPHERY_COMPRESSOR = "PERIPHERY_COMPRESSOR";
98984
- declare const AP_POOL_COMPRESSOR = "POOL_COMPRESSOR";
98985
- declare const AP_PRICE_FEED_COMPRESSOR = "PRICE_FEED_COMPRESSOR";
98986
- declare const AP_PRICE_ORACLE = "PRICE_ORACLE";
98987
- declare const AP_REWARDS_COMPRESSOR = "REWARDS_COMPRESSOR";
98988
- declare const AP_ROUTER = "ROUTER";
98989
- declare const AP_TOKEN_COMPRESSOR = "TOKEN_COMPRESSOR";
98990
- declare const AP_TREASURY = "TREASURY";
98991
- declare const AP_WETH_GATEWAY = "WETH_GATEWAY";
98992
- declare const AP_WETH_TOKEN = "WETH_TOKEN";
98993
- declare const AP_ZAPPER_REGISTER = "ZAPPER_REGISTER";
98994
- declare const AP_ZERO_PRICE_FEED = "ZERO_PRICE_FEED";
98995
- declare const ADDRESS_PROVIDER: Record<NetworkType, Address>;
98996
-
98997
- declare const MULTICALL_ADDRESS: Address;
98998
- /**
98999
- * Address 0x0000000000000000000000000000000000000000
99000
- */
99001
- declare const ADDRESS_0X0: Address;
99002
- /**
99003
- * Dummy address to satisfy `0x${string}` typecheck, but fail on `isAddress` check
99004
- */
99005
- declare const NOT_DEPLOYED = "0xNOT DEPLOYED";
99006
- /**
99007
- * Well-known USDC token address used to determine NetworkType on testnets with different chain ids
99008
- */
99009
- declare const USDC: Record<NetworkType, Address>;
99010
- declare const USDT: Record<NetworkType, Address>;
99011
- declare const WETH: Record<NetworkType, Address>;
99012
- declare const TIMELOCK: Record<NetworkType, Address>;
99013
- declare const GEARBOX_MULTISIG: Record<NetworkType, Address>;
99014
- declare const GEARBOX_RISK_CURATORS: Record<NetworkType, Address[]>;
99015
- /**
99016
- * Depreciated pools
99017
- */
99018
- declare const DEPRECIATED_POOLS: {
99019
- readonly Mainnet: {
99020
- readonly USDT_V3_BROKEN: string;
99021
- };
99022
- readonly Arbitrum: {};
99023
- readonly Optimism: {};
99024
- readonly Base: {};
99025
- readonly Sonic: {};
99026
- };
99027
-
99028
- declare enum BotPermissions {
99029
- ADD_COLLATERAL = 1,
99030
- INCREASE_DEBT = 2,
99031
- DECREASE_DEBT = 4,
99032
- ENABLE_TOKEN = 8,
99033
- DISABLE_TOKEN = 16,
99034
- WITHDRAW_COLLATERAL = 32,
99035
- UPDATE_QUOTA = 64,
99036
- REVOKE_ALLOWANCES = 128,
99037
- EXTERNAL_CALLS = 65536,
99038
- ALL_CREDIT_FACADE_CALLS = 255,
99039
- ALLS = 65791
99040
- }
99041
- declare function botPermissionsToString(value: bigint): string;
99042
-
99043
- declare const MAX_INT: bigint;
99044
- declare const MIN_INT96 = -39614081257132168796771975168n;
99045
- declare const MAX_UINT256 = 115792089237316195423570985008687907853269984665640564039457584007913129639935n;
99046
- declare const MAX_UINT16 = 65535n;
99047
- declare const RAY_DECIMALS_POW = 27;
99048
- declare const RAY: bigint;
99049
- declare const halfRAY: bigint;
99050
- declare const WAD_DECIMALS_POW = 18;
99051
- declare const WAD: bigint;
99052
- declare const PRICE_DECIMALS_POW = 8;
99053
- declare const PRICE_DECIMALS: bigint;
99054
- declare const SECONDS_PER_YEAR: number;
99055
- declare const PERCENTAGE_DECIMALS = 100n;
99056
- declare const PERCENTAGE_FACTOR = 10000n;
99057
- declare const LEVERAGE_DECIMALS = 100n;
99058
- declare const SLIPPAGE_DECIMALS = 100n;
99059
-
99060
- /**
99061
- * Block number when address provider was deployed
99062
- */
99063
- declare const ADDRESS_PROVIDER_BLOCK: Record<NetworkType, bigint>;
99064
- declare const RAMP_DURATION_BY_NETWORK: Record<NetworkType, bigint>;
99065
- declare const BLOCKS_PER_WEEK_BY_NETWORK: Record<NetworkType, bigint>;
99066
-
99067
99068
  interface UserVote {
99068
99069
  token: Address;
99069
99070
  stakerVotesLpSide: bigint;
@@ -104210,4 +104211,4 @@ type MulticallErrorType = GetChainContractAddressErrorType | ReadContractErrorTy
104210
104211
  */
104211
104212
  declare function simulateMulticall<const contracts extends readonly unknown[], chain extends Chain | undefined, allowFailure extends boolean = true>(client: Client<Transport, chain>, parameters: MulticallParameters<contracts, allowFailure>): Promise<MulticallReturnType<contracts, allowFailure>>;
104212
104213
 
104213
- export { ADDRESS_0X0, ADDRESS_PROVIDER, ADDRESS_PROVIDER_BLOCK, AP_ACCOUNT_FACTORY, AP_ACL, AP_ADAPTER_COMPRESSOR, AP_BOT_LIST, AP_CONTRACTS_REGISTER, AP_CONTROLLER_TIMELOCK, AP_CREDIT_ACCOUNT_COMPRESSOR, AP_CREDIT_SUITE_COMPRESSOR, AP_DATA_COMPRESSOR, AP_DEGEN_DISTRIBUTOR, AP_DEGEN_NFT, AP_DELEVERAGE_BOT_HV, AP_DELEVERAGE_BOT_LV, AP_DELEVERAGE_BOT_PEGGED, AP_GAUGE_COMPRESSOR, AP_GEAR_STAKING, AP_GEAR_TOKEN, AP_INFLATION_ATTACK_BLOCKER, AP_INSOLVENCY_CHECKER, AP_MARKET_COMPRESSOR, AP_MARKET_CONFIGURATOR, AP_MULTI_PAUSE, AP_PARTIAL_LIQUIDATION_BOT, AP_PERIPHERY_COMPRESSOR, AP_POOL_COMPRESSOR, AP_PRICE_FEED_COMPRESSOR, AP_PRICE_ORACLE, AP_REWARDS_COMPRESSOR, AP_ROUTER, AP_TOKEN_COMPRESSOR, AP_TREASURY, AP_WETH_GATEWAY, AP_WETH_TOKEN, AP_ZAPPER_REGISTER, AP_ZERO_PRICE_FEED, type AaveV2LPToken, type AaveV2PoolTokenData, AbstractPriceFeedContract, type AdapterContractType, type AdapterContractTypeLegacy, type AdapterData, AdapterInterface, AddressLabeller, AddressMap, AddressProviderContractV3, AddressProviderContractV3_1, type AddressProviderState, type AddressProviderV3StateHuman, type AllLPTokens, type Asset, type AssetPriceFeedStateHuman, AssetUtils, type AssetWithAmountInTarget, type AssetWithView, type AuraLPToken, type AuraLPTokenData, type AuraPoolContract, type AuraStakedToken, type AuraStakedTokenData, BLOCKS_PER_WEEK_BY_NETWORK, type BalancerLPToken, type BalancerLpTokenData, BalancerStablePriceFeedContract, BalancerV2VaultAdapterContract, BalancerWeightedPriceFeedContract, type BalancerWeightedPriceFeedStateHuman, BaseContract, type BaseContractOptions, type BaseContractStateHuman, type BaseParams, type BasePriceFeedStateHuman, type BaseState, BigIntMath, type BigNumberish, type BotAddresses, type BotBaseType, type BotData, type BotDataLegacy, type BotDataPayload, type BotDetailedType, BotListContract, type BotListStateHuman, BotPermissions, BotsService, type BoundedOracleStateHuman, BoundedPriceFeedContract, CREDIT_SESSION_ID_BY_STATUS, CREDIT_SESSION_STATUS_BY_ID, type CaTokenBalance, type CalcAvgQuotaBorrowRateProps, type CalcDefaultQuotaProps, type CalcHealthFactorProps, type CalcMaxLendingDebtProps, type CalcOverallAPYProps, type CalcQuotaBorrowRateProps, type CalcQuotaUpdateProps, type CalcRecommendedQuotaProps, type CalcRelativeBaseBorrowRateProps, CamelotV3AdapterContract, ChainlinkPriceFeedContract, type ChartsAggregatedPoolPayload, type ChartsAggregatedStats, ChartsCreditManagerData, type ChartsCreditManagerPayload, ChartsPoolData, type ChartsPoolDataPayload, type ClaimFarmRewardsProps, type ClaimLmRewardsV2Props, type ClaimLmRewardsV3Props, type CloseCreditAccountResult, type ClosePathBalances, type CommonResult, CompositePriceFeedContract, type CompoundV2LPToken, type CompoundV2PoolTokenData, type ConnectedBotData, type ConnectionOptions, type ContractMethod, type ConvexL2StakedToken, type ConvexL2StakedTokenData, type ConvexLPToken, type ConvexLPTokenData, type ConvexPhantomTokenData, type ConvexPoolContract, type ConvexStakedPhantomToken, ConvexV1BaseRewardPoolAdapterContract, ConvexV1BoosterAdapterContract, type CoreStateHuman, type CreditAccountData, type CreditAccountDataPayload, type CreditAccountDataSlice, CreditAccountData_Legacy, type CreditAccountFilter, type CreditAccountServiceOptions, CreditAccountsService, type CreditConfiguratorState, type CreditConfiguratorStateHuman, CreditConfiguratorV300Contract, CreditConfiguratorV310Contract, type CreditFacadeContract, type CreditFacadeState, type CreditFacadeStateHuman, CreditFacadeV300Contract, CreditFacadeV310Contract, type CreditManagerData, type CreditManagerDataPayload, CreditManagerData_Legacy, type CreditManagerDebtParams, type CreditManagerDebtParamsHuman, type CreditManagerDebtParamsSDK, type CreditManagerState, type CreditManagerStateHuman, type CreditManagerType, CreditManagerV300Contract, CreditManagerV310Contract, CreditSession, type CreditSessionAsset, type CreditSessionBalancePayload, CreditSessionFiltered, type CreditSessionFilteredPayload, type CreditSessionPayload, type CreditSessionReward, type CreditSessionSortFields, type CreditSessionSortType, type CreditSessionStatus, type CreditSessionsAggregatedStats, type CreditSessionsAggregatedStatsPayload, CreditSuite, type CreditSuiteStateHuman, Curve2AssetsAdapterContract, Curve3AssetsAdapterContract, Curve3CrvUnderlyingTokenIndex, Curve4AssetsAdapterContract, CurveCryptoPriceFeedContract, type CurveLPToken, type CurveLPTokenData, type CurveMetaTokens, type CurvePoolContract, type CurvePoolStruct, CurveStablePriceFeedContract, type CurveSteCRVPoolParams, CurveUSDPriceFeedContract, CurveV1AdapterStETHContract, CurveV1AdapterStableNGContract, DEPRECIATED_POOLS, DUMB_ADDRESS, DUMB_ADDRESS2, DUMB_ADDRESS3, DUMB_ADDRESS4, DaiUsdsAdapterContract, type DieselSimpleTokenData, type DieselSimpleTokenTypes, type DieselStakedTokenData, type DieselStakedTokenTypes, type DieselTokenData, type DieselTokenTypes, type DieselTokenWithStkTypes, type DieselWithStkTokenV3Data, type Display, ERC4626AdapterContract, type ERC4626LPToken, type ERC4626VaultContract, type ERC4626VaultOfCurveLPTokenData, type ERC4626VaultTokenData, ETH_ADDRESS, EVMEvent, type EVMEventProps, EVMTx, type EVMTxProps, Erc4626PriceFeedContract, type EtherscanURLParam, EventOrTx, type EventOrTxProps, type ExtraRewardApy, type FarmInfo, type FindClosePathInput, GEARBOX_MULTISIG, GEARBOX_RISK_CURATORS, GaugeContract, type GaugeData, type GaugeParams, type GaugeParamsHuman, type GaugeStakingDataPayload, GaugeStakingService, type GaugeStateHuman, GearStakingContract, type GearStakingV3StateHuman, GearboxBackendApi, type GearboxExtraMerkleLmReward, type GearboxLmReward, type GearboxMerkleV2LmReward, GearboxRewardsApi, GearboxRewardsApy, GearboxRewardsExtraApy, GearboxSDK, type GearboxStakedV3LmReward, type GearboxState, type GearboxStateHuman, type GearboxToken, type GearboxTokenData, type GetAddressProviderOptions, type GetExtraRewardsProps, type GetLmRewardsInfoProps, type GetLmRewardsProps, type GetPointsByPoolProps, type GetTotalTokensOnProtocolProps, type GraphPayload, type IAdapterContract$1 as IAdapterContract, type IAddressProviderContract, type IBaseContract$1 as IBaseContract, type ICreditConfiguratorContract, type ICreditManagerContract, type IInterestRateModelContract, type ILPPriceFeedContract, type ILogger, type IPriceFeedContract, type IPriceOracleContract, type IRateKeeperContract, type InterestRateModelStateHuman, type InterestRateModelType, LEVERAGE_DECIMALS, type LPPriceFeedStateHuman, type LPTokenDataI, type LPTokens, LinearInterestRateModelContract, type LinearInterestRateModelStateHuman, type LinearModel, type LiquidationBotType, type LogFn, MAX_INT, MAX_UINT16, MAX_UINT256, MIN_INT96, MULTICALL_ADDRESS, type MarketData, type MarketFilter, MarketRegister, type MarketStateHuman, MarketSuite, MellowERC4626VaultAdapterContract, MellowLRTPriceFeedContract, MellowVaultAdapterContract, type MerkleDistributorInfo, type MetaCurveLPTokenData, type MultiCall, type MultiVote, type MulticallErrorType, type MulticallParameters, type MulticallReturnType, NOT_DEPLOYED, NO_VERSION, type NetworkOptions, type NetworkType, type NormalToken, type NormalTokenData, type OnDemandPriceUpdate, type OpenCAProps, type OpenStrategyResult, PERCENTAGE_DECIMALS, PERCENTAGE_FACTOR, PRICE_DECIMALS, PRICE_DECIMALS_POW, type PartialPriceFeedTreeNode, type PartialRecord, type PathFinderCloseResult, type PathFinderOpenStrategyResult, type PathFinderResult, type PathOption, type PathOptionSerie, PendleRouterAdapterContract, PendleTWAPPTPriceFeed, type PermitResult, PhantomTokenType, type PoolContract, type PoolData, type PoolDataExtraPayload, type PoolDataPayload, PoolData_Legacy, type PoolPointsInfo, type PoolQuotaKeeperContract, type PoolQuotaKeeperData, type PoolQuotaKeeperStateHuman, PoolQuotaKeeperV300Contract, type PoolStateHuman, PoolSuite, type PoolSuiteStateHuman, type PoolType, PoolV300Contract, PositionUtils, type PriceFeedConstructorArgs, type PriceFeedContractType, type PriceFeedContractTypeLegacy, type PriceFeedMapEntry, PriceFeedRef, PriceFeedRegister, type PriceFeedRegisterHooks, type PriceFeedStateHuman, type PriceFeedTreeNode, PriceFeedType, type PriceFeedUsageType, type PriceFeedsForTokensOptions, type PriceOracleContract, type PriceOracleData, PriceOracleV300Contract, PriceOracleV310Contract, type PriceOracleV3StateHuman, PriceUtils, Provider, type QuotaInfo, type QuotaParamsHuman, type QuotaState, RAMP_DURATION_BY_NETWORK, RAY, RAY_DECIMALS_POW, type RampEvent, type RateKeeperData, type RateKeeperStateHuman, type RateKeeperType, type RawTx, RedstonePriceFeedContract, type RedstonePriceFeedStateHuman, type ReleaseAt, type RetryOptions, type RewardInfo, type Rewards, type RouterCloseResult, type RouterHooks, type RouterResult, RouterV3Contract, SDKConstruct, type SDKHooks, type SDKOptions, SECONDS_PER_YEAR, SLIPPAGE_DECIMALS, SUPPORTED_CHAINS, type SecondaryStatus, type SendRawTxParameters, StakingRewardsAdapterContract, type StakingRewardsContract, type StakingRewardsPhantomToken, type StakingRewardsPhantomTokenData, type SupportedContract, type SupportedToken, type SupportedValue, type SwapOperation, type SwapTask, type SyncStateOptions, TESTNET_CHAINS, TIMELOCK, type TVL, TXSwap, type TickerInfo, type TickerToken, type TimeToLiquidationProps, type TokenBase, TokenData, type TokenDataI, type TokenDataPayload, type TokenMetaData, type TokenNetwork, TokenType, type TokensAPYList, TokensMeta, type TokensWithAPY, type TransportOptions, type TumblerStateHuman, TxAddBot, TxAddCollateral, TxAddLiquidity, TxApprove, TxClaimNFT, TxClaimRewards, TxCloseAccount, TxDecreaseBorrowAmount, TxGaugeClaim, TxGaugeStake, TxGaugeUnstake, TxGaugeVote, TxIncreaseBorrowAmount, TxLiquidateAccount, TxOpenMultitokenAccount, TxRemoveBot, TxRemoveLiquidity, TxRepayAccount, type TxSerialized, TxSerializer, TxStakeDiesel, type TxStatus, TxUnstakeDiesel, TxUpdateQuota, TxWithdrawCollateral, TypedObjectUtils, URLApi, USDC, USDT, type Unarray, UniswapV2AdapterContract, UniswapV3AdapterContract, type UpdatePriceFeedsResult, type UserCreditSessions, type UserCreditSessionsAggregatedStatsPayload, UserCreditSessionsBuilder, type UserPoolAggregatedStatsPayload, UserPoolData, type UserPoolPayload, VelodromeV2RouterAdapterContract, VotingContractStatus, WAD, WAD_DECIMALS_POW, WETH, type WrapResult, type WrappedAaveV2LPToken, type WrappedAaveV2PoolTokenData, type WrappedToken, type WrappedTokenData, WstETHPriceFeedContract, WstETHV1AdapterContract, type YearnLPToken, YearnPriceFeedContract, YearnV2RouterAdapterContract, type YearnVaultContract, type YearnVaultOfCurveLPTokenData, type YearnVaultOfMetaCurveLPTokenData, type YearnVaultTokenData, type ZapperData, type ZapperDataFull, type ZapperStateHuman, ZeroPriceFeedContract, type ZircuitPhantomTokenData, type ZircuitStakedPhantomToken, aaveV2Tokens, aaveV2WrapperAbi, accountFactoryV3Abi, aclAbi, aclNonReentrantTraitAbi, assetsMap, auraDepositorAbi, auraLpTokens, auraPathResolverAbi, auraStakedTokens, auraTokens, auraWithdrawerAbi, balancerLpDepositorAbi, balancerLpPathResolverAbi, balancerLpTokens, balancerLpWithdrawerAbi, balancerSwapperAbi, balancerV2VaultAdapterAbi, balancesMap, batchLiquidationEstimatorAbi, batchesChainAbi, botListV3Abi, botPermissionsToString, boundedPriceFeedAbi, bptStablePriceFeedAbi, bptWeightedPriceFeedAbi, bytes32ToString, camelotV3AdapterAbi, camelotV3SwapperAbi, chainlinkReadableAggregatorAbi, chains, childLogger, closePathResolverAbi, compositePriceFeedAbi, compoundV2Tokens, compoundV2WrapperAbi, connectors, contractParams, contractsRegisterAbi, controllerTimelockV3Abi, convexDepositorAbi, convexL2StakedTokens, convexLpTokenByPid, convexLpTokens, convexPathResolverAbi, convexPoolByPid, convexStakedPhantomTokens, convexTokens, convexV1BaseRewardPoolAdapterAbi, convexV1BoosterAdapterAbi, convexWithdrawerAbi, createAdapter, createPriceOracle, createRawTx, createTransport, creditManagerV3UsdtAbi, curveCryptoLpPriceFeedAbi, curveLpDepositorAbi, curveLpPathResolverAbi, curveLpWithdrawerAbi, curveMetaTokens, curveStableLpPriceFeedAbi, curveSwapperAbi, curveTokens, curveUsdPriceFeedAbi, curveV1Adapter2AssetsAbi, curveV1Adapter3AssetsAbi, curveV1Adapter4AssetsAbi, curveV1AdapterDepositAbi, curveV1AdapterStEthAbi, curveV1AdapterStableNgAbi, dataCompressorV3Abi, decimals, degenDistributorV3Abi, degenNftv2Abi, detectChain, detectNetwork, erc20Abi, erc4626AdapterAbi, erc4626DepositorAbi, erc4626PathResolverAbi, erc4626PriceFeedAbi, erc4626Tokens, erc4626WithdrawerAbi, errorAbis, etherscanUrl, faucetAbi, filterDust, fmtBinaryMask, formatBN, formatBNvalue, formatBn4dig, formatDuration, formatLeverage, formatNumberToString_, formatPercentage, gaugeV3Abi, gearStakingV3Abi, gearTokens, getAddressProvider, getConnectors, getDecimals, getNetworkType, getTokenSymbol, getTokenSymbolOrTicker, halfRAY, iAdapterAbi, iAdapterCompressorAbi, iAddressProviderV300Abi, iAddressProviderV310Abi, iAirdropDistributorAbi, iArbTokenAbi, iAuraL2CoordinatorAbi, iBalancerStablePoolAbi, iBalancerWeightedPoolAbi, iBaseRewardPoolAbi, iCamelotV3QuoterAbi, iConvexTokenAbi, iCreditAccountCompressorAbi, iCreditConfiguratorV300Abi, iCreditConfiguratorV310Abi, iCreditFacadeV2Abi, iCreditFacadeV2EventsAbi, iCreditFacadeV2ExceptionsAbi, iCreditFacadeV2ExtendedAbi, iCreditFacadeV2V2Abi, iCreditFacadeV300Abi, iCreditFacadeV300MulticallAbi, iCreditFacadeV310Abi, iCreditFacadeV310MulticallAbi, iCreditFacadeV3Abi, iCreditFacadeV3EventsAbi, iCreditFacadeV3MulticallAbi, iCreditManagerV300Abi, iCreditManagerV310Abi, iCreditSuiteCompressorAbi, iCurvePoolAbi, iDaiUsdsAdapterAbi, iDataCompressorV3Abi, iDegenDistributorAbi, iDegenNftv2Abi, iDegenNftv2EventsAbi, iDegenNftv2ExceptionsAbi, iErc4626AdapterAbi, iExceptionsAbi, iFarmingPoolAbi, iGaugeCompressorAbi, iGaugeV300Abi, iInterestRateModelAbi, iLegacyMintableErc20Abi, iLossPolicyAbi, iMarketCompressorAbi, iMarketConfiguratorV310Abi, iMellowVaultAbi, iMellowVaultAdapterAbi, iModifiedBoosterAbi, iMulticall3Abi, iOffchainOracleAbi, iOptimismMintableErc20Abi, iPausableAbi, iPendleRouterAdapterAbi, iPeripheryCompressorAbi, iPoolCompressorAbi, iPoolQuotaKeeperV300Abi, iPoolQuotaKeeperV310Abi, iPoolV300Abi, iPoolV310Abi, iPoolV3Abi, iPoolV3EventsAbi, iPriceFeedAbi, iPriceFeedCompressorAbi, iPriceOracleV300Abi, iPriceOracleV310Abi, iPriceOracleV3Abi, iPriceOracleV3EventsAbi, iRedstoneErrorsAbi, iRedstonePriceFeedEventsAbi, iRedstonePriceFeedExceptionsAbi, iRewardsCompressorAbi, iRouterV3ErrorsAbi, iStakingRewardsAdapterAbi, iSwapperAbi, iTokenCompressorAbi, iTumblerV3Abi, iUpdatablePriceFeedAbi, iVersionAbi, iZapperAbi, ierc20Abi, ierc20MetadataAbi, ierc20PermitAbi, ierc20ZapperDepositsAbi, iethZapperDepositsAbi, ilpPriceFeedAbi, ilpPriceFeedEventsAbi, ilpPriceFeedExceptionsAbi, inflationAttackBlockerAbi, insolvencyCheckerAbi, isAaveV2LPToken, isAuraLPToken, isAuraStakedToken, isAuraToken, isBalancerLPToken, isCompoundV2LPToken, isConvexL2StakedToken, isConvexLPToken, isConvexStakedPhantomToken, isConvexToken, isCurveLPToken, isCurveMetaToken, isDieselSimpleToken, isDieselStakedToken, isDieselToken, isDieselWithStkToken, isERC4626LPToken, isExtraFarmToken, isFarmToken, isLPToken, isLRT_LSTToken, isNormalToken, isStakingRewardsPhantomToken, isSupportedNetwork, isWrappedToken, isYearnLPToken, isZircuitStakedPhantomToken, iwstEthAbi, iyVaultAbi, json_parse, json_stringify, lidoSwapperAbi, lidoV1AdapterAbi, linearInterestRateModelV3Abi, lpTokens, mellowLrtPriceFeedAbi, multiPauseAbi, nonQuoted, normalTokens, numberWithCommas, overrideAggregatorAbi, partialLiquidationBotV3Abi, pendleTWAPPTPriceFeedAbi, percentFmt, poolV3UsdtAbi, priceFeedMultiplierAbi, priceOracleV3Abi, rawTxToMulticallPriceUpdate, rayToNumber, redstonePriceFeedAbi, retry, routerV3Abi, sendRawTx, shortAddress, shortHash, simulateMulticall, stakingRewardsPhantomTokens, stakingRewardsTokens, supportedTokens, susdeOverriderAbi, swapAggregatorAbi, tickerInfoTokensByNetwork, tickerSymbolByAddress, tickerTokensByNetwork, toBN, toBigInt, toHumanFormat, toSignificant, tokenDataByNetwork, tokenStealerAbi, tokenSymbolByAddress, underlyingDepositZapperAbi, underlyingFarmingZapperAbi, uniswapV2AdapterAbi, uniswapV2SwapperAbi, uniswapV3AdapterAbi, uniswapV3SwapperAbi, velodromeV2RouterAdapterAbi, velodromeV2SwapperAbi, wethDepositZapperAbi, wethFarmingZapperAbi, wrapAggregatorAbi, wrappedAaveV2Tokens, wrappedTokens, wstEthPriceFeedAbi, wstEthSwapperAbi, wstEthv1AdapterAbi, yearnDepositorAbi, yearnPathResolverAbi, yearnPriceFeedAbi, yearnTokens, yearnV2AdapterAbi, yearnWithdrawerAbi, zapperRegisterAbi, zeroPriceFeedAbi, zircuitStakedPhantomTokens, zircuitStakedTokenByToken, zircuitTokens };
104214
+ export { ADDRESS_0X0, ADDRESS_PROVIDER, ADDRESS_PROVIDER_BLOCK, AP_ACCOUNT_FACTORY, AP_ACL, AP_ADAPTER_COMPRESSOR, AP_BOT_LIST, AP_CONTRACTS_REGISTER, AP_CONTROLLER_TIMELOCK, AP_CREDIT_ACCOUNT_COMPRESSOR, AP_CREDIT_SUITE_COMPRESSOR, AP_DATA_COMPRESSOR, AP_DELEVERAGE_BOT_HV, AP_DELEVERAGE_BOT_LV, AP_DELEVERAGE_BOT_PEGGED, AP_GAUGE_COMPRESSOR, AP_GEAR_STAKING, AP_GEAR_TOKEN, AP_INFLATION_ATTACK_BLOCKER, AP_INSOLVENCY_CHECKER, AP_MARKET_COMPRESSOR, AP_MARKET_CONFIGURATOR, AP_PARTIAL_LIQUIDATION_BOT, AP_PERIPHERY_COMPRESSOR, AP_POOL_COMPRESSOR, AP_PRICE_FEED_COMPRESSOR, AP_PRICE_ORACLE, AP_REWARDS_COMPRESSOR, AP_ROUTER, AP_TOKEN_COMPRESSOR, AP_TREASURY, AP_WETH_GATEWAY, AP_WETH_TOKEN, AP_ZAPPER_REGISTER, AP_ZERO_PRICE_FEED, type AaveV2LPToken, type AaveV2PoolTokenData, AbstractPriceFeedContract, type AdapterContractType, type AdapterContractTypeLegacy, type AdapterData, AdapterInterface, AddressLabeller, AddressMap, AddressProviderContractV3, AddressProviderContractV3_1, type AddressProviderState, type AddressProviderV3StateHuman, type AllLPTokens, type Asset, type AssetPriceFeedStateHuman, AssetUtils, type AssetWithAmountInTarget, type AssetWithView, type AuraLPToken, type AuraLPTokenData, type AuraPoolContract, type AuraStakedToken, type AuraStakedTokenData, BLOCKS_PER_WEEK_BY_NETWORK, type BalancerLPToken, type BalancerLpTokenData, BalancerStablePriceFeedContract, BalancerV2VaultAdapterContract, BalancerWeightedPriceFeedContract, type BalancerWeightedPriceFeedStateHuman, BaseContract, type BaseContractOptions, type BaseContractStateHuman, type BaseParams, type BasePriceFeedStateHuman, type BaseState, BigIntMath, type BigNumberish, type BotAddresses, type BotBaseType, type BotData, type BotDataLegacy, type BotDataPayload, type BotDetailedType, BotListContract, type BotListStateHuman, BotPermissions, BotsService, type BoundedOracleStateHuman, BoundedPriceFeedContract, CREDIT_SESSION_ID_BY_STATUS, CREDIT_SESSION_STATUS_BY_ID, type CaTokenBalance, type CalcAvgQuotaBorrowRateProps, type CalcDefaultQuotaProps, type CalcHealthFactorProps, type CalcMaxLendingDebtProps, type CalcOverallAPYProps, type CalcQuotaBorrowRateProps, type CalcQuotaUpdateProps, type CalcRecommendedQuotaProps, type CalcRelativeBaseBorrowRateProps, CamelotV3AdapterContract, ChainlinkPriceFeedContract, type ChartsAggregatedPoolPayload, type ChartsAggregatedStats, ChartsCreditManagerData, type ChartsCreditManagerPayload, ChartsPoolData, type ChartsPoolDataPayload, type ClaimFarmRewardsProps, type ClaimLmRewardsV2Props, type ClaimLmRewardsV3Props, type CloseCreditAccountResult, type ClosePathBalances, type CommonResult, CompositePriceFeedContract, type CompoundV2LPToken, type CompoundV2PoolTokenData, type ConnectedBotData, type ConnectionOptions, type ContractMethod, type ConvexL2StakedToken, type ConvexL2StakedTokenData, type ConvexLPToken, type ConvexLPTokenData, type ConvexPhantomTokenData, type ConvexPoolContract, type ConvexStakedPhantomToken, ConvexV1BaseRewardPoolAdapterContract, ConvexV1BoosterAdapterContract, type CoreStateHuman, type CreditAccountData, type CreditAccountDataPayload, type CreditAccountDataSlice, CreditAccountData_Legacy, type CreditAccountFilter, type CreditAccountServiceOptions, CreditAccountsService, type CreditConfiguratorState, type CreditConfiguratorStateHuman, CreditConfiguratorV300Contract, CreditConfiguratorV310Contract, type CreditFacadeContract, type CreditFacadeState, type CreditFacadeStateHuman, CreditFacadeV300Contract, CreditFacadeV310Contract, type CreditManagerData, type CreditManagerDataPayload, CreditManagerData_Legacy, type CreditManagerDebtParams, type CreditManagerDebtParamsHuman, type CreditManagerDebtParamsSDK, type CreditManagerState, type CreditManagerStateHuman, type CreditManagerType, CreditManagerV300Contract, CreditManagerV310Contract, CreditSession, type CreditSessionAsset, type CreditSessionBalancePayload, CreditSessionFiltered, type CreditSessionFilteredPayload, type CreditSessionPayload, type CreditSessionReward, type CreditSessionSortFields, type CreditSessionSortType, type CreditSessionStatus, type CreditSessionsAggregatedStats, type CreditSessionsAggregatedStatsPayload, CreditSuite, type CreditSuiteStateHuman, Curve2AssetsAdapterContract, Curve3AssetsAdapterContract, Curve3CrvUnderlyingTokenIndex, Curve4AssetsAdapterContract, CurveCryptoPriceFeedContract, type CurveLPToken, type CurveLPTokenData, type CurveMetaTokens, type CurvePoolContract, type CurvePoolStruct, CurveStablePriceFeedContract, type CurveSteCRVPoolParams, CurveUSDPriceFeedContract, CurveV1AdapterStETHContract, CurveV1AdapterStableNGContract, DEPRECIATED_POOLS, DUMB_ADDRESS, DUMB_ADDRESS2, DUMB_ADDRESS3, DUMB_ADDRESS4, DaiUsdsAdapterContract, type DieselSimpleTokenData, type DieselSimpleTokenTypes, type DieselStakedTokenData, type DieselStakedTokenTypes, type DieselTokenData, type DieselTokenTypes, type DieselTokenWithStkTypes, type DieselWithStkTokenV3Data, type Display, ERC4626AdapterContract, type ERC4626LPToken, type ERC4626VaultContract, type ERC4626VaultOfCurveLPTokenData, type ERC4626VaultTokenData, ETH_ADDRESS, EVMEvent, type EVMEventProps, EVMTx, type EVMTxProps, Erc4626PriceFeedContract, type EtherscanURLParam, EventOrTx, type EventOrTxProps, type ExtraRewardApy, type FarmInfo, type FindClosePathInput, GEARBOX_MULTISIG, GEARBOX_RISK_CURATORS, GaugeContract, type GaugeData, type GaugeParams, type GaugeParamsHuman, type GaugeStakingDataPayload, GaugeStakingService, type GaugeStateHuman, GearStakingContract, type GearStakingV3StateHuman, GearboxBackendApi, type GearboxExtraMerkleLmReward, type GearboxLmReward, type GearboxMerkleV2LmReward, GearboxRewardsApi, GearboxRewardsApy, GearboxRewardsExtraApy, GearboxSDK, type GearboxStakedV3LmReward, type GearboxState, type GearboxStateHuman, type GearboxToken, type GearboxTokenData, type GetAddressProviderOptions, type GetExtraRewardsProps, type GetLmRewardsInfoProps, type GetLmRewardsProps, type GetPointsByPoolProps, type GetTotalTokensOnProtocolProps, type GraphPayload, type IAdapterContract$1 as IAdapterContract, type IAddressProviderContract, type IBaseContract$1 as IBaseContract, type ICreditConfiguratorContract, type ICreditManagerContract, type IInterestRateModelContract, type ILPPriceFeedContract, type ILogger, type IPriceFeedContract, type IPriceOracleContract, type IRateKeeperContract, type InterestRateModelStateHuman, type InterestRateModelType, LEVERAGE_DECIMALS, type LPPriceFeedStateHuman, type LPTokenDataI, type LPTokens, LinearInterestRateModelContract, type LinearInterestRateModelStateHuman, type LinearModel, type LiquidationBotType, type LogFn, MAX_INT, MAX_UINT16, MAX_UINT256, MIN_INT96, MULTICALL_ADDRESS, type MarketData, type MarketFilter, MarketRegister, type MarketStateHuman, MarketSuite, MellowERC4626VaultAdapterContract, MellowLRTPriceFeedContract, MellowVaultAdapterContract, type MerkleDistributorInfo, type MetaCurveLPTokenData, type MultiCall, type MultiVote, type MulticallErrorType, type MulticallParameters, type MulticallReturnType, NOT_DEPLOYED, NO_VERSION, type NetworkOptions, type NetworkType, type NormalToken, type NormalTokenData, type OnDemandPriceUpdate, type OpenCAProps, type OpenStrategyResult, PERCENTAGE_DECIMALS, PERCENTAGE_FACTOR, PERIPHERY_CONTRACTS, PRICE_DECIMALS, PRICE_DECIMALS_POW, type PartialPriceFeedTreeNode, type PartialRecord, type PathFinderCloseResult, type PathFinderOpenStrategyResult, type PathFinderResult, type PathOption, type PathOptionSerie, PendleRouterAdapterContract, PendleTWAPPTPriceFeed, type PeripheryContract, type PermitResult, PhantomTokenType, type PoolContract, type PoolData, type PoolDataExtraPayload, type PoolDataPayload, PoolData_Legacy, type PoolPointsInfo, type PoolQuotaKeeperContract, type PoolQuotaKeeperData, type PoolQuotaKeeperStateHuman, PoolQuotaKeeperV300Contract, type PoolStateHuman, PoolSuite, type PoolSuiteStateHuman, type PoolType, PoolV300Contract, PositionUtils, type PriceFeedConstructorArgs, type PriceFeedContractType, type PriceFeedContractTypeLegacy, type PriceFeedMapEntry, PriceFeedRef, PriceFeedRegister, type PriceFeedRegisterHooks, type PriceFeedStateHuman, type PriceFeedTreeNode, PriceFeedType, type PriceFeedUsageType, type PriceFeedsForTokensOptions, type PriceOracleContract, type PriceOracleData, PriceOracleV300Contract, PriceOracleV310Contract, type PriceOracleV3StateHuman, PriceUtils, Provider, type QuotaInfo, type QuotaParamsHuman, type QuotaState, RAMP_DURATION_BY_NETWORK, RAY, RAY_DECIMALS_POW, type RampEvent, type RateKeeperData, type RateKeeperStateHuman, type RateKeeperType, type RawTx, RedstonePriceFeedContract, type RedstonePriceFeedStateHuman, type ReleaseAt, type RetryOptions, type RewardInfo, type Rewards, type RouterCloseResult, type RouterHooks, type RouterResult, RouterV3Contract, SDKConstruct, type SDKHooks, type SDKOptions, SECONDS_PER_YEAR, SLIPPAGE_DECIMALS, SUPPORTED_CHAINS, type SecondaryStatus, type SendRawTxParameters, StakingRewardsAdapterContract, type StakingRewardsContract, type StakingRewardsPhantomToken, type StakingRewardsPhantomTokenData, type SupportedContract, type SupportedToken, type SupportedValue, type SwapOperation, type SwapTask, type SyncStateOptions, TESTNET_CHAINS, TIMELOCK, type TVL, TXSwap, type TickerInfo, type TickerToken, type TimeToLiquidationProps, type TokenBase, TokenData, type TokenDataI, type TokenDataPayload, type TokenMetaData, type TokenNetwork, TokenType, type TokensAPYList, TokensMeta, type TokensWithAPY, type TransportOptions, type TumblerStateHuman, TxAddBot, TxAddCollateral, TxAddLiquidity, TxApprove, TxClaimNFT, TxClaimRewards, TxCloseAccount, TxDecreaseBorrowAmount, TxGaugeClaim, TxGaugeStake, TxGaugeUnstake, TxGaugeVote, TxIncreaseBorrowAmount, TxLiquidateAccount, TxOpenMultitokenAccount, TxRemoveBot, TxRemoveLiquidity, TxRepayAccount, type TxSerialized, TxSerializer, TxStakeDiesel, type TxStatus, TxUnstakeDiesel, TxUpdateQuota, TxWithdrawCollateral, TypedObjectUtils, URLApi, USDC, USDT, type Unarray, UniswapV2AdapterContract, UniswapV3AdapterContract, type UpdatePriceFeedsResult, type UserCreditSessions, type UserCreditSessionsAggregatedStatsPayload, UserCreditSessionsBuilder, type UserPoolAggregatedStatsPayload, UserPoolData, type UserPoolPayload, VelodromeV2RouterAdapterContract, VotingContractStatus, WAD, WAD_DECIMALS_POW, WETH, type WrapResult, type WrappedAaveV2LPToken, type WrappedAaveV2PoolTokenData, type WrappedToken, type WrappedTokenData, WstETHPriceFeedContract, WstETHV1AdapterContract, type YearnLPToken, YearnPriceFeedContract, YearnV2RouterAdapterContract, type YearnVaultContract, type YearnVaultOfCurveLPTokenData, type YearnVaultOfMetaCurveLPTokenData, type YearnVaultTokenData, type ZapperData, type ZapperDataFull, type ZapperStateHuman, ZeroPriceFeedContract, type ZircuitPhantomTokenData, type ZircuitStakedPhantomToken, aaveV2Tokens, aaveV2WrapperAbi, accountFactoryV3Abi, aclAbi, aclNonReentrantTraitAbi, assetsMap, auraDepositorAbi, auraLpTokens, auraPathResolverAbi, auraStakedTokens, auraTokens, auraWithdrawerAbi, balancerLpDepositorAbi, balancerLpPathResolverAbi, balancerLpTokens, balancerLpWithdrawerAbi, balancerSwapperAbi, balancerV2VaultAdapterAbi, balancesMap, batchLiquidationEstimatorAbi, batchesChainAbi, botListV3Abi, botPermissionsToString, boundedPriceFeedAbi, bptStablePriceFeedAbi, bptWeightedPriceFeedAbi, bytes32ToString, camelotV3AdapterAbi, camelotV3SwapperAbi, chainlinkReadableAggregatorAbi, chains, childLogger, closePathResolverAbi, compositePriceFeedAbi, compoundV2Tokens, compoundV2WrapperAbi, connectors, contractParams, contractsRegisterAbi, controllerTimelockV3Abi, convexDepositorAbi, convexL2StakedTokens, convexLpTokenByPid, convexLpTokens, convexPathResolverAbi, convexPoolByPid, convexStakedPhantomTokens, convexTokens, convexV1BaseRewardPoolAdapterAbi, convexV1BoosterAdapterAbi, convexWithdrawerAbi, createAdapter, createPriceOracle, createRawTx, createTransport, creditManagerV3UsdtAbi, curveCryptoLpPriceFeedAbi, curveLpDepositorAbi, curveLpPathResolverAbi, curveLpWithdrawerAbi, curveMetaTokens, curveStableLpPriceFeedAbi, curveSwapperAbi, curveTokens, curveUsdPriceFeedAbi, curveV1Adapter2AssetsAbi, curveV1Adapter3AssetsAbi, curveV1Adapter4AssetsAbi, curveV1AdapterDepositAbi, curveV1AdapterStEthAbi, curveV1AdapterStableNgAbi, dataCompressorV3Abi, decimals, degenDistributorV3Abi, degenNftv2Abi, detectChain, detectNetwork, erc20Abi, erc4626AdapterAbi, erc4626DepositorAbi, erc4626PathResolverAbi, erc4626PriceFeedAbi, erc4626Tokens, erc4626WithdrawerAbi, errorAbis, etherscanUrl, faucetAbi, filterDust, fmtBinaryMask, formatBN, formatBNvalue, formatBn4dig, formatDuration, formatLeverage, formatNumberToString_, formatPercentage, gaugeV3Abi, gearStakingV3Abi, gearTokens, getAddressProvider, getConnectors, getDecimals, getNetworkType, getTokenSymbol, getTokenSymbolOrTicker, halfRAY, iAdapterAbi, iAdapterCompressorAbi, iAddressProviderV300Abi, iAddressProviderV310Abi, iAirdropDistributorAbi, iArbTokenAbi, iAuraL2CoordinatorAbi, iBalancerStablePoolAbi, iBalancerWeightedPoolAbi, iBaseRewardPoolAbi, iCamelotV3QuoterAbi, iConvexTokenAbi, iCreditAccountCompressorAbi, iCreditConfiguratorV300Abi, iCreditConfiguratorV310Abi, iCreditFacadeV2Abi, iCreditFacadeV2EventsAbi, iCreditFacadeV2ExceptionsAbi, iCreditFacadeV2ExtendedAbi, iCreditFacadeV2V2Abi, iCreditFacadeV300Abi, iCreditFacadeV300MulticallAbi, iCreditFacadeV310Abi, iCreditFacadeV310MulticallAbi, iCreditFacadeV3Abi, iCreditFacadeV3EventsAbi, iCreditFacadeV3MulticallAbi, iCreditManagerV300Abi, iCreditManagerV310Abi, iCreditSuiteCompressorAbi, iCurvePoolAbi, iDaiUsdsAdapterAbi, iDataCompressorV3Abi, iDegenDistributorAbi, iDegenNftv2Abi, iDegenNftv2EventsAbi, iDegenNftv2ExceptionsAbi, iErc4626AdapterAbi, iExceptionsAbi, iFarmingPoolAbi, iGaugeCompressorAbi, iGaugeV300Abi, iInterestRateModelAbi, iLegacyMintableErc20Abi, iLossPolicyAbi, iMarketCompressorAbi, iMarketConfiguratorV310Abi, iMellowVaultAbi, iMellowVaultAdapterAbi, iModifiedBoosterAbi, iMulticall3Abi, iOffchainOracleAbi, iOptimismMintableErc20Abi, iPausableAbi, iPendleRouterAdapterAbi, iPeripheryCompressorAbi, iPoolCompressorAbi, iPoolQuotaKeeperV300Abi, iPoolQuotaKeeperV310Abi, iPoolV300Abi, iPoolV310Abi, iPoolV3Abi, iPoolV3EventsAbi, iPriceFeedAbi, iPriceFeedCompressorAbi, iPriceOracleV300Abi, iPriceOracleV310Abi, iPriceOracleV3Abi, iPriceOracleV3EventsAbi, iRedstoneErrorsAbi, iRedstonePriceFeedEventsAbi, iRedstonePriceFeedExceptionsAbi, iRewardsCompressorAbi, iRouterV3ErrorsAbi, iStakingRewardsAdapterAbi, iSwapperAbi, iTokenCompressorAbi, iTumblerV3Abi, iUpdatablePriceFeedAbi, iVersionAbi, iZapperAbi, ierc20Abi, ierc20MetadataAbi, ierc20PermitAbi, ierc20ZapperDepositsAbi, iethZapperDepositsAbi, ilpPriceFeedAbi, ilpPriceFeedEventsAbi, ilpPriceFeedExceptionsAbi, inflationAttackBlockerAbi, insolvencyCheckerAbi, isAaveV2LPToken, isAuraLPToken, isAuraStakedToken, isAuraToken, isBalancerLPToken, isCompoundV2LPToken, isConvexL2StakedToken, isConvexLPToken, isConvexStakedPhantomToken, isConvexToken, isCurveLPToken, isCurveMetaToken, isDieselSimpleToken, isDieselStakedToken, isDieselToken, isDieselWithStkToken, isERC4626LPToken, isExtraFarmToken, isFarmToken, isLPToken, isLRT_LSTToken, isNormalToken, isStakingRewardsPhantomToken, isSupportedNetwork, isWrappedToken, isYearnLPToken, isZircuitStakedPhantomToken, iwstEthAbi, iyVaultAbi, json_parse, json_stringify, lidoSwapperAbi, lidoV1AdapterAbi, linearInterestRateModelV3Abi, lpTokens, mellowLrtPriceFeedAbi, multiPauseAbi, nonQuoted, normalTokens, numberWithCommas, overrideAggregatorAbi, partialLiquidationBotV3Abi, pendleTWAPPTPriceFeedAbi, percentFmt, poolV3UsdtAbi, priceFeedMultiplierAbi, priceOracleV3Abi, rawTxToMulticallPriceUpdate, rayToNumber, redstonePriceFeedAbi, retry, routerV3Abi, sendRawTx, shortAddress, shortHash, simulateMulticall, stakingRewardsPhantomTokens, stakingRewardsTokens, supportedTokens, susdeOverriderAbi, swapAggregatorAbi, tickerInfoTokensByNetwork, tickerSymbolByAddress, tickerTokensByNetwork, toBN, toBigInt, toHumanFormat, toSignificant, tokenDataByNetwork, tokenStealerAbi, tokenSymbolByAddress, underlyingDepositZapperAbi, underlyingFarmingZapperAbi, uniswapV2AdapterAbi, uniswapV2SwapperAbi, uniswapV3AdapterAbi, uniswapV3SwapperAbi, velodromeV2RouterAdapterAbi, velodromeV2SwapperAbi, wethDepositZapperAbi, wethFarmingZapperAbi, wrapAggregatorAbi, wrappedAaveV2Tokens, wrappedTokens, wstEthPriceFeedAbi, wstEthSwapperAbi, wstEthv1AdapterAbi, yearnDepositorAbi, yearnPathResolverAbi, yearnPriceFeedAbi, yearnTokens, yearnV2AdapterAbi, yearnWithdrawerAbi, zapperRegisterAbi, zeroPriceFeedAbi, zircuitStakedPhantomTokens, zircuitStakedTokenByToken, zircuitTokens };
@@ -93313,6 +93313,114 @@ declare class CreditSuite extends SDKConstruct {
93313
93313
  stateHuman(raw?: boolean): CreditSuiteStateHuman;
93314
93314
  }
93315
93315
 
93316
+ declare const NO_VERSION = 0;
93317
+ declare const AP_ACCOUNT_FACTORY = "ACCOUNT_FACTORY";
93318
+ declare const AP_ACL = "ACL";
93319
+ declare const AP_ADAPTER_COMPRESSOR = "ADAPTER_COMPRESSOR";
93320
+ declare const AP_BOT_LIST = "BOT_LIST";
93321
+ declare const AP_CONTRACTS_REGISTER = "CONTRACTS_REGISTER";
93322
+ declare const AP_CONTROLLER_TIMELOCK = "CONTROLLER_TIMELOCK";
93323
+ declare const AP_CREDIT_ACCOUNT_COMPRESSOR = "CREDIT_ACCOUNT_COMPRESSOR";
93324
+ declare const AP_CREDIT_SUITE_COMPRESSOR = "CREDIT_SUITE_COMPRESSOR";
93325
+ declare const AP_DATA_COMPRESSOR = "DATA_COMPRESSOR";
93326
+ declare const AP_DELEVERAGE_BOT_HV = "DELEVERAGE_BOT_HV";
93327
+ declare const AP_DELEVERAGE_BOT_LV = "DELEVERAGE_BOT_LV";
93328
+ declare const AP_DELEVERAGE_BOT_PEGGED = "DELEVERAGE_BOT_PEGGED";
93329
+ declare const AP_GAUGE_COMPRESSOR = "GAUGE_COMPRESSOR";
93330
+ declare const AP_GEAR_STAKING = "GEAR_STAKING";
93331
+ declare const AP_GEAR_TOKEN = "GEAR_TOKEN";
93332
+ declare const AP_INFLATION_ATTACK_BLOCKER = "INFLATION_ATTACK_BLOCKER";
93333
+ declare const AP_INSOLVENCY_CHECKER = "INSOLVENCY_CHECKER";
93334
+ declare const AP_MARKET_COMPRESSOR = "MARKET_COMPRESSOR";
93335
+ declare const AP_MARKET_CONFIGURATOR = "MARKET_CONFIGURATOR";
93336
+ declare const AP_PARTIAL_LIQUIDATION_BOT = "PARTIAL_LIQUIDATION_BOT";
93337
+ declare const AP_PERIPHERY_COMPRESSOR = "PERIPHERY_COMPRESSOR";
93338
+ declare const AP_POOL_COMPRESSOR = "POOL_COMPRESSOR";
93339
+ declare const AP_PRICE_FEED_COMPRESSOR = "PRICE_FEED_COMPRESSOR";
93340
+ declare const AP_PRICE_ORACLE = "PRICE_ORACLE";
93341
+ declare const AP_REWARDS_COMPRESSOR = "REWARDS_COMPRESSOR";
93342
+ declare const AP_ROUTER = "LOCAL::ROUTER";
93343
+ declare const AP_TOKEN_COMPRESSOR = "TOKEN_COMPRESSOR";
93344
+ declare const AP_TREASURY = "TREASURY";
93345
+ declare const AP_WETH_GATEWAY = "WETH_GATEWAY";
93346
+ declare const AP_WETH_TOKEN = "WETH_TOKEN";
93347
+ declare const AP_ZAPPER_REGISTER = "ZAPPER_REGISTER";
93348
+ declare const AP_ZERO_PRICE_FEED = "ZERO_PRICE_FEED";
93349
+ declare const ADDRESS_PROVIDER: Record<NetworkType, Address>;
93350
+
93351
+ declare const MULTICALL_ADDRESS: Address;
93352
+ /**
93353
+ * Address 0x0000000000000000000000000000000000000000
93354
+ */
93355
+ declare const ADDRESS_0X0: Address;
93356
+ /**
93357
+ * Dummy address to satisfy `0x${string}` typecheck, but fail on `isAddress` check
93358
+ */
93359
+ declare const NOT_DEPLOYED = "0xNOT DEPLOYED";
93360
+ /**
93361
+ * Well-known USDC token address used to determine NetworkType on testnets with different chain ids
93362
+ */
93363
+ declare const USDC: Record<NetworkType, Address>;
93364
+ declare const USDT: Record<NetworkType, Address>;
93365
+ declare const WETH: Record<NetworkType, Address>;
93366
+ declare const TIMELOCK: Record<NetworkType, Address>;
93367
+ declare const GEARBOX_MULTISIG: Record<NetworkType, Address>;
93368
+ declare const GEARBOX_RISK_CURATORS: Record<NetworkType, Address[]>;
93369
+ /**
93370
+ * Depreciated pools
93371
+ */
93372
+ declare const DEPRECIATED_POOLS: {
93373
+ readonly Mainnet: {
93374
+ readonly USDT_V3_BROKEN: string;
93375
+ };
93376
+ readonly Arbitrum: {};
93377
+ readonly Optimism: {};
93378
+ readonly Base: {};
93379
+ readonly Sonic: {};
93380
+ };
93381
+
93382
+ declare enum BotPermissions {
93383
+ ADD_COLLATERAL = 1,
93384
+ INCREASE_DEBT = 2,
93385
+ DECREASE_DEBT = 4,
93386
+ ENABLE_TOKEN = 8,
93387
+ DISABLE_TOKEN = 16,
93388
+ WITHDRAW_COLLATERAL = 32,
93389
+ UPDATE_QUOTA = 64,
93390
+ REVOKE_ALLOWANCES = 128,
93391
+ EXTERNAL_CALLS = 65536,
93392
+ ALL_CREDIT_FACADE_CALLS = 255,
93393
+ ALLS = 65791
93394
+ }
93395
+ declare function botPermissionsToString(value: bigint): string;
93396
+
93397
+ declare const MAX_INT: bigint;
93398
+ declare const MIN_INT96 = -39614081257132168796771975168n;
93399
+ declare const MAX_UINT256 = 115792089237316195423570985008687907853269984665640564039457584007913129639935n;
93400
+ declare const MAX_UINT16 = 65535n;
93401
+ declare const RAY_DECIMALS_POW = 27;
93402
+ declare const RAY: bigint;
93403
+ declare const halfRAY: bigint;
93404
+ declare const WAD_DECIMALS_POW = 18;
93405
+ declare const WAD: bigint;
93406
+ declare const PRICE_DECIMALS_POW = 8;
93407
+ declare const PRICE_DECIMALS: bigint;
93408
+ declare const SECONDS_PER_YEAR: number;
93409
+ declare const PERCENTAGE_DECIMALS = 100n;
93410
+ declare const PERCENTAGE_FACTOR = 10000n;
93411
+ declare const LEVERAGE_DECIMALS = 100n;
93412
+ declare const SLIPPAGE_DECIMALS = 100n;
93413
+
93414
+ /**
93415
+ * Block number when address provider was deployed
93416
+ */
93417
+ declare const ADDRESS_PROVIDER_BLOCK: Record<NetworkType, bigint>;
93418
+ declare const RAMP_DURATION_BY_NETWORK: Record<NetworkType, bigint>;
93419
+ declare const BLOCKS_PER_WEEK_BY_NETWORK: Record<NetworkType, bigint>;
93420
+
93421
+ declare const PERIPHERY_CONTRACTS: readonly ["DEGEN_DISTRIBUTOR", "DEGEN_NFT", "MULTI_PAUSE"];
93422
+ type PeripheryContract = (typeof PERIPHERY_CONTRACTS)[number];
93423
+
93316
93424
  declare const abi$b: readonly [{
93317
93425
  readonly type: "function";
93318
93426
  readonly name: "acl";
@@ -94841,6 +94949,7 @@ declare class MarketConfiguratorContract extends BaseContract<typeof abi$b> {
94841
94949
  #private;
94842
94950
  constructor(sdk: GearboxSDK, address: Address);
94843
94951
  loadCuratorName(): Promise<void>;
94952
+ getPeripheryContract(contract: PeripheryContract): Promise<Address>;
94844
94953
  processLog(log: Log<bigint, number, false, undefined, undefined, typeof abi$b, ContractEventName<typeof abi$b>>): void;
94845
94954
  }
94846
94955
 
@@ -98956,114 +99065,6 @@ declare class BotsService extends SDKConstruct {
98956
99065
  getBotsData(addresses: BotAddresses): Promise<Record<"liquidationProtection", BotDataPayload[]>>;
98957
99066
  }
98958
99067
 
98959
- declare const NO_VERSION = 0;
98960
- declare const AP_ACCOUNT_FACTORY = "ACCOUNT_FACTORY";
98961
- declare const AP_ACL = "ACL";
98962
- declare const AP_ADAPTER_COMPRESSOR = "ADAPTER_COMPRESSOR";
98963
- declare const AP_BOT_LIST = "BOT_LIST";
98964
- declare const AP_CONTRACTS_REGISTER = "CONTRACTS_REGISTER";
98965
- declare const AP_CONTROLLER_TIMELOCK = "CONTROLLER_TIMELOCK";
98966
- declare const AP_CREDIT_ACCOUNT_COMPRESSOR = "CREDIT_ACCOUNT_COMPRESSOR";
98967
- declare const AP_CREDIT_SUITE_COMPRESSOR = "CREDIT_SUITE_COMPRESSOR";
98968
- declare const AP_DATA_COMPRESSOR = "DATA_COMPRESSOR";
98969
- declare const AP_DEGEN_DISTRIBUTOR = "DEGEN_DISTRIBUTOR";
98970
- declare const AP_DEGEN_NFT = "DEGEN_NFT";
98971
- declare const AP_DELEVERAGE_BOT_HV = "DELEVERAGE_BOT_HV";
98972
- declare const AP_DELEVERAGE_BOT_LV = "DELEVERAGE_BOT_LV";
98973
- declare const AP_DELEVERAGE_BOT_PEGGED = "DELEVERAGE_BOT_PEGGED";
98974
- declare const AP_GAUGE_COMPRESSOR = "GAUGE_COMPRESSOR";
98975
- declare const AP_GEAR_STAKING = "GEAR_STAKING";
98976
- declare const AP_GEAR_TOKEN = "GEAR_TOKEN";
98977
- declare const AP_INFLATION_ATTACK_BLOCKER = "INFLATION_ATTACK_BLOCKER";
98978
- declare const AP_INSOLVENCY_CHECKER = "INSOLVENCY_CHECKER";
98979
- declare const AP_MARKET_COMPRESSOR = "MARKET_COMPRESSOR";
98980
- declare const AP_MARKET_CONFIGURATOR = "MARKET_CONFIGURATOR";
98981
- declare const AP_MULTI_PAUSE = "MULTI_PAUSE";
98982
- declare const AP_PARTIAL_LIQUIDATION_BOT = "PARTIAL_LIQUIDATION_BOT";
98983
- declare const AP_PERIPHERY_COMPRESSOR = "PERIPHERY_COMPRESSOR";
98984
- declare const AP_POOL_COMPRESSOR = "POOL_COMPRESSOR";
98985
- declare const AP_PRICE_FEED_COMPRESSOR = "PRICE_FEED_COMPRESSOR";
98986
- declare const AP_PRICE_ORACLE = "PRICE_ORACLE";
98987
- declare const AP_REWARDS_COMPRESSOR = "REWARDS_COMPRESSOR";
98988
- declare const AP_ROUTER = "ROUTER";
98989
- declare const AP_TOKEN_COMPRESSOR = "TOKEN_COMPRESSOR";
98990
- declare const AP_TREASURY = "TREASURY";
98991
- declare const AP_WETH_GATEWAY = "WETH_GATEWAY";
98992
- declare const AP_WETH_TOKEN = "WETH_TOKEN";
98993
- declare const AP_ZAPPER_REGISTER = "ZAPPER_REGISTER";
98994
- declare const AP_ZERO_PRICE_FEED = "ZERO_PRICE_FEED";
98995
- declare const ADDRESS_PROVIDER: Record<NetworkType, Address>;
98996
-
98997
- declare const MULTICALL_ADDRESS: Address;
98998
- /**
98999
- * Address 0x0000000000000000000000000000000000000000
99000
- */
99001
- declare const ADDRESS_0X0: Address;
99002
- /**
99003
- * Dummy address to satisfy `0x${string}` typecheck, but fail on `isAddress` check
99004
- */
99005
- declare const NOT_DEPLOYED = "0xNOT DEPLOYED";
99006
- /**
99007
- * Well-known USDC token address used to determine NetworkType on testnets with different chain ids
99008
- */
99009
- declare const USDC: Record<NetworkType, Address>;
99010
- declare const USDT: Record<NetworkType, Address>;
99011
- declare const WETH: Record<NetworkType, Address>;
99012
- declare const TIMELOCK: Record<NetworkType, Address>;
99013
- declare const GEARBOX_MULTISIG: Record<NetworkType, Address>;
99014
- declare const GEARBOX_RISK_CURATORS: Record<NetworkType, Address[]>;
99015
- /**
99016
- * Depreciated pools
99017
- */
99018
- declare const DEPRECIATED_POOLS: {
99019
- readonly Mainnet: {
99020
- readonly USDT_V3_BROKEN: string;
99021
- };
99022
- readonly Arbitrum: {};
99023
- readonly Optimism: {};
99024
- readonly Base: {};
99025
- readonly Sonic: {};
99026
- };
99027
-
99028
- declare enum BotPermissions {
99029
- ADD_COLLATERAL = 1,
99030
- INCREASE_DEBT = 2,
99031
- DECREASE_DEBT = 4,
99032
- ENABLE_TOKEN = 8,
99033
- DISABLE_TOKEN = 16,
99034
- WITHDRAW_COLLATERAL = 32,
99035
- UPDATE_QUOTA = 64,
99036
- REVOKE_ALLOWANCES = 128,
99037
- EXTERNAL_CALLS = 65536,
99038
- ALL_CREDIT_FACADE_CALLS = 255,
99039
- ALLS = 65791
99040
- }
99041
- declare function botPermissionsToString(value: bigint): string;
99042
-
99043
- declare const MAX_INT: bigint;
99044
- declare const MIN_INT96 = -39614081257132168796771975168n;
99045
- declare const MAX_UINT256 = 115792089237316195423570985008687907853269984665640564039457584007913129639935n;
99046
- declare const MAX_UINT16 = 65535n;
99047
- declare const RAY_DECIMALS_POW = 27;
99048
- declare const RAY: bigint;
99049
- declare const halfRAY: bigint;
99050
- declare const WAD_DECIMALS_POW = 18;
99051
- declare const WAD: bigint;
99052
- declare const PRICE_DECIMALS_POW = 8;
99053
- declare const PRICE_DECIMALS: bigint;
99054
- declare const SECONDS_PER_YEAR: number;
99055
- declare const PERCENTAGE_DECIMALS = 100n;
99056
- declare const PERCENTAGE_FACTOR = 10000n;
99057
- declare const LEVERAGE_DECIMALS = 100n;
99058
- declare const SLIPPAGE_DECIMALS = 100n;
99059
-
99060
- /**
99061
- * Block number when address provider was deployed
99062
- */
99063
- declare const ADDRESS_PROVIDER_BLOCK: Record<NetworkType, bigint>;
99064
- declare const RAMP_DURATION_BY_NETWORK: Record<NetworkType, bigint>;
99065
- declare const BLOCKS_PER_WEEK_BY_NETWORK: Record<NetworkType, bigint>;
99066
-
99067
99068
  interface UserVote {
99068
99069
  token: Address;
99069
99070
  stakerVotesLpSide: bigint;
@@ -104210,4 +104211,4 @@ type MulticallErrorType = GetChainContractAddressErrorType | ReadContractErrorTy
104210
104211
  */
104211
104212
  declare function simulateMulticall<const contracts extends readonly unknown[], chain extends Chain | undefined, allowFailure extends boolean = true>(client: Client<Transport, chain>, parameters: MulticallParameters<contracts, allowFailure>): Promise<MulticallReturnType<contracts, allowFailure>>;
104212
104213
 
104213
- export { ADDRESS_0X0, ADDRESS_PROVIDER, ADDRESS_PROVIDER_BLOCK, AP_ACCOUNT_FACTORY, AP_ACL, AP_ADAPTER_COMPRESSOR, AP_BOT_LIST, AP_CONTRACTS_REGISTER, AP_CONTROLLER_TIMELOCK, AP_CREDIT_ACCOUNT_COMPRESSOR, AP_CREDIT_SUITE_COMPRESSOR, AP_DATA_COMPRESSOR, AP_DEGEN_DISTRIBUTOR, AP_DEGEN_NFT, AP_DELEVERAGE_BOT_HV, AP_DELEVERAGE_BOT_LV, AP_DELEVERAGE_BOT_PEGGED, AP_GAUGE_COMPRESSOR, AP_GEAR_STAKING, AP_GEAR_TOKEN, AP_INFLATION_ATTACK_BLOCKER, AP_INSOLVENCY_CHECKER, AP_MARKET_COMPRESSOR, AP_MARKET_CONFIGURATOR, AP_MULTI_PAUSE, AP_PARTIAL_LIQUIDATION_BOT, AP_PERIPHERY_COMPRESSOR, AP_POOL_COMPRESSOR, AP_PRICE_FEED_COMPRESSOR, AP_PRICE_ORACLE, AP_REWARDS_COMPRESSOR, AP_ROUTER, AP_TOKEN_COMPRESSOR, AP_TREASURY, AP_WETH_GATEWAY, AP_WETH_TOKEN, AP_ZAPPER_REGISTER, AP_ZERO_PRICE_FEED, type AaveV2LPToken, type AaveV2PoolTokenData, AbstractPriceFeedContract, type AdapterContractType, type AdapterContractTypeLegacy, type AdapterData, AdapterInterface, AddressLabeller, AddressMap, AddressProviderContractV3, AddressProviderContractV3_1, type AddressProviderState, type AddressProviderV3StateHuman, type AllLPTokens, type Asset, type AssetPriceFeedStateHuman, AssetUtils, type AssetWithAmountInTarget, type AssetWithView, type AuraLPToken, type AuraLPTokenData, type AuraPoolContract, type AuraStakedToken, type AuraStakedTokenData, BLOCKS_PER_WEEK_BY_NETWORK, type BalancerLPToken, type BalancerLpTokenData, BalancerStablePriceFeedContract, BalancerV2VaultAdapterContract, BalancerWeightedPriceFeedContract, type BalancerWeightedPriceFeedStateHuman, BaseContract, type BaseContractOptions, type BaseContractStateHuman, type BaseParams, type BasePriceFeedStateHuman, type BaseState, BigIntMath, type BigNumberish, type BotAddresses, type BotBaseType, type BotData, type BotDataLegacy, type BotDataPayload, type BotDetailedType, BotListContract, type BotListStateHuman, BotPermissions, BotsService, type BoundedOracleStateHuman, BoundedPriceFeedContract, CREDIT_SESSION_ID_BY_STATUS, CREDIT_SESSION_STATUS_BY_ID, type CaTokenBalance, type CalcAvgQuotaBorrowRateProps, type CalcDefaultQuotaProps, type CalcHealthFactorProps, type CalcMaxLendingDebtProps, type CalcOverallAPYProps, type CalcQuotaBorrowRateProps, type CalcQuotaUpdateProps, type CalcRecommendedQuotaProps, type CalcRelativeBaseBorrowRateProps, CamelotV3AdapterContract, ChainlinkPriceFeedContract, type ChartsAggregatedPoolPayload, type ChartsAggregatedStats, ChartsCreditManagerData, type ChartsCreditManagerPayload, ChartsPoolData, type ChartsPoolDataPayload, type ClaimFarmRewardsProps, type ClaimLmRewardsV2Props, type ClaimLmRewardsV3Props, type CloseCreditAccountResult, type ClosePathBalances, type CommonResult, CompositePriceFeedContract, type CompoundV2LPToken, type CompoundV2PoolTokenData, type ConnectedBotData, type ConnectionOptions, type ContractMethod, type ConvexL2StakedToken, type ConvexL2StakedTokenData, type ConvexLPToken, type ConvexLPTokenData, type ConvexPhantomTokenData, type ConvexPoolContract, type ConvexStakedPhantomToken, ConvexV1BaseRewardPoolAdapterContract, ConvexV1BoosterAdapterContract, type CoreStateHuman, type CreditAccountData, type CreditAccountDataPayload, type CreditAccountDataSlice, CreditAccountData_Legacy, type CreditAccountFilter, type CreditAccountServiceOptions, CreditAccountsService, type CreditConfiguratorState, type CreditConfiguratorStateHuman, CreditConfiguratorV300Contract, CreditConfiguratorV310Contract, type CreditFacadeContract, type CreditFacadeState, type CreditFacadeStateHuman, CreditFacadeV300Contract, CreditFacadeV310Contract, type CreditManagerData, type CreditManagerDataPayload, CreditManagerData_Legacy, type CreditManagerDebtParams, type CreditManagerDebtParamsHuman, type CreditManagerDebtParamsSDK, type CreditManagerState, type CreditManagerStateHuman, type CreditManagerType, CreditManagerV300Contract, CreditManagerV310Contract, CreditSession, type CreditSessionAsset, type CreditSessionBalancePayload, CreditSessionFiltered, type CreditSessionFilteredPayload, type CreditSessionPayload, type CreditSessionReward, type CreditSessionSortFields, type CreditSessionSortType, type CreditSessionStatus, type CreditSessionsAggregatedStats, type CreditSessionsAggregatedStatsPayload, CreditSuite, type CreditSuiteStateHuman, Curve2AssetsAdapterContract, Curve3AssetsAdapterContract, Curve3CrvUnderlyingTokenIndex, Curve4AssetsAdapterContract, CurveCryptoPriceFeedContract, type CurveLPToken, type CurveLPTokenData, type CurveMetaTokens, type CurvePoolContract, type CurvePoolStruct, CurveStablePriceFeedContract, type CurveSteCRVPoolParams, CurveUSDPriceFeedContract, CurveV1AdapterStETHContract, CurveV1AdapterStableNGContract, DEPRECIATED_POOLS, DUMB_ADDRESS, DUMB_ADDRESS2, DUMB_ADDRESS3, DUMB_ADDRESS4, DaiUsdsAdapterContract, type DieselSimpleTokenData, type DieselSimpleTokenTypes, type DieselStakedTokenData, type DieselStakedTokenTypes, type DieselTokenData, type DieselTokenTypes, type DieselTokenWithStkTypes, type DieselWithStkTokenV3Data, type Display, ERC4626AdapterContract, type ERC4626LPToken, type ERC4626VaultContract, type ERC4626VaultOfCurveLPTokenData, type ERC4626VaultTokenData, ETH_ADDRESS, EVMEvent, type EVMEventProps, EVMTx, type EVMTxProps, Erc4626PriceFeedContract, type EtherscanURLParam, EventOrTx, type EventOrTxProps, type ExtraRewardApy, type FarmInfo, type FindClosePathInput, GEARBOX_MULTISIG, GEARBOX_RISK_CURATORS, GaugeContract, type GaugeData, type GaugeParams, type GaugeParamsHuman, type GaugeStakingDataPayload, GaugeStakingService, type GaugeStateHuman, GearStakingContract, type GearStakingV3StateHuman, GearboxBackendApi, type GearboxExtraMerkleLmReward, type GearboxLmReward, type GearboxMerkleV2LmReward, GearboxRewardsApi, GearboxRewardsApy, GearboxRewardsExtraApy, GearboxSDK, type GearboxStakedV3LmReward, type GearboxState, type GearboxStateHuman, type GearboxToken, type GearboxTokenData, type GetAddressProviderOptions, type GetExtraRewardsProps, type GetLmRewardsInfoProps, type GetLmRewardsProps, type GetPointsByPoolProps, type GetTotalTokensOnProtocolProps, type GraphPayload, type IAdapterContract$1 as IAdapterContract, type IAddressProviderContract, type IBaseContract$1 as IBaseContract, type ICreditConfiguratorContract, type ICreditManagerContract, type IInterestRateModelContract, type ILPPriceFeedContract, type ILogger, type IPriceFeedContract, type IPriceOracleContract, type IRateKeeperContract, type InterestRateModelStateHuman, type InterestRateModelType, LEVERAGE_DECIMALS, type LPPriceFeedStateHuman, type LPTokenDataI, type LPTokens, LinearInterestRateModelContract, type LinearInterestRateModelStateHuman, type LinearModel, type LiquidationBotType, type LogFn, MAX_INT, MAX_UINT16, MAX_UINT256, MIN_INT96, MULTICALL_ADDRESS, type MarketData, type MarketFilter, MarketRegister, type MarketStateHuman, MarketSuite, MellowERC4626VaultAdapterContract, MellowLRTPriceFeedContract, MellowVaultAdapterContract, type MerkleDistributorInfo, type MetaCurveLPTokenData, type MultiCall, type MultiVote, type MulticallErrorType, type MulticallParameters, type MulticallReturnType, NOT_DEPLOYED, NO_VERSION, type NetworkOptions, type NetworkType, type NormalToken, type NormalTokenData, type OnDemandPriceUpdate, type OpenCAProps, type OpenStrategyResult, PERCENTAGE_DECIMALS, PERCENTAGE_FACTOR, PRICE_DECIMALS, PRICE_DECIMALS_POW, type PartialPriceFeedTreeNode, type PartialRecord, type PathFinderCloseResult, type PathFinderOpenStrategyResult, type PathFinderResult, type PathOption, type PathOptionSerie, PendleRouterAdapterContract, PendleTWAPPTPriceFeed, type PermitResult, PhantomTokenType, type PoolContract, type PoolData, type PoolDataExtraPayload, type PoolDataPayload, PoolData_Legacy, type PoolPointsInfo, type PoolQuotaKeeperContract, type PoolQuotaKeeperData, type PoolQuotaKeeperStateHuman, PoolQuotaKeeperV300Contract, type PoolStateHuman, PoolSuite, type PoolSuiteStateHuman, type PoolType, PoolV300Contract, PositionUtils, type PriceFeedConstructorArgs, type PriceFeedContractType, type PriceFeedContractTypeLegacy, type PriceFeedMapEntry, PriceFeedRef, PriceFeedRegister, type PriceFeedRegisterHooks, type PriceFeedStateHuman, type PriceFeedTreeNode, PriceFeedType, type PriceFeedUsageType, type PriceFeedsForTokensOptions, type PriceOracleContract, type PriceOracleData, PriceOracleV300Contract, PriceOracleV310Contract, type PriceOracleV3StateHuman, PriceUtils, Provider, type QuotaInfo, type QuotaParamsHuman, type QuotaState, RAMP_DURATION_BY_NETWORK, RAY, RAY_DECIMALS_POW, type RampEvent, type RateKeeperData, type RateKeeperStateHuman, type RateKeeperType, type RawTx, RedstonePriceFeedContract, type RedstonePriceFeedStateHuman, type ReleaseAt, type RetryOptions, type RewardInfo, type Rewards, type RouterCloseResult, type RouterHooks, type RouterResult, RouterV3Contract, SDKConstruct, type SDKHooks, type SDKOptions, SECONDS_PER_YEAR, SLIPPAGE_DECIMALS, SUPPORTED_CHAINS, type SecondaryStatus, type SendRawTxParameters, StakingRewardsAdapterContract, type StakingRewardsContract, type StakingRewardsPhantomToken, type StakingRewardsPhantomTokenData, type SupportedContract, type SupportedToken, type SupportedValue, type SwapOperation, type SwapTask, type SyncStateOptions, TESTNET_CHAINS, TIMELOCK, type TVL, TXSwap, type TickerInfo, type TickerToken, type TimeToLiquidationProps, type TokenBase, TokenData, type TokenDataI, type TokenDataPayload, type TokenMetaData, type TokenNetwork, TokenType, type TokensAPYList, TokensMeta, type TokensWithAPY, type TransportOptions, type TumblerStateHuman, TxAddBot, TxAddCollateral, TxAddLiquidity, TxApprove, TxClaimNFT, TxClaimRewards, TxCloseAccount, TxDecreaseBorrowAmount, TxGaugeClaim, TxGaugeStake, TxGaugeUnstake, TxGaugeVote, TxIncreaseBorrowAmount, TxLiquidateAccount, TxOpenMultitokenAccount, TxRemoveBot, TxRemoveLiquidity, TxRepayAccount, type TxSerialized, TxSerializer, TxStakeDiesel, type TxStatus, TxUnstakeDiesel, TxUpdateQuota, TxWithdrawCollateral, TypedObjectUtils, URLApi, USDC, USDT, type Unarray, UniswapV2AdapterContract, UniswapV3AdapterContract, type UpdatePriceFeedsResult, type UserCreditSessions, type UserCreditSessionsAggregatedStatsPayload, UserCreditSessionsBuilder, type UserPoolAggregatedStatsPayload, UserPoolData, type UserPoolPayload, VelodromeV2RouterAdapterContract, VotingContractStatus, WAD, WAD_DECIMALS_POW, WETH, type WrapResult, type WrappedAaveV2LPToken, type WrappedAaveV2PoolTokenData, type WrappedToken, type WrappedTokenData, WstETHPriceFeedContract, WstETHV1AdapterContract, type YearnLPToken, YearnPriceFeedContract, YearnV2RouterAdapterContract, type YearnVaultContract, type YearnVaultOfCurveLPTokenData, type YearnVaultOfMetaCurveLPTokenData, type YearnVaultTokenData, type ZapperData, type ZapperDataFull, type ZapperStateHuman, ZeroPriceFeedContract, type ZircuitPhantomTokenData, type ZircuitStakedPhantomToken, aaveV2Tokens, aaveV2WrapperAbi, accountFactoryV3Abi, aclAbi, aclNonReentrantTraitAbi, assetsMap, auraDepositorAbi, auraLpTokens, auraPathResolverAbi, auraStakedTokens, auraTokens, auraWithdrawerAbi, balancerLpDepositorAbi, balancerLpPathResolverAbi, balancerLpTokens, balancerLpWithdrawerAbi, balancerSwapperAbi, balancerV2VaultAdapterAbi, balancesMap, batchLiquidationEstimatorAbi, batchesChainAbi, botListV3Abi, botPermissionsToString, boundedPriceFeedAbi, bptStablePriceFeedAbi, bptWeightedPriceFeedAbi, bytes32ToString, camelotV3AdapterAbi, camelotV3SwapperAbi, chainlinkReadableAggregatorAbi, chains, childLogger, closePathResolverAbi, compositePriceFeedAbi, compoundV2Tokens, compoundV2WrapperAbi, connectors, contractParams, contractsRegisterAbi, controllerTimelockV3Abi, convexDepositorAbi, convexL2StakedTokens, convexLpTokenByPid, convexLpTokens, convexPathResolverAbi, convexPoolByPid, convexStakedPhantomTokens, convexTokens, convexV1BaseRewardPoolAdapterAbi, convexV1BoosterAdapterAbi, convexWithdrawerAbi, createAdapter, createPriceOracle, createRawTx, createTransport, creditManagerV3UsdtAbi, curveCryptoLpPriceFeedAbi, curveLpDepositorAbi, curveLpPathResolverAbi, curveLpWithdrawerAbi, curveMetaTokens, curveStableLpPriceFeedAbi, curveSwapperAbi, curveTokens, curveUsdPriceFeedAbi, curveV1Adapter2AssetsAbi, curveV1Adapter3AssetsAbi, curveV1Adapter4AssetsAbi, curveV1AdapterDepositAbi, curveV1AdapterStEthAbi, curveV1AdapterStableNgAbi, dataCompressorV3Abi, decimals, degenDistributorV3Abi, degenNftv2Abi, detectChain, detectNetwork, erc20Abi, erc4626AdapterAbi, erc4626DepositorAbi, erc4626PathResolverAbi, erc4626PriceFeedAbi, erc4626Tokens, erc4626WithdrawerAbi, errorAbis, etherscanUrl, faucetAbi, filterDust, fmtBinaryMask, formatBN, formatBNvalue, formatBn4dig, formatDuration, formatLeverage, formatNumberToString_, formatPercentage, gaugeV3Abi, gearStakingV3Abi, gearTokens, getAddressProvider, getConnectors, getDecimals, getNetworkType, getTokenSymbol, getTokenSymbolOrTicker, halfRAY, iAdapterAbi, iAdapterCompressorAbi, iAddressProviderV300Abi, iAddressProviderV310Abi, iAirdropDistributorAbi, iArbTokenAbi, iAuraL2CoordinatorAbi, iBalancerStablePoolAbi, iBalancerWeightedPoolAbi, iBaseRewardPoolAbi, iCamelotV3QuoterAbi, iConvexTokenAbi, iCreditAccountCompressorAbi, iCreditConfiguratorV300Abi, iCreditConfiguratorV310Abi, iCreditFacadeV2Abi, iCreditFacadeV2EventsAbi, iCreditFacadeV2ExceptionsAbi, iCreditFacadeV2ExtendedAbi, iCreditFacadeV2V2Abi, iCreditFacadeV300Abi, iCreditFacadeV300MulticallAbi, iCreditFacadeV310Abi, iCreditFacadeV310MulticallAbi, iCreditFacadeV3Abi, iCreditFacadeV3EventsAbi, iCreditFacadeV3MulticallAbi, iCreditManagerV300Abi, iCreditManagerV310Abi, iCreditSuiteCompressorAbi, iCurvePoolAbi, iDaiUsdsAdapterAbi, iDataCompressorV3Abi, iDegenDistributorAbi, iDegenNftv2Abi, iDegenNftv2EventsAbi, iDegenNftv2ExceptionsAbi, iErc4626AdapterAbi, iExceptionsAbi, iFarmingPoolAbi, iGaugeCompressorAbi, iGaugeV300Abi, iInterestRateModelAbi, iLegacyMintableErc20Abi, iLossPolicyAbi, iMarketCompressorAbi, iMarketConfiguratorV310Abi, iMellowVaultAbi, iMellowVaultAdapterAbi, iModifiedBoosterAbi, iMulticall3Abi, iOffchainOracleAbi, iOptimismMintableErc20Abi, iPausableAbi, iPendleRouterAdapterAbi, iPeripheryCompressorAbi, iPoolCompressorAbi, iPoolQuotaKeeperV300Abi, iPoolQuotaKeeperV310Abi, iPoolV300Abi, iPoolV310Abi, iPoolV3Abi, iPoolV3EventsAbi, iPriceFeedAbi, iPriceFeedCompressorAbi, iPriceOracleV300Abi, iPriceOracleV310Abi, iPriceOracleV3Abi, iPriceOracleV3EventsAbi, iRedstoneErrorsAbi, iRedstonePriceFeedEventsAbi, iRedstonePriceFeedExceptionsAbi, iRewardsCompressorAbi, iRouterV3ErrorsAbi, iStakingRewardsAdapterAbi, iSwapperAbi, iTokenCompressorAbi, iTumblerV3Abi, iUpdatablePriceFeedAbi, iVersionAbi, iZapperAbi, ierc20Abi, ierc20MetadataAbi, ierc20PermitAbi, ierc20ZapperDepositsAbi, iethZapperDepositsAbi, ilpPriceFeedAbi, ilpPriceFeedEventsAbi, ilpPriceFeedExceptionsAbi, inflationAttackBlockerAbi, insolvencyCheckerAbi, isAaveV2LPToken, isAuraLPToken, isAuraStakedToken, isAuraToken, isBalancerLPToken, isCompoundV2LPToken, isConvexL2StakedToken, isConvexLPToken, isConvexStakedPhantomToken, isConvexToken, isCurveLPToken, isCurveMetaToken, isDieselSimpleToken, isDieselStakedToken, isDieselToken, isDieselWithStkToken, isERC4626LPToken, isExtraFarmToken, isFarmToken, isLPToken, isLRT_LSTToken, isNormalToken, isStakingRewardsPhantomToken, isSupportedNetwork, isWrappedToken, isYearnLPToken, isZircuitStakedPhantomToken, iwstEthAbi, iyVaultAbi, json_parse, json_stringify, lidoSwapperAbi, lidoV1AdapterAbi, linearInterestRateModelV3Abi, lpTokens, mellowLrtPriceFeedAbi, multiPauseAbi, nonQuoted, normalTokens, numberWithCommas, overrideAggregatorAbi, partialLiquidationBotV3Abi, pendleTWAPPTPriceFeedAbi, percentFmt, poolV3UsdtAbi, priceFeedMultiplierAbi, priceOracleV3Abi, rawTxToMulticallPriceUpdate, rayToNumber, redstonePriceFeedAbi, retry, routerV3Abi, sendRawTx, shortAddress, shortHash, simulateMulticall, stakingRewardsPhantomTokens, stakingRewardsTokens, supportedTokens, susdeOverriderAbi, swapAggregatorAbi, tickerInfoTokensByNetwork, tickerSymbolByAddress, tickerTokensByNetwork, toBN, toBigInt, toHumanFormat, toSignificant, tokenDataByNetwork, tokenStealerAbi, tokenSymbolByAddress, underlyingDepositZapperAbi, underlyingFarmingZapperAbi, uniswapV2AdapterAbi, uniswapV2SwapperAbi, uniswapV3AdapterAbi, uniswapV3SwapperAbi, velodromeV2RouterAdapterAbi, velodromeV2SwapperAbi, wethDepositZapperAbi, wethFarmingZapperAbi, wrapAggregatorAbi, wrappedAaveV2Tokens, wrappedTokens, wstEthPriceFeedAbi, wstEthSwapperAbi, wstEthv1AdapterAbi, yearnDepositorAbi, yearnPathResolverAbi, yearnPriceFeedAbi, yearnTokens, yearnV2AdapterAbi, yearnWithdrawerAbi, zapperRegisterAbi, zeroPriceFeedAbi, zircuitStakedPhantomTokens, zircuitStakedTokenByToken, zircuitTokens };
104214
+ export { ADDRESS_0X0, ADDRESS_PROVIDER, ADDRESS_PROVIDER_BLOCK, AP_ACCOUNT_FACTORY, AP_ACL, AP_ADAPTER_COMPRESSOR, AP_BOT_LIST, AP_CONTRACTS_REGISTER, AP_CONTROLLER_TIMELOCK, AP_CREDIT_ACCOUNT_COMPRESSOR, AP_CREDIT_SUITE_COMPRESSOR, AP_DATA_COMPRESSOR, AP_DELEVERAGE_BOT_HV, AP_DELEVERAGE_BOT_LV, AP_DELEVERAGE_BOT_PEGGED, AP_GAUGE_COMPRESSOR, AP_GEAR_STAKING, AP_GEAR_TOKEN, AP_INFLATION_ATTACK_BLOCKER, AP_INSOLVENCY_CHECKER, AP_MARKET_COMPRESSOR, AP_MARKET_CONFIGURATOR, AP_PARTIAL_LIQUIDATION_BOT, AP_PERIPHERY_COMPRESSOR, AP_POOL_COMPRESSOR, AP_PRICE_FEED_COMPRESSOR, AP_PRICE_ORACLE, AP_REWARDS_COMPRESSOR, AP_ROUTER, AP_TOKEN_COMPRESSOR, AP_TREASURY, AP_WETH_GATEWAY, AP_WETH_TOKEN, AP_ZAPPER_REGISTER, AP_ZERO_PRICE_FEED, type AaveV2LPToken, type AaveV2PoolTokenData, AbstractPriceFeedContract, type AdapterContractType, type AdapterContractTypeLegacy, type AdapterData, AdapterInterface, AddressLabeller, AddressMap, AddressProviderContractV3, AddressProviderContractV3_1, type AddressProviderState, type AddressProviderV3StateHuman, type AllLPTokens, type Asset, type AssetPriceFeedStateHuman, AssetUtils, type AssetWithAmountInTarget, type AssetWithView, type AuraLPToken, type AuraLPTokenData, type AuraPoolContract, type AuraStakedToken, type AuraStakedTokenData, BLOCKS_PER_WEEK_BY_NETWORK, type BalancerLPToken, type BalancerLpTokenData, BalancerStablePriceFeedContract, BalancerV2VaultAdapterContract, BalancerWeightedPriceFeedContract, type BalancerWeightedPriceFeedStateHuman, BaseContract, type BaseContractOptions, type BaseContractStateHuman, type BaseParams, type BasePriceFeedStateHuman, type BaseState, BigIntMath, type BigNumberish, type BotAddresses, type BotBaseType, type BotData, type BotDataLegacy, type BotDataPayload, type BotDetailedType, BotListContract, type BotListStateHuman, BotPermissions, BotsService, type BoundedOracleStateHuman, BoundedPriceFeedContract, CREDIT_SESSION_ID_BY_STATUS, CREDIT_SESSION_STATUS_BY_ID, type CaTokenBalance, type CalcAvgQuotaBorrowRateProps, type CalcDefaultQuotaProps, type CalcHealthFactorProps, type CalcMaxLendingDebtProps, type CalcOverallAPYProps, type CalcQuotaBorrowRateProps, type CalcQuotaUpdateProps, type CalcRecommendedQuotaProps, type CalcRelativeBaseBorrowRateProps, CamelotV3AdapterContract, ChainlinkPriceFeedContract, type ChartsAggregatedPoolPayload, type ChartsAggregatedStats, ChartsCreditManagerData, type ChartsCreditManagerPayload, ChartsPoolData, type ChartsPoolDataPayload, type ClaimFarmRewardsProps, type ClaimLmRewardsV2Props, type ClaimLmRewardsV3Props, type CloseCreditAccountResult, type ClosePathBalances, type CommonResult, CompositePriceFeedContract, type CompoundV2LPToken, type CompoundV2PoolTokenData, type ConnectedBotData, type ConnectionOptions, type ContractMethod, type ConvexL2StakedToken, type ConvexL2StakedTokenData, type ConvexLPToken, type ConvexLPTokenData, type ConvexPhantomTokenData, type ConvexPoolContract, type ConvexStakedPhantomToken, ConvexV1BaseRewardPoolAdapterContract, ConvexV1BoosterAdapterContract, type CoreStateHuman, type CreditAccountData, type CreditAccountDataPayload, type CreditAccountDataSlice, CreditAccountData_Legacy, type CreditAccountFilter, type CreditAccountServiceOptions, CreditAccountsService, type CreditConfiguratorState, type CreditConfiguratorStateHuman, CreditConfiguratorV300Contract, CreditConfiguratorV310Contract, type CreditFacadeContract, type CreditFacadeState, type CreditFacadeStateHuman, CreditFacadeV300Contract, CreditFacadeV310Contract, type CreditManagerData, type CreditManagerDataPayload, CreditManagerData_Legacy, type CreditManagerDebtParams, type CreditManagerDebtParamsHuman, type CreditManagerDebtParamsSDK, type CreditManagerState, type CreditManagerStateHuman, type CreditManagerType, CreditManagerV300Contract, CreditManagerV310Contract, CreditSession, type CreditSessionAsset, type CreditSessionBalancePayload, CreditSessionFiltered, type CreditSessionFilteredPayload, type CreditSessionPayload, type CreditSessionReward, type CreditSessionSortFields, type CreditSessionSortType, type CreditSessionStatus, type CreditSessionsAggregatedStats, type CreditSessionsAggregatedStatsPayload, CreditSuite, type CreditSuiteStateHuman, Curve2AssetsAdapterContract, Curve3AssetsAdapterContract, Curve3CrvUnderlyingTokenIndex, Curve4AssetsAdapterContract, CurveCryptoPriceFeedContract, type CurveLPToken, type CurveLPTokenData, type CurveMetaTokens, type CurvePoolContract, type CurvePoolStruct, CurveStablePriceFeedContract, type CurveSteCRVPoolParams, CurveUSDPriceFeedContract, CurveV1AdapterStETHContract, CurveV1AdapterStableNGContract, DEPRECIATED_POOLS, DUMB_ADDRESS, DUMB_ADDRESS2, DUMB_ADDRESS3, DUMB_ADDRESS4, DaiUsdsAdapterContract, type DieselSimpleTokenData, type DieselSimpleTokenTypes, type DieselStakedTokenData, type DieselStakedTokenTypes, type DieselTokenData, type DieselTokenTypes, type DieselTokenWithStkTypes, type DieselWithStkTokenV3Data, type Display, ERC4626AdapterContract, type ERC4626LPToken, type ERC4626VaultContract, type ERC4626VaultOfCurveLPTokenData, type ERC4626VaultTokenData, ETH_ADDRESS, EVMEvent, type EVMEventProps, EVMTx, type EVMTxProps, Erc4626PriceFeedContract, type EtherscanURLParam, EventOrTx, type EventOrTxProps, type ExtraRewardApy, type FarmInfo, type FindClosePathInput, GEARBOX_MULTISIG, GEARBOX_RISK_CURATORS, GaugeContract, type GaugeData, type GaugeParams, type GaugeParamsHuman, type GaugeStakingDataPayload, GaugeStakingService, type GaugeStateHuman, GearStakingContract, type GearStakingV3StateHuman, GearboxBackendApi, type GearboxExtraMerkleLmReward, type GearboxLmReward, type GearboxMerkleV2LmReward, GearboxRewardsApi, GearboxRewardsApy, GearboxRewardsExtraApy, GearboxSDK, type GearboxStakedV3LmReward, type GearboxState, type GearboxStateHuman, type GearboxToken, type GearboxTokenData, type GetAddressProviderOptions, type GetExtraRewardsProps, type GetLmRewardsInfoProps, type GetLmRewardsProps, type GetPointsByPoolProps, type GetTotalTokensOnProtocolProps, type GraphPayload, type IAdapterContract$1 as IAdapterContract, type IAddressProviderContract, type IBaseContract$1 as IBaseContract, type ICreditConfiguratorContract, type ICreditManagerContract, type IInterestRateModelContract, type ILPPriceFeedContract, type ILogger, type IPriceFeedContract, type IPriceOracleContract, type IRateKeeperContract, type InterestRateModelStateHuman, type InterestRateModelType, LEVERAGE_DECIMALS, type LPPriceFeedStateHuman, type LPTokenDataI, type LPTokens, LinearInterestRateModelContract, type LinearInterestRateModelStateHuman, type LinearModel, type LiquidationBotType, type LogFn, MAX_INT, MAX_UINT16, MAX_UINT256, MIN_INT96, MULTICALL_ADDRESS, type MarketData, type MarketFilter, MarketRegister, type MarketStateHuman, MarketSuite, MellowERC4626VaultAdapterContract, MellowLRTPriceFeedContract, MellowVaultAdapterContract, type MerkleDistributorInfo, type MetaCurveLPTokenData, type MultiCall, type MultiVote, type MulticallErrorType, type MulticallParameters, type MulticallReturnType, NOT_DEPLOYED, NO_VERSION, type NetworkOptions, type NetworkType, type NormalToken, type NormalTokenData, type OnDemandPriceUpdate, type OpenCAProps, type OpenStrategyResult, PERCENTAGE_DECIMALS, PERCENTAGE_FACTOR, PERIPHERY_CONTRACTS, PRICE_DECIMALS, PRICE_DECIMALS_POW, type PartialPriceFeedTreeNode, type PartialRecord, type PathFinderCloseResult, type PathFinderOpenStrategyResult, type PathFinderResult, type PathOption, type PathOptionSerie, PendleRouterAdapterContract, PendleTWAPPTPriceFeed, type PeripheryContract, type PermitResult, PhantomTokenType, type PoolContract, type PoolData, type PoolDataExtraPayload, type PoolDataPayload, PoolData_Legacy, type PoolPointsInfo, type PoolQuotaKeeperContract, type PoolQuotaKeeperData, type PoolQuotaKeeperStateHuman, PoolQuotaKeeperV300Contract, type PoolStateHuman, PoolSuite, type PoolSuiteStateHuman, type PoolType, PoolV300Contract, PositionUtils, type PriceFeedConstructorArgs, type PriceFeedContractType, type PriceFeedContractTypeLegacy, type PriceFeedMapEntry, PriceFeedRef, PriceFeedRegister, type PriceFeedRegisterHooks, type PriceFeedStateHuman, type PriceFeedTreeNode, PriceFeedType, type PriceFeedUsageType, type PriceFeedsForTokensOptions, type PriceOracleContract, type PriceOracleData, PriceOracleV300Contract, PriceOracleV310Contract, type PriceOracleV3StateHuman, PriceUtils, Provider, type QuotaInfo, type QuotaParamsHuman, type QuotaState, RAMP_DURATION_BY_NETWORK, RAY, RAY_DECIMALS_POW, type RampEvent, type RateKeeperData, type RateKeeperStateHuman, type RateKeeperType, type RawTx, RedstonePriceFeedContract, type RedstonePriceFeedStateHuman, type ReleaseAt, type RetryOptions, type RewardInfo, type Rewards, type RouterCloseResult, type RouterHooks, type RouterResult, RouterV3Contract, SDKConstruct, type SDKHooks, type SDKOptions, SECONDS_PER_YEAR, SLIPPAGE_DECIMALS, SUPPORTED_CHAINS, type SecondaryStatus, type SendRawTxParameters, StakingRewardsAdapterContract, type StakingRewardsContract, type StakingRewardsPhantomToken, type StakingRewardsPhantomTokenData, type SupportedContract, type SupportedToken, type SupportedValue, type SwapOperation, type SwapTask, type SyncStateOptions, TESTNET_CHAINS, TIMELOCK, type TVL, TXSwap, type TickerInfo, type TickerToken, type TimeToLiquidationProps, type TokenBase, TokenData, type TokenDataI, type TokenDataPayload, type TokenMetaData, type TokenNetwork, TokenType, type TokensAPYList, TokensMeta, type TokensWithAPY, type TransportOptions, type TumblerStateHuman, TxAddBot, TxAddCollateral, TxAddLiquidity, TxApprove, TxClaimNFT, TxClaimRewards, TxCloseAccount, TxDecreaseBorrowAmount, TxGaugeClaim, TxGaugeStake, TxGaugeUnstake, TxGaugeVote, TxIncreaseBorrowAmount, TxLiquidateAccount, TxOpenMultitokenAccount, TxRemoveBot, TxRemoveLiquidity, TxRepayAccount, type TxSerialized, TxSerializer, TxStakeDiesel, type TxStatus, TxUnstakeDiesel, TxUpdateQuota, TxWithdrawCollateral, TypedObjectUtils, URLApi, USDC, USDT, type Unarray, UniswapV2AdapterContract, UniswapV3AdapterContract, type UpdatePriceFeedsResult, type UserCreditSessions, type UserCreditSessionsAggregatedStatsPayload, UserCreditSessionsBuilder, type UserPoolAggregatedStatsPayload, UserPoolData, type UserPoolPayload, VelodromeV2RouterAdapterContract, VotingContractStatus, WAD, WAD_DECIMALS_POW, WETH, type WrapResult, type WrappedAaveV2LPToken, type WrappedAaveV2PoolTokenData, type WrappedToken, type WrappedTokenData, WstETHPriceFeedContract, WstETHV1AdapterContract, type YearnLPToken, YearnPriceFeedContract, YearnV2RouterAdapterContract, type YearnVaultContract, type YearnVaultOfCurveLPTokenData, type YearnVaultOfMetaCurveLPTokenData, type YearnVaultTokenData, type ZapperData, type ZapperDataFull, type ZapperStateHuman, ZeroPriceFeedContract, type ZircuitPhantomTokenData, type ZircuitStakedPhantomToken, aaveV2Tokens, aaveV2WrapperAbi, accountFactoryV3Abi, aclAbi, aclNonReentrantTraitAbi, assetsMap, auraDepositorAbi, auraLpTokens, auraPathResolverAbi, auraStakedTokens, auraTokens, auraWithdrawerAbi, balancerLpDepositorAbi, balancerLpPathResolverAbi, balancerLpTokens, balancerLpWithdrawerAbi, balancerSwapperAbi, balancerV2VaultAdapterAbi, balancesMap, batchLiquidationEstimatorAbi, batchesChainAbi, botListV3Abi, botPermissionsToString, boundedPriceFeedAbi, bptStablePriceFeedAbi, bptWeightedPriceFeedAbi, bytes32ToString, camelotV3AdapterAbi, camelotV3SwapperAbi, chainlinkReadableAggregatorAbi, chains, childLogger, closePathResolverAbi, compositePriceFeedAbi, compoundV2Tokens, compoundV2WrapperAbi, connectors, contractParams, contractsRegisterAbi, controllerTimelockV3Abi, convexDepositorAbi, convexL2StakedTokens, convexLpTokenByPid, convexLpTokens, convexPathResolverAbi, convexPoolByPid, convexStakedPhantomTokens, convexTokens, convexV1BaseRewardPoolAdapterAbi, convexV1BoosterAdapterAbi, convexWithdrawerAbi, createAdapter, createPriceOracle, createRawTx, createTransport, creditManagerV3UsdtAbi, curveCryptoLpPriceFeedAbi, curveLpDepositorAbi, curveLpPathResolverAbi, curveLpWithdrawerAbi, curveMetaTokens, curveStableLpPriceFeedAbi, curveSwapperAbi, curveTokens, curveUsdPriceFeedAbi, curveV1Adapter2AssetsAbi, curveV1Adapter3AssetsAbi, curveV1Adapter4AssetsAbi, curveV1AdapterDepositAbi, curveV1AdapterStEthAbi, curveV1AdapterStableNgAbi, dataCompressorV3Abi, decimals, degenDistributorV3Abi, degenNftv2Abi, detectChain, detectNetwork, erc20Abi, erc4626AdapterAbi, erc4626DepositorAbi, erc4626PathResolverAbi, erc4626PriceFeedAbi, erc4626Tokens, erc4626WithdrawerAbi, errorAbis, etherscanUrl, faucetAbi, filterDust, fmtBinaryMask, formatBN, formatBNvalue, formatBn4dig, formatDuration, formatLeverage, formatNumberToString_, formatPercentage, gaugeV3Abi, gearStakingV3Abi, gearTokens, getAddressProvider, getConnectors, getDecimals, getNetworkType, getTokenSymbol, getTokenSymbolOrTicker, halfRAY, iAdapterAbi, iAdapterCompressorAbi, iAddressProviderV300Abi, iAddressProviderV310Abi, iAirdropDistributorAbi, iArbTokenAbi, iAuraL2CoordinatorAbi, iBalancerStablePoolAbi, iBalancerWeightedPoolAbi, iBaseRewardPoolAbi, iCamelotV3QuoterAbi, iConvexTokenAbi, iCreditAccountCompressorAbi, iCreditConfiguratorV300Abi, iCreditConfiguratorV310Abi, iCreditFacadeV2Abi, iCreditFacadeV2EventsAbi, iCreditFacadeV2ExceptionsAbi, iCreditFacadeV2ExtendedAbi, iCreditFacadeV2V2Abi, iCreditFacadeV300Abi, iCreditFacadeV300MulticallAbi, iCreditFacadeV310Abi, iCreditFacadeV310MulticallAbi, iCreditFacadeV3Abi, iCreditFacadeV3EventsAbi, iCreditFacadeV3MulticallAbi, iCreditManagerV300Abi, iCreditManagerV310Abi, iCreditSuiteCompressorAbi, iCurvePoolAbi, iDaiUsdsAdapterAbi, iDataCompressorV3Abi, iDegenDistributorAbi, iDegenNftv2Abi, iDegenNftv2EventsAbi, iDegenNftv2ExceptionsAbi, iErc4626AdapterAbi, iExceptionsAbi, iFarmingPoolAbi, iGaugeCompressorAbi, iGaugeV300Abi, iInterestRateModelAbi, iLegacyMintableErc20Abi, iLossPolicyAbi, iMarketCompressorAbi, iMarketConfiguratorV310Abi, iMellowVaultAbi, iMellowVaultAdapterAbi, iModifiedBoosterAbi, iMulticall3Abi, iOffchainOracleAbi, iOptimismMintableErc20Abi, iPausableAbi, iPendleRouterAdapterAbi, iPeripheryCompressorAbi, iPoolCompressorAbi, iPoolQuotaKeeperV300Abi, iPoolQuotaKeeperV310Abi, iPoolV300Abi, iPoolV310Abi, iPoolV3Abi, iPoolV3EventsAbi, iPriceFeedAbi, iPriceFeedCompressorAbi, iPriceOracleV300Abi, iPriceOracleV310Abi, iPriceOracleV3Abi, iPriceOracleV3EventsAbi, iRedstoneErrorsAbi, iRedstonePriceFeedEventsAbi, iRedstonePriceFeedExceptionsAbi, iRewardsCompressorAbi, iRouterV3ErrorsAbi, iStakingRewardsAdapterAbi, iSwapperAbi, iTokenCompressorAbi, iTumblerV3Abi, iUpdatablePriceFeedAbi, iVersionAbi, iZapperAbi, ierc20Abi, ierc20MetadataAbi, ierc20PermitAbi, ierc20ZapperDepositsAbi, iethZapperDepositsAbi, ilpPriceFeedAbi, ilpPriceFeedEventsAbi, ilpPriceFeedExceptionsAbi, inflationAttackBlockerAbi, insolvencyCheckerAbi, isAaveV2LPToken, isAuraLPToken, isAuraStakedToken, isAuraToken, isBalancerLPToken, isCompoundV2LPToken, isConvexL2StakedToken, isConvexLPToken, isConvexStakedPhantomToken, isConvexToken, isCurveLPToken, isCurveMetaToken, isDieselSimpleToken, isDieselStakedToken, isDieselToken, isDieselWithStkToken, isERC4626LPToken, isExtraFarmToken, isFarmToken, isLPToken, isLRT_LSTToken, isNormalToken, isStakingRewardsPhantomToken, isSupportedNetwork, isWrappedToken, isYearnLPToken, isZircuitStakedPhantomToken, iwstEthAbi, iyVaultAbi, json_parse, json_stringify, lidoSwapperAbi, lidoV1AdapterAbi, linearInterestRateModelV3Abi, lpTokens, mellowLrtPriceFeedAbi, multiPauseAbi, nonQuoted, normalTokens, numberWithCommas, overrideAggregatorAbi, partialLiquidationBotV3Abi, pendleTWAPPTPriceFeedAbi, percentFmt, poolV3UsdtAbi, priceFeedMultiplierAbi, priceOracleV3Abi, rawTxToMulticallPriceUpdate, rayToNumber, redstonePriceFeedAbi, retry, routerV3Abi, sendRawTx, shortAddress, shortHash, simulateMulticall, stakingRewardsPhantomTokens, stakingRewardsTokens, supportedTokens, susdeOverriderAbi, swapAggregatorAbi, tickerInfoTokensByNetwork, tickerSymbolByAddress, tickerTokensByNetwork, toBN, toBigInt, toHumanFormat, toSignificant, tokenDataByNetwork, tokenStealerAbi, tokenSymbolByAddress, underlyingDepositZapperAbi, underlyingFarmingZapperAbi, uniswapV2AdapterAbi, uniswapV2SwapperAbi, uniswapV3AdapterAbi, uniswapV3SwapperAbi, velodromeV2RouterAdapterAbi, velodromeV2SwapperAbi, wethDepositZapperAbi, wethFarmingZapperAbi, wrapAggregatorAbi, wrappedAaveV2Tokens, wrappedTokens, wstEthPriceFeedAbi, wstEthSwapperAbi, wstEthv1AdapterAbi, yearnDepositorAbi, yearnPathResolverAbi, yearnPriceFeedAbi, yearnTokens, yearnV2AdapterAbi, yearnWithdrawerAbi, zapperRegisterAbi, zeroPriceFeedAbi, zircuitStakedPhantomTokens, zircuitStakedTokenByToken, zircuitTokens };
@@ -56644,8 +56644,6 @@ var AP_CONTROLLER_TIMELOCK = "CONTROLLER_TIMELOCK";
56644
56644
  var AP_CREDIT_ACCOUNT_COMPRESSOR = "CREDIT_ACCOUNT_COMPRESSOR";
56645
56645
  var AP_CREDIT_SUITE_COMPRESSOR = "CREDIT_SUITE_COMPRESSOR";
56646
56646
  var AP_DATA_COMPRESSOR = "DATA_COMPRESSOR";
56647
- var AP_DEGEN_DISTRIBUTOR = "DEGEN_DISTRIBUTOR";
56648
- var AP_DEGEN_NFT = "DEGEN_NFT";
56649
56647
  var AP_DELEVERAGE_BOT_HV = "DELEVERAGE_BOT_HV";
56650
56648
  var AP_DELEVERAGE_BOT_LV = "DELEVERAGE_BOT_LV";
56651
56649
  var AP_DELEVERAGE_BOT_PEGGED = "DELEVERAGE_BOT_PEGGED";
@@ -56656,14 +56654,13 @@ var AP_INFLATION_ATTACK_BLOCKER = "INFLATION_ATTACK_BLOCKER";
56656
56654
  var AP_INSOLVENCY_CHECKER = "INSOLVENCY_CHECKER";
56657
56655
  var AP_MARKET_COMPRESSOR = "MARKET_COMPRESSOR";
56658
56656
  var AP_MARKET_CONFIGURATOR = "MARKET_CONFIGURATOR";
56659
- var AP_MULTI_PAUSE = "MULTI_PAUSE";
56660
56657
  var AP_PARTIAL_LIQUIDATION_BOT = "PARTIAL_LIQUIDATION_BOT";
56661
56658
  var AP_PERIPHERY_COMPRESSOR = "PERIPHERY_COMPRESSOR";
56662
56659
  var AP_POOL_COMPRESSOR = "POOL_COMPRESSOR";
56663
56660
  var AP_PRICE_FEED_COMPRESSOR = "PRICE_FEED_COMPRESSOR";
56664
56661
  var AP_PRICE_ORACLE = "PRICE_ORACLE";
56665
56662
  var AP_REWARDS_COMPRESSOR = "REWARDS_COMPRESSOR";
56666
- var AP_ROUTER = "ROUTER";
56663
+ var AP_ROUTER = "LOCAL::ROUTER";
56667
56664
  var AP_TOKEN_COMPRESSOR = "TOKEN_COMPRESSOR";
56668
56665
  var AP_TREASURY = "TREASURY";
56669
56666
  var AP_WETH_GATEWAY = "WETH_GATEWAY";
@@ -56759,6 +56756,13 @@ var BLOCKS_PER_WEEK_BY_NETWORK = {
56759
56756
  Base: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Base)),
56760
56757
  Sonic: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Sonic))
56761
56758
  };
56759
+
56760
+ // src/sdk/constants/periphery.ts
56761
+ var PERIPHERY_CONTRACTS = [
56762
+ "DEGEN_DISTRIBUTOR",
56763
+ "DEGEN_NFT",
56764
+ "MULTI_PAUSE"
56765
+ ];
56762
56766
  var AddressMap = class {
56763
56767
  #map;
56764
56768
  #frozen = false;
@@ -58692,8 +58696,6 @@ async function simulateMulticall(client, parameters) {
58692
58696
  throw new BaseError("multicall results mismatch");
58693
58697
  return results;
58694
58698
  }
58695
-
58696
- // src/sdk/market/MarketConfiguratorContract.ts
58697
58699
  var abi28 = iMarketConfiguratorV310Abi;
58698
58700
  var MarketConfiguratorContract = class extends BaseContract {
58699
58701
  #curatorName;
@@ -58716,6 +58718,18 @@ var MarketConfiguratorContract = class extends BaseContract {
58716
58718
  "Market configurator " + this.#curatorName
58717
58719
  );
58718
58720
  }
58721
+ async getPeripheryContract(contract) {
58722
+ const resp = await this.sdk.provider.publicClient.readContract({
58723
+ address: this.address,
58724
+ abi: this.abi,
58725
+ functionName: "getPeripheryContracts",
58726
+ args: [stringToHex(contract, { size: 32 })]
58727
+ });
58728
+ if (resp.length === 0) {
58729
+ throw new Error(`periphery contract ${contract} not found`);
58730
+ }
58731
+ return resp[0];
58732
+ }
58719
58733
  processLog(log) {
58720
58734
  switch (log.eventName) {
58721
58735
  // case "DeployDegenNFT":
@@ -72933,4 +72947,4 @@ var GearboxSDK = class _GearboxSDK {
72933
72947
  }
72934
72948
  };
72935
72949
 
72936
- export { ADDRESS_0X0, ADDRESS_PROVIDER, ADDRESS_PROVIDER_BLOCK, AP_ACCOUNT_FACTORY, AP_ACL, AP_ADAPTER_COMPRESSOR, AP_BOT_LIST, AP_CONTRACTS_REGISTER, AP_CONTROLLER_TIMELOCK, AP_CREDIT_ACCOUNT_COMPRESSOR, AP_CREDIT_SUITE_COMPRESSOR, AP_DATA_COMPRESSOR, AP_DEGEN_DISTRIBUTOR, AP_DEGEN_NFT, AP_DELEVERAGE_BOT_HV, AP_DELEVERAGE_BOT_LV, AP_DELEVERAGE_BOT_PEGGED, AP_GAUGE_COMPRESSOR, AP_GEAR_STAKING, AP_GEAR_TOKEN, AP_INFLATION_ATTACK_BLOCKER, AP_INSOLVENCY_CHECKER, AP_MARKET_COMPRESSOR, AP_MARKET_CONFIGURATOR, AP_MULTI_PAUSE, AP_PARTIAL_LIQUIDATION_BOT, AP_PERIPHERY_COMPRESSOR, AP_POOL_COMPRESSOR, AP_PRICE_FEED_COMPRESSOR, AP_PRICE_ORACLE, AP_REWARDS_COMPRESSOR, AP_ROUTER, AP_TOKEN_COMPRESSOR, AP_TREASURY, AP_WETH_GATEWAY, AP_WETH_TOKEN, AP_ZAPPER_REGISTER, AP_ZERO_PRICE_FEED, AbstractPriceFeedContract, AdapterInterface, AddressLabeller, AddressMap, AddressProviderContractV3, AddressProviderContractV3_1, AssetUtils, BLOCKS_PER_WEEK_BY_NETWORK, BalancerStablePriceFeedContract, BalancerV2VaultAdapterContract, BalancerWeightedPriceFeedContract, BaseContract, BigIntMath, BotListContract, BotPermissions, BotsService, BoundedPriceFeedContract, CREDIT_SESSION_ID_BY_STATUS, CREDIT_SESSION_STATUS_BY_ID, CamelotV3AdapterContract, ChainlinkPriceFeedContract, ChartsCreditManagerData, ChartsPoolData, CompositePriceFeedContract, ConvexV1BaseRewardPoolAdapterContract, ConvexV1BoosterAdapterContract, CreditAccountData_Legacy, CreditAccountsService, CreditConfiguratorV300Contract, CreditConfiguratorV310Contract, CreditFacadeV300Contract, CreditFacadeV310Contract, CreditManagerData_Legacy, CreditManagerV300Contract, CreditManagerV310Contract, CreditSession, CreditSessionFiltered, CreditSuite, Curve2AssetsAdapterContract, Curve3AssetsAdapterContract, Curve3CrvUnderlyingTokenIndex, Curve4AssetsAdapterContract, CurveCryptoPriceFeedContract, CurveStablePriceFeedContract, CurveUSDPriceFeedContract, CurveV1AdapterStETHContract, CurveV1AdapterStableNGContract, DEPRECIATED_POOLS, DUMB_ADDRESS, DUMB_ADDRESS2, DUMB_ADDRESS3, DUMB_ADDRESS4, DaiUsdsAdapterContract, ERC4626AdapterContract, ETH_ADDRESS, EVMEvent, EVMTx, Erc4626PriceFeedContract, EventOrTx, GEARBOX_MULTISIG, GEARBOX_RISK_CURATORS, GaugeContract, GaugeStakingService, GearStakingContract, GearboxBackendApi, GearboxRewardsApi, GearboxRewardsApy, GearboxRewardsExtraApy, GearboxSDK, LEVERAGE_DECIMALS, LinearInterestRateModelContract, MAX_INT, MAX_UINT16, MAX_UINT256, MIN_INT96, MULTICALL_ADDRESS, MarketRegister, MarketSuite, MellowERC4626VaultAdapterContract, MellowLRTPriceFeedContract, MellowVaultAdapterContract, NOT_DEPLOYED, NO_VERSION, PERCENTAGE_DECIMALS, PERCENTAGE_FACTOR, PRICE_DECIMALS, PRICE_DECIMALS_POW, PendleRouterAdapterContract, PendleTWAPPTPriceFeed, PhantomTokenType, PoolData_Legacy, PoolQuotaKeeperV300Contract, PoolSuite, PoolV300Contract, PositionUtils, PriceFeedRef, PriceFeedRegister, PriceFeedType, PriceOracleV300Contract, PriceOracleV310Contract, PriceUtils, Provider, RAMP_DURATION_BY_NETWORK, RAY, RAY_DECIMALS_POW, RedstonePriceFeedContract, RouterV3Contract, SDKConstruct, SECONDS_PER_YEAR, SLIPPAGE_DECIMALS, SUPPORTED_CHAINS, StakingRewardsAdapterContract, TESTNET_CHAINS, TIMELOCK, TXSwap, TokenData, TokenType, TokensMeta, TxAddBot, TxAddCollateral, TxAddLiquidity, TxApprove, TxClaimNFT, TxClaimRewards, TxCloseAccount, TxDecreaseBorrowAmount, TxGaugeClaim, TxGaugeStake, TxGaugeUnstake, TxGaugeVote, TxIncreaseBorrowAmount, TxLiquidateAccount, TxOpenMultitokenAccount, TxRemoveBot, TxRemoveLiquidity, TxRepayAccount, TxSerializer, TxStakeDiesel, TxUnstakeDiesel, TxUpdateQuota, TxWithdrawCollateral, TypedObjectUtils, URLApi, USDC, USDT, UniswapV2AdapterContract, UniswapV3AdapterContract, UserCreditSessionsBuilder, UserPoolData, VelodromeV2RouterAdapterContract, VotingContractStatus, WAD, WAD_DECIMALS_POW, WETH, WstETHPriceFeedContract, WstETHV1AdapterContract, YearnPriceFeedContract, YearnV2RouterAdapterContract, ZeroPriceFeedContract, aaveV2Tokens, aaveV2WrapperAbi, accountFactoryV3Abi, aclAbi, aclNonReentrantTraitAbi, assetsMap, auraDepositorAbi, auraLpTokens, auraPathResolverAbi, auraStakedTokens, auraTokens, auraWithdrawerAbi, balancerLpDepositorAbi, balancerLpPathResolverAbi, balancerLpTokens, balancerLpWithdrawerAbi, balancerSwapperAbi, balancerV2VaultAdapterAbi, balancesMap, batchLiquidationEstimatorAbi, batchesChainAbi, botListV3Abi, botPermissionsToString, boundedPriceFeedAbi, bptStablePriceFeedAbi, bptWeightedPriceFeedAbi, bytes32ToString, camelotV3AdapterAbi, camelotV3SwapperAbi, chainlinkReadableAggregatorAbi, chains, childLogger, closePathResolverAbi, compositePriceFeedAbi, compoundV2Tokens, compoundV2WrapperAbi, connectors, contractParams, contractsRegisterAbi, controllerTimelockV3Abi, convexDepositorAbi, convexL2StakedTokens, convexLpTokenByPid, convexLpTokens, convexPathResolverAbi, convexPoolByPid, convexStakedPhantomTokens, convexTokens, convexV1BaseRewardPoolAdapterAbi, convexV1BoosterAdapterAbi, convexWithdrawerAbi, createAdapter, createPriceOracle, createRawTx, createTransport, creditManagerV3UsdtAbi, curveCryptoLpPriceFeedAbi, curveLpDepositorAbi, curveLpPathResolverAbi, curveLpWithdrawerAbi, curveMetaTokens, curveStableLpPriceFeedAbi, curveSwapperAbi, curveTokens, curveUsdPriceFeedAbi, curveV1Adapter2AssetsAbi, curveV1Adapter3AssetsAbi, curveV1Adapter4AssetsAbi, curveV1AdapterDepositAbi, curveV1AdapterStEthAbi, curveV1AdapterStableNgAbi, dataCompressorV3Abi, decimals, degenDistributorV3Abi, degenNftv2Abi, detectChain, detectNetwork, erc20Abi, erc4626AdapterAbi, erc4626DepositorAbi, erc4626PathResolverAbi, erc4626PriceFeedAbi, erc4626Tokens, erc4626WithdrawerAbi, errorAbis, etherscanUrl, faucetAbi, filterDust, fmtBinaryMask, formatBN, formatBNvalue, formatBn4dig, formatDuration, formatLeverage, formatNumberToString_, formatPercentage, gaugeV3Abi, gearStakingV3Abi, gearTokens, getAddressProvider, getConnectors, getDecimals, getNetworkType, getTokenSymbol, getTokenSymbolOrTicker, halfRAY, iAdapterAbi, iAdapterCompressorAbi, iAddressProviderV300Abi, iAddressProviderV310Abi, iAirdropDistributorAbi, iArbTokenAbi, iAuraL2CoordinatorAbi, iBalancerStablePoolAbi, iBalancerWeightedPoolAbi, iBaseRewardPoolAbi, iCamelotV3QuoterAbi, iConvexTokenAbi, iCreditAccountCompressorAbi, iCreditConfiguratorV300Abi, iCreditConfiguratorV310Abi, iCreditFacadeV2Abi, iCreditFacadeV2EventsAbi, iCreditFacadeV2ExceptionsAbi, iCreditFacadeV2ExtendedAbi, iCreditFacadeV2V2Abi, iCreditFacadeV300Abi, iCreditFacadeV300MulticallAbi, iCreditFacadeV310Abi, iCreditFacadeV310MulticallAbi, iCreditFacadeV3Abi, iCreditFacadeV3EventsAbi, iCreditFacadeV3MulticallAbi, iCreditManagerV300Abi, iCreditManagerV310Abi, iCreditSuiteCompressorAbi, iCurvePoolAbi, iDaiUsdsAdapterAbi, iDataCompressorV3Abi, iDegenDistributorAbi, iDegenNftv2Abi, iDegenNftv2EventsAbi, iDegenNftv2ExceptionsAbi, iErc4626AdapterAbi, iExceptionsAbi, iFarmingPoolAbi, iGaugeCompressorAbi, iGaugeV300Abi, iInterestRateModelAbi, iLegacyMintableErc20Abi, iLossPolicyAbi, iMarketCompressorAbi, iMarketConfiguratorV310Abi, iMellowVaultAbi, iMellowVaultAdapterAbi, iModifiedBoosterAbi, iMulticall3Abi, iOffchainOracleAbi, iOptimismMintableErc20Abi, iPausableAbi, iPendleRouterAdapterAbi, iPeripheryCompressorAbi, iPoolCompressorAbi, iPoolQuotaKeeperV300Abi, iPoolQuotaKeeperV310Abi, iPoolV300Abi, iPoolV310Abi, iPoolV3Abi, iPoolV3EventsAbi, iPriceFeedAbi, iPriceFeedCompressorAbi, iPriceOracleV300Abi, iPriceOracleV310Abi, iPriceOracleV3Abi, iPriceOracleV3EventsAbi, iRedstoneErrorsAbi, iRedstonePriceFeedEventsAbi, iRedstonePriceFeedExceptionsAbi, iRewardsCompressorAbi, iRouterV3ErrorsAbi, iStakingRewardsAdapterAbi, iSwapperAbi, iTokenCompressorAbi, iTumblerV3Abi, iUpdatablePriceFeedAbi, iVersionAbi, iZapperAbi, ierc20Abi, ierc20MetadataAbi, ierc20PermitAbi, ierc20ZapperDepositsAbi, iethZapperDepositsAbi, ilpPriceFeedAbi, ilpPriceFeedEventsAbi, ilpPriceFeedExceptionsAbi, inflationAttackBlockerAbi, insolvencyCheckerAbi, isAaveV2LPToken, isAuraLPToken, isAuraStakedToken, isAuraToken, isBalancerLPToken, isCompoundV2LPToken, isConvexL2StakedToken, isConvexLPToken, isConvexStakedPhantomToken, isConvexToken, isCurveLPToken, isCurveMetaToken, isDieselSimpleToken, isDieselStakedToken, isDieselToken, isDieselWithStkToken, isERC4626LPToken, isExtraFarmToken, isFarmToken, isLPToken, isLRT_LSTToken, isNormalToken, isStakingRewardsPhantomToken, isSupportedNetwork, isWrappedToken, isYearnLPToken, isZircuitStakedPhantomToken, iwstEthAbi, iyVaultAbi, json_parse, json_stringify, lidoSwapperAbi, lidoV1AdapterAbi, linearInterestRateModelV3Abi, lpTokens, mellowLrtPriceFeedAbi, multiPauseAbi, nonQuoted, normalTokens, numberWithCommas, overrideAggregatorAbi, partialLiquidationBotV3Abi, pendleTWAPPTPriceFeedAbi, percentFmt, poolV3UsdtAbi, priceFeedMultiplierAbi, priceOracleV3Abi, rawTxToMulticallPriceUpdate, rayToNumber, redstonePriceFeedAbi, retry, routerV3Abi, sendRawTx, shortAddress, shortHash, simulateMulticall, stakingRewardsPhantomTokens, stakingRewardsTokens, supportedTokens, susdeOverriderAbi, swapAggregatorAbi, tickerInfoTokensByNetwork, tickerSymbolByAddress, tickerTokensByNetwork, toBN, toBigInt, toHumanFormat, toSignificant, tokenDataByNetwork, tokenStealerAbi, tokenSymbolByAddress, underlyingDepositZapperAbi, underlyingFarmingZapperAbi, uniswapV2AdapterAbi, uniswapV2SwapperAbi, uniswapV3AdapterAbi, uniswapV3SwapperAbi, velodromeV2RouterAdapterAbi, velodromeV2SwapperAbi, wethDepositZapperAbi, wethFarmingZapperAbi, wrapAggregatorAbi, wrappedAaveV2Tokens, wrappedTokens, wstEthPriceFeedAbi, wstEthSwapperAbi, wstEthv1AdapterAbi, yearnDepositorAbi, yearnPathResolverAbi, yearnPriceFeedAbi, yearnTokens, yearnV2AdapterAbi, yearnWithdrawerAbi, zapperRegisterAbi, zeroPriceFeedAbi, zircuitStakedPhantomTokens, zircuitStakedTokenByToken, zircuitTokens };
72950
+ export { ADDRESS_0X0, ADDRESS_PROVIDER, ADDRESS_PROVIDER_BLOCK, AP_ACCOUNT_FACTORY, AP_ACL, AP_ADAPTER_COMPRESSOR, AP_BOT_LIST, AP_CONTRACTS_REGISTER, AP_CONTROLLER_TIMELOCK, AP_CREDIT_ACCOUNT_COMPRESSOR, AP_CREDIT_SUITE_COMPRESSOR, AP_DATA_COMPRESSOR, AP_DELEVERAGE_BOT_HV, AP_DELEVERAGE_BOT_LV, AP_DELEVERAGE_BOT_PEGGED, AP_GAUGE_COMPRESSOR, AP_GEAR_STAKING, AP_GEAR_TOKEN, AP_INFLATION_ATTACK_BLOCKER, AP_INSOLVENCY_CHECKER, AP_MARKET_COMPRESSOR, AP_MARKET_CONFIGURATOR, AP_PARTIAL_LIQUIDATION_BOT, AP_PERIPHERY_COMPRESSOR, AP_POOL_COMPRESSOR, AP_PRICE_FEED_COMPRESSOR, AP_PRICE_ORACLE, AP_REWARDS_COMPRESSOR, AP_ROUTER, AP_TOKEN_COMPRESSOR, AP_TREASURY, AP_WETH_GATEWAY, AP_WETH_TOKEN, AP_ZAPPER_REGISTER, AP_ZERO_PRICE_FEED, AbstractPriceFeedContract, AdapterInterface, AddressLabeller, AddressMap, AddressProviderContractV3, AddressProviderContractV3_1, AssetUtils, BLOCKS_PER_WEEK_BY_NETWORK, BalancerStablePriceFeedContract, BalancerV2VaultAdapterContract, BalancerWeightedPriceFeedContract, BaseContract, BigIntMath, BotListContract, BotPermissions, BotsService, BoundedPriceFeedContract, CREDIT_SESSION_ID_BY_STATUS, CREDIT_SESSION_STATUS_BY_ID, CamelotV3AdapterContract, ChainlinkPriceFeedContract, ChartsCreditManagerData, ChartsPoolData, CompositePriceFeedContract, ConvexV1BaseRewardPoolAdapterContract, ConvexV1BoosterAdapterContract, CreditAccountData_Legacy, CreditAccountsService, CreditConfiguratorV300Contract, CreditConfiguratorV310Contract, CreditFacadeV300Contract, CreditFacadeV310Contract, CreditManagerData_Legacy, CreditManagerV300Contract, CreditManagerV310Contract, CreditSession, CreditSessionFiltered, CreditSuite, Curve2AssetsAdapterContract, Curve3AssetsAdapterContract, Curve3CrvUnderlyingTokenIndex, Curve4AssetsAdapterContract, CurveCryptoPriceFeedContract, CurveStablePriceFeedContract, CurveUSDPriceFeedContract, CurveV1AdapterStETHContract, CurveV1AdapterStableNGContract, DEPRECIATED_POOLS, DUMB_ADDRESS, DUMB_ADDRESS2, DUMB_ADDRESS3, DUMB_ADDRESS4, DaiUsdsAdapterContract, ERC4626AdapterContract, ETH_ADDRESS, EVMEvent, EVMTx, Erc4626PriceFeedContract, EventOrTx, GEARBOX_MULTISIG, GEARBOX_RISK_CURATORS, GaugeContract, GaugeStakingService, GearStakingContract, GearboxBackendApi, GearboxRewardsApi, GearboxRewardsApy, GearboxRewardsExtraApy, GearboxSDK, LEVERAGE_DECIMALS, LinearInterestRateModelContract, MAX_INT, MAX_UINT16, MAX_UINT256, MIN_INT96, MULTICALL_ADDRESS, MarketRegister, MarketSuite, MellowERC4626VaultAdapterContract, MellowLRTPriceFeedContract, MellowVaultAdapterContract, NOT_DEPLOYED, NO_VERSION, PERCENTAGE_DECIMALS, PERCENTAGE_FACTOR, PERIPHERY_CONTRACTS, PRICE_DECIMALS, PRICE_DECIMALS_POW, PendleRouterAdapterContract, PendleTWAPPTPriceFeed, PhantomTokenType, PoolData_Legacy, PoolQuotaKeeperV300Contract, PoolSuite, PoolV300Contract, PositionUtils, PriceFeedRef, PriceFeedRegister, PriceFeedType, PriceOracleV300Contract, PriceOracleV310Contract, PriceUtils, Provider, RAMP_DURATION_BY_NETWORK, RAY, RAY_DECIMALS_POW, RedstonePriceFeedContract, RouterV3Contract, SDKConstruct, SECONDS_PER_YEAR, SLIPPAGE_DECIMALS, SUPPORTED_CHAINS, StakingRewardsAdapterContract, TESTNET_CHAINS, TIMELOCK, TXSwap, TokenData, TokenType, TokensMeta, TxAddBot, TxAddCollateral, TxAddLiquidity, TxApprove, TxClaimNFT, TxClaimRewards, TxCloseAccount, TxDecreaseBorrowAmount, TxGaugeClaim, TxGaugeStake, TxGaugeUnstake, TxGaugeVote, TxIncreaseBorrowAmount, TxLiquidateAccount, TxOpenMultitokenAccount, TxRemoveBot, TxRemoveLiquidity, TxRepayAccount, TxSerializer, TxStakeDiesel, TxUnstakeDiesel, TxUpdateQuota, TxWithdrawCollateral, TypedObjectUtils, URLApi, USDC, USDT, UniswapV2AdapterContract, UniswapV3AdapterContract, UserCreditSessionsBuilder, UserPoolData, VelodromeV2RouterAdapterContract, VotingContractStatus, WAD, WAD_DECIMALS_POW, WETH, WstETHPriceFeedContract, WstETHV1AdapterContract, YearnPriceFeedContract, YearnV2RouterAdapterContract, ZeroPriceFeedContract, aaveV2Tokens, aaveV2WrapperAbi, accountFactoryV3Abi, aclAbi, aclNonReentrantTraitAbi, assetsMap, auraDepositorAbi, auraLpTokens, auraPathResolverAbi, auraStakedTokens, auraTokens, auraWithdrawerAbi, balancerLpDepositorAbi, balancerLpPathResolverAbi, balancerLpTokens, balancerLpWithdrawerAbi, balancerSwapperAbi, balancerV2VaultAdapterAbi, balancesMap, batchLiquidationEstimatorAbi, batchesChainAbi, botListV3Abi, botPermissionsToString, boundedPriceFeedAbi, bptStablePriceFeedAbi, bptWeightedPriceFeedAbi, bytes32ToString, camelotV3AdapterAbi, camelotV3SwapperAbi, chainlinkReadableAggregatorAbi, chains, childLogger, closePathResolverAbi, compositePriceFeedAbi, compoundV2Tokens, compoundV2WrapperAbi, connectors, contractParams, contractsRegisterAbi, controllerTimelockV3Abi, convexDepositorAbi, convexL2StakedTokens, convexLpTokenByPid, convexLpTokens, convexPathResolverAbi, convexPoolByPid, convexStakedPhantomTokens, convexTokens, convexV1BaseRewardPoolAdapterAbi, convexV1BoosterAdapterAbi, convexWithdrawerAbi, createAdapter, createPriceOracle, createRawTx, createTransport, creditManagerV3UsdtAbi, curveCryptoLpPriceFeedAbi, curveLpDepositorAbi, curveLpPathResolverAbi, curveLpWithdrawerAbi, curveMetaTokens, curveStableLpPriceFeedAbi, curveSwapperAbi, curveTokens, curveUsdPriceFeedAbi, curveV1Adapter2AssetsAbi, curveV1Adapter3AssetsAbi, curveV1Adapter4AssetsAbi, curveV1AdapterDepositAbi, curveV1AdapterStEthAbi, curveV1AdapterStableNgAbi, dataCompressorV3Abi, decimals, degenDistributorV3Abi, degenNftv2Abi, detectChain, detectNetwork, erc20Abi, erc4626AdapterAbi, erc4626DepositorAbi, erc4626PathResolverAbi, erc4626PriceFeedAbi, erc4626Tokens, erc4626WithdrawerAbi, errorAbis, etherscanUrl, faucetAbi, filterDust, fmtBinaryMask, formatBN, formatBNvalue, formatBn4dig, formatDuration, formatLeverage, formatNumberToString_, formatPercentage, gaugeV3Abi, gearStakingV3Abi, gearTokens, getAddressProvider, getConnectors, getDecimals, getNetworkType, getTokenSymbol, getTokenSymbolOrTicker, halfRAY, iAdapterAbi, iAdapterCompressorAbi, iAddressProviderV300Abi, iAddressProviderV310Abi, iAirdropDistributorAbi, iArbTokenAbi, iAuraL2CoordinatorAbi, iBalancerStablePoolAbi, iBalancerWeightedPoolAbi, iBaseRewardPoolAbi, iCamelotV3QuoterAbi, iConvexTokenAbi, iCreditAccountCompressorAbi, iCreditConfiguratorV300Abi, iCreditConfiguratorV310Abi, iCreditFacadeV2Abi, iCreditFacadeV2EventsAbi, iCreditFacadeV2ExceptionsAbi, iCreditFacadeV2ExtendedAbi, iCreditFacadeV2V2Abi, iCreditFacadeV300Abi, iCreditFacadeV300MulticallAbi, iCreditFacadeV310Abi, iCreditFacadeV310MulticallAbi, iCreditFacadeV3Abi, iCreditFacadeV3EventsAbi, iCreditFacadeV3MulticallAbi, iCreditManagerV300Abi, iCreditManagerV310Abi, iCreditSuiteCompressorAbi, iCurvePoolAbi, iDaiUsdsAdapterAbi, iDataCompressorV3Abi, iDegenDistributorAbi, iDegenNftv2Abi, iDegenNftv2EventsAbi, iDegenNftv2ExceptionsAbi, iErc4626AdapterAbi, iExceptionsAbi, iFarmingPoolAbi, iGaugeCompressorAbi, iGaugeV300Abi, iInterestRateModelAbi, iLegacyMintableErc20Abi, iLossPolicyAbi, iMarketCompressorAbi, iMarketConfiguratorV310Abi, iMellowVaultAbi, iMellowVaultAdapterAbi, iModifiedBoosterAbi, iMulticall3Abi, iOffchainOracleAbi, iOptimismMintableErc20Abi, iPausableAbi, iPendleRouterAdapterAbi, iPeripheryCompressorAbi, iPoolCompressorAbi, iPoolQuotaKeeperV300Abi, iPoolQuotaKeeperV310Abi, iPoolV300Abi, iPoolV310Abi, iPoolV3Abi, iPoolV3EventsAbi, iPriceFeedAbi, iPriceFeedCompressorAbi, iPriceOracleV300Abi, iPriceOracleV310Abi, iPriceOracleV3Abi, iPriceOracleV3EventsAbi, iRedstoneErrorsAbi, iRedstonePriceFeedEventsAbi, iRedstonePriceFeedExceptionsAbi, iRewardsCompressorAbi, iRouterV3ErrorsAbi, iStakingRewardsAdapterAbi, iSwapperAbi, iTokenCompressorAbi, iTumblerV3Abi, iUpdatablePriceFeedAbi, iVersionAbi, iZapperAbi, ierc20Abi, ierc20MetadataAbi, ierc20PermitAbi, ierc20ZapperDepositsAbi, iethZapperDepositsAbi, ilpPriceFeedAbi, ilpPriceFeedEventsAbi, ilpPriceFeedExceptionsAbi, inflationAttackBlockerAbi, insolvencyCheckerAbi, isAaveV2LPToken, isAuraLPToken, isAuraStakedToken, isAuraToken, isBalancerLPToken, isCompoundV2LPToken, isConvexL2StakedToken, isConvexLPToken, isConvexStakedPhantomToken, isConvexToken, isCurveLPToken, isCurveMetaToken, isDieselSimpleToken, isDieselStakedToken, isDieselToken, isDieselWithStkToken, isERC4626LPToken, isExtraFarmToken, isFarmToken, isLPToken, isLRT_LSTToken, isNormalToken, isStakingRewardsPhantomToken, isSupportedNetwork, isWrappedToken, isYearnLPToken, isZircuitStakedPhantomToken, iwstEthAbi, iyVaultAbi, json_parse, json_stringify, lidoSwapperAbi, lidoV1AdapterAbi, linearInterestRateModelV3Abi, lpTokens, mellowLrtPriceFeedAbi, multiPauseAbi, nonQuoted, normalTokens, numberWithCommas, overrideAggregatorAbi, partialLiquidationBotV3Abi, pendleTWAPPTPriceFeedAbi, percentFmt, poolV3UsdtAbi, priceFeedMultiplierAbi, priceOracleV3Abi, rawTxToMulticallPriceUpdate, rayToNumber, redstonePriceFeedAbi, retry, routerV3Abi, sendRawTx, shortAddress, shortHash, simulateMulticall, stakingRewardsPhantomTokens, stakingRewardsTokens, supportedTokens, susdeOverriderAbi, swapAggregatorAbi, tickerInfoTokensByNetwork, tickerSymbolByAddress, tickerTokensByNetwork, toBN, toBigInt, toHumanFormat, toSignificant, tokenDataByNetwork, tokenStealerAbi, tokenSymbolByAddress, underlyingDepositZapperAbi, underlyingFarmingZapperAbi, uniswapV2AdapterAbi, uniswapV2SwapperAbi, uniswapV3AdapterAbi, uniswapV3SwapperAbi, velodromeV2RouterAdapterAbi, velodromeV2SwapperAbi, wethDepositZapperAbi, wethFarmingZapperAbi, wrapAggregatorAbi, wrappedAaveV2Tokens, wrappedTokens, wstEthPriceFeedAbi, wstEthSwapperAbi, wstEthv1AdapterAbi, yearnDepositorAbi, yearnPathResolverAbi, yearnPriceFeedAbi, yearnTokens, yearnV2AdapterAbi, yearnWithdrawerAbi, zapperRegisterAbi, zeroPriceFeedAbi, zircuitStakedPhantomTokens, zircuitStakedTokenByToken, zircuitTokens };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-vfour.261",
3
+ "version": "3.0.0-vfour.262",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.cjs",