@steerprotocol/sdk 3.0.6 → 3.0.8
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 +108 -11
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.cjs +109 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +110 -95
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +108 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -162,7 +162,8 @@ declare enum Chain {
|
|
|
162
162
|
Ronin = "Ronin",
|
|
163
163
|
Saga = "Saga",
|
|
164
164
|
Nibiru = "Nibiru",
|
|
165
|
-
Hyperevm = "Hyperevm"
|
|
165
|
+
Hyperevm = "Hyperevm",
|
|
166
|
+
Bittensor = "Bittensor"
|
|
166
167
|
}
|
|
167
168
|
declare const ChainId: { [key in Chain]: number };
|
|
168
169
|
declare enum Protocol {
|
|
@@ -227,7 +228,9 @@ declare enum Protocol {
|
|
|
227
228
|
Nest = "Nest",
|
|
228
229
|
Cypher = "Cypher",
|
|
229
230
|
SparkIntegral = "SparkIntegral",
|
|
230
|
-
UniswapV4 = "UniswapV4"
|
|
231
|
+
UniswapV4 = "UniswapV4",
|
|
232
|
+
Hydrex = "Hydrex",
|
|
233
|
+
BittensorUniV3 = "BittensorUniV3"
|
|
231
234
|
}
|
|
232
235
|
declare enum StrykePositionManagers {
|
|
233
236
|
StrykeEqualizerManager = "StrykeEqualizerPositionManager",
|
|
@@ -301,7 +304,9 @@ declare enum MultiPositionManagers {
|
|
|
301
304
|
MultiPositionCypher = "MultiPositionCypher",
|
|
302
305
|
MultiPositionSushiManaged = "MultiPositionSushiManaged",
|
|
303
306
|
MultiPositionSparkIntegral = "MultiPositionSparkIntegral",
|
|
304
|
-
MultiPositionHenjinAlgebraHook = "HenjinIntegralHook"
|
|
307
|
+
MultiPositionHenjinAlgebraHook = "HenjinIntegralHook",
|
|
308
|
+
MultiPositionHydrex = "MultiPositionHydrex",
|
|
309
|
+
MultiPositionBittensorUniV3 = "MultiPositionBittensorUniV3"
|
|
305
310
|
}
|
|
306
311
|
declare const AlgebgraHookBeacons: MultiPositionManagers[];
|
|
307
312
|
declare const UniswapHookBeacons: MultiPositionManagers[];
|
|
@@ -2231,6 +2236,9 @@ declare const shadowConfig: (theGraphApiKey: string) => ProtocolInfo;
|
|
|
2231
2236
|
//#region src/const/amm/configs/protocols/nest.d.ts
|
|
2232
2237
|
declare const nestVaultConfig: () => ProtocolInfo;
|
|
2233
2238
|
//#endregion
|
|
2239
|
+
//#region src/const/amm/configs/protocols/bittensor-univ3.d.ts
|
|
2240
|
+
declare const bittensorUniV3Config: () => ProtocolInfo;
|
|
2241
|
+
//#endregion
|
|
2234
2242
|
//#region src/const/deployments/abis.d.ts
|
|
2235
2243
|
declare const abis: {
|
|
2236
2244
|
readonly BundleRegistry: readonly [{
|
|
@@ -7462,130 +7470,130 @@ declare const abis: {
|
|
|
7462
7470
|
};
|
|
7463
7471
|
//#endregion
|
|
7464
7472
|
//#region src/const/deployments/apechain.d.ts
|
|
7465
|
-
interface Contract$
|
|
7473
|
+
interface Contract$47 {
|
|
7466
7474
|
address: string;
|
|
7467
7475
|
startBlock?: number;
|
|
7468
7476
|
}
|
|
7469
|
-
declare const apechainAddresses: Record<string, Contract$
|
|
7477
|
+
declare const apechainAddresses: Record<string, Contract$47>;
|
|
7470
7478
|
//#endregion
|
|
7471
7479
|
//#region src/const/deployments/arbitrum.d.ts
|
|
7472
|
-
interface Contract$
|
|
7480
|
+
interface Contract$46 {
|
|
7473
7481
|
address: string;
|
|
7474
7482
|
startBlock?: number;
|
|
7475
7483
|
}
|
|
7476
|
-
declare const arbitrumAddresses: Record<string, Contract$
|
|
7484
|
+
declare const arbitrumAddresses: Record<string, Contract$46>;
|
|
7477
7485
|
//#endregion
|
|
7478
7486
|
//#region src/const/deployments/arbitrumgoerli.d.ts
|
|
7479
|
-
interface Contract$
|
|
7487
|
+
interface Contract$45 {
|
|
7480
7488
|
address: string;
|
|
7481
7489
|
startBlock?: number;
|
|
7482
7490
|
}
|
|
7483
|
-
declare const arbitrumgoerliAddresses: Record<string, Contract$
|
|
7491
|
+
declare const arbitrumgoerliAddresses: Record<string, Contract$45>;
|
|
7484
7492
|
//#endregion
|
|
7485
7493
|
//#region src/const/deployments/astar.d.ts
|
|
7486
|
-
interface Contract$
|
|
7494
|
+
interface Contract$44 {
|
|
7487
7495
|
address: string;
|
|
7488
7496
|
startBlock?: number;
|
|
7489
7497
|
}
|
|
7490
|
-
declare const astarAddresses: Record<string, Contract$
|
|
7498
|
+
declare const astarAddresses: Record<string, Contract$44>;
|
|
7491
7499
|
//#endregion
|
|
7492
7500
|
//#region src/const/deployments/astarzkevm.d.ts
|
|
7493
|
-
interface Contract$
|
|
7501
|
+
interface Contract$43 {
|
|
7494
7502
|
address: string;
|
|
7495
7503
|
startBlock?: number;
|
|
7496
7504
|
}
|
|
7497
|
-
declare const astarzkevmAddresses: Record<string, Contract$
|
|
7505
|
+
declare const astarzkevmAddresses: Record<string, Contract$43>;
|
|
7498
7506
|
//#endregion
|
|
7499
7507
|
//#region src/const/deployments/avalanche.d.ts
|
|
7500
|
-
interface Contract$
|
|
7508
|
+
interface Contract$42 {
|
|
7501
7509
|
address: string;
|
|
7502
7510
|
startBlock?: number;
|
|
7503
7511
|
}
|
|
7504
|
-
declare const avalancheAddresses: Record<string, Contract$
|
|
7512
|
+
declare const avalancheAddresses: Record<string, Contract$42>;
|
|
7505
7513
|
//#endregion
|
|
7506
7514
|
//#region src/const/deployments/bartiotest.d.ts
|
|
7507
|
-
interface Contract$
|
|
7515
|
+
interface Contract$41 {
|
|
7508
7516
|
address: string;
|
|
7509
7517
|
startBlock?: number;
|
|
7510
7518
|
}
|
|
7511
|
-
declare const bartiotestAddresses: Record<string, Contract$
|
|
7519
|
+
declare const bartiotestAddresses: Record<string, Contract$41>;
|
|
7512
7520
|
//#endregion
|
|
7513
7521
|
//#region src/const/deployments/base.d.ts
|
|
7514
|
-
interface Contract$
|
|
7522
|
+
interface Contract$40 {
|
|
7515
7523
|
address: string;
|
|
7516
7524
|
startBlock?: number;
|
|
7517
7525
|
}
|
|
7518
|
-
declare const baseAddresses: Record<string, Contract$
|
|
7526
|
+
declare const baseAddresses: Record<string, Contract$40>;
|
|
7519
7527
|
//#endregion
|
|
7520
7528
|
//#region src/const/deployments/blast.d.ts
|
|
7521
|
-
interface Contract$
|
|
7529
|
+
interface Contract$39 {
|
|
7522
7530
|
address: string;
|
|
7523
7531
|
startBlock?: number;
|
|
7524
7532
|
}
|
|
7525
|
-
declare const blastAddresses: Record<string, Contract$
|
|
7533
|
+
declare const blastAddresses: Record<string, Contract$39>;
|
|
7526
7534
|
//#endregion
|
|
7527
7535
|
//#region src/const/deployments/bsc.d.ts
|
|
7528
|
-
interface Contract$
|
|
7536
|
+
interface Contract$38 {
|
|
7529
7537
|
address: string;
|
|
7530
7538
|
startBlock?: number;
|
|
7531
7539
|
}
|
|
7532
|
-
declare const bscAddresses: Record<string, Contract$
|
|
7540
|
+
declare const bscAddresses: Record<string, Contract$38>;
|
|
7533
7541
|
//#endregion
|
|
7534
7542
|
//#region src/const/deployments/celo.d.ts
|
|
7535
|
-
interface Contract$
|
|
7543
|
+
interface Contract$37 {
|
|
7536
7544
|
address: string;
|
|
7537
7545
|
startBlock?: number;
|
|
7538
7546
|
}
|
|
7539
|
-
declare const celoAddresses: Record<string, Contract$
|
|
7547
|
+
declare const celoAddresses: Record<string, Contract$37>;
|
|
7540
7548
|
//#endregion
|
|
7541
7549
|
//#region src/const/deployments/evmos.d.ts
|
|
7542
|
-
interface Contract$
|
|
7550
|
+
interface Contract$36 {
|
|
7543
7551
|
address: string;
|
|
7544
7552
|
startBlock?: number;
|
|
7545
7553
|
}
|
|
7546
|
-
declare const evmosAddresses: Record<string, Contract$
|
|
7554
|
+
declare const evmosAddresses: Record<string, Contract$36>;
|
|
7547
7555
|
//#endregion
|
|
7548
7556
|
//#region src/const/deployments/fantom.d.ts
|
|
7549
|
-
interface Contract$
|
|
7557
|
+
interface Contract$35 {
|
|
7550
7558
|
address: string;
|
|
7551
7559
|
startBlock?: number;
|
|
7552
7560
|
}
|
|
7553
|
-
declare const fantomAddresses: Record<string, Contract$
|
|
7561
|
+
declare const fantomAddresses: Record<string, Contract$35>;
|
|
7554
7562
|
//#endregion
|
|
7555
7563
|
//#region src/const/deployments/filecoin.d.ts
|
|
7556
|
-
interface Contract$
|
|
7564
|
+
interface Contract$34 {
|
|
7557
7565
|
address: string;
|
|
7558
7566
|
startBlock?: number;
|
|
7559
7567
|
}
|
|
7560
|
-
declare const filecoinAddresses: Record<string, Contract$
|
|
7568
|
+
declare const filecoinAddresses: Record<string, Contract$34>;
|
|
7561
7569
|
//#endregion
|
|
7562
7570
|
//#region src/const/deployments/flare.d.ts
|
|
7563
|
-
interface Contract$
|
|
7571
|
+
interface Contract$33 {
|
|
7564
7572
|
address: string;
|
|
7565
7573
|
startBlock?: number;
|
|
7566
7574
|
}
|
|
7567
|
-
declare const flareAddresses: Record<string, Contract$
|
|
7575
|
+
declare const flareAddresses: Record<string, Contract$33>;
|
|
7568
7576
|
//#endregion
|
|
7569
7577
|
//#region src/const/deployments/goerli.d.ts
|
|
7570
|
-
interface Contract$
|
|
7578
|
+
interface Contract$32 {
|
|
7571
7579
|
address: string;
|
|
7572
7580
|
startBlock?: number;
|
|
7573
7581
|
}
|
|
7574
|
-
declare const goerliAddresses: Record<string, Contract$
|
|
7582
|
+
declare const goerliAddresses: Record<string, Contract$32>;
|
|
7575
7583
|
//#endregion
|
|
7576
7584
|
//#region src/const/deployments/kava.d.ts
|
|
7577
|
-
interface Contract$
|
|
7585
|
+
interface Contract$31 {
|
|
7578
7586
|
address: string;
|
|
7579
7587
|
startBlock?: number;
|
|
7580
7588
|
}
|
|
7581
|
-
declare const kavaAddresses: Record<string, Contract$
|
|
7589
|
+
declare const kavaAddresses: Record<string, Contract$31>;
|
|
7582
7590
|
//#endregion
|
|
7583
7591
|
//#region src/const/deployments/linea.d.ts
|
|
7584
|
-
interface Contract$
|
|
7592
|
+
interface Contract$30 {
|
|
7585
7593
|
address: string;
|
|
7586
7594
|
startBlock?: number;
|
|
7587
7595
|
}
|
|
7588
|
-
declare const lineaAddresses: Record<string, Contract$
|
|
7596
|
+
declare const lineaAddresses: Record<string, Contract$30>;
|
|
7589
7597
|
//#endregion
|
|
7590
7598
|
//#region src/const/deployments/localhost.d.ts
|
|
7591
7599
|
declare const localhostAddresses: {
|
|
@@ -7597,200 +7605,207 @@ declare const localhostAddresses: {
|
|
|
7597
7605
|
};
|
|
7598
7606
|
//#endregion
|
|
7599
7607
|
//#region src/const/deployments/eth.d.ts
|
|
7600
|
-
interface Contract$
|
|
7608
|
+
interface Contract$29 {
|
|
7601
7609
|
address: string;
|
|
7602
7610
|
startBlock?: number;
|
|
7603
7611
|
}
|
|
7604
|
-
declare const ethAddresses: Record<string, Contract$
|
|
7612
|
+
declare const ethAddresses: Record<string, Contract$29>;
|
|
7605
7613
|
//#endregion
|
|
7606
7614
|
//#region src/const/deployments/manta.d.ts
|
|
7607
|
-
interface Contract$
|
|
7615
|
+
interface Contract$28 {
|
|
7608
7616
|
address: string;
|
|
7609
7617
|
startBlock?: number;
|
|
7610
7618
|
}
|
|
7611
|
-
declare const mantaAddresses: Record<string, Contract$
|
|
7619
|
+
declare const mantaAddresses: Record<string, Contract$28>;
|
|
7612
7620
|
//#endregion
|
|
7613
7621
|
//#region src/const/deployments/mantle.d.ts
|
|
7614
|
-
interface Contract$
|
|
7622
|
+
interface Contract$27 {
|
|
7615
7623
|
address: string;
|
|
7616
7624
|
startBlock?: number;
|
|
7617
7625
|
}
|
|
7618
|
-
declare const mantleAddresses: Record<string, Contract$
|
|
7626
|
+
declare const mantleAddresses: Record<string, Contract$27>;
|
|
7619
7627
|
//#endregion
|
|
7620
7628
|
//#region src/const/deployments/metis.d.ts
|
|
7621
|
-
interface Contract$
|
|
7629
|
+
interface Contract$26 {
|
|
7622
7630
|
address: string;
|
|
7623
7631
|
startBlock?: number;
|
|
7624
7632
|
}
|
|
7625
|
-
declare const metisAddresses: Record<string, Contract$
|
|
7633
|
+
declare const metisAddresses: Record<string, Contract$26>;
|
|
7626
7634
|
//#endregion
|
|
7627
7635
|
//#region src/const/deployments/mode.d.ts
|
|
7628
|
-
interface Contract$
|
|
7636
|
+
interface Contract$25 {
|
|
7629
7637
|
address: string;
|
|
7630
7638
|
startBlock?: number;
|
|
7631
7639
|
}
|
|
7632
|
-
declare const modeAddresses: Record<string, Contract$
|
|
7640
|
+
declare const modeAddresses: Record<string, Contract$25>;
|
|
7633
7641
|
//#endregion
|
|
7634
7642
|
//#region src/const/deployments/moonbeam.d.ts
|
|
7635
|
-
interface Contract$
|
|
7643
|
+
interface Contract$24 {
|
|
7636
7644
|
address: string;
|
|
7637
7645
|
startBlock?: number;
|
|
7638
7646
|
}
|
|
7639
|
-
declare const moonbeamAddresses: Record<string, Contract$
|
|
7647
|
+
declare const moonbeamAddresses: Record<string, Contract$24>;
|
|
7640
7648
|
//#endregion
|
|
7641
7649
|
//#region src/const/deployments/mumbai.d.ts
|
|
7642
|
-
interface Contract$
|
|
7650
|
+
interface Contract$23 {
|
|
7643
7651
|
address: string;
|
|
7644
7652
|
startBlock?: number;
|
|
7645
7653
|
}
|
|
7646
|
-
declare const mumbaiAddresses: Record<string, Contract$
|
|
7654
|
+
declare const mumbaiAddresses: Record<string, Contract$23>;
|
|
7647
7655
|
//#endregion
|
|
7648
7656
|
//#region src/const/deployments/okxtestnet.d.ts
|
|
7649
|
-
interface Contract$
|
|
7657
|
+
interface Contract$22 {
|
|
7650
7658
|
address: string;
|
|
7651
7659
|
startBlock?: number;
|
|
7652
7660
|
}
|
|
7653
|
-
declare const okxtestnetAddresses: Record<string, Contract$
|
|
7661
|
+
declare const okxtestnetAddresses: Record<string, Contract$22>;
|
|
7654
7662
|
//#endregion
|
|
7655
7663
|
//#region src/const/deployments/optimism.d.ts
|
|
7656
|
-
interface Contract$
|
|
7664
|
+
interface Contract$21 {
|
|
7657
7665
|
address: string;
|
|
7658
7666
|
startBlock?: number;
|
|
7659
7667
|
}
|
|
7660
|
-
declare const optimismAddresses: Record<string, Contract$
|
|
7668
|
+
declare const optimismAddresses: Record<string, Contract$21>;
|
|
7661
7669
|
//#endregion
|
|
7662
7670
|
//#region src/const/deployments/optimismgoerli.d.ts
|
|
7663
|
-
interface Contract$
|
|
7671
|
+
interface Contract$20 {
|
|
7664
7672
|
address: string;
|
|
7665
7673
|
startBlock?: number;
|
|
7666
7674
|
}
|
|
7667
|
-
declare const optimismgoerliAddresses: Record<string, Contract$
|
|
7675
|
+
declare const optimismgoerliAddresses: Record<string, Contract$20>;
|
|
7668
7676
|
//#endregion
|
|
7669
7677
|
//#region src/const/deployments/polygon.d.ts
|
|
7670
|
-
interface Contract$
|
|
7678
|
+
interface Contract$19 {
|
|
7671
7679
|
address: string;
|
|
7672
7680
|
startBlock?: number;
|
|
7673
7681
|
}
|
|
7674
|
-
declare const polygonAddresses: Record<string, Contract$
|
|
7682
|
+
declare const polygonAddresses: Record<string, Contract$19>;
|
|
7675
7683
|
//#endregion
|
|
7676
7684
|
//#region src/const/deployments/polyzkevm.d.ts
|
|
7677
|
-
interface Contract$
|
|
7685
|
+
interface Contract$18 {
|
|
7678
7686
|
address: string;
|
|
7679
7687
|
startBlock?: number;
|
|
7680
7688
|
}
|
|
7681
|
-
declare const polyzkevmAddresses: Record<string, Contract$
|
|
7689
|
+
declare const polyzkevmAddresses: Record<string, Contract$18>;
|
|
7682
7690
|
//#endregion
|
|
7683
7691
|
//#region src/const/deployments/rootstock.d.ts
|
|
7684
|
-
interface Contract$
|
|
7692
|
+
interface Contract$17 {
|
|
7685
7693
|
address: string;
|
|
7686
7694
|
startBlock?: number;
|
|
7687
7695
|
}
|
|
7688
|
-
declare const rootstockAddresses: Record<string, Contract$
|
|
7696
|
+
declare const rootstockAddresses: Record<string, Contract$17>;
|
|
7689
7697
|
//#endregion
|
|
7690
7698
|
//#region src/const/deployments/scroll.d.ts
|
|
7691
|
-
interface Contract$
|
|
7699
|
+
interface Contract$16 {
|
|
7692
7700
|
address: string;
|
|
7693
7701
|
startBlock?: number;
|
|
7694
7702
|
}
|
|
7695
|
-
declare const scrollAddresses: Record<string, Contract$
|
|
7703
|
+
declare const scrollAddresses: Record<string, Contract$16>;
|
|
7696
7704
|
//#endregion
|
|
7697
7705
|
//#region src/const/deployments/sei.d.ts
|
|
7698
|
-
interface Contract$
|
|
7706
|
+
interface Contract$15 {
|
|
7699
7707
|
address: string;
|
|
7700
7708
|
startBlock?: number;
|
|
7701
7709
|
}
|
|
7702
|
-
declare const seiAddresses: Record<string, Contract$
|
|
7710
|
+
declare const seiAddresses: Record<string, Contract$15>;
|
|
7703
7711
|
//#endregion
|
|
7704
7712
|
//#region src/const/deployments/sonic.d.ts
|
|
7705
|
-
interface Contract$
|
|
7713
|
+
interface Contract$14 {
|
|
7706
7714
|
address: string;
|
|
7707
7715
|
startBlock?: number;
|
|
7708
7716
|
}
|
|
7709
|
-
declare const sonicAddresses: Record<string, Contract$
|
|
7717
|
+
declare const sonicAddresses: Record<string, Contract$14>;
|
|
7710
7718
|
//#endregion
|
|
7711
7719
|
//#region src/const/deployments/taiko.d.ts
|
|
7712
|
-
interface Contract$
|
|
7720
|
+
interface Contract$13 {
|
|
7713
7721
|
address: string;
|
|
7714
7722
|
startBlock?: number;
|
|
7715
7723
|
}
|
|
7716
|
-
declare const taikoAddresses: Record<string, Contract$
|
|
7724
|
+
declare const taikoAddresses: Record<string, Contract$13>;
|
|
7717
7725
|
//#endregion
|
|
7718
7726
|
//#region src/const/deployments/telos.d.ts
|
|
7719
|
-
interface Contract$
|
|
7727
|
+
interface Contract$12 {
|
|
7720
7728
|
address: string;
|
|
7721
7729
|
startBlock?: number;
|
|
7722
7730
|
}
|
|
7723
|
-
declare const telosAddresses: Record<string, Contract$
|
|
7731
|
+
declare const telosAddresses: Record<string, Contract$12>;
|
|
7724
7732
|
//#endregion
|
|
7725
7733
|
//#region src/const/deployments/thundercore.d.ts
|
|
7726
|
-
interface Contract$
|
|
7734
|
+
interface Contract$11 {
|
|
7727
7735
|
address: string;
|
|
7728
7736
|
startBlock?: number;
|
|
7729
7737
|
}
|
|
7730
|
-
declare const thundercoreAddresses: Record<string, Contract$
|
|
7738
|
+
declare const thundercoreAddresses: Record<string, Contract$11>;
|
|
7731
7739
|
//#endregion
|
|
7732
7740
|
//#region src/const/deployments/xlayer.d.ts
|
|
7733
|
-
interface Contract$
|
|
7741
|
+
interface Contract$10 {
|
|
7734
7742
|
address: string;
|
|
7735
7743
|
startBlock?: number;
|
|
7736
7744
|
}
|
|
7737
|
-
declare const xlayerAddresses: Record<string, Contract$
|
|
7745
|
+
declare const xlayerAddresses: Record<string, Contract$10>;
|
|
7738
7746
|
//#endregion
|
|
7739
7747
|
//#region src/const/deployments/zircuit.d.ts
|
|
7740
|
-
interface Contract$
|
|
7748
|
+
interface Contract$9 {
|
|
7741
7749
|
address: string;
|
|
7742
7750
|
startBlock?: number;
|
|
7743
7751
|
}
|
|
7744
|
-
declare const zircuitAddresses: Record<string, Contract$
|
|
7752
|
+
declare const zircuitAddresses: Record<string, Contract$9>;
|
|
7745
7753
|
//#endregion
|
|
7746
7754
|
//#region src/const/deployments/hemi.d.ts
|
|
7747
|
-
interface Contract$
|
|
7755
|
+
interface Contract$8 {
|
|
7748
7756
|
address: string;
|
|
7749
7757
|
startBlock?: number;
|
|
7750
7758
|
}
|
|
7751
|
-
declare const hemiAddresses: Record<string, Contract$
|
|
7759
|
+
declare const hemiAddresses: Record<string, Contract$8>;
|
|
7752
7760
|
//#endregion
|
|
7753
7761
|
//#region src/const/deployments/soneium.d.ts
|
|
7754
|
-
interface Contract$
|
|
7762
|
+
interface Contract$7 {
|
|
7755
7763
|
address: string;
|
|
7756
7764
|
startBlock?: number;
|
|
7757
7765
|
}
|
|
7758
|
-
declare const soneiumAddresses: Record<string, Contract$
|
|
7766
|
+
declare const soneiumAddresses: Record<string, Contract$7>;
|
|
7759
7767
|
//#endregion
|
|
7760
7768
|
//#region src/const/deployments/uni.d.ts
|
|
7761
|
-
interface Contract$
|
|
7769
|
+
interface Contract$6 {
|
|
7762
7770
|
address: string;
|
|
7763
7771
|
startBlock?: number;
|
|
7764
7772
|
}
|
|
7765
|
-
declare const uniAddresses: Record<string, Contract$
|
|
7773
|
+
declare const uniAddresses: Record<string, Contract$6>;
|
|
7766
7774
|
//#endregion
|
|
7767
7775
|
//#region src/const/deployments/zeta.d.ts
|
|
7768
|
-
interface Contract$
|
|
7776
|
+
interface Contract$5 {
|
|
7769
7777
|
address: string;
|
|
7770
7778
|
startBlock?: number;
|
|
7771
7779
|
}
|
|
7772
|
-
declare const zetaAddresses: Record<string, Contract$
|
|
7780
|
+
declare const zetaAddresses: Record<string, Contract$5>;
|
|
7773
7781
|
//#endregion
|
|
7774
7782
|
//#region src/const/deployments/bera.d.ts
|
|
7775
|
-
interface Contract$
|
|
7783
|
+
interface Contract$4 {
|
|
7776
7784
|
address: string;
|
|
7777
7785
|
startBlock?: number;
|
|
7778
7786
|
}
|
|
7779
|
-
declare const beraAddresses: Record<string, Contract$
|
|
7787
|
+
declare const beraAddresses: Record<string, Contract$4>;
|
|
7780
7788
|
//#endregion
|
|
7781
7789
|
//#region src/const/deployments/katana.d.ts
|
|
7782
|
-
interface Contract$
|
|
7790
|
+
interface Contract$3 {
|
|
7783
7791
|
address: string;
|
|
7784
7792
|
startBlock?: number;
|
|
7785
7793
|
}
|
|
7786
|
-
declare const katanaAddresses: Record<string, Contract$
|
|
7794
|
+
declare const katanaAddresses: Record<string, Contract$3>;
|
|
7787
7795
|
//#endregion
|
|
7788
7796
|
//#region src/const/deployments/saga.d.ts
|
|
7797
|
+
interface Contract$2 {
|
|
7798
|
+
address: string;
|
|
7799
|
+
startBlock?: number;
|
|
7800
|
+
}
|
|
7801
|
+
declare const sagaAddresses: Record<string, Contract$2>;
|
|
7802
|
+
//#endregion
|
|
7803
|
+
//#region src/const/deployments/bittensor.d.ts
|
|
7789
7804
|
interface Contract$1 {
|
|
7790
7805
|
address: string;
|
|
7791
7806
|
startBlock?: number;
|
|
7792
7807
|
}
|
|
7793
|
-
declare const
|
|
7808
|
+
declare const bittensorAddresses: Record<string, Contract$1>;
|
|
7794
7809
|
//#endregion
|
|
7795
7810
|
//#region src/const/capabilities.d.ts
|
|
7796
7811
|
type SupportedChainsFeature = 'subgraph' | 'deployments' | 'protocols' | 'singleAssetDeposit';
|
|
@@ -11061,5 +11076,5 @@ declare class FeeManagerClient extends SubgraphClient {
|
|
|
11061
11076
|
}[]>>;
|
|
11062
11077
|
}
|
|
11063
11078
|
//#endregion
|
|
11064
|
-
export { AERODROME_PROTOCOLS, ALGEBRA_INTEGRAL_PROTOCOLS, ALGEBRA_INTEGRAL_V_2_0_PROTOCOLS, ALGEBRA_PROTOCOLS, AMMConfigType, AMMType, API_URLS, AlgebgraHookBeacons, AlgebraIntegral21QuoteParams, AlgebraQuoteParams, AlgebraVaultDetails, ApiPageInfo, ApiVaultFilter, AprFilter, AprResponse, BaseQuoteParams, BaseVaultDetails, BlackholeAprDetailedParams, BlackholeAprDetailedResponse, BlackholeSnapshotAnalysis, CalculateLimitPriceParams, CalculateSwapAmountParams, Chain, ChainId, ClaimProofEdge, ClaimProofNode, ClaimProofsPageInfo, ClaimProofsResponse, ClaimRewardEdge, ClaimRewardNode, ClaimRewardParams, ClaimRewardsConnection, ClaimRewardsParams, Contract, ContractAddresses, ContractName, DIRECTIONAL_ALGEBRA_PROTOCOLS, DefaultFeeManagerConfigParams, DeprecationData, EstimateLpTokensParams, FEE_MANAGER_ABI, Fee, FeeManagerClient, FeeManagerConfigParams, FeeWithdrawalParams, FormattedRoute, GetRewardParams, GetSupportedChainsOptions, GlobalStateABI, type GraphQLPoolData, type GraphQLTokenData, LimitPoolState, LpPriceResponse, LpTokenEstimationResponse, MultiPositionManagers, MultiVaultFeeWithdrawalParams, MultipleFeeWithdrawalParams, NetworkConfig, NetworkData, Networks, POOLSHARK_PROTOCOLS, PageInfo, PendingRewardsParams, PendingRewardsResponse, PoolClient, PoolData, PoolEdge, PoolFilter, PoolNode, PoolSharkGlobalState, PoolSlot0, PoolsConnection, PoolsharkStructs, Protocol, ProtocolContractAddresses, ProtocolDetails, ProtocolInfo, QuickSwapQuoterV2, QuoteParams, QuoterFunctionArgs, QuoterV2ABI, QuoterV2AlgebgraIntegral, QuoterV2AlgebgraIntegral21, QuoterV2Factory, QuoterV2Shadow, QuoterV2Thick, Reward, RewardBalance, RewardSummary, RouteShortcut, SHADOW_PROTOCOLS, ShadowQuoteParams, SimulateSwapParams, 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, SupportedProtocol, SwapAmountResponse, SwapSimulationResponse, ThickQuoteParams, Token0, Token1, TokenData, TokenEdge, TokenFilter, TokenNode, TokenValueParams, TokenValueResponse, TokensConnection, UniswapHookBeacons, UniswapQuoteParams, UniswapV3PoolABI, UniswapV3QuoterABI, VAULT_FEES_ABI, VaultAllowanceParams, VaultApproveParams, VaultApr, VaultBalanceParams, VaultClient, VaultDetails, VaultDetailsResponse, VaultEdge, VaultFetchOptions, VaultFilter, VaultNode, VaultTokens, VaultsConnection, WithdrawParams, abis, apechainAddresses, arbitrumAddresses, arbitrumgoerliAddresses, arthswapConfig, astarAddresses, astarzkevmAddresses, avalancheAddresses, bartiotestAddresses, baseAddresses, baseSwapConfig, basexConfig, beraAddresses, blastAddresses, bscAddresses, calculateLimitPrice, calculateSwapAmount, camelotConfig, celoAddresses, chainIdToName, chainNameToId, crustConfig, deprecatedBundlesURL, determineSwapDirection, 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, getVaultReserves, glyphConfig, goerliAddresses, hemiAddresses, henjinConfig, herculesConfig, horizaConfig, isAerodromeVault, isAlgebraDirectionProtocol, isAlgebraIntegral21QuoteParams, isAlgebraIntegralProtocol, isAlgebraIntegralV2Protocol, isAlgebraProtocol, isAlgebraProtocolBySubgraph, isAlgebraQuoteParams, isPoolSharkProtocol, isShadowProtocol, isShadowQuoteParams, isSingleAssetDepositSupported, isThickQuoteParams, isThickV2Protocol, isUniswapQuoteParams, 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, polygonAddresses, polyzkevmAddresses, poolsharkConfig, quickSwapAlgebraConfig, quickSwapConfig, quickSwapIntegralConfig, quickSwapUniv3Config, retroConfig, rootstockAddresses, sagaAddresses, scrollAddresses, seiAddresses, shadowConfig, simulateSwap, singleTokenDepositAbi, soneiumAddresses, sonicAddresses, spark32Config, sparkConfig, stabilityVaultsConfig, steerSubgraphConfig, supswapConfig, sushiConfig, swapmodeConfig, swapsicleConfig, taikoAddresses, telosAddresses, thenaConfig, thickConfig, thrusterConfig, thundercoreAddresses, uniAddresses, uniswapConfig, validateQuoteParams, validateSwapParams, xlayerAddresses, zetaAddresses, zircuitAddresses };
|
|
11079
|
+
export { AERODROME_PROTOCOLS, ALGEBRA_INTEGRAL_PROTOCOLS, ALGEBRA_INTEGRAL_V_2_0_PROTOCOLS, ALGEBRA_PROTOCOLS, AMMConfigType, AMMType, API_URLS, AlgebgraHookBeacons, AlgebraIntegral21QuoteParams, AlgebraQuoteParams, AlgebraVaultDetails, ApiPageInfo, ApiVaultFilter, AprFilter, AprResponse, BaseQuoteParams, BaseVaultDetails, BlackholeAprDetailedParams, BlackholeAprDetailedResponse, BlackholeSnapshotAnalysis, CalculateLimitPriceParams, CalculateSwapAmountParams, Chain, ChainId, ClaimProofEdge, ClaimProofNode, ClaimProofsPageInfo, ClaimProofsResponse, ClaimRewardEdge, ClaimRewardNode, ClaimRewardParams, ClaimRewardsConnection, ClaimRewardsParams, Contract, ContractAddresses, ContractName, DIRECTIONAL_ALGEBRA_PROTOCOLS, DefaultFeeManagerConfigParams, DeprecationData, EstimateLpTokensParams, FEE_MANAGER_ABI, Fee, FeeManagerClient, FeeManagerConfigParams, FeeWithdrawalParams, FormattedRoute, GetRewardParams, GetSupportedChainsOptions, GlobalStateABI, type GraphQLPoolData, type GraphQLTokenData, LimitPoolState, LpPriceResponse, LpTokenEstimationResponse, MultiPositionManagers, MultiVaultFeeWithdrawalParams, MultipleFeeWithdrawalParams, NetworkConfig, NetworkData, Networks, POOLSHARK_PROTOCOLS, PageInfo, PendingRewardsParams, PendingRewardsResponse, PoolClient, PoolData, PoolEdge, PoolFilter, PoolNode, PoolSharkGlobalState, PoolSlot0, PoolsConnection, PoolsharkStructs, Protocol, ProtocolContractAddresses, ProtocolDetails, ProtocolInfo, QuickSwapQuoterV2, QuoteParams, QuoterFunctionArgs, QuoterV2ABI, QuoterV2AlgebgraIntegral, QuoterV2AlgebgraIntegral21, QuoterV2Factory, QuoterV2Shadow, QuoterV2Thick, Reward, RewardBalance, RewardSummary, RouteShortcut, SHADOW_PROTOCOLS, ShadowQuoteParams, SimulateSwapParams, 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, SupportedProtocol, SwapAmountResponse, SwapSimulationResponse, ThickQuoteParams, Token0, Token1, TokenData, TokenEdge, TokenFilter, TokenNode, TokenValueParams, TokenValueResponse, TokensConnection, UniswapHookBeacons, UniswapQuoteParams, UniswapV3PoolABI, UniswapV3QuoterABI, VAULT_FEES_ABI, VaultAllowanceParams, VaultApproveParams, VaultApr, VaultBalanceParams, VaultClient, VaultDetails, VaultDetailsResponse, VaultEdge, VaultFetchOptions, VaultFilter, VaultNode, VaultTokens, VaultsConnection, WithdrawParams, abis, apechainAddresses, arbitrumAddresses, arbitrumgoerliAddresses, arthswapConfig, astarAddresses, astarzkevmAddresses, avalancheAddresses, bartiotestAddresses, baseAddresses, baseSwapConfig, basexConfig, beraAddresses, bittensorAddresses, bittensorUniV3Config, blastAddresses, bscAddresses, calculateLimitPrice, calculateSwapAmount, camelotConfig, celoAddresses, chainIdToName, chainNameToId, crustConfig, deprecatedBundlesURL, determineSwapDirection, 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, getVaultReserves, glyphConfig, goerliAddresses, hemiAddresses, henjinConfig, herculesConfig, horizaConfig, isAerodromeVault, isAlgebraDirectionProtocol, isAlgebraIntegral21QuoteParams, isAlgebraIntegralProtocol, isAlgebraIntegralV2Protocol, isAlgebraProtocol, isAlgebraProtocolBySubgraph, isAlgebraQuoteParams, isPoolSharkProtocol, isShadowProtocol, isShadowQuoteParams, isSingleAssetDepositSupported, isThickQuoteParams, isThickV2Protocol, isUniswapQuoteParams, 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, polygonAddresses, polyzkevmAddresses, poolsharkConfig, quickSwapAlgebraConfig, quickSwapConfig, quickSwapIntegralConfig, quickSwapUniv3Config, retroConfig, rootstockAddresses, sagaAddresses, scrollAddresses, seiAddresses, shadowConfig, simulateSwap, singleTokenDepositAbi, soneiumAddresses, sonicAddresses, spark32Config, sparkConfig, stabilityVaultsConfig, steerSubgraphConfig, supswapConfig, sushiConfig, swapmodeConfig, swapsicleConfig, taikoAddresses, telosAddresses, thenaConfig, thickConfig, thrusterConfig, thundercoreAddresses, uniAddresses, uniswapConfig, validateQuoteParams, validateSwapParams, xlayerAddresses, zetaAddresses, zircuitAddresses };
|
|
11065
11080
|
//# sourceMappingURL=index.d.mts.map
|