@steerprotocol/sdk 3.6.1 → 3.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.mjs +81 -4
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.cjs +84 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +14 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +81 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.mjs
CHANGED
|
@@ -6,6 +6,7 @@ import { Decimal } from "decimal.js";
|
|
|
6
6
|
//#region src/const/chain.ts
|
|
7
7
|
let Chain = /* @__PURE__ */ function(Chain) {
|
|
8
8
|
Chain["Polygon"] = "Polygon";
|
|
9
|
+
Chain["Arc"] = "Arc";
|
|
9
10
|
Chain["Arbitrum"] = "Arbitrum";
|
|
10
11
|
Chain["Optimism"] = "Optimism";
|
|
11
12
|
Chain["BSC"] = "BSC";
|
|
@@ -60,6 +61,7 @@ let Chain = /* @__PURE__ */ function(Chain) {
|
|
|
60
61
|
}({});
|
|
61
62
|
const ChainId = {
|
|
62
63
|
Polygon: 137,
|
|
64
|
+
Arc: 5042,
|
|
63
65
|
Arbitrum: 42161,
|
|
64
66
|
Optimism: 10,
|
|
65
67
|
BSC: 56,
|
|
@@ -247,6 +249,7 @@ let MultiPositionManagers = /* @__PURE__ */ function(MultiPositionManagers) {
|
|
|
247
249
|
MultiPositionManagers["MultiPositionBlackholeOld"] = "MultiPositionBlackhole";
|
|
248
250
|
MultiPositionManagers["AlgebraHook"] = "AlgebraHook";
|
|
249
251
|
MultiPositionManagers["MultiPositionAerodrome"] = "MultiPositionAerodrome";
|
|
252
|
+
MultiPositionManagers["MultiPositionAerodromeSlipstream"] = "MultiPositionAerodromeSlipstream";
|
|
250
253
|
MultiPositionManagers["MultiPositionAerodromeV2"] = "AerodromeStakedPositionManager";
|
|
251
254
|
MultiPositionManagers["MultiPositionAerodromeV3"] = "AerodromeStakedPositionManagerV3";
|
|
252
255
|
MultiPositionManagers["MultiPositionNest"] = "MultiPositionNest";
|
|
@@ -282,6 +285,7 @@ const UniswapHookBeacons = [
|
|
|
282
285
|
MultiPositionManagers.TestUniswapJITHook,
|
|
283
286
|
MultiPositionManagers.MultiPositionUniswapV4HookOld
|
|
284
287
|
];
|
|
288
|
+
const AerodromeBeacons = [MultiPositionManagers.MultiPositionAerodrome, MultiPositionManagers.MultiPositionAerodromeSlipstream];
|
|
285
289
|
//#endregion
|
|
286
290
|
//#region src/const/deployments/abis.ts
|
|
287
291
|
const abis = {
|
|
@@ -6411,6 +6415,54 @@ const apechainAddresses = {
|
|
|
6411
6415
|
}
|
|
6412
6416
|
};
|
|
6413
6417
|
//#endregion
|
|
6418
|
+
//#region src/const/deployments/arc.ts
|
|
6419
|
+
const arcAddresses = {
|
|
6420
|
+
KeeperRegistry: {
|
|
6421
|
+
address: "0xE463a4A82881EF599fe8310f23ba8766Dcc448A3",
|
|
6422
|
+
startBlock: 21326564
|
|
6423
|
+
},
|
|
6424
|
+
Orchestrator: {
|
|
6425
|
+
address: "0x8725f2f77508EDd583C6f3840F88Db6A2d0Cf009",
|
|
6426
|
+
startBlock: 21326605
|
|
6427
|
+
},
|
|
6428
|
+
StrategyRegistry: {
|
|
6429
|
+
address: "0x08857cb7B2a481DB85984E32BdC03e95c0662eb6",
|
|
6430
|
+
startBlock: 21326585
|
|
6431
|
+
},
|
|
6432
|
+
VaultRegistry: {
|
|
6433
|
+
address: "0x52Db9bcb9EFdBAaa8E1D2326E0b69c57Bf14c333",
|
|
6434
|
+
startBlock: 21326644
|
|
6435
|
+
},
|
|
6436
|
+
BundleRegistry: {
|
|
6437
|
+
address: "0x6511080422911D210681f5618DBd50DEC3e954de",
|
|
6438
|
+
startBlock: 21326748
|
|
6439
|
+
},
|
|
6440
|
+
GasVault: {
|
|
6441
|
+
address: "0x0a271fc23BA4c6A4a668E7Ceef9aDE60C59f5Ec5",
|
|
6442
|
+
startBlock: 21326697
|
|
6443
|
+
},
|
|
6444
|
+
WhitelistRegistry: {
|
|
6445
|
+
address: "0x20B895F7C02e754AdC461e80b39a9e85f02e2bE3",
|
|
6446
|
+
startBlock: 21326621
|
|
6447
|
+
},
|
|
6448
|
+
SteerPeriphery: {
|
|
6449
|
+
address: "0x3e2135a491CD90Ed1e7313Bd8Efd51aba8018F69",
|
|
6450
|
+
startBlock: 21326728
|
|
6451
|
+
},
|
|
6452
|
+
StakingRewards: {
|
|
6453
|
+
address: "0xfdC6A32f2622be7Bf1481BFAC8bC6e35C42fD665",
|
|
6454
|
+
startBlock: 21326676
|
|
6455
|
+
},
|
|
6456
|
+
Helper: {
|
|
6457
|
+
address: "0xCD31EbF762A5d1F88399E692316903767DA06Cf9",
|
|
6458
|
+
startBlock: 21326630
|
|
6459
|
+
},
|
|
6460
|
+
FeeManager: {
|
|
6461
|
+
address: "0x83966243D6055b1A1157f800cBC9f5084162b871",
|
|
6462
|
+
startBlock: 21326767
|
|
6463
|
+
}
|
|
6464
|
+
};
|
|
6465
|
+
//#endregion
|
|
6414
6466
|
//#region src/const/deployments/arbitrum.ts
|
|
6415
6467
|
const arbitrumAddresses = {
|
|
6416
6468
|
"BundleRegistry": {
|
|
@@ -8442,6 +8494,10 @@ const feeManagerContractsByChainId = {
|
|
|
8442
8494
|
30: { address: "0xAa4448AeF5f5967693751BFB67197946BB6D1dC0" },
|
|
8443
8495
|
40: { address: "0xE431A1dE6F37cD08AAA8821F83bD2157857E8172" },
|
|
8444
8496
|
146: { address: "0x51aC65B177F084455750131A81706C32b466101D" },
|
|
8497
|
+
5042: {
|
|
8498
|
+
address: "0x83966243D6055b1A1157f800cBC9f5084162b871",
|
|
8499
|
+
startBlock: 21326767
|
|
8500
|
+
},
|
|
8445
8501
|
199: { address: "0xdca3251Ebe8f85458E8d95813bCb816460e4bef1" },
|
|
8446
8502
|
314: { address: "0x0C5c5BEB833fD382b04e039f151942DC3D9A60ce" },
|
|
8447
8503
|
1284: { address: "0xfF42cD42d8a5812CB38fb3C0720Dfc490912f48B" },
|
|
@@ -8482,6 +8538,15 @@ const networks = {
|
|
|
8482
8538
|
wrappedNativeToken: "WETH",
|
|
8483
8539
|
transactionType: 0
|
|
8484
8540
|
},
|
|
8541
|
+
[Chain.Arc]: {
|
|
8542
|
+
address: "0x3600000000000000000000000000000000000000",
|
|
8543
|
+
name: Chain.Arc,
|
|
8544
|
+
wrappedNativeToken: "USDC",
|
|
8545
|
+
isWrappingEnabled: false,
|
|
8546
|
+
...arcAddresses,
|
|
8547
|
+
chainId: ChainId.Arc,
|
|
8548
|
+
transactionType: 0
|
|
8549
|
+
},
|
|
8485
8550
|
[Chain.Arbitrum]: {
|
|
8486
8551
|
address: "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1",
|
|
8487
8552
|
name: Chain.Arbitrum,
|
|
@@ -9225,6 +9290,7 @@ const steerSubgraphConfig = {
|
|
|
9225
9290
|
[Chain.Polygon]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-polygon/prod/gn",
|
|
9226
9291
|
[Chain.BSC]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-bsc-beta/prod/gn",
|
|
9227
9292
|
[Chain.Optimism]: "https://subgraph-proxy-server-xf2uthetka-as.a.run.app/gateway-arbitrum/GgW1EwNARL3dyo3acQ3VhraQQ66MHT7QnYuGcQc5geDG",
|
|
9293
|
+
[Chain.Arc]: "https://api.goldsky.com/api/public/project_cm2k9xbkz4qg901vs51bm5uau/subgraphs/steer-protocol-arc-mainnet/prod/gn",
|
|
9228
9294
|
[Chain.Arbitrum]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-arbitrum/prod/gn",
|
|
9229
9295
|
[Chain.Evmos]: offlineSubgraphUrl("evmos"),
|
|
9230
9296
|
[Chain.Thundercore]: offlineSubgraphUrl("thundercore"),
|
|
@@ -15086,10 +15152,18 @@ const katanaIntegralConfig = () => ({
|
|
|
15086
15152
|
//#endregion
|
|
15087
15153
|
//#region src/const/amm/configs/protocols/aerodrome.ts
|
|
15088
15154
|
const aerodromeConfig = (theGraphApiKey) => ({
|
|
15089
|
-
beaconContract:
|
|
15155
|
+
beaconContract: AerodromeBeacons[0],
|
|
15156
|
+
additionalBeaconContracts: [...AerodromeBeacons.slice(1)],
|
|
15090
15157
|
subgraph: { [Chain.Base]: getTheGraphResolverUrl("GENunSHWLBXm59mBSgPzQ8metBEp9YDfdqwFr91Av1UM", false, theGraphApiKey) },
|
|
15091
|
-
factoryAddress: {
|
|
15092
|
-
|
|
15158
|
+
factoryAddress: {
|
|
15159
|
+
[Chain.Arc]: "0xb89Df768aF2CFE637ceB352c587Fe8edAf491d03",
|
|
15160
|
+
[Chain.Base]: "0x5e7BB104d84c7CB9B682AaC2F3d509f5F406809A"
|
|
15161
|
+
},
|
|
15162
|
+
NFTManagerAddress: { [Chain.Arc]: "0xc84bB45D43CD25D02b83B4C085eaA4e08da8f473" },
|
|
15163
|
+
TickLensAddress: {
|
|
15164
|
+
[Chain.Base]: "0x49a3A5cf91DE1b78c43Dc1adD03E8A71f1Ea2e30",
|
|
15165
|
+
[Chain.Arc]: "0xC6679cC98acC7C7Da0E3cb1766FB6cafC2110Bfb"
|
|
15166
|
+
},
|
|
15093
15167
|
QuoterV2Address: { [Chain.Base]: "0x254cF9E1E6e233aa1AC962CB9B05b2cfeAaE15b0" }
|
|
15094
15168
|
});
|
|
15095
15169
|
//#endregion
|
|
@@ -15291,12 +15365,14 @@ const TEST_UNISWAP_JIT_HOOK_BEACON = MultiPositionManagers.TestUniswapJITHook;
|
|
|
15291
15365
|
const UNISWAP_V4_NO_ORACLE_BEACON = MultiPositionManagers.MultiPositionUniswapV4NoOracle;
|
|
15292
15366
|
const UNISWAP_V4_HOOK_BEACON_NAMES = UniswapHookBeacons;
|
|
15293
15367
|
const UNISWAP_V4_BEACON_NAMES = UniswapV4Beacons;
|
|
15368
|
+
const AERODROME_BEACON_NAMES = AerodromeBeacons;
|
|
15294
15369
|
const includesBeacon = (beaconNames, beaconName) => {
|
|
15295
15370
|
if (!beaconName) return false;
|
|
15296
15371
|
const normalizedBeaconName = beaconName.toLowerCase();
|
|
15297
15372
|
return beaconNames.some((knownBeaconName) => knownBeaconName.toLowerCase() === normalizedBeaconName);
|
|
15298
15373
|
};
|
|
15299
15374
|
const isUniswapV4Beacon = (beaconName) => includesBeacon(UNISWAP_V4_BEACON_NAMES, beaconName);
|
|
15375
|
+
const isAerodromeBeacon = (beaconName) => includesBeacon(AERODROME_BEACON_NAMES, beaconName);
|
|
15300
15376
|
const isUniswapV4HookBeacon = (beaconName) => includesBeacon(UNISWAP_V4_HOOK_BEACON_NAMES, beaconName);
|
|
15301
15377
|
const shouldValidateUniswapV4VaultHook = (beaconName) => beaconName?.toLowerCase() !== UNISWAP_V4_NO_ORACLE_BEACON.toLowerCase();
|
|
15302
15378
|
const UNISWAP_V4_BEACON_SUPPORTED_CHAINS = {
|
|
@@ -15442,6 +15518,7 @@ const CUSTOM_BEACON_TO_PROTOCOL_MAP = {
|
|
|
15442
15518
|
[StrykePositionManagers.StrykeShadowManager]: Protocol.Shadow,
|
|
15443
15519
|
[MultiPositionManagers.MultiPositionUniswapV4ALM]: Protocol.UniswapV4,
|
|
15444
15520
|
[MultiPositionManagers.MultiPositionAerodrome]: Protocol.Aerodrome,
|
|
15521
|
+
[MultiPositionManagers.MultiPositionAerodromeSlipstream]: Protocol.Aerodrome,
|
|
15445
15522
|
[MultiPositionManagers.MultiPositionUniswapV4HookOld]: Protocol.UniswapV4,
|
|
15446
15523
|
[MultiPositionManagers.MultiPositionBlackholeOld]: Protocol.Blackhole,
|
|
15447
15524
|
[MultiPositionManagers.MultiPositionUniswapV4Hook]: Protocol.UniswapV4,
|
|
@@ -28846,6 +28923,6 @@ async function verifyV4PoolAction(params) {
|
|
|
28846
28923
|
* See {@link SmartRewards} for detailed API documentation.
|
|
28847
28924
|
*/
|
|
28848
28925
|
//#endregion
|
|
28849
|
-
export { AERODROME_PROTOCOLS, AERODROME_SLIPSTREAM_LIFECYCLE_DEPLOYMENTS, ALGEBRA_INTEGRAL_PROTOCOLS, ALGEBRA_INTEGRAL_V_2_0_PROTOCOLS, ALGEBRA_LIFECYCLE_DEPLOYMENTS, ALGEBRA_PROTOCOLS, AMMType, API_URLS, AlgebgraHookBeacons, CURRENT_V4_LIFECYCLE_DEPLOYMENTS, Chain, ChainId, DIRECTIONAL_ALGEBRA_PROTOCOLS, FEE_MANAGER_ABI, FeeManagerClient, MAX_SQRT_RATIO, MIN_SQRT_RATIO, MultiPositionManagers, POOLSHARK_PROTOCOLS, POOL_LIFECYCLE_DEPLOYMENTS, PREPARED_POOL_ACTION_SERIALIZATION_VERSION, PoolClient, PoolLifecycleError, Protocol, QuickSwapQuoterV2, QuoterV2AlgebgraIntegral, QuoterV2AlgebgraIntegral21, QuoterV2Factory, QuoterV2Shadow, QuoterV2Thick, SHADOW_PROTOCOLS, SingleAssetDepositClient, SmartRewards, StakingClient, StakingProtocol, SteerClient, StrykePositionManagers, SubgraphClient, SubgraphVaultClient, TEST_UNISWAP_JIT_HOOK_BEACON, UNISWAP_V4_BEACON_NAMES, UNISWAP_V4_HOOK_BEACON_NAMES, UNISWAP_V4_NO_ORACLE_BEACON, UniswapHookBeacons, UniswapV3PoolABI, UniswapV3QuoterABI, UniswapV4Beacons, V3_CONFIG_PROTOCOLS, V3_LIFECYCLE_DEPLOYMENTS, V4_ALL_HOOK_MASK, V4_DYNAMIC_FEE_FLAG, V4_LIFECYCLE_DEPLOYMENTS, V4_LIFECYCLE_DEPLOYMENTS_BY_ID, V4_MAX_STATIC_FEE, V4_MAX_TICK_SPACING, V4_ZERO_ADDRESS, VAULT_FEES_ABI, VaultClient, abis, aerodromeSlipstreamFactoryAbi, aerodromeSlipstreamPoolAbi, algebraCustomPoolEntryPointAbi, algebraDirectionalPoolStateAbi, algebraIntegralPairFactoryAbi, algebraIntegralPluginDataFactoryAbi, algebraIntegralPoolStateAbi, algebraLegacyPoolStateAbi, algebraPairFactoryAbi, algebraPoolBaseAbi, apechainAddresses, arbitrumAddresses, arbitrumgoerliAddresses, arthswapConfig, assertAerodromeSlipstreamInitialPrice, assertAlgebraInitialPrice, assertLatestAerodromeSlipstreamLifecycleDeployment, assertPreparedV3PoolAction, assertPreparedV4PoolAction, assertV3InitialPrice, assertV4InitialPrice, astarAddresses, astarzkevmAddresses, avalancheAddresses, bartiotestAddresses, baseAddresses, baseSwapConfig, basexConfig, beraAddresses, bittensorAddresses, bittensorUniV3Config, blastAddresses, bscAddresses, buildAerodromeSlipstreamCreateAndInitializeTransaction, buildAlgebraCreatePoolTransaction, buildAlgebraInitializePoolTransaction, buildV3CreateAndInitializeTransaction, buildV3CreatePoolTransaction, buildV3InitializePoolTransaction, buildV4InitializePoolTransaction, calculateLimitPrice, calculateSwapAmount, camelotConfig, canonicalizeAerodromeSlipstreamPoolKey, canonicalizeAlgebraPoolKey, canonicalizeV3PoolKey, canonicalizeV4PoolKey, celoAddresses, chainIdToName, chainNameToId, crustConfig, decodeAerodromeSlipstreamPoolActionReceipt, decodeAlgebraPoolActionReceipt, decodeV3PoolActionReceipt, decodeV4PoolActionReceipt, deprecatedBundlesURL, deserializePreparedAerodromeSlipstreamPoolAction, deserializePreparedAlgebraPoolAction, deserializePreparedPoolAction, deserializePreparedV3PoolAction, deserializePreparedV4PoolAction, determineSwapDirection, encodeCurrencyInitialSqrtPriceX96, encodeInitialSqrtPriceX96, encodeSqrtRatioX96, equilibreConfig, erc1155Abi, erc20Abi, erc721Abi, estimateLpTokens, ethAddresses, evmosAddresses, fantomAddresses, fenixConfig, filecoinAddresses, flareAddresses, forgeConfig, fusionxConfig, getAmmConfig, getAmmConfigByChainId, getApiUrl, getBeaconNameByProtocol, getContractAddressByChainIdAndContractName, getExpectedParamType, getFactoryAddress, getInitCodeHash, getNFTManagerAddress, getNetworkByChainId, getPoolHelperByChainId, getPoolSlot0, getProtcolTypeByAmmType, getProtocolBySubgraph, getProtocolConfigByBeacon, getProtocolContractAddresses, getProtocolInfoByChainId, getProtocolInfoByName, getProtocolSubgraphURL, getProtocolTypeByBeacon, getProtocolsForChainId, getQuoterV2Address, getStabilityVaultsPeripheryAddress, getStabilityVaultsSubgraphUrl, getSubgraphUrlByChainId, getSupportedChainByChainId, getSupportedChainIds, getSupportedChains, getSwapRouterAddress, getTheGraphResolverUrl, getTickLensAddress, getUniswapV4BeaconSupportedChains, getV4LifecycleDeploymentId, getV4PoolId, getVaultExecutionContext, getVaultReserves, glyphConfig, goerliAddresses, hemiAddresses, henjinConfig, herculesConfig, horizaConfig, inspectAerodromeSlipstreamPool, inspectAlgebraCustomPoolEntryPoint, inspectAlgebraPool, inspectV3Pool, inspectV4Pool, integerSqrt, isAerodromeVault, isAlgebraDirectionProtocol, isAlgebraIntegral21QuoteParams, isAlgebraIntegralProtocol, isAlgebraIntegralV2Protocol, isAlgebraProtocol, isAlgebraProtocolBySubgraph, isAlgebraQuoteParams, isPoolSharkProtocol, isShadowProtocol, isShadowQuoteParams, isSingleAssetDepositSupported, isThickQuoteParams, isThickV2Protocol, isUniswapQuoteParams, isUniswapV4Beacon, isUniswapV4BeaconAvailableOnChain, isUniswapV4HookBeacon, isValidStakingProtocol, katanaAddresses, katanaConfig, kavaAddresses, kimConfig, kinetixConfig, lineaAddresses, linehubConfig, localhostAddresses, lynexConfig, maiaConfig, mantaAddresses, mantleAddresses, metaVaultConfig, metisAddresses, modeAddresses, moonbeamAddresses, mumbaiAddresses, nestVaultConfig, networks, normalizeProtocol, novaswapConfig, okxtestnetAddresses, optimismAddresses, optimismgoerliAddresses, pancakeSwapConfig, parseExactDecimal, polygonAddresses, polyzkevmAddresses, poolsharkConfig, prepareAerodromeSlipstreamPool, prepareAlgebraPool, prepareLatestAerodromeSlipstreamPool, prepareV3CreateAndInitialize, prepareV3CreatePool, prepareV3InitializePool, prepareV4Initialize, quickSwapAlgebraConfig, quickSwapConfig, quickSwapIntegralConfig, quickSwapUniv3Config, resolveAerodromeSlipstreamLifecycleDeployment, resolveAlgebraLifecycleDeployment, resolveCurrentV4LifecycleDeployment, resolveLatestAerodromeSlipstreamLifecycleDeployment, resolvePoolLifecycleDeployment, resolveV3LifecycleDeployment, resolveV4LifecycleDeployment, resolveV4LifecycleDeploymentById, retroConfig, robinhoodAddresses, rootstockAddresses, sagaAddresses, scrollAddresses, seiAddresses, serializePreparedPoolAction, shadowConfig, shouldValidateUniswapV4VaultHook, simulateAerodromeSlipstreamPoolAction, simulateAlgebraPoolAction, simulateSwap, simulateV3PoolAction, simulateV4PoolAction, singleTokenDepositAbi, soneiumAddresses, sonicAddresses, sortErc20Pair, sortEvmCurrencyPair, spark32Config, sparkConfig, stabilityVaultsConfig, steerSubgraphConfig, supswapConfig, sushiConfig, swapmodeConfig, swapsicleConfig, taikoAddresses, telosAddresses, thenaConfig, thickConfig, thrusterConfig, thundercoreAddresses, uniAddresses, uniswapConfig, v3FactoryAbi, v3PoolAbi, v3PoolInitializerAbi, v4PoolKeysEqual, v4PoolManagerAbi, v4StateViewAbi, validateAerodromeSlipstreamLifecycleDeployment, validateAlgebraLifecycleDeployment, validatePreparedAerodromeSlipstreamPoolAction, validatePreparedAlgebraPoolAction, validatePreparedV3PoolAction, validatePreparedV4PoolAction, validateQuoteParams, validateSqrtPriceX96, validateSwapParams, validateV4LifecycleDeployment, validateV4PoolKey, verifyAerodromeSlipstreamPoolAction, verifyAlgebraPoolAction, verifyV3PoolAction, verifyV4PoolAction, xlayerAddresses, zetaAddresses, zircuitAddresses };
|
|
28926
|
+
export { AERODROME_BEACON_NAMES, AERODROME_PROTOCOLS, AERODROME_SLIPSTREAM_LIFECYCLE_DEPLOYMENTS, ALGEBRA_INTEGRAL_PROTOCOLS, ALGEBRA_INTEGRAL_V_2_0_PROTOCOLS, ALGEBRA_LIFECYCLE_DEPLOYMENTS, ALGEBRA_PROTOCOLS, AMMType, API_URLS, AerodromeBeacons, AlgebgraHookBeacons, CURRENT_V4_LIFECYCLE_DEPLOYMENTS, Chain, ChainId, DIRECTIONAL_ALGEBRA_PROTOCOLS, FEE_MANAGER_ABI, FeeManagerClient, MAX_SQRT_RATIO, MIN_SQRT_RATIO, MultiPositionManagers, POOLSHARK_PROTOCOLS, POOL_LIFECYCLE_DEPLOYMENTS, PREPARED_POOL_ACTION_SERIALIZATION_VERSION, PoolClient, PoolLifecycleError, Protocol, QuickSwapQuoterV2, QuoterV2AlgebgraIntegral, QuoterV2AlgebgraIntegral21, QuoterV2Factory, QuoterV2Shadow, QuoterV2Thick, SHADOW_PROTOCOLS, SingleAssetDepositClient, SmartRewards, StakingClient, StakingProtocol, SteerClient, StrykePositionManagers, SubgraphClient, SubgraphVaultClient, TEST_UNISWAP_JIT_HOOK_BEACON, UNISWAP_V4_BEACON_NAMES, UNISWAP_V4_HOOK_BEACON_NAMES, UNISWAP_V4_NO_ORACLE_BEACON, UniswapHookBeacons, UniswapV3PoolABI, UniswapV3QuoterABI, UniswapV4Beacons, V3_CONFIG_PROTOCOLS, V3_LIFECYCLE_DEPLOYMENTS, V4_ALL_HOOK_MASK, V4_DYNAMIC_FEE_FLAG, V4_LIFECYCLE_DEPLOYMENTS, V4_LIFECYCLE_DEPLOYMENTS_BY_ID, V4_MAX_STATIC_FEE, V4_MAX_TICK_SPACING, V4_ZERO_ADDRESS, VAULT_FEES_ABI, VaultClient, abis, aerodromeSlipstreamFactoryAbi, aerodromeSlipstreamPoolAbi, algebraCustomPoolEntryPointAbi, algebraDirectionalPoolStateAbi, algebraIntegralPairFactoryAbi, algebraIntegralPluginDataFactoryAbi, algebraIntegralPoolStateAbi, algebraLegacyPoolStateAbi, algebraPairFactoryAbi, algebraPoolBaseAbi, apechainAddresses, arbitrumAddresses, arbitrumgoerliAddresses, arcAddresses, arthswapConfig, assertAerodromeSlipstreamInitialPrice, assertAlgebraInitialPrice, assertLatestAerodromeSlipstreamLifecycleDeployment, assertPreparedV3PoolAction, assertPreparedV4PoolAction, assertV3InitialPrice, assertV4InitialPrice, astarAddresses, astarzkevmAddresses, avalancheAddresses, bartiotestAddresses, baseAddresses, baseSwapConfig, basexConfig, beraAddresses, bittensorAddresses, bittensorUniV3Config, blastAddresses, bscAddresses, buildAerodromeSlipstreamCreateAndInitializeTransaction, buildAlgebraCreatePoolTransaction, buildAlgebraInitializePoolTransaction, buildV3CreateAndInitializeTransaction, buildV3CreatePoolTransaction, buildV3InitializePoolTransaction, buildV4InitializePoolTransaction, calculateLimitPrice, calculateSwapAmount, camelotConfig, canonicalizeAerodromeSlipstreamPoolKey, canonicalizeAlgebraPoolKey, canonicalizeV3PoolKey, canonicalizeV4PoolKey, celoAddresses, chainIdToName, chainNameToId, crustConfig, decodeAerodromeSlipstreamPoolActionReceipt, decodeAlgebraPoolActionReceipt, decodeV3PoolActionReceipt, decodeV4PoolActionReceipt, deprecatedBundlesURL, deserializePreparedAerodromeSlipstreamPoolAction, deserializePreparedAlgebraPoolAction, deserializePreparedPoolAction, deserializePreparedV3PoolAction, deserializePreparedV4PoolAction, determineSwapDirection, encodeCurrencyInitialSqrtPriceX96, encodeInitialSqrtPriceX96, encodeSqrtRatioX96, equilibreConfig, erc1155Abi, erc20Abi, erc721Abi, estimateLpTokens, ethAddresses, evmosAddresses, fantomAddresses, fenixConfig, filecoinAddresses, flareAddresses, forgeConfig, fusionxConfig, getAmmConfig, getAmmConfigByChainId, getApiUrl, getBeaconNameByProtocol, getContractAddressByChainIdAndContractName, getExpectedParamType, getFactoryAddress, getInitCodeHash, getNFTManagerAddress, getNetworkByChainId, getPoolHelperByChainId, getPoolSlot0, getProtcolTypeByAmmType, getProtocolBySubgraph, getProtocolConfigByBeacon, getProtocolContractAddresses, getProtocolInfoByChainId, getProtocolInfoByName, getProtocolSubgraphURL, getProtocolTypeByBeacon, getProtocolsForChainId, getQuoterV2Address, getStabilityVaultsPeripheryAddress, getStabilityVaultsSubgraphUrl, getSubgraphUrlByChainId, getSupportedChainByChainId, getSupportedChainIds, getSupportedChains, getSwapRouterAddress, getTheGraphResolverUrl, getTickLensAddress, getUniswapV4BeaconSupportedChains, getV4LifecycleDeploymentId, getV4PoolId, getVaultExecutionContext, getVaultReserves, glyphConfig, goerliAddresses, hemiAddresses, henjinConfig, herculesConfig, horizaConfig, inspectAerodromeSlipstreamPool, inspectAlgebraCustomPoolEntryPoint, inspectAlgebraPool, inspectV3Pool, inspectV4Pool, integerSqrt, isAerodromeBeacon, isAerodromeVault, isAlgebraDirectionProtocol, isAlgebraIntegral21QuoteParams, isAlgebraIntegralProtocol, isAlgebraIntegralV2Protocol, isAlgebraProtocol, isAlgebraProtocolBySubgraph, isAlgebraQuoteParams, isPoolSharkProtocol, isShadowProtocol, isShadowQuoteParams, isSingleAssetDepositSupported, isThickQuoteParams, isThickV2Protocol, isUniswapQuoteParams, isUniswapV4Beacon, isUniswapV4BeaconAvailableOnChain, isUniswapV4HookBeacon, isValidStakingProtocol, katanaAddresses, katanaConfig, kavaAddresses, kimConfig, kinetixConfig, lineaAddresses, linehubConfig, localhostAddresses, lynexConfig, maiaConfig, mantaAddresses, mantleAddresses, metaVaultConfig, metisAddresses, modeAddresses, moonbeamAddresses, mumbaiAddresses, nestVaultConfig, networks, normalizeProtocol, novaswapConfig, okxtestnetAddresses, optimismAddresses, optimismgoerliAddresses, pancakeSwapConfig, parseExactDecimal, polygonAddresses, polyzkevmAddresses, poolsharkConfig, prepareAerodromeSlipstreamPool, prepareAlgebraPool, prepareLatestAerodromeSlipstreamPool, prepareV3CreateAndInitialize, prepareV3CreatePool, prepareV3InitializePool, prepareV4Initialize, quickSwapAlgebraConfig, quickSwapConfig, quickSwapIntegralConfig, quickSwapUniv3Config, resolveAerodromeSlipstreamLifecycleDeployment, resolveAlgebraLifecycleDeployment, resolveCurrentV4LifecycleDeployment, resolveLatestAerodromeSlipstreamLifecycleDeployment, resolvePoolLifecycleDeployment, resolveV3LifecycleDeployment, resolveV4LifecycleDeployment, resolveV4LifecycleDeploymentById, retroConfig, robinhoodAddresses, rootstockAddresses, sagaAddresses, scrollAddresses, seiAddresses, serializePreparedPoolAction, shadowConfig, shouldValidateUniswapV4VaultHook, simulateAerodromeSlipstreamPoolAction, simulateAlgebraPoolAction, simulateSwap, simulateV3PoolAction, simulateV4PoolAction, singleTokenDepositAbi, soneiumAddresses, sonicAddresses, sortErc20Pair, sortEvmCurrencyPair, spark32Config, sparkConfig, stabilityVaultsConfig, steerSubgraphConfig, supswapConfig, sushiConfig, swapmodeConfig, swapsicleConfig, taikoAddresses, telosAddresses, thenaConfig, thickConfig, thrusterConfig, thundercoreAddresses, uniAddresses, uniswapConfig, v3FactoryAbi, v3PoolAbi, v3PoolInitializerAbi, v4PoolKeysEqual, v4PoolManagerAbi, v4StateViewAbi, validateAerodromeSlipstreamLifecycleDeployment, validateAlgebraLifecycleDeployment, validatePreparedAerodromeSlipstreamPoolAction, validatePreparedAlgebraPoolAction, validatePreparedV3PoolAction, validatePreparedV4PoolAction, validateQuoteParams, validateSqrtPriceX96, validateSwapParams, validateV4LifecycleDeployment, validateV4PoolKey, verifyAerodromeSlipstreamPoolAction, verifyAlgebraPoolAction, verifyV3PoolAction, verifyV4PoolAction, xlayerAddresses, zetaAddresses, zircuitAddresses };
|
|
28850
28927
|
|
|
28851
28928
|
//# sourceMappingURL=index.browser.mjs.map
|