@steerprotocol/sdk 3.4.3 → 3.6.0

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.d.mts CHANGED
@@ -107,6 +107,7 @@ interface DeprecationData {
107
107
  interface VaultFetchOptions {
108
108
  subgraphUrl: string;
109
109
  chainId: number;
110
+ vaultAddress?: string;
110
111
  showDeprecated?: boolean;
111
112
  showCurrentProtocol?: boolean;
112
113
  beaconNames?: string[];
@@ -9429,6 +9430,7 @@ declare class VaultClient extends SubgraphClient {
9429
9430
  private getProtocolBeaconNames;
9430
9431
  private getPrimaryProtocolBeaconName;
9431
9432
  private buildApiVaultFilter;
9433
+ private transformApiVaultNode;
9432
9434
  private vaultMatchesProtocolFilter;
9433
9435
  private applyProtocolFilter;
9434
9436
  private normalizeAddress;
@@ -9951,6 +9953,10 @@ declare class SubgraphVaultClient {
9951
9953
  * Create a mock LP price response for vaults without LP data
9952
9954
  */
9953
9955
  private createMockLpPriceData;
9956
+ /**
9957
+ * Fetches one vault by its address without enumerating the chain's vault set.
9958
+ */
9959
+ getVaultByAddress(options: Pick<VaultFetchOptions, 'subgraphUrl' | 'chainId' | 'vaultAddress'>): Promise<VaultNode | null>;
9954
9960
  /**
9955
9961
  * Fetch vault data from subgraph
9956
9962
  */
@@ -11107,6 +11113,58 @@ declare function resolveAlgebraLifecycleDeployment(params: {
11107
11113
  /** Validate external capability metadata and return its canonical frozen entry. */
11108
11114
  declare function validateAlgebraLifecycleDeployment(value: unknown): AlgebraLifecycleDeployment;
11109
11115
  //#endregion
11116
+ //#region src/pool-lifecycle/capabilities/aerodrome-slipstream.d.ts
11117
+ interface AerodromeSlipstreamLifecycleDeployment {
11118
+ readonly supported: true;
11119
+ readonly schemaVersion: 1;
11120
+ readonly chainId: number;
11121
+ readonly protocol: SupportedProtocol;
11122
+ readonly family: 'aerodrome-slipstream';
11123
+ readonly adapter: 'aerodrome-slipstream-factory-v1';
11124
+ readonly version: 1;
11125
+ readonly generation: 1 | 2 | 3;
11126
+ /** Only this generation may create new pools through the public lifecycle API. */
11127
+ readonly latest: boolean;
11128
+ readonly factory: Address;
11129
+ readonly factoryRuntimeCodeHash: Hex;
11130
+ readonly poolImplementation: Address;
11131
+ readonly poolImplementationRuntimeCodeHash: Hex;
11132
+ readonly poolProxyRuntimeCodeHash: Hex;
11133
+ readonly factoryRegistry: Address;
11134
+ readonly voter: Address;
11135
+ /** V2 and V3 retain this immutable duplicate guard against the original factory. */
11136
+ readonly legacyCLFactory: Address | null;
11137
+ readonly sourceVerification: Readonly<{
11138
+ readonly sourceRevision: `0x${string}`;
11139
+ readonly compilerVersion: '0.7.6+commit.7338295f';
11140
+ readonly optimizer: Readonly<{
11141
+ readonly enabled: true;
11142
+ readonly runs: 200;
11143
+ }>;
11144
+ readonly executableRuntimeMatch: true;
11145
+ readonly immutableAnchors: Readonly<{
11146
+ readonly factoryRegistry: Address;
11147
+ readonly voter: Address;
11148
+ readonly poolImplementation: Address;
11149
+ readonly legacyCLFactory: Address | null;
11150
+ }>;
11151
+ }>;
11152
+ readonly provenance: Readonly<{
11153
+ source: 'official-deployment';
11154
+ urls: readonly [`https://${string}`, ...`https://${string}`[]];
11155
+ }>;
11156
+ }
11157
+ declare const AERODROME_SLIPSTREAM_LIFECYCLE_DEPLOYMENTS: readonly [AerodromeSlipstreamLifecycleDeployment, AerodromeSlipstreamLifecycleDeployment, AerodromeSlipstreamLifecycleDeployment];
11158
+ declare function resolveAerodromeSlipstreamLifecycleDeployment(params: {
11159
+ readonly chainId: number;
11160
+ readonly protocol: SupportedProtocol;
11161
+ }): AerodromeSlipstreamLifecycleDeployment | undefined;
11162
+ /** Resolve the only factory generation that is eligible for a new pool deployment. */
11163
+ declare function resolveLatestAerodromeSlipstreamLifecycleDeployment(chainId: number): AerodromeSlipstreamLifecycleDeployment | undefined;
11164
+ declare function assertLatestAerodromeSlipstreamLifecycleDeployment(value: AerodromeSlipstreamLifecycleDeployment): AerodromeSlipstreamLifecycleDeployment;
11165
+ /** Reject mutable or forged deployment metadata at every public boundary. */
11166
+ declare function validateAerodromeSlipstreamLifecycleDeployment(value: unknown): AerodromeSlipstreamLifecycleDeployment;
11167
+ //#endregion
11110
11168
  //#region src/pool-lifecycle/capabilities/v3.d.ts
11111
11169
  type V3LifecycleDeploymentProvenance = {
11112
11170
  readonly source: 'sdk-config' | 'official-deployment' | 'verified-explorer';
@@ -11150,7 +11208,7 @@ declare const V3_CONFIG_PROTOCOLS: readonly SupportedProtocol[];
11150
11208
  declare function resolveV3LifecycleDeployment(params: ResolveV3LifecycleDeploymentParams): V3LifecycleDeployment | undefined;
11151
11209
  //#endregion
11152
11210
  //#region src/pool-lifecycle/capabilities.d.ts
11153
- type SupportedPoolLifecycleDeployment = V3LifecycleDeployment | V4LifecycleDeployment | AlgebraLifecycleDeployment;
11211
+ type SupportedPoolLifecycleDeployment = V3LifecycleDeployment | V4LifecycleDeployment | AlgebraLifecycleDeployment | AerodromeSlipstreamLifecycleDeployment;
11154
11212
  type UnsupportedPoolLifecycleDeployment = {
11155
11213
  readonly supported: false;
11156
11214
  readonly schemaVersion: 1;
@@ -11610,6 +11668,191 @@ declare const algebraCustomPoolEntryPointAbi: readonly [{
11610
11668
  }];
11611
11669
  }];
11612
11670
  //#endregion
11671
+ //#region src/pool-lifecycle/abis/aerodrome-slipstream.d.ts
11672
+ /** Exact Base Aerodrome Slipstream CLFactory lifecycle surface. */
11673
+ declare const aerodromeSlipstreamFactoryAbi: readonly [{
11674
+ readonly name: "PoolCreated";
11675
+ readonly type: "event";
11676
+ readonly inputs: readonly [{
11677
+ readonly type: "address";
11678
+ readonly name: "token0";
11679
+ readonly indexed: true;
11680
+ }, {
11681
+ readonly type: "address";
11682
+ readonly name: "token1";
11683
+ readonly indexed: true;
11684
+ }, {
11685
+ readonly type: "int24";
11686
+ readonly name: "tickSpacing";
11687
+ readonly indexed: true;
11688
+ }, {
11689
+ readonly type: "address";
11690
+ readonly name: "pool";
11691
+ }];
11692
+ }, {
11693
+ readonly name: "getPool";
11694
+ readonly type: "function";
11695
+ readonly stateMutability: "view";
11696
+ readonly inputs: readonly [{
11697
+ readonly type: "address";
11698
+ readonly name: "tokenA";
11699
+ }, {
11700
+ readonly type: "address";
11701
+ readonly name: "tokenB";
11702
+ }, {
11703
+ readonly type: "int24";
11704
+ readonly name: "tickSpacing";
11705
+ }];
11706
+ readonly outputs: readonly [{
11707
+ readonly type: "address";
11708
+ readonly name: "pool";
11709
+ }];
11710
+ }, {
11711
+ readonly name: "tickSpacingToFee";
11712
+ readonly type: "function";
11713
+ readonly stateMutability: "view";
11714
+ readonly inputs: readonly [{
11715
+ readonly type: "int24";
11716
+ readonly name: "tickSpacing";
11717
+ }];
11718
+ readonly outputs: readonly [{
11719
+ readonly type: "uint24";
11720
+ readonly name: "fee";
11721
+ }];
11722
+ }, {
11723
+ readonly name: "poolImplementation";
11724
+ readonly type: "function";
11725
+ readonly stateMutability: "view";
11726
+ readonly inputs: readonly [];
11727
+ readonly outputs: readonly [{
11728
+ readonly type: "address";
11729
+ }];
11730
+ }, {
11731
+ readonly name: "factoryRegistry";
11732
+ readonly type: "function";
11733
+ readonly stateMutability: "view";
11734
+ readonly inputs: readonly [];
11735
+ readonly outputs: readonly [{
11736
+ readonly type: "address";
11737
+ }];
11738
+ }, {
11739
+ readonly name: "voter";
11740
+ readonly type: "function";
11741
+ readonly stateMutability: "view";
11742
+ readonly inputs: readonly [];
11743
+ readonly outputs: readonly [{
11744
+ readonly type: "address";
11745
+ }];
11746
+ }, {
11747
+ readonly name: "legacyCLFactory";
11748
+ readonly type: "function";
11749
+ readonly stateMutability: "view";
11750
+ readonly inputs: readonly [];
11751
+ readonly outputs: readonly [{
11752
+ readonly type: "address";
11753
+ }];
11754
+ }, {
11755
+ readonly name: "isPool";
11756
+ readonly type: "function";
11757
+ readonly stateMutability: "view";
11758
+ readonly inputs: readonly [{
11759
+ readonly type: "address";
11760
+ readonly name: "pool";
11761
+ }];
11762
+ readonly outputs: readonly [{
11763
+ readonly type: "bool";
11764
+ }];
11765
+ }, {
11766
+ readonly name: "createPool";
11767
+ readonly type: "function";
11768
+ readonly stateMutability: "nonpayable";
11769
+ readonly inputs: readonly [{
11770
+ readonly type: "address";
11771
+ readonly name: "tokenA";
11772
+ }, {
11773
+ readonly type: "address";
11774
+ readonly name: "tokenB";
11775
+ }, {
11776
+ readonly type: "int24";
11777
+ readonly name: "tickSpacing";
11778
+ }, {
11779
+ readonly type: "uint160";
11780
+ readonly name: "sqrtPriceX96";
11781
+ }];
11782
+ readonly outputs: readonly [{
11783
+ readonly type: "address";
11784
+ readonly name: "pool";
11785
+ }];
11786
+ }];
11787
+ /** Exact Aerodrome Slipstream CLPool lifecycle read and event surface. */
11788
+ declare const aerodromeSlipstreamPoolAbi: readonly [{
11789
+ readonly name: "Initialize";
11790
+ readonly type: "event";
11791
+ readonly inputs: readonly [{
11792
+ readonly type: "uint160";
11793
+ readonly name: "sqrtPriceX96";
11794
+ }, {
11795
+ readonly type: "int24";
11796
+ readonly name: "tick";
11797
+ }];
11798
+ }, {
11799
+ readonly name: "factory";
11800
+ readonly type: "function";
11801
+ readonly stateMutability: "view";
11802
+ readonly inputs: readonly [];
11803
+ readonly outputs: readonly [{
11804
+ readonly type: "address";
11805
+ }];
11806
+ }, {
11807
+ readonly name: "token0";
11808
+ readonly type: "function";
11809
+ readonly stateMutability: "view";
11810
+ readonly inputs: readonly [];
11811
+ readonly outputs: readonly [{
11812
+ readonly type: "address";
11813
+ }];
11814
+ }, {
11815
+ readonly name: "token1";
11816
+ readonly type: "function";
11817
+ readonly stateMutability: "view";
11818
+ readonly inputs: readonly [];
11819
+ readonly outputs: readonly [{
11820
+ readonly type: "address";
11821
+ }];
11822
+ }, {
11823
+ readonly name: "tickSpacing";
11824
+ readonly type: "function";
11825
+ readonly stateMutability: "view";
11826
+ readonly inputs: readonly [];
11827
+ readonly outputs: readonly [{
11828
+ readonly type: "int24";
11829
+ }];
11830
+ }, {
11831
+ readonly name: "slot0";
11832
+ readonly type: "function";
11833
+ readonly stateMutability: "view";
11834
+ readonly inputs: readonly [];
11835
+ readonly outputs: readonly [{
11836
+ readonly type: "uint160";
11837
+ readonly name: "sqrtPriceX96";
11838
+ }, {
11839
+ readonly type: "int24";
11840
+ readonly name: "tick";
11841
+ }, {
11842
+ readonly type: "uint16";
11843
+ readonly name: "observationIndex";
11844
+ }, {
11845
+ readonly type: "uint16";
11846
+ readonly name: "observationCardinality";
11847
+ }, {
11848
+ readonly type: "uint16";
11849
+ readonly name: "observationCardinalityNext";
11850
+ }, {
11851
+ readonly type: "bool";
11852
+ readonly name: "unlocked";
11853
+ }];
11854
+ }];
11855
+ //#endregion
11613
11856
  //#region src/pool-lifecycle/abis/v3.d.ts
11614
11857
  /** Minimal canonical Uniswap V3-compatible factory ABI used by pool lifecycle flows. */
11615
11858
  declare const v3FactoryAbi: readonly [{
@@ -12068,6 +12311,127 @@ interface VerifyAlgebraPoolActionParams {
12068
12311
  declare function decodeAlgebraPoolActionReceipt(action: PreparedAlgebraPoolAction, receipt: TransactionReceipt): AlgebraReceiptEvidence;
12069
12312
  declare function verifyAlgebraPoolAction(params: VerifyAlgebraPoolActionParams): Promise<AlgebraPoolActionVerification>;
12070
12313
  //#endregion
12314
+ //#region src/pool-lifecycle/aerodrome-slipstream/key.d.ts
12315
+ interface AerodromeSlipstreamPoolKeyInput {
12316
+ readonly tokenA: Address;
12317
+ readonly tokenB: Address;
12318
+ readonly tickSpacing: number;
12319
+ }
12320
+ interface AerodromeSlipstreamPoolKey {
12321
+ readonly token0: Address;
12322
+ readonly token1: Address;
12323
+ readonly tickSpacing: number;
12324
+ }
12325
+ declare function canonicalizeAerodromeSlipstreamPoolKey(key: AerodromeSlipstreamPoolKeyInput): AerodromeSlipstreamPoolKey;
12326
+ declare function assertAerodromeSlipstreamInitialPrice(value: bigint): bigint;
12327
+ //#endregion
12328
+ //#region src/pool-lifecycle/aerodrome-slipstream/types.d.ts
12329
+ interface AerodromeSlipstreamPoolSnapshot {
12330
+ readonly schemaVersion: 1;
12331
+ readonly blockNumber: bigint;
12332
+ readonly deployment: AerodromeSlipstreamLifecycleDeployment;
12333
+ readonly key: AerodromeSlipstreamPoolKey;
12334
+ readonly enabledFee: number;
12335
+ readonly status: 'absent' | 'initialized';
12336
+ readonly poolAddress: Address | null;
12337
+ readonly sqrtPriceX96: bigint;
12338
+ readonly tick: number | null;
12339
+ }
12340
+ interface AerodromeSlipstreamPoolIdentity {
12341
+ readonly family: 'aerodrome-slipstream';
12342
+ readonly adapter: 'aerodrome-slipstream-factory-v1';
12343
+ readonly version: 1;
12344
+ readonly chainId: number;
12345
+ readonly factory: Address;
12346
+ readonly key: AerodromeSlipstreamPoolKey;
12347
+ readonly poolAddress: null;
12348
+ }
12349
+ type VerifiedAerodromeSlipstreamPoolIdentity = Omit<AerodromeSlipstreamPoolIdentity, 'poolAddress'> & {
12350
+ readonly poolAddress: Address | null;
12351
+ };
12352
+ type PreparedAerodromeSlipstreamCreateAndInitializeAction = PreparedPoolAction<'aerodrome-slipstream-create-and-initialize', AerodromeSlipstreamPoolIdentity, {
12353
+ readonly sqrtPriceX96: bigint;
12354
+ }, {
12355
+ readonly blockNumber: bigint;
12356
+ readonly status: 'absent';
12357
+ readonly poolAddress: null;
12358
+ }>;
12359
+ type AerodromeSlipstreamPoolActionSimulation = PoolActionSimulation & {
12360
+ readonly returnedPoolAddress: Address;
12361
+ };
12362
+ interface AerodromeSlipstreamReceiptEvidence {
12363
+ readonly receiptStatus: 'success' | 'reverted';
12364
+ readonly poolCreated: Readonly<{
12365
+ poolAddress: Address;
12366
+ logIndex: number;
12367
+ }> | null;
12368
+ readonly initialization: Readonly<{
12369
+ poolAddress: Address;
12370
+ sqrtPriceX96: bigint;
12371
+ tick: number;
12372
+ logIndex: number;
12373
+ }> | null;
12374
+ }
12375
+ type AerodromeSlipstreamPoolActionVerification = PoolActionVerification<VerifiedAerodromeSlipstreamPoolIdentity, AerodromeSlipstreamPoolSnapshot, AerodromeSlipstreamReceiptEvidence>;
12376
+ /** Re-derive all trusted calldata after a plan crosses a JSON boundary. */
12377
+ declare function validatePreparedAerodromeSlipstreamPoolAction(value: unknown): AerodromeSlipstreamLifecycleDeployment;
12378
+ declare function deserializePreparedAerodromeSlipstreamPoolAction(serialized: string): PreparedAerodromeSlipstreamCreateAndInitializeAction;
12379
+ //#endregion
12380
+ //#region src/pool-lifecycle/aerodrome-slipstream/inspect.d.ts
12381
+ declare function inspectAerodromeSlipstreamPool(params: {
12382
+ readonly publicClient: PublicClient;
12383
+ readonly deployment: AerodromeSlipstreamLifecycleDeployment;
12384
+ readonly key: AerodromeSlipstreamPoolKeyInput;
12385
+ readonly blockNumber?: bigint;
12386
+ }): Promise<AerodromeSlipstreamPoolSnapshot>;
12387
+ //#endregion
12388
+ //#region src/pool-lifecycle/aerodrome-slipstream/actions.d.ts
12389
+ declare function buildAerodromeSlipstreamCreateAndInitializeTransaction(params: {
12390
+ readonly deployment: AerodromeSlipstreamLifecycleDeployment;
12391
+ readonly key: AerodromeSlipstreamPoolKeyInput;
12392
+ readonly initialPrice: bigint;
12393
+ readonly preflight: AerodromeSlipstreamPoolSnapshot;
12394
+ }): PreparedAerodromeSlipstreamCreateAndInitializeAction;
12395
+ declare function prepareAerodromeSlipstreamPool(params: {
12396
+ readonly publicClient: PublicClient;
12397
+ readonly deployment: AerodromeSlipstreamLifecycleDeployment;
12398
+ readonly key: AerodromeSlipstreamPoolKeyInput;
12399
+ readonly initialPrice: bigint;
12400
+ readonly blockNumber?: bigint;
12401
+ }): Promise<{
12402
+ readonly status: 'ready';
12403
+ readonly snapshot: AerodromeSlipstreamPoolSnapshot;
12404
+ readonly action: PreparedAerodromeSlipstreamCreateAndInitializeAction;
12405
+ } | {
12406
+ readonly status: 'already-initialized-matching';
12407
+ readonly snapshot: AerodromeSlipstreamPoolSnapshot;
12408
+ readonly action: null;
12409
+ }>;
12410
+ /** Prepare a new pool only through the newest verified factory in this family. */
12411
+ declare function prepareLatestAerodromeSlipstreamPool(params: {
12412
+ readonly publicClient: PublicClient;
12413
+ readonly chainId: number;
12414
+ readonly key: AerodromeSlipstreamPoolKeyInput;
12415
+ readonly initialPrice: bigint;
12416
+ readonly blockNumber?: bigint;
12417
+ }): ReturnType<typeof prepareAerodromeSlipstreamPool>;
12418
+ //#endregion
12419
+ //#region src/pool-lifecycle/aerodrome-slipstream/simulate.d.ts
12420
+ declare function simulateAerodromeSlipstreamPoolAction(params: {
12421
+ readonly publicClient: PublicClient;
12422
+ readonly account: Address;
12423
+ readonly action: PreparedAerodromeSlipstreamCreateAndInitializeAction;
12424
+ readonly blockNumber?: bigint;
12425
+ }): Promise<AerodromeSlipstreamPoolActionSimulation>;
12426
+ //#endregion
12427
+ //#region src/pool-lifecycle/aerodrome-slipstream/verify.d.ts
12428
+ declare function decodeAerodromeSlipstreamPoolActionReceipt(action: PreparedAerodromeSlipstreamCreateAndInitializeAction, receipt: TransactionReceipt): AerodromeSlipstreamReceiptEvidence;
12429
+ declare function verifyAerodromeSlipstreamPoolAction(params: {
12430
+ readonly publicClient: PublicClient;
12431
+ readonly action: PreparedAerodromeSlipstreamCreateAndInitializeAction;
12432
+ readonly receipt: TransactionReceipt;
12433
+ }): Promise<AerodromeSlipstreamPoolActionVerification>;
12434
+ //#endregion
12071
12435
  //#region src/pool-lifecycle/v3/types.d.ts
12072
12436
  interface V3PoolKeyInput {
12073
12437
  readonly tokenA: Address;
@@ -12421,5 +12785,5 @@ declare function decodeV4PoolActionReceipt(action: PreparedV4PoolAction, receipt
12421
12785
  /** Verify exact calldata, canonical receipt/event, and receipt-block StateView state. */
12422
12786
  declare function verifyV4PoolAction(params: VerifyV4PoolActionParams): Promise<V4PoolActionVerification>;
12423
12787
  //#endregion
12424
- export { AERODROME_PROTOCOLS, ALGEBRA_INTEGRAL_PROTOCOLS, ALGEBRA_INTEGRAL_V_2_0_PROTOCOLS, ALGEBRA_LIFECYCLE_DEPLOYMENTS, ALGEBRA_PROTOCOLS, AMMConfigType, AMMType, API_URLS, AlgebgraHookBeacons, AlgebraInitialPrice, AlgebraIntegral21QuoteParams, AlgebraLifecycleAdapter, AlgebraLifecycleDeployment, AlgebraLifecycleProvenance, AlgebraLifecycleVariant, AlgebraPoolActionSimulation, AlgebraPoolActionVerification, AlgebraPoolIdentity, AlgebraPoolKey, AlgebraPoolKeyInput, AlgebraPoolSnapshot, AlgebraPreflightSummary, AlgebraQuoteParams, AlgebraReceiptEvidence, AlgebraVaultDetails, ApiPageInfo, ApiVaultFilter, AprFilter, AprResponse, BaseQuoteParams, BaseVaultDetails, BlackholeAprDetailedParams, BlackholeAprDetailedResponse, BlackholeSnapshotAnalysis, BuildAlgebraCreatePoolTransactionParams, BuildAlgebraInitializePoolTransactionParams, BuildV3CreateAndInitializeTransactionParams, BuildV3CreatePoolTransactionParams, BuildV3InitializePoolTransactionParams, BuildV4InitializePoolTransactionParams, CURRENT_V4_LIFECYCLE_DEPLOYMENTS, CalculateLimitPriceParams, CalculateSwapAmountParams, CanonicalCurrencyInitialPrice, CanonicalCurrencyPair, CanonicalErc20Pair, CanonicalInitialPrice, Chain, ChainId, ClaimProofEdge, ClaimProofNode, ClaimProofsPageInfo, ClaimProofsResponse, ClaimRewardEdge, ClaimRewardNode, ClaimRewardParams, ClaimRewardsConnection, ClaimRewardsParams, Contract, ContractAddresses, ContractName, DIRECTIONAL_ALGEBRA_PROTOCOLS, DefaultFeeManagerConfigParams, DeprecationData, EncodedEvmTransaction, EstimateLpTokensParams, ExactCurrencyPrice, ExactFraction, ExactPrice, FEE_MANAGER_ABI, Fee, FeeManagerClient, FeeManagerConfigParams, FeeWithdrawalParams, FormattedRoute, GetRewardParams, GetSupportedChainsOptions, GetVaultExecutionContextParams, GlobalStateABI, type GraphQLPoolData, type GraphQLTokenData, InspectAlgebraCustomPoolEntryPointParams, InspectAlgebraPoolParams, InspectV3PoolParams, InspectV4PoolParams, LimitPoolState, LpPriceResponse, LpTokenEstimationResponse, MAX_SQRT_RATIO, MIN_SQRT_RATIO, MultiPositionManagers, MultiVaultFeeWithdrawalParams, MultipleFeeWithdrawalParams, NetworkConfig, NetworkData, Networks, POOLSHARK_PROTOCOLS, POOL_LIFECYCLE_DEPLOYMENTS, PREPARED_POOL_ACTION_SERIALIZATION_VERSION, PageInfo, PendingRewardsParams, PendingRewardsResponse, PoolActionOutcome, PoolActionSimulation, PoolActionVerification, PoolClient, PoolData, PoolEdge, PoolFilter, PoolLifecycleDeploymentRegistry, PoolLifecycleDeploymentResult, PoolLifecycleError, PoolLifecycleErrorCode, PoolNode, PoolSharkGlobalState, PoolSlot0, PoolsConnection, PoolsharkStructs, PrepareAlgebraPoolResult, PrepareV3CreateAndInitializeParams, PrepareV3CreateAndInitializeResult, PrepareV3CreatePoolParams, PrepareV3CreatePoolResult, PrepareV3InitializePoolParams, PrepareV3InitializePoolResult, PrepareV4InitializeParams, PrepareV4InitializeResult, PreparedAlgebraCreatePoolAction, PreparedAlgebraInitializePoolAction, PreparedAlgebraPoolAction, PreparedPoolAction, PreparedV3CreateAndInitializeAction, PreparedV3CreatePoolAction, PreparedV3InitializePoolAction, PreparedV3PoolAction, PreparedV4InitializePoolAction, PreparedV4PoolAction, Protocol, ProtocolContractAddresses, ProtocolDetails, ProtocolInfo, QuickSwapQuoterV2, QuoteParams, QuoterFunctionArgs, QuoterV2ABI, QuoterV2AlgebgraIntegral, QuoterV2AlgebgraIntegral21, QuoterV2Factory, QuoterV2Shadow, QuoterV2Thick, ResolvePoolLifecycleDeploymentParams, ResolveV3LifecycleDeploymentParams, ResolveV4LifecycleDeploymentParams, Reward, RewardBalance, RewardSummary, RouteShortcut, SHADOW_PROTOCOLS, ShadowQuoteParams, SimulateAlgebraPoolActionParams, SimulateSwapParams, SimulateV3PoolActionParams, SimulateV4PoolActionParams, SingleAssetDepositClient, SingleAssetDepositParams, SingleAssetDepositPreview, Slot0, SmartRewarderContract, SmartRewards, StabilityVaultInfo, StakeParams, Staking, StakingClient, StakingPool, StakingPoolFilter, StakingProtocol, SteerClient, SteerConfig, SteerResponse, SteerSupportedChains, StrykePositionManagers, SubgraphClient, SubgraphResponse, SubgraphVaultClient, SubgraphVaultDetails, SubgraphVaultDetailsWithLpData, SubgraphVaultPosition, SupportedChain, SupportedChainFeatures, SupportedChainsFeature, SupportedChainsInclude, SupportedPoolLifecycleDeployment, SupportedProtocol, SwapAmountResponse, SwapSimulationResponse, TEST_UNISWAP_JIT_HOOK_BEACON, ThickQuoteParams, Token0, Token1, TokenData, TokenEdge, TokenFilter, TokenNode, TokenValueParams, TokenValueResponse, TokensConnection, UNISWAP_V4_BEACON_NAMES, UNISWAP_V4_HOOK_BEACON_NAMES, UNISWAP_V4_NO_ORACLE_BEACON, UniswapHookBeacons, UniswapQuoteParams, UniswapV3PoolABI, UniswapV3QuoterABI, UniswapV4Beacons, UnsupportedPoolLifecycleDeployment, V3AbsentPoolSnapshot, V3AbsentPreflightSummary, V3AtomicLifecycleDeployment, V3CreateExpectation, V3CreatePoolIdentity, V3ExistingPoolIdentity, V3ExistingPoolSnapshot, V3FactoryLifecycleDeployment, V3InitialPrice, V3InitializeExpectation, V3InitializedPoolSnapshot, V3InitializedPreflightSummary, V3LifecycleDeployment, V3LifecycleDeploymentProvenance, V3PoolActionKind, V3PoolActionSimulation, V3PoolActionVerification, V3PoolCreatedEvidence, V3PoolIdentity, V3PoolInitializedEvidence, V3PoolKey, V3PoolKeyInput, V3PoolSnapshot, V3PoolStatus, V3PreflightSummary, V3ReceiptEvidence, V3UninitializedPoolSnapshot, V3UninitializedPreflightSummary, V3_CONFIG_PROTOCOLS, V3_LIFECYCLE_DEPLOYMENTS, V4InitialPrice, V4InitializeEvidence, V4InitializeExpectation, V4InitializedPoolSnapshot, V4LifecycleDeployment, V4LifecycleDeploymentByIdRegistry, V4LifecycleDeploymentId, V4LifecycleDeploymentProvenance, V4PoolActionSimulation, V4PoolActionVerification, V4PoolIdentity, V4PoolKey, V4PoolKeyInput, V4PoolSnapshot, V4ReceiptEvidence, V4UninitializedPoolSnapshot, V4UninitializedPreflightSummary, 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, VaultAllowanceParams, VaultApproveParams, VaultApr, VaultBalanceParams, VaultClient, VaultDetails, VaultDetailsResponse, VaultEdge, VaultExecutionContext, VaultExecutionDataProvenance, VaultExecutionPoolFamily, VaultExecutionPoolKey, VaultExecutionPosition, VaultFetchOptions, VaultFilter, VaultNode, VaultTokens, VaultsConnection, VerifyAlgebraPoolActionParams, VerifyV3PoolActionParams, VerifyV4PoolActionParams, WithdrawParams, abis, algebraCustomPoolEntryPointAbi, algebraDirectionalPoolStateAbi, algebraIntegralPairFactoryAbi, algebraIntegralPluginDataFactoryAbi, algebraIntegralPoolStateAbi, algebraLegacyPoolStateAbi, algebraPairFactoryAbi, algebraPoolBaseAbi, apechainAddresses, arbitrumAddresses, arbitrumgoerliAddresses, arthswapConfig, assertAlgebraInitialPrice, assertPreparedV3PoolAction, assertPreparedV4PoolAction, assertV3InitialPrice, assertV4InitialPrice, astarAddresses, astarzkevmAddresses, avalancheAddresses, bartiotestAddresses, baseAddresses, baseSwapConfig, basexConfig, beraAddresses, bittensorAddresses, bittensorUniV3Config, blastAddresses, bscAddresses, buildAlgebraCreatePoolTransaction, buildAlgebraInitializePoolTransaction, buildV3CreateAndInitializeTransaction, buildV3CreatePoolTransaction, buildV3InitializePoolTransaction, buildV4InitializePoolTransaction, calculateLimitPrice, calculateSwapAmount, camelotConfig, canonicalizeAlgebraPoolKey, canonicalizeV3PoolKey, canonicalizeV4PoolKey, celoAddresses, chainIdToName, chainNameToId, crustConfig, decodeAlgebraPoolActionReceipt, decodeV3PoolActionReceipt, decodeV4PoolActionReceipt, deprecatedBundlesURL, 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, 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, prepareAlgebraPool, prepareV3CreateAndInitialize, prepareV3CreatePool, prepareV3InitializePool, prepareV4Initialize, quickSwapAlgebraConfig, quickSwapConfig, quickSwapIntegralConfig, quickSwapUniv3Config, resolveAlgebraLifecycleDeployment, resolveCurrentV4LifecycleDeployment, resolvePoolLifecycleDeployment, resolveV3LifecycleDeployment, resolveV4LifecycleDeployment, resolveV4LifecycleDeploymentById, retroConfig, robinhoodAddresses, rootstockAddresses, sagaAddresses, scrollAddresses, seiAddresses, serializePreparedPoolAction, shadowConfig, shouldValidateUniswapV4VaultHook, 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, validateAlgebraLifecycleDeployment, validatePreparedAlgebraPoolAction, validatePreparedV3PoolAction, validatePreparedV4PoolAction, validateQuoteParams, validateSqrtPriceX96, validateSwapParams, validateV4LifecycleDeployment, validateV4PoolKey, verifyAlgebraPoolAction, verifyV3PoolAction, verifyV4PoolAction, xlayerAddresses, zetaAddresses, zircuitAddresses };
12788
+ export { AERODROME_PROTOCOLS, AERODROME_SLIPSTREAM_LIFECYCLE_DEPLOYMENTS, ALGEBRA_INTEGRAL_PROTOCOLS, ALGEBRA_INTEGRAL_V_2_0_PROTOCOLS, ALGEBRA_LIFECYCLE_DEPLOYMENTS, ALGEBRA_PROTOCOLS, AMMConfigType, AMMType, API_URLS, AerodromeSlipstreamLifecycleDeployment, AerodromeSlipstreamPoolActionSimulation, AerodromeSlipstreamPoolActionVerification, AerodromeSlipstreamPoolIdentity, AerodromeSlipstreamPoolKey, AerodromeSlipstreamPoolKeyInput, AerodromeSlipstreamPoolSnapshot, AerodromeSlipstreamReceiptEvidence, AlgebgraHookBeacons, AlgebraInitialPrice, AlgebraIntegral21QuoteParams, AlgebraLifecycleAdapter, AlgebraLifecycleDeployment, AlgebraLifecycleProvenance, AlgebraLifecycleVariant, AlgebraPoolActionSimulation, AlgebraPoolActionVerification, AlgebraPoolIdentity, AlgebraPoolKey, AlgebraPoolKeyInput, AlgebraPoolSnapshot, AlgebraPreflightSummary, AlgebraQuoteParams, AlgebraReceiptEvidence, AlgebraVaultDetails, ApiPageInfo, ApiVaultFilter, AprFilter, AprResponse, BaseQuoteParams, BaseVaultDetails, BlackholeAprDetailedParams, BlackholeAprDetailedResponse, BlackholeSnapshotAnalysis, BuildAlgebraCreatePoolTransactionParams, BuildAlgebraInitializePoolTransactionParams, BuildV3CreateAndInitializeTransactionParams, BuildV3CreatePoolTransactionParams, BuildV3InitializePoolTransactionParams, BuildV4InitializePoolTransactionParams, CURRENT_V4_LIFECYCLE_DEPLOYMENTS, CalculateLimitPriceParams, CalculateSwapAmountParams, CanonicalCurrencyInitialPrice, CanonicalCurrencyPair, CanonicalErc20Pair, CanonicalInitialPrice, Chain, ChainId, ClaimProofEdge, ClaimProofNode, ClaimProofsPageInfo, ClaimProofsResponse, ClaimRewardEdge, ClaimRewardNode, ClaimRewardParams, ClaimRewardsConnection, ClaimRewardsParams, Contract, ContractAddresses, ContractName, DIRECTIONAL_ALGEBRA_PROTOCOLS, DefaultFeeManagerConfigParams, DeprecationData, EncodedEvmTransaction, EstimateLpTokensParams, ExactCurrencyPrice, ExactFraction, ExactPrice, FEE_MANAGER_ABI, Fee, FeeManagerClient, FeeManagerConfigParams, FeeWithdrawalParams, FormattedRoute, GetRewardParams, GetSupportedChainsOptions, GetVaultExecutionContextParams, GlobalStateABI, type GraphQLPoolData, type GraphQLTokenData, InspectAlgebraCustomPoolEntryPointParams, InspectAlgebraPoolParams, InspectV3PoolParams, InspectV4PoolParams, LimitPoolState, LpPriceResponse, LpTokenEstimationResponse, MAX_SQRT_RATIO, MIN_SQRT_RATIO, MultiPositionManagers, MultiVaultFeeWithdrawalParams, MultipleFeeWithdrawalParams, NetworkConfig, NetworkData, Networks, POOLSHARK_PROTOCOLS, POOL_LIFECYCLE_DEPLOYMENTS, PREPARED_POOL_ACTION_SERIALIZATION_VERSION, PageInfo, PendingRewardsParams, PendingRewardsResponse, PoolActionOutcome, PoolActionSimulation, PoolActionVerification, PoolClient, PoolData, PoolEdge, PoolFilter, PoolLifecycleDeploymentRegistry, PoolLifecycleDeploymentResult, PoolLifecycleError, PoolLifecycleErrorCode, PoolNode, PoolSharkGlobalState, PoolSlot0, PoolsConnection, PoolsharkStructs, PrepareAlgebraPoolResult, PrepareV3CreateAndInitializeParams, PrepareV3CreateAndInitializeResult, PrepareV3CreatePoolParams, PrepareV3CreatePoolResult, PrepareV3InitializePoolParams, PrepareV3InitializePoolResult, PrepareV4InitializeParams, PrepareV4InitializeResult, PreparedAerodromeSlipstreamCreateAndInitializeAction, PreparedAlgebraCreatePoolAction, PreparedAlgebraInitializePoolAction, PreparedAlgebraPoolAction, PreparedPoolAction, PreparedV3CreateAndInitializeAction, PreparedV3CreatePoolAction, PreparedV3InitializePoolAction, PreparedV3PoolAction, PreparedV4InitializePoolAction, PreparedV4PoolAction, Protocol, ProtocolContractAddresses, ProtocolDetails, ProtocolInfo, QuickSwapQuoterV2, QuoteParams, QuoterFunctionArgs, QuoterV2ABI, QuoterV2AlgebgraIntegral, QuoterV2AlgebgraIntegral21, QuoterV2Factory, QuoterV2Shadow, QuoterV2Thick, ResolvePoolLifecycleDeploymentParams, ResolveV3LifecycleDeploymentParams, ResolveV4LifecycleDeploymentParams, Reward, RewardBalance, RewardSummary, RouteShortcut, SHADOW_PROTOCOLS, ShadowQuoteParams, SimulateAlgebraPoolActionParams, SimulateSwapParams, SimulateV3PoolActionParams, SimulateV4PoolActionParams, SingleAssetDepositClient, SingleAssetDepositParams, SingleAssetDepositPreview, Slot0, SmartRewarderContract, SmartRewards, StabilityVaultInfo, StakeParams, Staking, StakingClient, StakingPool, StakingPoolFilter, StakingProtocol, SteerClient, SteerConfig, SteerResponse, SteerSupportedChains, StrykePositionManagers, SubgraphClient, SubgraphResponse, SubgraphVaultClient, SubgraphVaultDetails, SubgraphVaultDetailsWithLpData, SubgraphVaultPosition, SupportedChain, SupportedChainFeatures, SupportedChainsFeature, SupportedChainsInclude, SupportedPoolLifecycleDeployment, SupportedProtocol, SwapAmountResponse, SwapSimulationResponse, TEST_UNISWAP_JIT_HOOK_BEACON, ThickQuoteParams, Token0, Token1, TokenData, TokenEdge, TokenFilter, TokenNode, TokenValueParams, TokenValueResponse, TokensConnection, UNISWAP_V4_BEACON_NAMES, UNISWAP_V4_HOOK_BEACON_NAMES, UNISWAP_V4_NO_ORACLE_BEACON, UniswapHookBeacons, UniswapQuoteParams, UniswapV3PoolABI, UniswapV3QuoterABI, UniswapV4Beacons, UnsupportedPoolLifecycleDeployment, V3AbsentPoolSnapshot, V3AbsentPreflightSummary, V3AtomicLifecycleDeployment, V3CreateExpectation, V3CreatePoolIdentity, V3ExistingPoolIdentity, V3ExistingPoolSnapshot, V3FactoryLifecycleDeployment, V3InitialPrice, V3InitializeExpectation, V3InitializedPoolSnapshot, V3InitializedPreflightSummary, V3LifecycleDeployment, V3LifecycleDeploymentProvenance, V3PoolActionKind, V3PoolActionSimulation, V3PoolActionVerification, V3PoolCreatedEvidence, V3PoolIdentity, V3PoolInitializedEvidence, V3PoolKey, V3PoolKeyInput, V3PoolSnapshot, V3PoolStatus, V3PreflightSummary, V3ReceiptEvidence, V3UninitializedPoolSnapshot, V3UninitializedPreflightSummary, V3_CONFIG_PROTOCOLS, V3_LIFECYCLE_DEPLOYMENTS, V4InitialPrice, V4InitializeEvidence, V4InitializeExpectation, V4InitializedPoolSnapshot, V4LifecycleDeployment, V4LifecycleDeploymentByIdRegistry, V4LifecycleDeploymentId, V4LifecycleDeploymentProvenance, V4PoolActionSimulation, V4PoolActionVerification, V4PoolIdentity, V4PoolKey, V4PoolKeyInput, V4PoolSnapshot, V4ReceiptEvidence, V4UninitializedPoolSnapshot, V4UninitializedPreflightSummary, 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, VaultAllowanceParams, VaultApproveParams, VaultApr, VaultBalanceParams, VaultClient, VaultDetails, VaultDetailsResponse, VaultEdge, VaultExecutionContext, VaultExecutionDataProvenance, VaultExecutionPoolFamily, VaultExecutionPoolKey, VaultExecutionPosition, VaultFetchOptions, VaultFilter, VaultNode, VaultTokens, VaultsConnection, VerifiedAerodromeSlipstreamPoolIdentity, VerifyAlgebraPoolActionParams, VerifyV3PoolActionParams, VerifyV4PoolActionParams, WithdrawParams, 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 };
12425
12789
  //# sourceMappingURL=index.d.mts.map