@steerprotocol/sdk 3.0.7 → 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 +84 -6
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.cjs +85 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +108 -95
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +84 -6
- 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 {
|
|
@@ -228,7 +229,8 @@ declare enum Protocol {
|
|
|
228
229
|
Cypher = "Cypher",
|
|
229
230
|
SparkIntegral = "SparkIntegral",
|
|
230
231
|
UniswapV4 = "UniswapV4",
|
|
231
|
-
Hydrex = "Hydrex"
|
|
232
|
+
Hydrex = "Hydrex",
|
|
233
|
+
BittensorUniV3 = "BittensorUniV3"
|
|
232
234
|
}
|
|
233
235
|
declare enum StrykePositionManagers {
|
|
234
236
|
StrykeEqualizerManager = "StrykeEqualizerPositionManager",
|
|
@@ -303,7 +305,8 @@ declare enum MultiPositionManagers {
|
|
|
303
305
|
MultiPositionSushiManaged = "MultiPositionSushiManaged",
|
|
304
306
|
MultiPositionSparkIntegral = "MultiPositionSparkIntegral",
|
|
305
307
|
MultiPositionHenjinAlgebraHook = "HenjinIntegralHook",
|
|
306
|
-
MultiPositionHydrex = "MultiPositionHydrex"
|
|
308
|
+
MultiPositionHydrex = "MultiPositionHydrex",
|
|
309
|
+
MultiPositionBittensorUniV3 = "MultiPositionBittensorUniV3"
|
|
307
310
|
}
|
|
308
311
|
declare const AlgebgraHookBeacons: MultiPositionManagers[];
|
|
309
312
|
declare const UniswapHookBeacons: MultiPositionManagers[];
|
|
@@ -2233,6 +2236,9 @@ declare const shadowConfig: (theGraphApiKey: string) => ProtocolInfo;
|
|
|
2233
2236
|
//#region src/const/amm/configs/protocols/nest.d.ts
|
|
2234
2237
|
declare const nestVaultConfig: () => ProtocolInfo;
|
|
2235
2238
|
//#endregion
|
|
2239
|
+
//#region src/const/amm/configs/protocols/bittensor-univ3.d.ts
|
|
2240
|
+
declare const bittensorUniV3Config: () => ProtocolInfo;
|
|
2241
|
+
//#endregion
|
|
2236
2242
|
//#region src/const/deployments/abis.d.ts
|
|
2237
2243
|
declare const abis: {
|
|
2238
2244
|
readonly BundleRegistry: readonly [{
|
|
@@ -7464,130 +7470,130 @@ declare const abis: {
|
|
|
7464
7470
|
};
|
|
7465
7471
|
//#endregion
|
|
7466
7472
|
//#region src/const/deployments/apechain.d.ts
|
|
7467
|
-
interface Contract$
|
|
7473
|
+
interface Contract$47 {
|
|
7468
7474
|
address: string;
|
|
7469
7475
|
startBlock?: number;
|
|
7470
7476
|
}
|
|
7471
|
-
declare const apechainAddresses: Record<string, Contract$
|
|
7477
|
+
declare const apechainAddresses: Record<string, Contract$47>;
|
|
7472
7478
|
//#endregion
|
|
7473
7479
|
//#region src/const/deployments/arbitrum.d.ts
|
|
7474
|
-
interface Contract$
|
|
7480
|
+
interface Contract$46 {
|
|
7475
7481
|
address: string;
|
|
7476
7482
|
startBlock?: number;
|
|
7477
7483
|
}
|
|
7478
|
-
declare const arbitrumAddresses: Record<string, Contract$
|
|
7484
|
+
declare const arbitrumAddresses: Record<string, Contract$46>;
|
|
7479
7485
|
//#endregion
|
|
7480
7486
|
//#region src/const/deployments/arbitrumgoerli.d.ts
|
|
7481
|
-
interface Contract$
|
|
7487
|
+
interface Contract$45 {
|
|
7482
7488
|
address: string;
|
|
7483
7489
|
startBlock?: number;
|
|
7484
7490
|
}
|
|
7485
|
-
declare const arbitrumgoerliAddresses: Record<string, Contract$
|
|
7491
|
+
declare const arbitrumgoerliAddresses: Record<string, Contract$45>;
|
|
7486
7492
|
//#endregion
|
|
7487
7493
|
//#region src/const/deployments/astar.d.ts
|
|
7488
|
-
interface Contract$
|
|
7494
|
+
interface Contract$44 {
|
|
7489
7495
|
address: string;
|
|
7490
7496
|
startBlock?: number;
|
|
7491
7497
|
}
|
|
7492
|
-
declare const astarAddresses: Record<string, Contract$
|
|
7498
|
+
declare const astarAddresses: Record<string, Contract$44>;
|
|
7493
7499
|
//#endregion
|
|
7494
7500
|
//#region src/const/deployments/astarzkevm.d.ts
|
|
7495
|
-
interface Contract$
|
|
7501
|
+
interface Contract$43 {
|
|
7496
7502
|
address: string;
|
|
7497
7503
|
startBlock?: number;
|
|
7498
7504
|
}
|
|
7499
|
-
declare const astarzkevmAddresses: Record<string, Contract$
|
|
7505
|
+
declare const astarzkevmAddresses: Record<string, Contract$43>;
|
|
7500
7506
|
//#endregion
|
|
7501
7507
|
//#region src/const/deployments/avalanche.d.ts
|
|
7502
|
-
interface Contract$
|
|
7508
|
+
interface Contract$42 {
|
|
7503
7509
|
address: string;
|
|
7504
7510
|
startBlock?: number;
|
|
7505
7511
|
}
|
|
7506
|
-
declare const avalancheAddresses: Record<string, Contract$
|
|
7512
|
+
declare const avalancheAddresses: Record<string, Contract$42>;
|
|
7507
7513
|
//#endregion
|
|
7508
7514
|
//#region src/const/deployments/bartiotest.d.ts
|
|
7509
|
-
interface Contract$
|
|
7515
|
+
interface Contract$41 {
|
|
7510
7516
|
address: string;
|
|
7511
7517
|
startBlock?: number;
|
|
7512
7518
|
}
|
|
7513
|
-
declare const bartiotestAddresses: Record<string, Contract$
|
|
7519
|
+
declare const bartiotestAddresses: Record<string, Contract$41>;
|
|
7514
7520
|
//#endregion
|
|
7515
7521
|
//#region src/const/deployments/base.d.ts
|
|
7516
|
-
interface Contract$
|
|
7522
|
+
interface Contract$40 {
|
|
7517
7523
|
address: string;
|
|
7518
7524
|
startBlock?: number;
|
|
7519
7525
|
}
|
|
7520
|
-
declare const baseAddresses: Record<string, Contract$
|
|
7526
|
+
declare const baseAddresses: Record<string, Contract$40>;
|
|
7521
7527
|
//#endregion
|
|
7522
7528
|
//#region src/const/deployments/blast.d.ts
|
|
7523
|
-
interface Contract$
|
|
7529
|
+
interface Contract$39 {
|
|
7524
7530
|
address: string;
|
|
7525
7531
|
startBlock?: number;
|
|
7526
7532
|
}
|
|
7527
|
-
declare const blastAddresses: Record<string, Contract$
|
|
7533
|
+
declare const blastAddresses: Record<string, Contract$39>;
|
|
7528
7534
|
//#endregion
|
|
7529
7535
|
//#region src/const/deployments/bsc.d.ts
|
|
7530
|
-
interface Contract$
|
|
7536
|
+
interface Contract$38 {
|
|
7531
7537
|
address: string;
|
|
7532
7538
|
startBlock?: number;
|
|
7533
7539
|
}
|
|
7534
|
-
declare const bscAddresses: Record<string, Contract$
|
|
7540
|
+
declare const bscAddresses: Record<string, Contract$38>;
|
|
7535
7541
|
//#endregion
|
|
7536
7542
|
//#region src/const/deployments/celo.d.ts
|
|
7537
|
-
interface Contract$
|
|
7543
|
+
interface Contract$37 {
|
|
7538
7544
|
address: string;
|
|
7539
7545
|
startBlock?: number;
|
|
7540
7546
|
}
|
|
7541
|
-
declare const celoAddresses: Record<string, Contract$
|
|
7547
|
+
declare const celoAddresses: Record<string, Contract$37>;
|
|
7542
7548
|
//#endregion
|
|
7543
7549
|
//#region src/const/deployments/evmos.d.ts
|
|
7544
|
-
interface Contract$
|
|
7550
|
+
interface Contract$36 {
|
|
7545
7551
|
address: string;
|
|
7546
7552
|
startBlock?: number;
|
|
7547
7553
|
}
|
|
7548
|
-
declare const evmosAddresses: Record<string, Contract$
|
|
7554
|
+
declare const evmosAddresses: Record<string, Contract$36>;
|
|
7549
7555
|
//#endregion
|
|
7550
7556
|
//#region src/const/deployments/fantom.d.ts
|
|
7551
|
-
interface Contract$
|
|
7557
|
+
interface Contract$35 {
|
|
7552
7558
|
address: string;
|
|
7553
7559
|
startBlock?: number;
|
|
7554
7560
|
}
|
|
7555
|
-
declare const fantomAddresses: Record<string, Contract$
|
|
7561
|
+
declare const fantomAddresses: Record<string, Contract$35>;
|
|
7556
7562
|
//#endregion
|
|
7557
7563
|
//#region src/const/deployments/filecoin.d.ts
|
|
7558
|
-
interface Contract$
|
|
7564
|
+
interface Contract$34 {
|
|
7559
7565
|
address: string;
|
|
7560
7566
|
startBlock?: number;
|
|
7561
7567
|
}
|
|
7562
|
-
declare const filecoinAddresses: Record<string, Contract$
|
|
7568
|
+
declare const filecoinAddresses: Record<string, Contract$34>;
|
|
7563
7569
|
//#endregion
|
|
7564
7570
|
//#region src/const/deployments/flare.d.ts
|
|
7565
|
-
interface Contract$
|
|
7571
|
+
interface Contract$33 {
|
|
7566
7572
|
address: string;
|
|
7567
7573
|
startBlock?: number;
|
|
7568
7574
|
}
|
|
7569
|
-
declare const flareAddresses: Record<string, Contract$
|
|
7575
|
+
declare const flareAddresses: Record<string, Contract$33>;
|
|
7570
7576
|
//#endregion
|
|
7571
7577
|
//#region src/const/deployments/goerli.d.ts
|
|
7572
|
-
interface Contract$
|
|
7578
|
+
interface Contract$32 {
|
|
7573
7579
|
address: string;
|
|
7574
7580
|
startBlock?: number;
|
|
7575
7581
|
}
|
|
7576
|
-
declare const goerliAddresses: Record<string, Contract$
|
|
7582
|
+
declare const goerliAddresses: Record<string, Contract$32>;
|
|
7577
7583
|
//#endregion
|
|
7578
7584
|
//#region src/const/deployments/kava.d.ts
|
|
7579
|
-
interface Contract$
|
|
7585
|
+
interface Contract$31 {
|
|
7580
7586
|
address: string;
|
|
7581
7587
|
startBlock?: number;
|
|
7582
7588
|
}
|
|
7583
|
-
declare const kavaAddresses: Record<string, Contract$
|
|
7589
|
+
declare const kavaAddresses: Record<string, Contract$31>;
|
|
7584
7590
|
//#endregion
|
|
7585
7591
|
//#region src/const/deployments/linea.d.ts
|
|
7586
|
-
interface Contract$
|
|
7592
|
+
interface Contract$30 {
|
|
7587
7593
|
address: string;
|
|
7588
7594
|
startBlock?: number;
|
|
7589
7595
|
}
|
|
7590
|
-
declare const lineaAddresses: Record<string, Contract$
|
|
7596
|
+
declare const lineaAddresses: Record<string, Contract$30>;
|
|
7591
7597
|
//#endregion
|
|
7592
7598
|
//#region src/const/deployments/localhost.d.ts
|
|
7593
7599
|
declare const localhostAddresses: {
|
|
@@ -7599,200 +7605,207 @@ declare const localhostAddresses: {
|
|
|
7599
7605
|
};
|
|
7600
7606
|
//#endregion
|
|
7601
7607
|
//#region src/const/deployments/eth.d.ts
|
|
7602
|
-
interface Contract$
|
|
7608
|
+
interface Contract$29 {
|
|
7603
7609
|
address: string;
|
|
7604
7610
|
startBlock?: number;
|
|
7605
7611
|
}
|
|
7606
|
-
declare const ethAddresses: Record<string, Contract$
|
|
7612
|
+
declare const ethAddresses: Record<string, Contract$29>;
|
|
7607
7613
|
//#endregion
|
|
7608
7614
|
//#region src/const/deployments/manta.d.ts
|
|
7609
|
-
interface Contract$
|
|
7615
|
+
interface Contract$28 {
|
|
7610
7616
|
address: string;
|
|
7611
7617
|
startBlock?: number;
|
|
7612
7618
|
}
|
|
7613
|
-
declare const mantaAddresses: Record<string, Contract$
|
|
7619
|
+
declare const mantaAddresses: Record<string, Contract$28>;
|
|
7614
7620
|
//#endregion
|
|
7615
7621
|
//#region src/const/deployments/mantle.d.ts
|
|
7616
|
-
interface Contract$
|
|
7622
|
+
interface Contract$27 {
|
|
7617
7623
|
address: string;
|
|
7618
7624
|
startBlock?: number;
|
|
7619
7625
|
}
|
|
7620
|
-
declare const mantleAddresses: Record<string, Contract$
|
|
7626
|
+
declare const mantleAddresses: Record<string, Contract$27>;
|
|
7621
7627
|
//#endregion
|
|
7622
7628
|
//#region src/const/deployments/metis.d.ts
|
|
7623
|
-
interface Contract$
|
|
7629
|
+
interface Contract$26 {
|
|
7624
7630
|
address: string;
|
|
7625
7631
|
startBlock?: number;
|
|
7626
7632
|
}
|
|
7627
|
-
declare const metisAddresses: Record<string, Contract$
|
|
7633
|
+
declare const metisAddresses: Record<string, Contract$26>;
|
|
7628
7634
|
//#endregion
|
|
7629
7635
|
//#region src/const/deployments/mode.d.ts
|
|
7630
|
-
interface Contract$
|
|
7636
|
+
interface Contract$25 {
|
|
7631
7637
|
address: string;
|
|
7632
7638
|
startBlock?: number;
|
|
7633
7639
|
}
|
|
7634
|
-
declare const modeAddresses: Record<string, Contract$
|
|
7640
|
+
declare const modeAddresses: Record<string, Contract$25>;
|
|
7635
7641
|
//#endregion
|
|
7636
7642
|
//#region src/const/deployments/moonbeam.d.ts
|
|
7637
|
-
interface Contract$
|
|
7643
|
+
interface Contract$24 {
|
|
7638
7644
|
address: string;
|
|
7639
7645
|
startBlock?: number;
|
|
7640
7646
|
}
|
|
7641
|
-
declare const moonbeamAddresses: Record<string, Contract$
|
|
7647
|
+
declare const moonbeamAddresses: Record<string, Contract$24>;
|
|
7642
7648
|
//#endregion
|
|
7643
7649
|
//#region src/const/deployments/mumbai.d.ts
|
|
7644
|
-
interface Contract$
|
|
7650
|
+
interface Contract$23 {
|
|
7645
7651
|
address: string;
|
|
7646
7652
|
startBlock?: number;
|
|
7647
7653
|
}
|
|
7648
|
-
declare const mumbaiAddresses: Record<string, Contract$
|
|
7654
|
+
declare const mumbaiAddresses: Record<string, Contract$23>;
|
|
7649
7655
|
//#endregion
|
|
7650
7656
|
//#region src/const/deployments/okxtestnet.d.ts
|
|
7651
|
-
interface Contract$
|
|
7657
|
+
interface Contract$22 {
|
|
7652
7658
|
address: string;
|
|
7653
7659
|
startBlock?: number;
|
|
7654
7660
|
}
|
|
7655
|
-
declare const okxtestnetAddresses: Record<string, Contract$
|
|
7661
|
+
declare const okxtestnetAddresses: Record<string, Contract$22>;
|
|
7656
7662
|
//#endregion
|
|
7657
7663
|
//#region src/const/deployments/optimism.d.ts
|
|
7658
|
-
interface Contract$
|
|
7664
|
+
interface Contract$21 {
|
|
7659
7665
|
address: string;
|
|
7660
7666
|
startBlock?: number;
|
|
7661
7667
|
}
|
|
7662
|
-
declare const optimismAddresses: Record<string, Contract$
|
|
7668
|
+
declare const optimismAddresses: Record<string, Contract$21>;
|
|
7663
7669
|
//#endregion
|
|
7664
7670
|
//#region src/const/deployments/optimismgoerli.d.ts
|
|
7665
|
-
interface Contract$
|
|
7671
|
+
interface Contract$20 {
|
|
7666
7672
|
address: string;
|
|
7667
7673
|
startBlock?: number;
|
|
7668
7674
|
}
|
|
7669
|
-
declare const optimismgoerliAddresses: Record<string, Contract$
|
|
7675
|
+
declare const optimismgoerliAddresses: Record<string, Contract$20>;
|
|
7670
7676
|
//#endregion
|
|
7671
7677
|
//#region src/const/deployments/polygon.d.ts
|
|
7672
|
-
interface Contract$
|
|
7678
|
+
interface Contract$19 {
|
|
7673
7679
|
address: string;
|
|
7674
7680
|
startBlock?: number;
|
|
7675
7681
|
}
|
|
7676
|
-
declare const polygonAddresses: Record<string, Contract$
|
|
7682
|
+
declare const polygonAddresses: Record<string, Contract$19>;
|
|
7677
7683
|
//#endregion
|
|
7678
7684
|
//#region src/const/deployments/polyzkevm.d.ts
|
|
7679
|
-
interface Contract$
|
|
7685
|
+
interface Contract$18 {
|
|
7680
7686
|
address: string;
|
|
7681
7687
|
startBlock?: number;
|
|
7682
7688
|
}
|
|
7683
|
-
declare const polyzkevmAddresses: Record<string, Contract$
|
|
7689
|
+
declare const polyzkevmAddresses: Record<string, Contract$18>;
|
|
7684
7690
|
//#endregion
|
|
7685
7691
|
//#region src/const/deployments/rootstock.d.ts
|
|
7686
|
-
interface Contract$
|
|
7692
|
+
interface Contract$17 {
|
|
7687
7693
|
address: string;
|
|
7688
7694
|
startBlock?: number;
|
|
7689
7695
|
}
|
|
7690
|
-
declare const rootstockAddresses: Record<string, Contract$
|
|
7696
|
+
declare const rootstockAddresses: Record<string, Contract$17>;
|
|
7691
7697
|
//#endregion
|
|
7692
7698
|
//#region src/const/deployments/scroll.d.ts
|
|
7693
|
-
interface Contract$
|
|
7699
|
+
interface Contract$16 {
|
|
7694
7700
|
address: string;
|
|
7695
7701
|
startBlock?: number;
|
|
7696
7702
|
}
|
|
7697
|
-
declare const scrollAddresses: Record<string, Contract$
|
|
7703
|
+
declare const scrollAddresses: Record<string, Contract$16>;
|
|
7698
7704
|
//#endregion
|
|
7699
7705
|
//#region src/const/deployments/sei.d.ts
|
|
7700
|
-
interface Contract$
|
|
7706
|
+
interface Contract$15 {
|
|
7701
7707
|
address: string;
|
|
7702
7708
|
startBlock?: number;
|
|
7703
7709
|
}
|
|
7704
|
-
declare const seiAddresses: Record<string, Contract$
|
|
7710
|
+
declare const seiAddresses: Record<string, Contract$15>;
|
|
7705
7711
|
//#endregion
|
|
7706
7712
|
//#region src/const/deployments/sonic.d.ts
|
|
7707
|
-
interface Contract$
|
|
7713
|
+
interface Contract$14 {
|
|
7708
7714
|
address: string;
|
|
7709
7715
|
startBlock?: number;
|
|
7710
7716
|
}
|
|
7711
|
-
declare const sonicAddresses: Record<string, Contract$
|
|
7717
|
+
declare const sonicAddresses: Record<string, Contract$14>;
|
|
7712
7718
|
//#endregion
|
|
7713
7719
|
//#region src/const/deployments/taiko.d.ts
|
|
7714
|
-
interface Contract$
|
|
7720
|
+
interface Contract$13 {
|
|
7715
7721
|
address: string;
|
|
7716
7722
|
startBlock?: number;
|
|
7717
7723
|
}
|
|
7718
|
-
declare const taikoAddresses: Record<string, Contract$
|
|
7724
|
+
declare const taikoAddresses: Record<string, Contract$13>;
|
|
7719
7725
|
//#endregion
|
|
7720
7726
|
//#region src/const/deployments/telos.d.ts
|
|
7721
|
-
interface Contract$
|
|
7727
|
+
interface Contract$12 {
|
|
7722
7728
|
address: string;
|
|
7723
7729
|
startBlock?: number;
|
|
7724
7730
|
}
|
|
7725
|
-
declare const telosAddresses: Record<string, Contract$
|
|
7731
|
+
declare const telosAddresses: Record<string, Contract$12>;
|
|
7726
7732
|
//#endregion
|
|
7727
7733
|
//#region src/const/deployments/thundercore.d.ts
|
|
7728
|
-
interface Contract$
|
|
7734
|
+
interface Contract$11 {
|
|
7729
7735
|
address: string;
|
|
7730
7736
|
startBlock?: number;
|
|
7731
7737
|
}
|
|
7732
|
-
declare const thundercoreAddresses: Record<string, Contract$
|
|
7738
|
+
declare const thundercoreAddresses: Record<string, Contract$11>;
|
|
7733
7739
|
//#endregion
|
|
7734
7740
|
//#region src/const/deployments/xlayer.d.ts
|
|
7735
|
-
interface Contract$
|
|
7741
|
+
interface Contract$10 {
|
|
7736
7742
|
address: string;
|
|
7737
7743
|
startBlock?: number;
|
|
7738
7744
|
}
|
|
7739
|
-
declare const xlayerAddresses: Record<string, Contract$
|
|
7745
|
+
declare const xlayerAddresses: Record<string, Contract$10>;
|
|
7740
7746
|
//#endregion
|
|
7741
7747
|
//#region src/const/deployments/zircuit.d.ts
|
|
7742
|
-
interface Contract$
|
|
7748
|
+
interface Contract$9 {
|
|
7743
7749
|
address: string;
|
|
7744
7750
|
startBlock?: number;
|
|
7745
7751
|
}
|
|
7746
|
-
declare const zircuitAddresses: Record<string, Contract$
|
|
7752
|
+
declare const zircuitAddresses: Record<string, Contract$9>;
|
|
7747
7753
|
//#endregion
|
|
7748
7754
|
//#region src/const/deployments/hemi.d.ts
|
|
7749
|
-
interface Contract$
|
|
7755
|
+
interface Contract$8 {
|
|
7750
7756
|
address: string;
|
|
7751
7757
|
startBlock?: number;
|
|
7752
7758
|
}
|
|
7753
|
-
declare const hemiAddresses: Record<string, Contract$
|
|
7759
|
+
declare const hemiAddresses: Record<string, Contract$8>;
|
|
7754
7760
|
//#endregion
|
|
7755
7761
|
//#region src/const/deployments/soneium.d.ts
|
|
7756
|
-
interface Contract$
|
|
7762
|
+
interface Contract$7 {
|
|
7757
7763
|
address: string;
|
|
7758
7764
|
startBlock?: number;
|
|
7759
7765
|
}
|
|
7760
|
-
declare const soneiumAddresses: Record<string, Contract$
|
|
7766
|
+
declare const soneiumAddresses: Record<string, Contract$7>;
|
|
7761
7767
|
//#endregion
|
|
7762
7768
|
//#region src/const/deployments/uni.d.ts
|
|
7763
|
-
interface Contract$
|
|
7769
|
+
interface Contract$6 {
|
|
7764
7770
|
address: string;
|
|
7765
7771
|
startBlock?: number;
|
|
7766
7772
|
}
|
|
7767
|
-
declare const uniAddresses: Record<string, Contract$
|
|
7773
|
+
declare const uniAddresses: Record<string, Contract$6>;
|
|
7768
7774
|
//#endregion
|
|
7769
7775
|
//#region src/const/deployments/zeta.d.ts
|
|
7770
|
-
interface Contract$
|
|
7776
|
+
interface Contract$5 {
|
|
7771
7777
|
address: string;
|
|
7772
7778
|
startBlock?: number;
|
|
7773
7779
|
}
|
|
7774
|
-
declare const zetaAddresses: Record<string, Contract$
|
|
7780
|
+
declare const zetaAddresses: Record<string, Contract$5>;
|
|
7775
7781
|
//#endregion
|
|
7776
7782
|
//#region src/const/deployments/bera.d.ts
|
|
7777
|
-
interface Contract$
|
|
7783
|
+
interface Contract$4 {
|
|
7778
7784
|
address: string;
|
|
7779
7785
|
startBlock?: number;
|
|
7780
7786
|
}
|
|
7781
|
-
declare const beraAddresses: Record<string, Contract$
|
|
7787
|
+
declare const beraAddresses: Record<string, Contract$4>;
|
|
7782
7788
|
//#endregion
|
|
7783
7789
|
//#region src/const/deployments/katana.d.ts
|
|
7784
|
-
interface Contract$
|
|
7790
|
+
interface Contract$3 {
|
|
7785
7791
|
address: string;
|
|
7786
7792
|
startBlock?: number;
|
|
7787
7793
|
}
|
|
7788
|
-
declare const katanaAddresses: Record<string, Contract$
|
|
7794
|
+
declare const katanaAddresses: Record<string, Contract$3>;
|
|
7789
7795
|
//#endregion
|
|
7790
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
|
|
7791
7804
|
interface Contract$1 {
|
|
7792
7805
|
address: string;
|
|
7793
7806
|
startBlock?: number;
|
|
7794
7807
|
}
|
|
7795
|
-
declare const
|
|
7808
|
+
declare const bittensorAddresses: Record<string, Contract$1>;
|
|
7796
7809
|
//#endregion
|
|
7797
7810
|
//#region src/const/capabilities.d.ts
|
|
7798
7811
|
type SupportedChainsFeature = 'subgraph' | 'deployments' | 'protocols' | 'singleAssetDeposit';
|
|
@@ -11063,5 +11076,5 @@ declare class FeeManagerClient extends SubgraphClient {
|
|
|
11063
11076
|
}[]>>;
|
|
11064
11077
|
}
|
|
11065
11078
|
//#endregion
|
|
11066
|
-
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 };
|
|
11067
11080
|
//# sourceMappingURL=index.d.mts.map
|