@steerprotocol/sdk 3.4.3 → 3.5.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.browser.mjs +773 -69
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.cjs +790 -68
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +360 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +773 -69
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -11107,6 +11107,58 @@ declare function resolveAlgebraLifecycleDeployment(params: {
|
|
|
11107
11107
|
/** Validate external capability metadata and return its canonical frozen entry. */
|
|
11108
11108
|
declare function validateAlgebraLifecycleDeployment(value: unknown): AlgebraLifecycleDeployment;
|
|
11109
11109
|
//#endregion
|
|
11110
|
+
//#region src/pool-lifecycle/capabilities/aerodrome-slipstream.d.ts
|
|
11111
|
+
interface AerodromeSlipstreamLifecycleDeployment {
|
|
11112
|
+
readonly supported: true;
|
|
11113
|
+
readonly schemaVersion: 1;
|
|
11114
|
+
readonly chainId: number;
|
|
11115
|
+
readonly protocol: SupportedProtocol;
|
|
11116
|
+
readonly family: 'aerodrome-slipstream';
|
|
11117
|
+
readonly adapter: 'aerodrome-slipstream-factory-v1';
|
|
11118
|
+
readonly version: 1;
|
|
11119
|
+
readonly generation: 1 | 2 | 3;
|
|
11120
|
+
/** Only this generation may create new pools through the public lifecycle API. */
|
|
11121
|
+
readonly latest: boolean;
|
|
11122
|
+
readonly factory: Address;
|
|
11123
|
+
readonly factoryRuntimeCodeHash: Hex;
|
|
11124
|
+
readonly poolImplementation: Address;
|
|
11125
|
+
readonly poolImplementationRuntimeCodeHash: Hex;
|
|
11126
|
+
readonly poolProxyRuntimeCodeHash: Hex;
|
|
11127
|
+
readonly factoryRegistry: Address;
|
|
11128
|
+
readonly voter: Address;
|
|
11129
|
+
/** V2 and V3 retain this immutable duplicate guard against the original factory. */
|
|
11130
|
+
readonly legacyCLFactory: Address | null;
|
|
11131
|
+
readonly sourceVerification: Readonly<{
|
|
11132
|
+
readonly sourceRevision: `0x${string}`;
|
|
11133
|
+
readonly compilerVersion: '0.7.6+commit.7338295f';
|
|
11134
|
+
readonly optimizer: Readonly<{
|
|
11135
|
+
readonly enabled: true;
|
|
11136
|
+
readonly runs: 200;
|
|
11137
|
+
}>;
|
|
11138
|
+
readonly executableRuntimeMatch: true;
|
|
11139
|
+
readonly immutableAnchors: Readonly<{
|
|
11140
|
+
readonly factoryRegistry: Address;
|
|
11141
|
+
readonly voter: Address;
|
|
11142
|
+
readonly poolImplementation: Address;
|
|
11143
|
+
readonly legacyCLFactory: Address | null;
|
|
11144
|
+
}>;
|
|
11145
|
+
}>;
|
|
11146
|
+
readonly provenance: Readonly<{
|
|
11147
|
+
source: 'official-deployment';
|
|
11148
|
+
urls: readonly [`https://${string}`, ...`https://${string}`[]];
|
|
11149
|
+
}>;
|
|
11150
|
+
}
|
|
11151
|
+
declare const AERODROME_SLIPSTREAM_LIFECYCLE_DEPLOYMENTS: readonly [AerodromeSlipstreamLifecycleDeployment, AerodromeSlipstreamLifecycleDeployment, AerodromeSlipstreamLifecycleDeployment];
|
|
11152
|
+
declare function resolveAerodromeSlipstreamLifecycleDeployment(params: {
|
|
11153
|
+
readonly chainId: number;
|
|
11154
|
+
readonly protocol: SupportedProtocol;
|
|
11155
|
+
}): AerodromeSlipstreamLifecycleDeployment | undefined;
|
|
11156
|
+
/** Resolve the only factory generation that is eligible for a new pool deployment. */
|
|
11157
|
+
declare function resolveLatestAerodromeSlipstreamLifecycleDeployment(chainId: number): AerodromeSlipstreamLifecycleDeployment | undefined;
|
|
11158
|
+
declare function assertLatestAerodromeSlipstreamLifecycleDeployment(value: AerodromeSlipstreamLifecycleDeployment): AerodromeSlipstreamLifecycleDeployment;
|
|
11159
|
+
/** Reject mutable or forged deployment metadata at every public boundary. */
|
|
11160
|
+
declare function validateAerodromeSlipstreamLifecycleDeployment(value: unknown): AerodromeSlipstreamLifecycleDeployment;
|
|
11161
|
+
//#endregion
|
|
11110
11162
|
//#region src/pool-lifecycle/capabilities/v3.d.ts
|
|
11111
11163
|
type V3LifecycleDeploymentProvenance = {
|
|
11112
11164
|
readonly source: 'sdk-config' | 'official-deployment' | 'verified-explorer';
|
|
@@ -11150,7 +11202,7 @@ declare const V3_CONFIG_PROTOCOLS: readonly SupportedProtocol[];
|
|
|
11150
11202
|
declare function resolveV3LifecycleDeployment(params: ResolveV3LifecycleDeploymentParams): V3LifecycleDeployment | undefined;
|
|
11151
11203
|
//#endregion
|
|
11152
11204
|
//#region src/pool-lifecycle/capabilities.d.ts
|
|
11153
|
-
type SupportedPoolLifecycleDeployment = V3LifecycleDeployment | V4LifecycleDeployment | AlgebraLifecycleDeployment;
|
|
11205
|
+
type SupportedPoolLifecycleDeployment = V3LifecycleDeployment | V4LifecycleDeployment | AlgebraLifecycleDeployment | AerodromeSlipstreamLifecycleDeployment;
|
|
11154
11206
|
type UnsupportedPoolLifecycleDeployment = {
|
|
11155
11207
|
readonly supported: false;
|
|
11156
11208
|
readonly schemaVersion: 1;
|
|
@@ -11610,6 +11662,191 @@ declare const algebraCustomPoolEntryPointAbi: readonly [{
|
|
|
11610
11662
|
}];
|
|
11611
11663
|
}];
|
|
11612
11664
|
//#endregion
|
|
11665
|
+
//#region src/pool-lifecycle/abis/aerodrome-slipstream.d.ts
|
|
11666
|
+
/** Exact Base Aerodrome Slipstream CLFactory lifecycle surface. */
|
|
11667
|
+
declare const aerodromeSlipstreamFactoryAbi: readonly [{
|
|
11668
|
+
readonly name: "PoolCreated";
|
|
11669
|
+
readonly type: "event";
|
|
11670
|
+
readonly inputs: readonly [{
|
|
11671
|
+
readonly type: "address";
|
|
11672
|
+
readonly name: "token0";
|
|
11673
|
+
readonly indexed: true;
|
|
11674
|
+
}, {
|
|
11675
|
+
readonly type: "address";
|
|
11676
|
+
readonly name: "token1";
|
|
11677
|
+
readonly indexed: true;
|
|
11678
|
+
}, {
|
|
11679
|
+
readonly type: "int24";
|
|
11680
|
+
readonly name: "tickSpacing";
|
|
11681
|
+
readonly indexed: true;
|
|
11682
|
+
}, {
|
|
11683
|
+
readonly type: "address";
|
|
11684
|
+
readonly name: "pool";
|
|
11685
|
+
}];
|
|
11686
|
+
}, {
|
|
11687
|
+
readonly name: "getPool";
|
|
11688
|
+
readonly type: "function";
|
|
11689
|
+
readonly stateMutability: "view";
|
|
11690
|
+
readonly inputs: readonly [{
|
|
11691
|
+
readonly type: "address";
|
|
11692
|
+
readonly name: "tokenA";
|
|
11693
|
+
}, {
|
|
11694
|
+
readonly type: "address";
|
|
11695
|
+
readonly name: "tokenB";
|
|
11696
|
+
}, {
|
|
11697
|
+
readonly type: "int24";
|
|
11698
|
+
readonly name: "tickSpacing";
|
|
11699
|
+
}];
|
|
11700
|
+
readonly outputs: readonly [{
|
|
11701
|
+
readonly type: "address";
|
|
11702
|
+
readonly name: "pool";
|
|
11703
|
+
}];
|
|
11704
|
+
}, {
|
|
11705
|
+
readonly name: "tickSpacingToFee";
|
|
11706
|
+
readonly type: "function";
|
|
11707
|
+
readonly stateMutability: "view";
|
|
11708
|
+
readonly inputs: readonly [{
|
|
11709
|
+
readonly type: "int24";
|
|
11710
|
+
readonly name: "tickSpacing";
|
|
11711
|
+
}];
|
|
11712
|
+
readonly outputs: readonly [{
|
|
11713
|
+
readonly type: "uint24";
|
|
11714
|
+
readonly name: "fee";
|
|
11715
|
+
}];
|
|
11716
|
+
}, {
|
|
11717
|
+
readonly name: "poolImplementation";
|
|
11718
|
+
readonly type: "function";
|
|
11719
|
+
readonly stateMutability: "view";
|
|
11720
|
+
readonly inputs: readonly [];
|
|
11721
|
+
readonly outputs: readonly [{
|
|
11722
|
+
readonly type: "address";
|
|
11723
|
+
}];
|
|
11724
|
+
}, {
|
|
11725
|
+
readonly name: "factoryRegistry";
|
|
11726
|
+
readonly type: "function";
|
|
11727
|
+
readonly stateMutability: "view";
|
|
11728
|
+
readonly inputs: readonly [];
|
|
11729
|
+
readonly outputs: readonly [{
|
|
11730
|
+
readonly type: "address";
|
|
11731
|
+
}];
|
|
11732
|
+
}, {
|
|
11733
|
+
readonly name: "voter";
|
|
11734
|
+
readonly type: "function";
|
|
11735
|
+
readonly stateMutability: "view";
|
|
11736
|
+
readonly inputs: readonly [];
|
|
11737
|
+
readonly outputs: readonly [{
|
|
11738
|
+
readonly type: "address";
|
|
11739
|
+
}];
|
|
11740
|
+
}, {
|
|
11741
|
+
readonly name: "legacyCLFactory";
|
|
11742
|
+
readonly type: "function";
|
|
11743
|
+
readonly stateMutability: "view";
|
|
11744
|
+
readonly inputs: readonly [];
|
|
11745
|
+
readonly outputs: readonly [{
|
|
11746
|
+
readonly type: "address";
|
|
11747
|
+
}];
|
|
11748
|
+
}, {
|
|
11749
|
+
readonly name: "isPool";
|
|
11750
|
+
readonly type: "function";
|
|
11751
|
+
readonly stateMutability: "view";
|
|
11752
|
+
readonly inputs: readonly [{
|
|
11753
|
+
readonly type: "address";
|
|
11754
|
+
readonly name: "pool";
|
|
11755
|
+
}];
|
|
11756
|
+
readonly outputs: readonly [{
|
|
11757
|
+
readonly type: "bool";
|
|
11758
|
+
}];
|
|
11759
|
+
}, {
|
|
11760
|
+
readonly name: "createPool";
|
|
11761
|
+
readonly type: "function";
|
|
11762
|
+
readonly stateMutability: "nonpayable";
|
|
11763
|
+
readonly inputs: readonly [{
|
|
11764
|
+
readonly type: "address";
|
|
11765
|
+
readonly name: "tokenA";
|
|
11766
|
+
}, {
|
|
11767
|
+
readonly type: "address";
|
|
11768
|
+
readonly name: "tokenB";
|
|
11769
|
+
}, {
|
|
11770
|
+
readonly type: "int24";
|
|
11771
|
+
readonly name: "tickSpacing";
|
|
11772
|
+
}, {
|
|
11773
|
+
readonly type: "uint160";
|
|
11774
|
+
readonly name: "sqrtPriceX96";
|
|
11775
|
+
}];
|
|
11776
|
+
readonly outputs: readonly [{
|
|
11777
|
+
readonly type: "address";
|
|
11778
|
+
readonly name: "pool";
|
|
11779
|
+
}];
|
|
11780
|
+
}];
|
|
11781
|
+
/** Exact Aerodrome Slipstream CLPool lifecycle read and event surface. */
|
|
11782
|
+
declare const aerodromeSlipstreamPoolAbi: readonly [{
|
|
11783
|
+
readonly name: "Initialize";
|
|
11784
|
+
readonly type: "event";
|
|
11785
|
+
readonly inputs: readonly [{
|
|
11786
|
+
readonly type: "uint160";
|
|
11787
|
+
readonly name: "sqrtPriceX96";
|
|
11788
|
+
}, {
|
|
11789
|
+
readonly type: "int24";
|
|
11790
|
+
readonly name: "tick";
|
|
11791
|
+
}];
|
|
11792
|
+
}, {
|
|
11793
|
+
readonly name: "factory";
|
|
11794
|
+
readonly type: "function";
|
|
11795
|
+
readonly stateMutability: "view";
|
|
11796
|
+
readonly inputs: readonly [];
|
|
11797
|
+
readonly outputs: readonly [{
|
|
11798
|
+
readonly type: "address";
|
|
11799
|
+
}];
|
|
11800
|
+
}, {
|
|
11801
|
+
readonly name: "token0";
|
|
11802
|
+
readonly type: "function";
|
|
11803
|
+
readonly stateMutability: "view";
|
|
11804
|
+
readonly inputs: readonly [];
|
|
11805
|
+
readonly outputs: readonly [{
|
|
11806
|
+
readonly type: "address";
|
|
11807
|
+
}];
|
|
11808
|
+
}, {
|
|
11809
|
+
readonly name: "token1";
|
|
11810
|
+
readonly type: "function";
|
|
11811
|
+
readonly stateMutability: "view";
|
|
11812
|
+
readonly inputs: readonly [];
|
|
11813
|
+
readonly outputs: readonly [{
|
|
11814
|
+
readonly type: "address";
|
|
11815
|
+
}];
|
|
11816
|
+
}, {
|
|
11817
|
+
readonly name: "tickSpacing";
|
|
11818
|
+
readonly type: "function";
|
|
11819
|
+
readonly stateMutability: "view";
|
|
11820
|
+
readonly inputs: readonly [];
|
|
11821
|
+
readonly outputs: readonly [{
|
|
11822
|
+
readonly type: "int24";
|
|
11823
|
+
}];
|
|
11824
|
+
}, {
|
|
11825
|
+
readonly name: "slot0";
|
|
11826
|
+
readonly type: "function";
|
|
11827
|
+
readonly stateMutability: "view";
|
|
11828
|
+
readonly inputs: readonly [];
|
|
11829
|
+
readonly outputs: readonly [{
|
|
11830
|
+
readonly type: "uint160";
|
|
11831
|
+
readonly name: "sqrtPriceX96";
|
|
11832
|
+
}, {
|
|
11833
|
+
readonly type: "int24";
|
|
11834
|
+
readonly name: "tick";
|
|
11835
|
+
}, {
|
|
11836
|
+
readonly type: "uint16";
|
|
11837
|
+
readonly name: "observationIndex";
|
|
11838
|
+
}, {
|
|
11839
|
+
readonly type: "uint16";
|
|
11840
|
+
readonly name: "observationCardinality";
|
|
11841
|
+
}, {
|
|
11842
|
+
readonly type: "uint16";
|
|
11843
|
+
readonly name: "observationCardinalityNext";
|
|
11844
|
+
}, {
|
|
11845
|
+
readonly type: "bool";
|
|
11846
|
+
readonly name: "unlocked";
|
|
11847
|
+
}];
|
|
11848
|
+
}];
|
|
11849
|
+
//#endregion
|
|
11613
11850
|
//#region src/pool-lifecycle/abis/v3.d.ts
|
|
11614
11851
|
/** Minimal canonical Uniswap V3-compatible factory ABI used by pool lifecycle flows. */
|
|
11615
11852
|
declare const v3FactoryAbi: readonly [{
|
|
@@ -12068,6 +12305,127 @@ interface VerifyAlgebraPoolActionParams {
|
|
|
12068
12305
|
declare function decodeAlgebraPoolActionReceipt(action: PreparedAlgebraPoolAction, receipt: TransactionReceipt): AlgebraReceiptEvidence;
|
|
12069
12306
|
declare function verifyAlgebraPoolAction(params: VerifyAlgebraPoolActionParams): Promise<AlgebraPoolActionVerification>;
|
|
12070
12307
|
//#endregion
|
|
12308
|
+
//#region src/pool-lifecycle/aerodrome-slipstream/key.d.ts
|
|
12309
|
+
interface AerodromeSlipstreamPoolKeyInput {
|
|
12310
|
+
readonly tokenA: Address;
|
|
12311
|
+
readonly tokenB: Address;
|
|
12312
|
+
readonly tickSpacing: number;
|
|
12313
|
+
}
|
|
12314
|
+
interface AerodromeSlipstreamPoolKey {
|
|
12315
|
+
readonly token0: Address;
|
|
12316
|
+
readonly token1: Address;
|
|
12317
|
+
readonly tickSpacing: number;
|
|
12318
|
+
}
|
|
12319
|
+
declare function canonicalizeAerodromeSlipstreamPoolKey(key: AerodromeSlipstreamPoolKeyInput): AerodromeSlipstreamPoolKey;
|
|
12320
|
+
declare function assertAerodromeSlipstreamInitialPrice(value: bigint): bigint;
|
|
12321
|
+
//#endregion
|
|
12322
|
+
//#region src/pool-lifecycle/aerodrome-slipstream/types.d.ts
|
|
12323
|
+
interface AerodromeSlipstreamPoolSnapshot {
|
|
12324
|
+
readonly schemaVersion: 1;
|
|
12325
|
+
readonly blockNumber: bigint;
|
|
12326
|
+
readonly deployment: AerodromeSlipstreamLifecycleDeployment;
|
|
12327
|
+
readonly key: AerodromeSlipstreamPoolKey;
|
|
12328
|
+
readonly enabledFee: number;
|
|
12329
|
+
readonly status: 'absent' | 'initialized';
|
|
12330
|
+
readonly poolAddress: Address | null;
|
|
12331
|
+
readonly sqrtPriceX96: bigint;
|
|
12332
|
+
readonly tick: number | null;
|
|
12333
|
+
}
|
|
12334
|
+
interface AerodromeSlipstreamPoolIdentity {
|
|
12335
|
+
readonly family: 'aerodrome-slipstream';
|
|
12336
|
+
readonly adapter: 'aerodrome-slipstream-factory-v1';
|
|
12337
|
+
readonly version: 1;
|
|
12338
|
+
readonly chainId: number;
|
|
12339
|
+
readonly factory: Address;
|
|
12340
|
+
readonly key: AerodromeSlipstreamPoolKey;
|
|
12341
|
+
readonly poolAddress: null;
|
|
12342
|
+
}
|
|
12343
|
+
type VerifiedAerodromeSlipstreamPoolIdentity = Omit<AerodromeSlipstreamPoolIdentity, 'poolAddress'> & {
|
|
12344
|
+
readonly poolAddress: Address | null;
|
|
12345
|
+
};
|
|
12346
|
+
type PreparedAerodromeSlipstreamCreateAndInitializeAction = PreparedPoolAction<'aerodrome-slipstream-create-and-initialize', AerodromeSlipstreamPoolIdentity, {
|
|
12347
|
+
readonly sqrtPriceX96: bigint;
|
|
12348
|
+
}, {
|
|
12349
|
+
readonly blockNumber: bigint;
|
|
12350
|
+
readonly status: 'absent';
|
|
12351
|
+
readonly poolAddress: null;
|
|
12352
|
+
}>;
|
|
12353
|
+
type AerodromeSlipstreamPoolActionSimulation = PoolActionSimulation & {
|
|
12354
|
+
readonly returnedPoolAddress: Address;
|
|
12355
|
+
};
|
|
12356
|
+
interface AerodromeSlipstreamReceiptEvidence {
|
|
12357
|
+
readonly receiptStatus: 'success' | 'reverted';
|
|
12358
|
+
readonly poolCreated: Readonly<{
|
|
12359
|
+
poolAddress: Address;
|
|
12360
|
+
logIndex: number;
|
|
12361
|
+
}> | null;
|
|
12362
|
+
readonly initialization: Readonly<{
|
|
12363
|
+
poolAddress: Address;
|
|
12364
|
+
sqrtPriceX96: bigint;
|
|
12365
|
+
tick: number;
|
|
12366
|
+
logIndex: number;
|
|
12367
|
+
}> | null;
|
|
12368
|
+
}
|
|
12369
|
+
type AerodromeSlipstreamPoolActionVerification = PoolActionVerification<VerifiedAerodromeSlipstreamPoolIdentity, AerodromeSlipstreamPoolSnapshot, AerodromeSlipstreamReceiptEvidence>;
|
|
12370
|
+
/** Re-derive all trusted calldata after a plan crosses a JSON boundary. */
|
|
12371
|
+
declare function validatePreparedAerodromeSlipstreamPoolAction(value: unknown): AerodromeSlipstreamLifecycleDeployment;
|
|
12372
|
+
declare function deserializePreparedAerodromeSlipstreamPoolAction(serialized: string): PreparedAerodromeSlipstreamCreateAndInitializeAction;
|
|
12373
|
+
//#endregion
|
|
12374
|
+
//#region src/pool-lifecycle/aerodrome-slipstream/inspect.d.ts
|
|
12375
|
+
declare function inspectAerodromeSlipstreamPool(params: {
|
|
12376
|
+
readonly publicClient: PublicClient;
|
|
12377
|
+
readonly deployment: AerodromeSlipstreamLifecycleDeployment;
|
|
12378
|
+
readonly key: AerodromeSlipstreamPoolKeyInput;
|
|
12379
|
+
readonly blockNumber?: bigint;
|
|
12380
|
+
}): Promise<AerodromeSlipstreamPoolSnapshot>;
|
|
12381
|
+
//#endregion
|
|
12382
|
+
//#region src/pool-lifecycle/aerodrome-slipstream/actions.d.ts
|
|
12383
|
+
declare function buildAerodromeSlipstreamCreateAndInitializeTransaction(params: {
|
|
12384
|
+
readonly deployment: AerodromeSlipstreamLifecycleDeployment;
|
|
12385
|
+
readonly key: AerodromeSlipstreamPoolKeyInput;
|
|
12386
|
+
readonly initialPrice: bigint;
|
|
12387
|
+
readonly preflight: AerodromeSlipstreamPoolSnapshot;
|
|
12388
|
+
}): PreparedAerodromeSlipstreamCreateAndInitializeAction;
|
|
12389
|
+
declare function prepareAerodromeSlipstreamPool(params: {
|
|
12390
|
+
readonly publicClient: PublicClient;
|
|
12391
|
+
readonly deployment: AerodromeSlipstreamLifecycleDeployment;
|
|
12392
|
+
readonly key: AerodromeSlipstreamPoolKeyInput;
|
|
12393
|
+
readonly initialPrice: bigint;
|
|
12394
|
+
readonly blockNumber?: bigint;
|
|
12395
|
+
}): Promise<{
|
|
12396
|
+
readonly status: 'ready';
|
|
12397
|
+
readonly snapshot: AerodromeSlipstreamPoolSnapshot;
|
|
12398
|
+
readonly action: PreparedAerodromeSlipstreamCreateAndInitializeAction;
|
|
12399
|
+
} | {
|
|
12400
|
+
readonly status: 'already-initialized-matching';
|
|
12401
|
+
readonly snapshot: AerodromeSlipstreamPoolSnapshot;
|
|
12402
|
+
readonly action: null;
|
|
12403
|
+
}>;
|
|
12404
|
+
/** Prepare a new pool only through the newest verified factory in this family. */
|
|
12405
|
+
declare function prepareLatestAerodromeSlipstreamPool(params: {
|
|
12406
|
+
readonly publicClient: PublicClient;
|
|
12407
|
+
readonly chainId: number;
|
|
12408
|
+
readonly key: AerodromeSlipstreamPoolKeyInput;
|
|
12409
|
+
readonly initialPrice: bigint;
|
|
12410
|
+
readonly blockNumber?: bigint;
|
|
12411
|
+
}): ReturnType<typeof prepareAerodromeSlipstreamPool>;
|
|
12412
|
+
//#endregion
|
|
12413
|
+
//#region src/pool-lifecycle/aerodrome-slipstream/simulate.d.ts
|
|
12414
|
+
declare function simulateAerodromeSlipstreamPoolAction(params: {
|
|
12415
|
+
readonly publicClient: PublicClient;
|
|
12416
|
+
readonly account: Address;
|
|
12417
|
+
readonly action: PreparedAerodromeSlipstreamCreateAndInitializeAction;
|
|
12418
|
+
readonly blockNumber?: bigint;
|
|
12419
|
+
}): Promise<AerodromeSlipstreamPoolActionSimulation>;
|
|
12420
|
+
//#endregion
|
|
12421
|
+
//#region src/pool-lifecycle/aerodrome-slipstream/verify.d.ts
|
|
12422
|
+
declare function decodeAerodromeSlipstreamPoolActionReceipt(action: PreparedAerodromeSlipstreamCreateAndInitializeAction, receipt: TransactionReceipt): AerodromeSlipstreamReceiptEvidence;
|
|
12423
|
+
declare function verifyAerodromeSlipstreamPoolAction(params: {
|
|
12424
|
+
readonly publicClient: PublicClient;
|
|
12425
|
+
readonly action: PreparedAerodromeSlipstreamCreateAndInitializeAction;
|
|
12426
|
+
readonly receipt: TransactionReceipt;
|
|
12427
|
+
}): Promise<AerodromeSlipstreamPoolActionVerification>;
|
|
12428
|
+
//#endregion
|
|
12071
12429
|
//#region src/pool-lifecycle/v3/types.d.ts
|
|
12072
12430
|
interface V3PoolKeyInput {
|
|
12073
12431
|
readonly tokenA: Address;
|
|
@@ -12421,5 +12779,5 @@ declare function decodeV4PoolActionReceipt(action: PreparedV4PoolAction, receipt
|
|
|
12421
12779
|
/** Verify exact calldata, canonical receipt/event, and receipt-block StateView state. */
|
|
12422
12780
|
declare function verifyV4PoolAction(params: VerifyV4PoolActionParams): Promise<V4PoolActionVerification>;
|
|
12423
12781
|
//#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 };
|
|
12782
|
+
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
12783
|
//# sourceMappingURL=index.d.mts.map
|