@longdotxyz/shared 0.0.76 → 0.0.77
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/contracts/asset.contract.d.ts +136 -0
- package/dist/contracts/asset.contract.js +4 -0
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/index.d.ts +108 -0
- package/dist/graphql/generated.d.ts +32 -0
- package/dist/graphql/generated.js +4 -0
- package/dist/graphql/generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -33,10 +33,12 @@ export declare const rootContract: {
|
|
|
33
33
|
pool_current_price: import("zod").ZodString;
|
|
34
34
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
35
35
|
pool_current_fdv: import("zod").ZodString;
|
|
36
|
+
pool_current_fdv_usd: import("zod").ZodString;
|
|
36
37
|
pool_current_liquidity: import("zod").ZodString;
|
|
37
38
|
pool_current_tick: import("zod").ZodNumber;
|
|
38
39
|
pool_last_epoch: import("zod").ZodNumber;
|
|
39
40
|
pool_current_market_cap: import("zod").ZodString;
|
|
41
|
+
pool_current_market_cap_usd: import("zod").ZodString;
|
|
40
42
|
pool_current_fees_accrued: import("zod").ZodString;
|
|
41
43
|
pool_current_total_proceeds: import("zod").ZodString;
|
|
42
44
|
pool_current_total_tokens_sold: import("zod").ZodString;
|
|
@@ -178,10 +180,12 @@ export declare const rootContract: {
|
|
|
178
180
|
pool_current_price: string;
|
|
179
181
|
pool_current_sqrt_price: string;
|
|
180
182
|
pool_current_fdv: string;
|
|
183
|
+
pool_current_fdv_usd: string;
|
|
181
184
|
pool_current_liquidity: string;
|
|
182
185
|
pool_current_tick: number;
|
|
183
186
|
pool_last_epoch: number;
|
|
184
187
|
pool_current_market_cap: string;
|
|
188
|
+
pool_current_market_cap_usd: string;
|
|
185
189
|
pool_current_fees_accrued: string;
|
|
186
190
|
pool_current_total_proceeds: string;
|
|
187
191
|
pool_current_total_tokens_sold: string;
|
|
@@ -225,10 +229,12 @@ export declare const rootContract: {
|
|
|
225
229
|
pool_current_price: string;
|
|
226
230
|
pool_current_sqrt_price: string;
|
|
227
231
|
pool_current_fdv: string;
|
|
232
|
+
pool_current_fdv_usd: string;
|
|
228
233
|
pool_current_liquidity: string;
|
|
229
234
|
pool_current_tick: number;
|
|
230
235
|
pool_last_epoch: number;
|
|
231
236
|
pool_current_market_cap: string;
|
|
237
|
+
pool_current_market_cap_usd: string;
|
|
232
238
|
pool_current_fees_accrued: string;
|
|
233
239
|
pool_current_total_proceeds: string;
|
|
234
240
|
pool_current_total_tokens_sold: string;
|
|
@@ -274,9 +280,11 @@ export declare const rootContract: {
|
|
|
274
280
|
pool_current_price: import("zod").ZodString;
|
|
275
281
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
276
282
|
pool_current_fdv: import("zod").ZodString;
|
|
283
|
+
pool_current_fdv_usd: import("zod").ZodString;
|
|
277
284
|
pool_current_liquidity: import("zod").ZodString;
|
|
278
285
|
pool_current_tick: import("zod").ZodNumber;
|
|
279
286
|
pool_current_market_cap: import("zod").ZodString;
|
|
287
|
+
pool_current_market_cap_usd: import("zod").ZodString;
|
|
280
288
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
281
289
|
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
282
290
|
pool_type: import("zod").ZodString;
|
|
@@ -410,9 +418,11 @@ export declare const rootContract: {
|
|
|
410
418
|
pool_current_price: string;
|
|
411
419
|
pool_current_sqrt_price: string;
|
|
412
420
|
pool_current_fdv: string;
|
|
421
|
+
pool_current_fdv_usd: string;
|
|
413
422
|
pool_current_liquidity: string;
|
|
414
423
|
pool_current_tick: number;
|
|
415
424
|
pool_current_market_cap: string;
|
|
425
|
+
pool_current_market_cap_usd: string;
|
|
416
426
|
pool_address: `0x${string}`;
|
|
417
427
|
pool_migration_timestamp: Date | null;
|
|
418
428
|
pool_type: string;
|
|
@@ -446,9 +456,11 @@ export declare const rootContract: {
|
|
|
446
456
|
pool_current_price: string;
|
|
447
457
|
pool_current_sqrt_price: string;
|
|
448
458
|
pool_current_fdv: string;
|
|
459
|
+
pool_current_fdv_usd: string;
|
|
449
460
|
pool_current_liquidity: string;
|
|
450
461
|
pool_current_tick: number;
|
|
451
462
|
pool_current_market_cap: string;
|
|
463
|
+
pool_current_market_cap_usd: string;
|
|
452
464
|
pool_address: string;
|
|
453
465
|
pool_migration_timestamp: Date | null;
|
|
454
466
|
pool_type: string;
|
|
@@ -491,10 +503,12 @@ export declare const rootContract: {
|
|
|
491
503
|
pool_current_price: string;
|
|
492
504
|
pool_current_sqrt_price: string;
|
|
493
505
|
pool_current_fdv: string;
|
|
506
|
+
pool_current_fdv_usd: string;
|
|
494
507
|
pool_current_liquidity: string;
|
|
495
508
|
pool_current_tick: number;
|
|
496
509
|
pool_last_epoch: number;
|
|
497
510
|
pool_current_market_cap: string;
|
|
511
|
+
pool_current_market_cap_usd: string;
|
|
498
512
|
pool_current_fees_accrued: string;
|
|
499
513
|
pool_current_total_proceeds: string;
|
|
500
514
|
pool_current_total_tokens_sold: string;
|
|
@@ -539,9 +553,11 @@ export declare const rootContract: {
|
|
|
539
553
|
pool_current_price: string;
|
|
540
554
|
pool_current_sqrt_price: string;
|
|
541
555
|
pool_current_fdv: string;
|
|
556
|
+
pool_current_fdv_usd: string;
|
|
542
557
|
pool_current_liquidity: string;
|
|
543
558
|
pool_current_tick: number;
|
|
544
559
|
pool_current_market_cap: string;
|
|
560
|
+
pool_current_market_cap_usd: string;
|
|
545
561
|
pool_address: `0x${string}`;
|
|
546
562
|
pool_migration_timestamp: Date | null;
|
|
547
563
|
pool_type: string;
|
|
@@ -582,10 +598,12 @@ export declare const rootContract: {
|
|
|
582
598
|
pool_current_price: string;
|
|
583
599
|
pool_current_sqrt_price: string;
|
|
584
600
|
pool_current_fdv: string;
|
|
601
|
+
pool_current_fdv_usd: string;
|
|
585
602
|
pool_current_liquidity: string;
|
|
586
603
|
pool_current_tick: number;
|
|
587
604
|
pool_last_epoch: number;
|
|
588
605
|
pool_current_market_cap: string;
|
|
606
|
+
pool_current_market_cap_usd: string;
|
|
589
607
|
pool_current_fees_accrued: string;
|
|
590
608
|
pool_current_total_proceeds: string;
|
|
591
609
|
pool_current_total_tokens_sold: string;
|
|
@@ -631,9 +649,11 @@ export declare const rootContract: {
|
|
|
631
649
|
pool_current_price: string;
|
|
632
650
|
pool_current_sqrt_price: string;
|
|
633
651
|
pool_current_fdv: string;
|
|
652
|
+
pool_current_fdv_usd: string;
|
|
634
653
|
pool_current_liquidity: string;
|
|
635
654
|
pool_current_tick: number;
|
|
636
655
|
pool_current_market_cap: string;
|
|
656
|
+
pool_current_market_cap_usd: string;
|
|
637
657
|
pool_address: string;
|
|
638
658
|
pool_migration_timestamp: Date | null;
|
|
639
659
|
pool_type: string;
|
|
@@ -677,10 +697,12 @@ export declare const rootContract: {
|
|
|
677
697
|
pool_current_price: string;
|
|
678
698
|
pool_current_sqrt_price: string;
|
|
679
699
|
pool_current_fdv: string;
|
|
700
|
+
pool_current_fdv_usd: string;
|
|
680
701
|
pool_current_liquidity: string;
|
|
681
702
|
pool_current_tick: number;
|
|
682
703
|
pool_last_epoch: number;
|
|
683
704
|
pool_current_market_cap: string;
|
|
705
|
+
pool_current_market_cap_usd: string;
|
|
684
706
|
pool_current_fees_accrued: string;
|
|
685
707
|
pool_current_total_proceeds: string;
|
|
686
708
|
pool_current_total_tokens_sold: string;
|
|
@@ -725,9 +747,11 @@ export declare const rootContract: {
|
|
|
725
747
|
pool_current_price: string;
|
|
726
748
|
pool_current_sqrt_price: string;
|
|
727
749
|
pool_current_fdv: string;
|
|
750
|
+
pool_current_fdv_usd: string;
|
|
728
751
|
pool_current_liquidity: string;
|
|
729
752
|
pool_current_tick: number;
|
|
730
753
|
pool_current_market_cap: string;
|
|
754
|
+
pool_current_market_cap_usd: string;
|
|
731
755
|
pool_address: `0x${string}`;
|
|
732
756
|
pool_migration_timestamp: Date | null;
|
|
733
757
|
pool_type: string;
|
|
@@ -768,10 +792,12 @@ export declare const rootContract: {
|
|
|
768
792
|
pool_current_price: string;
|
|
769
793
|
pool_current_sqrt_price: string;
|
|
770
794
|
pool_current_fdv: string;
|
|
795
|
+
pool_current_fdv_usd: string;
|
|
771
796
|
pool_current_liquidity: string;
|
|
772
797
|
pool_current_tick: number;
|
|
773
798
|
pool_last_epoch: number;
|
|
774
799
|
pool_current_market_cap: string;
|
|
800
|
+
pool_current_market_cap_usd: string;
|
|
775
801
|
pool_current_fees_accrued: string;
|
|
776
802
|
pool_current_total_proceeds: string;
|
|
777
803
|
pool_current_total_tokens_sold: string;
|
|
@@ -817,9 +843,11 @@ export declare const rootContract: {
|
|
|
817
843
|
pool_current_price: string;
|
|
818
844
|
pool_current_sqrt_price: string;
|
|
819
845
|
pool_current_fdv: string;
|
|
846
|
+
pool_current_fdv_usd: string;
|
|
820
847
|
pool_current_liquidity: string;
|
|
821
848
|
pool_current_tick: number;
|
|
822
849
|
pool_current_market_cap: string;
|
|
850
|
+
pool_current_market_cap_usd: string;
|
|
823
851
|
pool_address: string;
|
|
824
852
|
pool_migration_timestamp: Date | null;
|
|
825
853
|
pool_type: string;
|
|
@@ -865,10 +893,12 @@ export declare const rootContract: {
|
|
|
865
893
|
pool_current_price: string;
|
|
866
894
|
pool_current_sqrt_price: string;
|
|
867
895
|
pool_current_fdv: string;
|
|
896
|
+
pool_current_fdv_usd: string;
|
|
868
897
|
pool_current_liquidity: string;
|
|
869
898
|
pool_current_tick: number;
|
|
870
899
|
pool_last_epoch: number;
|
|
871
900
|
pool_current_market_cap: string;
|
|
901
|
+
pool_current_market_cap_usd: string;
|
|
872
902
|
pool_current_fees_accrued: string;
|
|
873
903
|
pool_current_total_proceeds: string;
|
|
874
904
|
pool_current_total_tokens_sold: string;
|
|
@@ -913,9 +943,11 @@ export declare const rootContract: {
|
|
|
913
943
|
pool_current_price: string;
|
|
914
944
|
pool_current_sqrt_price: string;
|
|
915
945
|
pool_current_fdv: string;
|
|
946
|
+
pool_current_fdv_usd: string;
|
|
916
947
|
pool_current_liquidity: string;
|
|
917
948
|
pool_current_tick: number;
|
|
918
949
|
pool_current_market_cap: string;
|
|
950
|
+
pool_current_market_cap_usd: string;
|
|
919
951
|
pool_address: `0x${string}`;
|
|
920
952
|
pool_migration_timestamp: Date | null;
|
|
921
953
|
pool_type: string;
|
|
@@ -958,10 +990,12 @@ export declare const rootContract: {
|
|
|
958
990
|
pool_current_price: string;
|
|
959
991
|
pool_current_sqrt_price: string;
|
|
960
992
|
pool_current_fdv: string;
|
|
993
|
+
pool_current_fdv_usd: string;
|
|
961
994
|
pool_current_liquidity: string;
|
|
962
995
|
pool_current_tick: number;
|
|
963
996
|
pool_last_epoch: number;
|
|
964
997
|
pool_current_market_cap: string;
|
|
998
|
+
pool_current_market_cap_usd: string;
|
|
965
999
|
pool_current_fees_accrued: string;
|
|
966
1000
|
pool_current_total_proceeds: string;
|
|
967
1001
|
pool_current_total_tokens_sold: string;
|
|
@@ -1007,9 +1041,11 @@ export declare const rootContract: {
|
|
|
1007
1041
|
pool_current_price: string;
|
|
1008
1042
|
pool_current_sqrt_price: string;
|
|
1009
1043
|
pool_current_fdv: string;
|
|
1044
|
+
pool_current_fdv_usd: string;
|
|
1010
1045
|
pool_current_liquidity: string;
|
|
1011
1046
|
pool_current_tick: number;
|
|
1012
1047
|
pool_current_market_cap: string;
|
|
1048
|
+
pool_current_market_cap_usd: string;
|
|
1013
1049
|
pool_address: string;
|
|
1014
1050
|
pool_migration_timestamp: Date | null;
|
|
1015
1051
|
pool_type: string;
|
|
@@ -1076,10 +1112,12 @@ export declare const rootContract: {
|
|
|
1076
1112
|
pool_current_price: import("zod").ZodString;
|
|
1077
1113
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
1078
1114
|
pool_current_fdv: import("zod").ZodString;
|
|
1115
|
+
pool_current_fdv_usd: import("zod").ZodString;
|
|
1079
1116
|
pool_current_liquidity: import("zod").ZodString;
|
|
1080
1117
|
pool_current_tick: import("zod").ZodNumber;
|
|
1081
1118
|
pool_last_epoch: import("zod").ZodNumber;
|
|
1082
1119
|
pool_current_market_cap: import("zod").ZodString;
|
|
1120
|
+
pool_current_market_cap_usd: import("zod").ZodString;
|
|
1083
1121
|
pool_current_fees_accrued: import("zod").ZodString;
|
|
1084
1122
|
pool_current_total_proceeds: import("zod").ZodString;
|
|
1085
1123
|
pool_current_total_tokens_sold: import("zod").ZodString;
|
|
@@ -1221,10 +1259,12 @@ export declare const rootContract: {
|
|
|
1221
1259
|
pool_current_price: string;
|
|
1222
1260
|
pool_current_sqrt_price: string;
|
|
1223
1261
|
pool_current_fdv: string;
|
|
1262
|
+
pool_current_fdv_usd: string;
|
|
1224
1263
|
pool_current_liquidity: string;
|
|
1225
1264
|
pool_current_tick: number;
|
|
1226
1265
|
pool_last_epoch: number;
|
|
1227
1266
|
pool_current_market_cap: string;
|
|
1267
|
+
pool_current_market_cap_usd: string;
|
|
1228
1268
|
pool_current_fees_accrued: string;
|
|
1229
1269
|
pool_current_total_proceeds: string;
|
|
1230
1270
|
pool_current_total_tokens_sold: string;
|
|
@@ -1268,10 +1308,12 @@ export declare const rootContract: {
|
|
|
1268
1308
|
pool_current_price: string;
|
|
1269
1309
|
pool_current_sqrt_price: string;
|
|
1270
1310
|
pool_current_fdv: string;
|
|
1311
|
+
pool_current_fdv_usd: string;
|
|
1271
1312
|
pool_current_liquidity: string;
|
|
1272
1313
|
pool_current_tick: number;
|
|
1273
1314
|
pool_last_epoch: number;
|
|
1274
1315
|
pool_current_market_cap: string;
|
|
1316
|
+
pool_current_market_cap_usd: string;
|
|
1275
1317
|
pool_current_fees_accrued: string;
|
|
1276
1318
|
pool_current_total_proceeds: string;
|
|
1277
1319
|
pool_current_total_tokens_sold: string;
|
|
@@ -1317,9 +1359,11 @@ export declare const rootContract: {
|
|
|
1317
1359
|
pool_current_price: import("zod").ZodString;
|
|
1318
1360
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
1319
1361
|
pool_current_fdv: import("zod").ZodString;
|
|
1362
|
+
pool_current_fdv_usd: import("zod").ZodString;
|
|
1320
1363
|
pool_current_liquidity: import("zod").ZodString;
|
|
1321
1364
|
pool_current_tick: import("zod").ZodNumber;
|
|
1322
1365
|
pool_current_market_cap: import("zod").ZodString;
|
|
1366
|
+
pool_current_market_cap_usd: import("zod").ZodString;
|
|
1323
1367
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
1324
1368
|
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1325
1369
|
pool_type: import("zod").ZodString;
|
|
@@ -1453,9 +1497,11 @@ export declare const rootContract: {
|
|
|
1453
1497
|
pool_current_price: string;
|
|
1454
1498
|
pool_current_sqrt_price: string;
|
|
1455
1499
|
pool_current_fdv: string;
|
|
1500
|
+
pool_current_fdv_usd: string;
|
|
1456
1501
|
pool_current_liquidity: string;
|
|
1457
1502
|
pool_current_tick: number;
|
|
1458
1503
|
pool_current_market_cap: string;
|
|
1504
|
+
pool_current_market_cap_usd: string;
|
|
1459
1505
|
pool_address: `0x${string}`;
|
|
1460
1506
|
pool_migration_timestamp: Date | null;
|
|
1461
1507
|
pool_type: string;
|
|
@@ -1489,9 +1535,11 @@ export declare const rootContract: {
|
|
|
1489
1535
|
pool_current_price: string;
|
|
1490
1536
|
pool_current_sqrt_price: string;
|
|
1491
1537
|
pool_current_fdv: string;
|
|
1538
|
+
pool_current_fdv_usd: string;
|
|
1492
1539
|
pool_current_liquidity: string;
|
|
1493
1540
|
pool_current_tick: number;
|
|
1494
1541
|
pool_current_market_cap: string;
|
|
1542
|
+
pool_current_market_cap_usd: string;
|
|
1495
1543
|
pool_address: string;
|
|
1496
1544
|
pool_migration_timestamp: Date | null;
|
|
1497
1545
|
pool_type: string;
|
|
@@ -1534,10 +1582,12 @@ export declare const rootContract: {
|
|
|
1534
1582
|
pool_current_price: string;
|
|
1535
1583
|
pool_current_sqrt_price: string;
|
|
1536
1584
|
pool_current_fdv: string;
|
|
1585
|
+
pool_current_fdv_usd: string;
|
|
1537
1586
|
pool_current_liquidity: string;
|
|
1538
1587
|
pool_current_tick: number;
|
|
1539
1588
|
pool_last_epoch: number;
|
|
1540
1589
|
pool_current_market_cap: string;
|
|
1590
|
+
pool_current_market_cap_usd: string;
|
|
1541
1591
|
pool_current_fees_accrued: string;
|
|
1542
1592
|
pool_current_total_proceeds: string;
|
|
1543
1593
|
pool_current_total_tokens_sold: string;
|
|
@@ -1582,9 +1632,11 @@ export declare const rootContract: {
|
|
|
1582
1632
|
pool_current_price: string;
|
|
1583
1633
|
pool_current_sqrt_price: string;
|
|
1584
1634
|
pool_current_fdv: string;
|
|
1635
|
+
pool_current_fdv_usd: string;
|
|
1585
1636
|
pool_current_liquidity: string;
|
|
1586
1637
|
pool_current_tick: number;
|
|
1587
1638
|
pool_current_market_cap: string;
|
|
1639
|
+
pool_current_market_cap_usd: string;
|
|
1588
1640
|
pool_address: `0x${string}`;
|
|
1589
1641
|
pool_migration_timestamp: Date | null;
|
|
1590
1642
|
pool_type: string;
|
|
@@ -1625,10 +1677,12 @@ export declare const rootContract: {
|
|
|
1625
1677
|
pool_current_price: string;
|
|
1626
1678
|
pool_current_sqrt_price: string;
|
|
1627
1679
|
pool_current_fdv: string;
|
|
1680
|
+
pool_current_fdv_usd: string;
|
|
1628
1681
|
pool_current_liquidity: string;
|
|
1629
1682
|
pool_current_tick: number;
|
|
1630
1683
|
pool_last_epoch: number;
|
|
1631
1684
|
pool_current_market_cap: string;
|
|
1685
|
+
pool_current_market_cap_usd: string;
|
|
1632
1686
|
pool_current_fees_accrued: string;
|
|
1633
1687
|
pool_current_total_proceeds: string;
|
|
1634
1688
|
pool_current_total_tokens_sold: string;
|
|
@@ -1674,9 +1728,11 @@ export declare const rootContract: {
|
|
|
1674
1728
|
pool_current_price: string;
|
|
1675
1729
|
pool_current_sqrt_price: string;
|
|
1676
1730
|
pool_current_fdv: string;
|
|
1731
|
+
pool_current_fdv_usd: string;
|
|
1677
1732
|
pool_current_liquidity: string;
|
|
1678
1733
|
pool_current_tick: number;
|
|
1679
1734
|
pool_current_market_cap: string;
|
|
1735
|
+
pool_current_market_cap_usd: string;
|
|
1680
1736
|
pool_address: string;
|
|
1681
1737
|
pool_migration_timestamp: Date | null;
|
|
1682
1738
|
pool_type: string;
|
|
@@ -1720,10 +1776,12 @@ export declare const rootContract: {
|
|
|
1720
1776
|
pool_current_price: string;
|
|
1721
1777
|
pool_current_sqrt_price: string;
|
|
1722
1778
|
pool_current_fdv: string;
|
|
1779
|
+
pool_current_fdv_usd: string;
|
|
1723
1780
|
pool_current_liquidity: string;
|
|
1724
1781
|
pool_current_tick: number;
|
|
1725
1782
|
pool_last_epoch: number;
|
|
1726
1783
|
pool_current_market_cap: string;
|
|
1784
|
+
pool_current_market_cap_usd: string;
|
|
1727
1785
|
pool_current_fees_accrued: string;
|
|
1728
1786
|
pool_current_total_proceeds: string;
|
|
1729
1787
|
pool_current_total_tokens_sold: string;
|
|
@@ -1768,9 +1826,11 @@ export declare const rootContract: {
|
|
|
1768
1826
|
pool_current_price: string;
|
|
1769
1827
|
pool_current_sqrt_price: string;
|
|
1770
1828
|
pool_current_fdv: string;
|
|
1829
|
+
pool_current_fdv_usd: string;
|
|
1771
1830
|
pool_current_liquidity: string;
|
|
1772
1831
|
pool_current_tick: number;
|
|
1773
1832
|
pool_current_market_cap: string;
|
|
1833
|
+
pool_current_market_cap_usd: string;
|
|
1774
1834
|
pool_address: `0x${string}`;
|
|
1775
1835
|
pool_migration_timestamp: Date | null;
|
|
1776
1836
|
pool_type: string;
|
|
@@ -1811,10 +1871,12 @@ export declare const rootContract: {
|
|
|
1811
1871
|
pool_current_price: string;
|
|
1812
1872
|
pool_current_sqrt_price: string;
|
|
1813
1873
|
pool_current_fdv: string;
|
|
1874
|
+
pool_current_fdv_usd: string;
|
|
1814
1875
|
pool_current_liquidity: string;
|
|
1815
1876
|
pool_current_tick: number;
|
|
1816
1877
|
pool_last_epoch: number;
|
|
1817
1878
|
pool_current_market_cap: string;
|
|
1879
|
+
pool_current_market_cap_usd: string;
|
|
1818
1880
|
pool_current_fees_accrued: string;
|
|
1819
1881
|
pool_current_total_proceeds: string;
|
|
1820
1882
|
pool_current_total_tokens_sold: string;
|
|
@@ -1860,9 +1922,11 @@ export declare const rootContract: {
|
|
|
1860
1922
|
pool_current_price: string;
|
|
1861
1923
|
pool_current_sqrt_price: string;
|
|
1862
1924
|
pool_current_fdv: string;
|
|
1925
|
+
pool_current_fdv_usd: string;
|
|
1863
1926
|
pool_current_liquidity: string;
|
|
1864
1927
|
pool_current_tick: number;
|
|
1865
1928
|
pool_current_market_cap: string;
|
|
1929
|
+
pool_current_market_cap_usd: string;
|
|
1866
1930
|
pool_address: string;
|
|
1867
1931
|
pool_migration_timestamp: Date | null;
|
|
1868
1932
|
pool_type: string;
|
|
@@ -1908,10 +1972,12 @@ export declare const rootContract: {
|
|
|
1908
1972
|
pool_current_price: string;
|
|
1909
1973
|
pool_current_sqrt_price: string;
|
|
1910
1974
|
pool_current_fdv: string;
|
|
1975
|
+
pool_current_fdv_usd: string;
|
|
1911
1976
|
pool_current_liquidity: string;
|
|
1912
1977
|
pool_current_tick: number;
|
|
1913
1978
|
pool_last_epoch: number;
|
|
1914
1979
|
pool_current_market_cap: string;
|
|
1980
|
+
pool_current_market_cap_usd: string;
|
|
1915
1981
|
pool_current_fees_accrued: string;
|
|
1916
1982
|
pool_current_total_proceeds: string;
|
|
1917
1983
|
pool_current_total_tokens_sold: string;
|
|
@@ -1956,9 +2022,11 @@ export declare const rootContract: {
|
|
|
1956
2022
|
pool_current_price: string;
|
|
1957
2023
|
pool_current_sqrt_price: string;
|
|
1958
2024
|
pool_current_fdv: string;
|
|
2025
|
+
pool_current_fdv_usd: string;
|
|
1959
2026
|
pool_current_liquidity: string;
|
|
1960
2027
|
pool_current_tick: number;
|
|
1961
2028
|
pool_current_market_cap: string;
|
|
2029
|
+
pool_current_market_cap_usd: string;
|
|
1962
2030
|
pool_address: `0x${string}`;
|
|
1963
2031
|
pool_migration_timestamp: Date | null;
|
|
1964
2032
|
pool_type: string;
|
|
@@ -2001,10 +2069,12 @@ export declare const rootContract: {
|
|
|
2001
2069
|
pool_current_price: string;
|
|
2002
2070
|
pool_current_sqrt_price: string;
|
|
2003
2071
|
pool_current_fdv: string;
|
|
2072
|
+
pool_current_fdv_usd: string;
|
|
2004
2073
|
pool_current_liquidity: string;
|
|
2005
2074
|
pool_current_tick: number;
|
|
2006
2075
|
pool_last_epoch: number;
|
|
2007
2076
|
pool_current_market_cap: string;
|
|
2077
|
+
pool_current_market_cap_usd: string;
|
|
2008
2078
|
pool_current_fees_accrued: string;
|
|
2009
2079
|
pool_current_total_proceeds: string;
|
|
2010
2080
|
pool_current_total_tokens_sold: string;
|
|
@@ -2050,9 +2120,11 @@ export declare const rootContract: {
|
|
|
2050
2120
|
pool_current_price: string;
|
|
2051
2121
|
pool_current_sqrt_price: string;
|
|
2052
2122
|
pool_current_fdv: string;
|
|
2123
|
+
pool_current_fdv_usd: string;
|
|
2053
2124
|
pool_current_liquidity: string;
|
|
2054
2125
|
pool_current_tick: number;
|
|
2055
2126
|
pool_current_market_cap: string;
|
|
2127
|
+
pool_current_market_cap_usd: string;
|
|
2056
2128
|
pool_address: string;
|
|
2057
2129
|
pool_migration_timestamp: Date | null;
|
|
2058
2130
|
pool_type: string;
|
|
@@ -2120,10 +2192,12 @@ export declare const rootContract: {
|
|
|
2120
2192
|
pool_current_price: import("zod").ZodString;
|
|
2121
2193
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
2122
2194
|
pool_current_fdv: import("zod").ZodString;
|
|
2195
|
+
pool_current_fdv_usd: import("zod").ZodString;
|
|
2123
2196
|
pool_current_liquidity: import("zod").ZodString;
|
|
2124
2197
|
pool_current_tick: import("zod").ZodNumber;
|
|
2125
2198
|
pool_last_epoch: import("zod").ZodNumber;
|
|
2126
2199
|
pool_current_market_cap: import("zod").ZodString;
|
|
2200
|
+
pool_current_market_cap_usd: import("zod").ZodString;
|
|
2127
2201
|
pool_current_fees_accrued: import("zod").ZodString;
|
|
2128
2202
|
pool_current_total_proceeds: import("zod").ZodString;
|
|
2129
2203
|
pool_current_total_tokens_sold: import("zod").ZodString;
|
|
@@ -2265,10 +2339,12 @@ export declare const rootContract: {
|
|
|
2265
2339
|
pool_current_price: string;
|
|
2266
2340
|
pool_current_sqrt_price: string;
|
|
2267
2341
|
pool_current_fdv: string;
|
|
2342
|
+
pool_current_fdv_usd: string;
|
|
2268
2343
|
pool_current_liquidity: string;
|
|
2269
2344
|
pool_current_tick: number;
|
|
2270
2345
|
pool_last_epoch: number;
|
|
2271
2346
|
pool_current_market_cap: string;
|
|
2347
|
+
pool_current_market_cap_usd: string;
|
|
2272
2348
|
pool_current_fees_accrued: string;
|
|
2273
2349
|
pool_current_total_proceeds: string;
|
|
2274
2350
|
pool_current_total_tokens_sold: string;
|
|
@@ -2312,10 +2388,12 @@ export declare const rootContract: {
|
|
|
2312
2388
|
pool_current_price: string;
|
|
2313
2389
|
pool_current_sqrt_price: string;
|
|
2314
2390
|
pool_current_fdv: string;
|
|
2391
|
+
pool_current_fdv_usd: string;
|
|
2315
2392
|
pool_current_liquidity: string;
|
|
2316
2393
|
pool_current_tick: number;
|
|
2317
2394
|
pool_last_epoch: number;
|
|
2318
2395
|
pool_current_market_cap: string;
|
|
2396
|
+
pool_current_market_cap_usd: string;
|
|
2319
2397
|
pool_current_fees_accrued: string;
|
|
2320
2398
|
pool_current_total_proceeds: string;
|
|
2321
2399
|
pool_current_total_tokens_sold: string;
|
|
@@ -2361,9 +2439,11 @@ export declare const rootContract: {
|
|
|
2361
2439
|
pool_current_price: import("zod").ZodString;
|
|
2362
2440
|
pool_current_sqrt_price: import("zod").ZodString;
|
|
2363
2441
|
pool_current_fdv: import("zod").ZodString;
|
|
2442
|
+
pool_current_fdv_usd: import("zod").ZodString;
|
|
2364
2443
|
pool_current_liquidity: import("zod").ZodString;
|
|
2365
2444
|
pool_current_tick: import("zod").ZodNumber;
|
|
2366
2445
|
pool_current_market_cap: import("zod").ZodString;
|
|
2446
|
+
pool_current_market_cap_usd: import("zod").ZodString;
|
|
2367
2447
|
pool_address: import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodType<`0x${string}`, import("zod").ZodTypeDef, `0x${string}`>>;
|
|
2368
2448
|
pool_migration_timestamp: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
2369
2449
|
pool_type: import("zod").ZodString;
|
|
@@ -2497,9 +2577,11 @@ export declare const rootContract: {
|
|
|
2497
2577
|
pool_current_price: string;
|
|
2498
2578
|
pool_current_sqrt_price: string;
|
|
2499
2579
|
pool_current_fdv: string;
|
|
2580
|
+
pool_current_fdv_usd: string;
|
|
2500
2581
|
pool_current_liquidity: string;
|
|
2501
2582
|
pool_current_tick: number;
|
|
2502
2583
|
pool_current_market_cap: string;
|
|
2584
|
+
pool_current_market_cap_usd: string;
|
|
2503
2585
|
pool_address: `0x${string}`;
|
|
2504
2586
|
pool_migration_timestamp: Date | null;
|
|
2505
2587
|
pool_type: string;
|
|
@@ -2533,9 +2615,11 @@ export declare const rootContract: {
|
|
|
2533
2615
|
pool_current_price: string;
|
|
2534
2616
|
pool_current_sqrt_price: string;
|
|
2535
2617
|
pool_current_fdv: string;
|
|
2618
|
+
pool_current_fdv_usd: string;
|
|
2536
2619
|
pool_current_liquidity: string;
|
|
2537
2620
|
pool_current_tick: number;
|
|
2538
2621
|
pool_current_market_cap: string;
|
|
2622
|
+
pool_current_market_cap_usd: string;
|
|
2539
2623
|
pool_address: string;
|
|
2540
2624
|
pool_migration_timestamp: Date | null;
|
|
2541
2625
|
pool_type: string;
|
|
@@ -2578,10 +2662,12 @@ export declare const rootContract: {
|
|
|
2578
2662
|
pool_current_price: string;
|
|
2579
2663
|
pool_current_sqrt_price: string;
|
|
2580
2664
|
pool_current_fdv: string;
|
|
2665
|
+
pool_current_fdv_usd: string;
|
|
2581
2666
|
pool_current_liquidity: string;
|
|
2582
2667
|
pool_current_tick: number;
|
|
2583
2668
|
pool_last_epoch: number;
|
|
2584
2669
|
pool_current_market_cap: string;
|
|
2670
|
+
pool_current_market_cap_usd: string;
|
|
2585
2671
|
pool_current_fees_accrued: string;
|
|
2586
2672
|
pool_current_total_proceeds: string;
|
|
2587
2673
|
pool_current_total_tokens_sold: string;
|
|
@@ -2626,9 +2712,11 @@ export declare const rootContract: {
|
|
|
2626
2712
|
pool_current_price: string;
|
|
2627
2713
|
pool_current_sqrt_price: string;
|
|
2628
2714
|
pool_current_fdv: string;
|
|
2715
|
+
pool_current_fdv_usd: string;
|
|
2629
2716
|
pool_current_liquidity: string;
|
|
2630
2717
|
pool_current_tick: number;
|
|
2631
2718
|
pool_current_market_cap: string;
|
|
2719
|
+
pool_current_market_cap_usd: string;
|
|
2632
2720
|
pool_address: `0x${string}`;
|
|
2633
2721
|
pool_migration_timestamp: Date | null;
|
|
2634
2722
|
pool_type: string;
|
|
@@ -2669,10 +2757,12 @@ export declare const rootContract: {
|
|
|
2669
2757
|
pool_current_price: string;
|
|
2670
2758
|
pool_current_sqrt_price: string;
|
|
2671
2759
|
pool_current_fdv: string;
|
|
2760
|
+
pool_current_fdv_usd: string;
|
|
2672
2761
|
pool_current_liquidity: string;
|
|
2673
2762
|
pool_current_tick: number;
|
|
2674
2763
|
pool_last_epoch: number;
|
|
2675
2764
|
pool_current_market_cap: string;
|
|
2765
|
+
pool_current_market_cap_usd: string;
|
|
2676
2766
|
pool_current_fees_accrued: string;
|
|
2677
2767
|
pool_current_total_proceeds: string;
|
|
2678
2768
|
pool_current_total_tokens_sold: string;
|
|
@@ -2718,9 +2808,11 @@ export declare const rootContract: {
|
|
|
2718
2808
|
pool_current_price: string;
|
|
2719
2809
|
pool_current_sqrt_price: string;
|
|
2720
2810
|
pool_current_fdv: string;
|
|
2811
|
+
pool_current_fdv_usd: string;
|
|
2721
2812
|
pool_current_liquidity: string;
|
|
2722
2813
|
pool_current_tick: number;
|
|
2723
2814
|
pool_current_market_cap: string;
|
|
2815
|
+
pool_current_market_cap_usd: string;
|
|
2724
2816
|
pool_address: string;
|
|
2725
2817
|
pool_migration_timestamp: Date | null;
|
|
2726
2818
|
pool_type: string;
|
|
@@ -2764,10 +2856,12 @@ export declare const rootContract: {
|
|
|
2764
2856
|
pool_current_price: string;
|
|
2765
2857
|
pool_current_sqrt_price: string;
|
|
2766
2858
|
pool_current_fdv: string;
|
|
2859
|
+
pool_current_fdv_usd: string;
|
|
2767
2860
|
pool_current_liquidity: string;
|
|
2768
2861
|
pool_current_tick: number;
|
|
2769
2862
|
pool_last_epoch: number;
|
|
2770
2863
|
pool_current_market_cap: string;
|
|
2864
|
+
pool_current_market_cap_usd: string;
|
|
2771
2865
|
pool_current_fees_accrued: string;
|
|
2772
2866
|
pool_current_total_proceeds: string;
|
|
2773
2867
|
pool_current_total_tokens_sold: string;
|
|
@@ -2812,9 +2906,11 @@ export declare const rootContract: {
|
|
|
2812
2906
|
pool_current_price: string;
|
|
2813
2907
|
pool_current_sqrt_price: string;
|
|
2814
2908
|
pool_current_fdv: string;
|
|
2909
|
+
pool_current_fdv_usd: string;
|
|
2815
2910
|
pool_current_liquidity: string;
|
|
2816
2911
|
pool_current_tick: number;
|
|
2817
2912
|
pool_current_market_cap: string;
|
|
2913
|
+
pool_current_market_cap_usd: string;
|
|
2818
2914
|
pool_address: `0x${string}`;
|
|
2819
2915
|
pool_migration_timestamp: Date | null;
|
|
2820
2916
|
pool_type: string;
|
|
@@ -2855,10 +2951,12 @@ export declare const rootContract: {
|
|
|
2855
2951
|
pool_current_price: string;
|
|
2856
2952
|
pool_current_sqrt_price: string;
|
|
2857
2953
|
pool_current_fdv: string;
|
|
2954
|
+
pool_current_fdv_usd: string;
|
|
2858
2955
|
pool_current_liquidity: string;
|
|
2859
2956
|
pool_current_tick: number;
|
|
2860
2957
|
pool_last_epoch: number;
|
|
2861
2958
|
pool_current_market_cap: string;
|
|
2959
|
+
pool_current_market_cap_usd: string;
|
|
2862
2960
|
pool_current_fees_accrued: string;
|
|
2863
2961
|
pool_current_total_proceeds: string;
|
|
2864
2962
|
pool_current_total_tokens_sold: string;
|
|
@@ -2904,9 +3002,11 @@ export declare const rootContract: {
|
|
|
2904
3002
|
pool_current_price: string;
|
|
2905
3003
|
pool_current_sqrt_price: string;
|
|
2906
3004
|
pool_current_fdv: string;
|
|
3005
|
+
pool_current_fdv_usd: string;
|
|
2907
3006
|
pool_current_liquidity: string;
|
|
2908
3007
|
pool_current_tick: number;
|
|
2909
3008
|
pool_current_market_cap: string;
|
|
3009
|
+
pool_current_market_cap_usd: string;
|
|
2910
3010
|
pool_address: string;
|
|
2911
3011
|
pool_migration_timestamp: Date | null;
|
|
2912
3012
|
pool_type: string;
|
|
@@ -2952,10 +3052,12 @@ export declare const rootContract: {
|
|
|
2952
3052
|
pool_current_price: string;
|
|
2953
3053
|
pool_current_sqrt_price: string;
|
|
2954
3054
|
pool_current_fdv: string;
|
|
3055
|
+
pool_current_fdv_usd: string;
|
|
2955
3056
|
pool_current_liquidity: string;
|
|
2956
3057
|
pool_current_tick: number;
|
|
2957
3058
|
pool_last_epoch: number;
|
|
2958
3059
|
pool_current_market_cap: string;
|
|
3060
|
+
pool_current_market_cap_usd: string;
|
|
2959
3061
|
pool_current_fees_accrued: string;
|
|
2960
3062
|
pool_current_total_proceeds: string;
|
|
2961
3063
|
pool_current_total_tokens_sold: string;
|
|
@@ -3000,9 +3102,11 @@ export declare const rootContract: {
|
|
|
3000
3102
|
pool_current_price: string;
|
|
3001
3103
|
pool_current_sqrt_price: string;
|
|
3002
3104
|
pool_current_fdv: string;
|
|
3105
|
+
pool_current_fdv_usd: string;
|
|
3003
3106
|
pool_current_liquidity: string;
|
|
3004
3107
|
pool_current_tick: number;
|
|
3005
3108
|
pool_current_market_cap: string;
|
|
3109
|
+
pool_current_market_cap_usd: string;
|
|
3006
3110
|
pool_address: `0x${string}`;
|
|
3007
3111
|
pool_migration_timestamp: Date | null;
|
|
3008
3112
|
pool_type: string;
|
|
@@ -3045,10 +3149,12 @@ export declare const rootContract: {
|
|
|
3045
3149
|
pool_current_price: string;
|
|
3046
3150
|
pool_current_sqrt_price: string;
|
|
3047
3151
|
pool_current_fdv: string;
|
|
3152
|
+
pool_current_fdv_usd: string;
|
|
3048
3153
|
pool_current_liquidity: string;
|
|
3049
3154
|
pool_current_tick: number;
|
|
3050
3155
|
pool_last_epoch: number;
|
|
3051
3156
|
pool_current_market_cap: string;
|
|
3157
|
+
pool_current_market_cap_usd: string;
|
|
3052
3158
|
pool_current_fees_accrued: string;
|
|
3053
3159
|
pool_current_total_proceeds: string;
|
|
3054
3160
|
pool_current_total_tokens_sold: string;
|
|
@@ -3094,9 +3200,11 @@ export declare const rootContract: {
|
|
|
3094
3200
|
pool_current_price: string;
|
|
3095
3201
|
pool_current_sqrt_price: string;
|
|
3096
3202
|
pool_current_fdv: string;
|
|
3203
|
+
pool_current_fdv_usd: string;
|
|
3097
3204
|
pool_current_liquidity: string;
|
|
3098
3205
|
pool_current_tick: number;
|
|
3099
3206
|
pool_current_market_cap: string;
|
|
3207
|
+
pool_current_market_cap_usd: string;
|
|
3100
3208
|
pool_address: string;
|
|
3101
3209
|
pool_migration_timestamp: Date | null;
|
|
3102
3210
|
pool_type: string;
|