@longdotxyz/shared 0.0.75 → 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 +247 -0
- package/dist/contracts/index.js +3 -0
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/pathfinding.contract.d.ts +263 -0
- package/dist/contracts/pathfinding.contract.js +45 -0
- package/dist/contracts/pathfinding.contract.js.map +1 -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
|
@@ -11,10 +11,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
11
11
|
pool_current_price: z.ZodString;
|
|
12
12
|
pool_current_sqrt_price: z.ZodString;
|
|
13
13
|
pool_current_fdv: z.ZodString;
|
|
14
|
+
pool_current_fdv_usd: z.ZodString;
|
|
14
15
|
pool_current_liquidity: z.ZodString;
|
|
15
16
|
pool_current_tick: z.ZodNumber;
|
|
16
17
|
pool_last_epoch: z.ZodNumber;
|
|
17
18
|
pool_current_market_cap: z.ZodString;
|
|
19
|
+
pool_current_market_cap_usd: z.ZodString;
|
|
18
20
|
pool_current_fees_accrued: z.ZodString;
|
|
19
21
|
pool_current_total_proceeds: z.ZodString;
|
|
20
22
|
pool_current_total_tokens_sold: z.ZodString;
|
|
@@ -156,10 +158,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
156
158
|
pool_current_price: string;
|
|
157
159
|
pool_current_sqrt_price: string;
|
|
158
160
|
pool_current_fdv: string;
|
|
161
|
+
pool_current_fdv_usd: string;
|
|
159
162
|
pool_current_liquidity: string;
|
|
160
163
|
pool_current_tick: number;
|
|
161
164
|
pool_last_epoch: number;
|
|
162
165
|
pool_current_market_cap: string;
|
|
166
|
+
pool_current_market_cap_usd: string;
|
|
163
167
|
pool_current_fees_accrued: string;
|
|
164
168
|
pool_current_total_proceeds: string;
|
|
165
169
|
pool_current_total_tokens_sold: string;
|
|
@@ -203,10 +207,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
203
207
|
pool_current_price: string;
|
|
204
208
|
pool_current_sqrt_price: string;
|
|
205
209
|
pool_current_fdv: string;
|
|
210
|
+
pool_current_fdv_usd: string;
|
|
206
211
|
pool_current_liquidity: string;
|
|
207
212
|
pool_current_tick: number;
|
|
208
213
|
pool_last_epoch: number;
|
|
209
214
|
pool_current_market_cap: string;
|
|
215
|
+
pool_current_market_cap_usd: string;
|
|
210
216
|
pool_current_fees_accrued: string;
|
|
211
217
|
pool_current_total_proceeds: string;
|
|
212
218
|
pool_current_total_tokens_sold: string;
|
|
@@ -252,9 +258,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
252
258
|
pool_current_price: z.ZodString;
|
|
253
259
|
pool_current_sqrt_price: z.ZodString;
|
|
254
260
|
pool_current_fdv: z.ZodString;
|
|
261
|
+
pool_current_fdv_usd: z.ZodString;
|
|
255
262
|
pool_current_liquidity: z.ZodString;
|
|
256
263
|
pool_current_tick: z.ZodNumber;
|
|
257
264
|
pool_current_market_cap: z.ZodString;
|
|
265
|
+
pool_current_market_cap_usd: z.ZodString;
|
|
258
266
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
259
267
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
260
268
|
pool_type: z.ZodString;
|
|
@@ -388,9 +396,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
388
396
|
pool_current_price: string;
|
|
389
397
|
pool_current_sqrt_price: string;
|
|
390
398
|
pool_current_fdv: string;
|
|
399
|
+
pool_current_fdv_usd: string;
|
|
391
400
|
pool_current_liquidity: string;
|
|
392
401
|
pool_current_tick: number;
|
|
393
402
|
pool_current_market_cap: string;
|
|
403
|
+
pool_current_market_cap_usd: string;
|
|
394
404
|
pool_address: `0x${string}`;
|
|
395
405
|
pool_migration_timestamp: Date | null;
|
|
396
406
|
pool_type: string;
|
|
@@ -424,9 +434,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
424
434
|
pool_current_price: string;
|
|
425
435
|
pool_current_sqrt_price: string;
|
|
426
436
|
pool_current_fdv: string;
|
|
437
|
+
pool_current_fdv_usd: string;
|
|
427
438
|
pool_current_liquidity: string;
|
|
428
439
|
pool_current_tick: number;
|
|
429
440
|
pool_current_market_cap: string;
|
|
441
|
+
pool_current_market_cap_usd: string;
|
|
430
442
|
pool_address: string;
|
|
431
443
|
pool_migration_timestamp: Date | null;
|
|
432
444
|
pool_type: string;
|
|
@@ -469,10 +481,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
469
481
|
pool_current_price: string;
|
|
470
482
|
pool_current_sqrt_price: string;
|
|
471
483
|
pool_current_fdv: string;
|
|
484
|
+
pool_current_fdv_usd: string;
|
|
472
485
|
pool_current_liquidity: string;
|
|
473
486
|
pool_current_tick: number;
|
|
474
487
|
pool_last_epoch: number;
|
|
475
488
|
pool_current_market_cap: string;
|
|
489
|
+
pool_current_market_cap_usd: string;
|
|
476
490
|
pool_current_fees_accrued: string;
|
|
477
491
|
pool_current_total_proceeds: string;
|
|
478
492
|
pool_current_total_tokens_sold: string;
|
|
@@ -517,9 +531,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
517
531
|
pool_current_price: string;
|
|
518
532
|
pool_current_sqrt_price: string;
|
|
519
533
|
pool_current_fdv: string;
|
|
534
|
+
pool_current_fdv_usd: string;
|
|
520
535
|
pool_current_liquidity: string;
|
|
521
536
|
pool_current_tick: number;
|
|
522
537
|
pool_current_market_cap: string;
|
|
538
|
+
pool_current_market_cap_usd: string;
|
|
523
539
|
pool_address: `0x${string}`;
|
|
524
540
|
pool_migration_timestamp: Date | null;
|
|
525
541
|
pool_type: string;
|
|
@@ -560,10 +576,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
560
576
|
pool_current_price: string;
|
|
561
577
|
pool_current_sqrt_price: string;
|
|
562
578
|
pool_current_fdv: string;
|
|
579
|
+
pool_current_fdv_usd: string;
|
|
563
580
|
pool_current_liquidity: string;
|
|
564
581
|
pool_current_tick: number;
|
|
565
582
|
pool_last_epoch: number;
|
|
566
583
|
pool_current_market_cap: string;
|
|
584
|
+
pool_current_market_cap_usd: string;
|
|
567
585
|
pool_current_fees_accrued: string;
|
|
568
586
|
pool_current_total_proceeds: string;
|
|
569
587
|
pool_current_total_tokens_sold: string;
|
|
@@ -609,9 +627,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
609
627
|
pool_current_price: string;
|
|
610
628
|
pool_current_sqrt_price: string;
|
|
611
629
|
pool_current_fdv: string;
|
|
630
|
+
pool_current_fdv_usd: string;
|
|
612
631
|
pool_current_liquidity: string;
|
|
613
632
|
pool_current_tick: number;
|
|
614
633
|
pool_current_market_cap: string;
|
|
634
|
+
pool_current_market_cap_usd: string;
|
|
615
635
|
pool_address: string;
|
|
616
636
|
pool_migration_timestamp: Date | null;
|
|
617
637
|
pool_type: string;
|
|
@@ -655,10 +675,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
655
675
|
pool_current_price: string;
|
|
656
676
|
pool_current_sqrt_price: string;
|
|
657
677
|
pool_current_fdv: string;
|
|
678
|
+
pool_current_fdv_usd: string;
|
|
658
679
|
pool_current_liquidity: string;
|
|
659
680
|
pool_current_tick: number;
|
|
660
681
|
pool_last_epoch: number;
|
|
661
682
|
pool_current_market_cap: string;
|
|
683
|
+
pool_current_market_cap_usd: string;
|
|
662
684
|
pool_current_fees_accrued: string;
|
|
663
685
|
pool_current_total_proceeds: string;
|
|
664
686
|
pool_current_total_tokens_sold: string;
|
|
@@ -703,9 +725,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
703
725
|
pool_current_price: string;
|
|
704
726
|
pool_current_sqrt_price: string;
|
|
705
727
|
pool_current_fdv: string;
|
|
728
|
+
pool_current_fdv_usd: string;
|
|
706
729
|
pool_current_liquidity: string;
|
|
707
730
|
pool_current_tick: number;
|
|
708
731
|
pool_current_market_cap: string;
|
|
732
|
+
pool_current_market_cap_usd: string;
|
|
709
733
|
pool_address: `0x${string}`;
|
|
710
734
|
pool_migration_timestamp: Date | null;
|
|
711
735
|
pool_type: string;
|
|
@@ -746,10 +770,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
746
770
|
pool_current_price: string;
|
|
747
771
|
pool_current_sqrt_price: string;
|
|
748
772
|
pool_current_fdv: string;
|
|
773
|
+
pool_current_fdv_usd: string;
|
|
749
774
|
pool_current_liquidity: string;
|
|
750
775
|
pool_current_tick: number;
|
|
751
776
|
pool_last_epoch: number;
|
|
752
777
|
pool_current_market_cap: string;
|
|
778
|
+
pool_current_market_cap_usd: string;
|
|
753
779
|
pool_current_fees_accrued: string;
|
|
754
780
|
pool_current_total_proceeds: string;
|
|
755
781
|
pool_current_total_tokens_sold: string;
|
|
@@ -795,9 +821,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
795
821
|
pool_current_price: string;
|
|
796
822
|
pool_current_sqrt_price: string;
|
|
797
823
|
pool_current_fdv: string;
|
|
824
|
+
pool_current_fdv_usd: string;
|
|
798
825
|
pool_current_liquidity: string;
|
|
799
826
|
pool_current_tick: number;
|
|
800
827
|
pool_current_market_cap: string;
|
|
828
|
+
pool_current_market_cap_usd: string;
|
|
801
829
|
pool_address: string;
|
|
802
830
|
pool_migration_timestamp: Date | null;
|
|
803
831
|
pool_type: string;
|
|
@@ -866,10 +894,12 @@ declare const assetContract: {
|
|
|
866
894
|
pool_current_price: z.ZodString;
|
|
867
895
|
pool_current_sqrt_price: z.ZodString;
|
|
868
896
|
pool_current_fdv: z.ZodString;
|
|
897
|
+
pool_current_fdv_usd: z.ZodString;
|
|
869
898
|
pool_current_liquidity: z.ZodString;
|
|
870
899
|
pool_current_tick: z.ZodNumber;
|
|
871
900
|
pool_last_epoch: z.ZodNumber;
|
|
872
901
|
pool_current_market_cap: z.ZodString;
|
|
902
|
+
pool_current_market_cap_usd: z.ZodString;
|
|
873
903
|
pool_current_fees_accrued: z.ZodString;
|
|
874
904
|
pool_current_total_proceeds: z.ZodString;
|
|
875
905
|
pool_current_total_tokens_sold: z.ZodString;
|
|
@@ -1011,10 +1041,12 @@ declare const assetContract: {
|
|
|
1011
1041
|
pool_current_price: string;
|
|
1012
1042
|
pool_current_sqrt_price: string;
|
|
1013
1043
|
pool_current_fdv: string;
|
|
1044
|
+
pool_current_fdv_usd: string;
|
|
1014
1045
|
pool_current_liquidity: string;
|
|
1015
1046
|
pool_current_tick: number;
|
|
1016
1047
|
pool_last_epoch: number;
|
|
1017
1048
|
pool_current_market_cap: string;
|
|
1049
|
+
pool_current_market_cap_usd: string;
|
|
1018
1050
|
pool_current_fees_accrued: string;
|
|
1019
1051
|
pool_current_total_proceeds: string;
|
|
1020
1052
|
pool_current_total_tokens_sold: string;
|
|
@@ -1058,10 +1090,12 @@ declare const assetContract: {
|
|
|
1058
1090
|
pool_current_price: string;
|
|
1059
1091
|
pool_current_sqrt_price: string;
|
|
1060
1092
|
pool_current_fdv: string;
|
|
1093
|
+
pool_current_fdv_usd: string;
|
|
1061
1094
|
pool_current_liquidity: string;
|
|
1062
1095
|
pool_current_tick: number;
|
|
1063
1096
|
pool_last_epoch: number;
|
|
1064
1097
|
pool_current_market_cap: string;
|
|
1098
|
+
pool_current_market_cap_usd: string;
|
|
1065
1099
|
pool_current_fees_accrued: string;
|
|
1066
1100
|
pool_current_total_proceeds: string;
|
|
1067
1101
|
pool_current_total_tokens_sold: string;
|
|
@@ -1107,9 +1141,11 @@ declare const assetContract: {
|
|
|
1107
1141
|
pool_current_price: z.ZodString;
|
|
1108
1142
|
pool_current_sqrt_price: z.ZodString;
|
|
1109
1143
|
pool_current_fdv: z.ZodString;
|
|
1144
|
+
pool_current_fdv_usd: z.ZodString;
|
|
1110
1145
|
pool_current_liquidity: z.ZodString;
|
|
1111
1146
|
pool_current_tick: z.ZodNumber;
|
|
1112
1147
|
pool_current_market_cap: z.ZodString;
|
|
1148
|
+
pool_current_market_cap_usd: z.ZodString;
|
|
1113
1149
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
1114
1150
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
1115
1151
|
pool_type: z.ZodString;
|
|
@@ -1243,9 +1279,11 @@ declare const assetContract: {
|
|
|
1243
1279
|
pool_current_price: string;
|
|
1244
1280
|
pool_current_sqrt_price: string;
|
|
1245
1281
|
pool_current_fdv: string;
|
|
1282
|
+
pool_current_fdv_usd: string;
|
|
1246
1283
|
pool_current_liquidity: string;
|
|
1247
1284
|
pool_current_tick: number;
|
|
1248
1285
|
pool_current_market_cap: string;
|
|
1286
|
+
pool_current_market_cap_usd: string;
|
|
1249
1287
|
pool_address: `0x${string}`;
|
|
1250
1288
|
pool_migration_timestamp: Date | null;
|
|
1251
1289
|
pool_type: string;
|
|
@@ -1279,9 +1317,11 @@ declare const assetContract: {
|
|
|
1279
1317
|
pool_current_price: string;
|
|
1280
1318
|
pool_current_sqrt_price: string;
|
|
1281
1319
|
pool_current_fdv: string;
|
|
1320
|
+
pool_current_fdv_usd: string;
|
|
1282
1321
|
pool_current_liquidity: string;
|
|
1283
1322
|
pool_current_tick: number;
|
|
1284
1323
|
pool_current_market_cap: string;
|
|
1324
|
+
pool_current_market_cap_usd: string;
|
|
1285
1325
|
pool_address: string;
|
|
1286
1326
|
pool_migration_timestamp: Date | null;
|
|
1287
1327
|
pool_type: string;
|
|
@@ -1324,10 +1364,12 @@ declare const assetContract: {
|
|
|
1324
1364
|
pool_current_price: string;
|
|
1325
1365
|
pool_current_sqrt_price: string;
|
|
1326
1366
|
pool_current_fdv: string;
|
|
1367
|
+
pool_current_fdv_usd: string;
|
|
1327
1368
|
pool_current_liquidity: string;
|
|
1328
1369
|
pool_current_tick: number;
|
|
1329
1370
|
pool_last_epoch: number;
|
|
1330
1371
|
pool_current_market_cap: string;
|
|
1372
|
+
pool_current_market_cap_usd: string;
|
|
1331
1373
|
pool_current_fees_accrued: string;
|
|
1332
1374
|
pool_current_total_proceeds: string;
|
|
1333
1375
|
pool_current_total_tokens_sold: string;
|
|
@@ -1372,9 +1414,11 @@ declare const assetContract: {
|
|
|
1372
1414
|
pool_current_price: string;
|
|
1373
1415
|
pool_current_sqrt_price: string;
|
|
1374
1416
|
pool_current_fdv: string;
|
|
1417
|
+
pool_current_fdv_usd: string;
|
|
1375
1418
|
pool_current_liquidity: string;
|
|
1376
1419
|
pool_current_tick: number;
|
|
1377
1420
|
pool_current_market_cap: string;
|
|
1421
|
+
pool_current_market_cap_usd: string;
|
|
1378
1422
|
pool_address: `0x${string}`;
|
|
1379
1423
|
pool_migration_timestamp: Date | null;
|
|
1380
1424
|
pool_type: string;
|
|
@@ -1415,10 +1459,12 @@ declare const assetContract: {
|
|
|
1415
1459
|
pool_current_price: string;
|
|
1416
1460
|
pool_current_sqrt_price: string;
|
|
1417
1461
|
pool_current_fdv: string;
|
|
1462
|
+
pool_current_fdv_usd: string;
|
|
1418
1463
|
pool_current_liquidity: string;
|
|
1419
1464
|
pool_current_tick: number;
|
|
1420
1465
|
pool_last_epoch: number;
|
|
1421
1466
|
pool_current_market_cap: string;
|
|
1467
|
+
pool_current_market_cap_usd: string;
|
|
1422
1468
|
pool_current_fees_accrued: string;
|
|
1423
1469
|
pool_current_total_proceeds: string;
|
|
1424
1470
|
pool_current_total_tokens_sold: string;
|
|
@@ -1464,9 +1510,11 @@ declare const assetContract: {
|
|
|
1464
1510
|
pool_current_price: string;
|
|
1465
1511
|
pool_current_sqrt_price: string;
|
|
1466
1512
|
pool_current_fdv: string;
|
|
1513
|
+
pool_current_fdv_usd: string;
|
|
1467
1514
|
pool_current_liquidity: string;
|
|
1468
1515
|
pool_current_tick: number;
|
|
1469
1516
|
pool_current_market_cap: string;
|
|
1517
|
+
pool_current_market_cap_usd: string;
|
|
1470
1518
|
pool_address: string;
|
|
1471
1519
|
pool_migration_timestamp: Date | null;
|
|
1472
1520
|
pool_type: string;
|
|
@@ -1510,10 +1558,12 @@ declare const assetContract: {
|
|
|
1510
1558
|
pool_current_price: string;
|
|
1511
1559
|
pool_current_sqrt_price: string;
|
|
1512
1560
|
pool_current_fdv: string;
|
|
1561
|
+
pool_current_fdv_usd: string;
|
|
1513
1562
|
pool_current_liquidity: string;
|
|
1514
1563
|
pool_current_tick: number;
|
|
1515
1564
|
pool_last_epoch: number;
|
|
1516
1565
|
pool_current_market_cap: string;
|
|
1566
|
+
pool_current_market_cap_usd: string;
|
|
1517
1567
|
pool_current_fees_accrued: string;
|
|
1518
1568
|
pool_current_total_proceeds: string;
|
|
1519
1569
|
pool_current_total_tokens_sold: string;
|
|
@@ -1558,9 +1608,11 @@ declare const assetContract: {
|
|
|
1558
1608
|
pool_current_price: string;
|
|
1559
1609
|
pool_current_sqrt_price: string;
|
|
1560
1610
|
pool_current_fdv: string;
|
|
1611
|
+
pool_current_fdv_usd: string;
|
|
1561
1612
|
pool_current_liquidity: string;
|
|
1562
1613
|
pool_current_tick: number;
|
|
1563
1614
|
pool_current_market_cap: string;
|
|
1615
|
+
pool_current_market_cap_usd: string;
|
|
1564
1616
|
pool_address: `0x${string}`;
|
|
1565
1617
|
pool_migration_timestamp: Date | null;
|
|
1566
1618
|
pool_type: string;
|
|
@@ -1601,10 +1653,12 @@ declare const assetContract: {
|
|
|
1601
1653
|
pool_current_price: string;
|
|
1602
1654
|
pool_current_sqrt_price: string;
|
|
1603
1655
|
pool_current_fdv: string;
|
|
1656
|
+
pool_current_fdv_usd: string;
|
|
1604
1657
|
pool_current_liquidity: string;
|
|
1605
1658
|
pool_current_tick: number;
|
|
1606
1659
|
pool_last_epoch: number;
|
|
1607
1660
|
pool_current_market_cap: string;
|
|
1661
|
+
pool_current_market_cap_usd: string;
|
|
1608
1662
|
pool_current_fees_accrued: string;
|
|
1609
1663
|
pool_current_total_proceeds: string;
|
|
1610
1664
|
pool_current_total_tokens_sold: string;
|
|
@@ -1650,9 +1704,11 @@ declare const assetContract: {
|
|
|
1650
1704
|
pool_current_price: string;
|
|
1651
1705
|
pool_current_sqrt_price: string;
|
|
1652
1706
|
pool_current_fdv: string;
|
|
1707
|
+
pool_current_fdv_usd: string;
|
|
1653
1708
|
pool_current_liquidity: string;
|
|
1654
1709
|
pool_current_tick: number;
|
|
1655
1710
|
pool_current_market_cap: string;
|
|
1711
|
+
pool_current_market_cap_usd: string;
|
|
1656
1712
|
pool_address: string;
|
|
1657
1713
|
pool_migration_timestamp: Date | null;
|
|
1658
1714
|
pool_type: string;
|
|
@@ -1698,10 +1754,12 @@ declare const assetContract: {
|
|
|
1698
1754
|
pool_current_price: string;
|
|
1699
1755
|
pool_current_sqrt_price: string;
|
|
1700
1756
|
pool_current_fdv: string;
|
|
1757
|
+
pool_current_fdv_usd: string;
|
|
1701
1758
|
pool_current_liquidity: string;
|
|
1702
1759
|
pool_current_tick: number;
|
|
1703
1760
|
pool_last_epoch: number;
|
|
1704
1761
|
pool_current_market_cap: string;
|
|
1762
|
+
pool_current_market_cap_usd: string;
|
|
1705
1763
|
pool_current_fees_accrued: string;
|
|
1706
1764
|
pool_current_total_proceeds: string;
|
|
1707
1765
|
pool_current_total_tokens_sold: string;
|
|
@@ -1746,9 +1804,11 @@ declare const assetContract: {
|
|
|
1746
1804
|
pool_current_price: string;
|
|
1747
1805
|
pool_current_sqrt_price: string;
|
|
1748
1806
|
pool_current_fdv: string;
|
|
1807
|
+
pool_current_fdv_usd: string;
|
|
1749
1808
|
pool_current_liquidity: string;
|
|
1750
1809
|
pool_current_tick: number;
|
|
1751
1810
|
pool_current_market_cap: string;
|
|
1811
|
+
pool_current_market_cap_usd: string;
|
|
1752
1812
|
pool_address: `0x${string}`;
|
|
1753
1813
|
pool_migration_timestamp: Date | null;
|
|
1754
1814
|
pool_type: string;
|
|
@@ -1791,10 +1851,12 @@ declare const assetContract: {
|
|
|
1791
1851
|
pool_current_price: string;
|
|
1792
1852
|
pool_current_sqrt_price: string;
|
|
1793
1853
|
pool_current_fdv: string;
|
|
1854
|
+
pool_current_fdv_usd: string;
|
|
1794
1855
|
pool_current_liquidity: string;
|
|
1795
1856
|
pool_current_tick: number;
|
|
1796
1857
|
pool_last_epoch: number;
|
|
1797
1858
|
pool_current_market_cap: string;
|
|
1859
|
+
pool_current_market_cap_usd: string;
|
|
1798
1860
|
pool_current_fees_accrued: string;
|
|
1799
1861
|
pool_current_total_proceeds: string;
|
|
1800
1862
|
pool_current_total_tokens_sold: string;
|
|
@@ -1840,9 +1902,11 @@ declare const assetContract: {
|
|
|
1840
1902
|
pool_current_price: string;
|
|
1841
1903
|
pool_current_sqrt_price: string;
|
|
1842
1904
|
pool_current_fdv: string;
|
|
1905
|
+
pool_current_fdv_usd: string;
|
|
1843
1906
|
pool_current_liquidity: string;
|
|
1844
1907
|
pool_current_tick: number;
|
|
1845
1908
|
pool_current_market_cap: string;
|
|
1909
|
+
pool_current_market_cap_usd: string;
|
|
1846
1910
|
pool_address: string;
|
|
1847
1911
|
pool_migration_timestamp: Date | null;
|
|
1848
1912
|
pool_type: string;
|
|
@@ -1909,10 +1973,12 @@ declare const assetContract: {
|
|
|
1909
1973
|
pool_current_price: z.ZodString;
|
|
1910
1974
|
pool_current_sqrt_price: z.ZodString;
|
|
1911
1975
|
pool_current_fdv: z.ZodString;
|
|
1976
|
+
pool_current_fdv_usd: z.ZodString;
|
|
1912
1977
|
pool_current_liquidity: z.ZodString;
|
|
1913
1978
|
pool_current_tick: z.ZodNumber;
|
|
1914
1979
|
pool_last_epoch: z.ZodNumber;
|
|
1915
1980
|
pool_current_market_cap: z.ZodString;
|
|
1981
|
+
pool_current_market_cap_usd: z.ZodString;
|
|
1916
1982
|
pool_current_fees_accrued: z.ZodString;
|
|
1917
1983
|
pool_current_total_proceeds: z.ZodString;
|
|
1918
1984
|
pool_current_total_tokens_sold: z.ZodString;
|
|
@@ -2054,10 +2120,12 @@ declare const assetContract: {
|
|
|
2054
2120
|
pool_current_price: string;
|
|
2055
2121
|
pool_current_sqrt_price: string;
|
|
2056
2122
|
pool_current_fdv: string;
|
|
2123
|
+
pool_current_fdv_usd: string;
|
|
2057
2124
|
pool_current_liquidity: string;
|
|
2058
2125
|
pool_current_tick: number;
|
|
2059
2126
|
pool_last_epoch: number;
|
|
2060
2127
|
pool_current_market_cap: string;
|
|
2128
|
+
pool_current_market_cap_usd: string;
|
|
2061
2129
|
pool_current_fees_accrued: string;
|
|
2062
2130
|
pool_current_total_proceeds: string;
|
|
2063
2131
|
pool_current_total_tokens_sold: string;
|
|
@@ -2101,10 +2169,12 @@ declare const assetContract: {
|
|
|
2101
2169
|
pool_current_price: string;
|
|
2102
2170
|
pool_current_sqrt_price: string;
|
|
2103
2171
|
pool_current_fdv: string;
|
|
2172
|
+
pool_current_fdv_usd: string;
|
|
2104
2173
|
pool_current_liquidity: string;
|
|
2105
2174
|
pool_current_tick: number;
|
|
2106
2175
|
pool_last_epoch: number;
|
|
2107
2176
|
pool_current_market_cap: string;
|
|
2177
|
+
pool_current_market_cap_usd: string;
|
|
2108
2178
|
pool_current_fees_accrued: string;
|
|
2109
2179
|
pool_current_total_proceeds: string;
|
|
2110
2180
|
pool_current_total_tokens_sold: string;
|
|
@@ -2150,9 +2220,11 @@ declare const assetContract: {
|
|
|
2150
2220
|
pool_current_price: z.ZodString;
|
|
2151
2221
|
pool_current_sqrt_price: z.ZodString;
|
|
2152
2222
|
pool_current_fdv: z.ZodString;
|
|
2223
|
+
pool_current_fdv_usd: z.ZodString;
|
|
2153
2224
|
pool_current_liquidity: z.ZodString;
|
|
2154
2225
|
pool_current_tick: z.ZodNumber;
|
|
2155
2226
|
pool_current_market_cap: z.ZodString;
|
|
2227
|
+
pool_current_market_cap_usd: z.ZodString;
|
|
2156
2228
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
2157
2229
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
2158
2230
|
pool_type: z.ZodString;
|
|
@@ -2286,9 +2358,11 @@ declare const assetContract: {
|
|
|
2286
2358
|
pool_current_price: string;
|
|
2287
2359
|
pool_current_sqrt_price: string;
|
|
2288
2360
|
pool_current_fdv: string;
|
|
2361
|
+
pool_current_fdv_usd: string;
|
|
2289
2362
|
pool_current_liquidity: string;
|
|
2290
2363
|
pool_current_tick: number;
|
|
2291
2364
|
pool_current_market_cap: string;
|
|
2365
|
+
pool_current_market_cap_usd: string;
|
|
2292
2366
|
pool_address: `0x${string}`;
|
|
2293
2367
|
pool_migration_timestamp: Date | null;
|
|
2294
2368
|
pool_type: string;
|
|
@@ -2322,9 +2396,11 @@ declare const assetContract: {
|
|
|
2322
2396
|
pool_current_price: string;
|
|
2323
2397
|
pool_current_sqrt_price: string;
|
|
2324
2398
|
pool_current_fdv: string;
|
|
2399
|
+
pool_current_fdv_usd: string;
|
|
2325
2400
|
pool_current_liquidity: string;
|
|
2326
2401
|
pool_current_tick: number;
|
|
2327
2402
|
pool_current_market_cap: string;
|
|
2403
|
+
pool_current_market_cap_usd: string;
|
|
2328
2404
|
pool_address: string;
|
|
2329
2405
|
pool_migration_timestamp: Date | null;
|
|
2330
2406
|
pool_type: string;
|
|
@@ -2367,10 +2443,12 @@ declare const assetContract: {
|
|
|
2367
2443
|
pool_current_price: string;
|
|
2368
2444
|
pool_current_sqrt_price: string;
|
|
2369
2445
|
pool_current_fdv: string;
|
|
2446
|
+
pool_current_fdv_usd: string;
|
|
2370
2447
|
pool_current_liquidity: string;
|
|
2371
2448
|
pool_current_tick: number;
|
|
2372
2449
|
pool_last_epoch: number;
|
|
2373
2450
|
pool_current_market_cap: string;
|
|
2451
|
+
pool_current_market_cap_usd: string;
|
|
2374
2452
|
pool_current_fees_accrued: string;
|
|
2375
2453
|
pool_current_total_proceeds: string;
|
|
2376
2454
|
pool_current_total_tokens_sold: string;
|
|
@@ -2415,9 +2493,11 @@ declare const assetContract: {
|
|
|
2415
2493
|
pool_current_price: string;
|
|
2416
2494
|
pool_current_sqrt_price: string;
|
|
2417
2495
|
pool_current_fdv: string;
|
|
2496
|
+
pool_current_fdv_usd: string;
|
|
2418
2497
|
pool_current_liquidity: string;
|
|
2419
2498
|
pool_current_tick: number;
|
|
2420
2499
|
pool_current_market_cap: string;
|
|
2500
|
+
pool_current_market_cap_usd: string;
|
|
2421
2501
|
pool_address: `0x${string}`;
|
|
2422
2502
|
pool_migration_timestamp: Date | null;
|
|
2423
2503
|
pool_type: string;
|
|
@@ -2458,10 +2538,12 @@ declare const assetContract: {
|
|
|
2458
2538
|
pool_current_price: string;
|
|
2459
2539
|
pool_current_sqrt_price: string;
|
|
2460
2540
|
pool_current_fdv: string;
|
|
2541
|
+
pool_current_fdv_usd: string;
|
|
2461
2542
|
pool_current_liquidity: string;
|
|
2462
2543
|
pool_current_tick: number;
|
|
2463
2544
|
pool_last_epoch: number;
|
|
2464
2545
|
pool_current_market_cap: string;
|
|
2546
|
+
pool_current_market_cap_usd: string;
|
|
2465
2547
|
pool_current_fees_accrued: string;
|
|
2466
2548
|
pool_current_total_proceeds: string;
|
|
2467
2549
|
pool_current_total_tokens_sold: string;
|
|
@@ -2507,9 +2589,11 @@ declare const assetContract: {
|
|
|
2507
2589
|
pool_current_price: string;
|
|
2508
2590
|
pool_current_sqrt_price: string;
|
|
2509
2591
|
pool_current_fdv: string;
|
|
2592
|
+
pool_current_fdv_usd: string;
|
|
2510
2593
|
pool_current_liquidity: string;
|
|
2511
2594
|
pool_current_tick: number;
|
|
2512
2595
|
pool_current_market_cap: string;
|
|
2596
|
+
pool_current_market_cap_usd: string;
|
|
2513
2597
|
pool_address: string;
|
|
2514
2598
|
pool_migration_timestamp: Date | null;
|
|
2515
2599
|
pool_type: string;
|
|
@@ -2553,10 +2637,12 @@ declare const assetContract: {
|
|
|
2553
2637
|
pool_current_price: string;
|
|
2554
2638
|
pool_current_sqrt_price: string;
|
|
2555
2639
|
pool_current_fdv: string;
|
|
2640
|
+
pool_current_fdv_usd: string;
|
|
2556
2641
|
pool_current_liquidity: string;
|
|
2557
2642
|
pool_current_tick: number;
|
|
2558
2643
|
pool_last_epoch: number;
|
|
2559
2644
|
pool_current_market_cap: string;
|
|
2645
|
+
pool_current_market_cap_usd: string;
|
|
2560
2646
|
pool_current_fees_accrued: string;
|
|
2561
2647
|
pool_current_total_proceeds: string;
|
|
2562
2648
|
pool_current_total_tokens_sold: string;
|
|
@@ -2601,9 +2687,11 @@ declare const assetContract: {
|
|
|
2601
2687
|
pool_current_price: string;
|
|
2602
2688
|
pool_current_sqrt_price: string;
|
|
2603
2689
|
pool_current_fdv: string;
|
|
2690
|
+
pool_current_fdv_usd: string;
|
|
2604
2691
|
pool_current_liquidity: string;
|
|
2605
2692
|
pool_current_tick: number;
|
|
2606
2693
|
pool_current_market_cap: string;
|
|
2694
|
+
pool_current_market_cap_usd: string;
|
|
2607
2695
|
pool_address: `0x${string}`;
|
|
2608
2696
|
pool_migration_timestamp: Date | null;
|
|
2609
2697
|
pool_type: string;
|
|
@@ -2644,10 +2732,12 @@ declare const assetContract: {
|
|
|
2644
2732
|
pool_current_price: string;
|
|
2645
2733
|
pool_current_sqrt_price: string;
|
|
2646
2734
|
pool_current_fdv: string;
|
|
2735
|
+
pool_current_fdv_usd: string;
|
|
2647
2736
|
pool_current_liquidity: string;
|
|
2648
2737
|
pool_current_tick: number;
|
|
2649
2738
|
pool_last_epoch: number;
|
|
2650
2739
|
pool_current_market_cap: string;
|
|
2740
|
+
pool_current_market_cap_usd: string;
|
|
2651
2741
|
pool_current_fees_accrued: string;
|
|
2652
2742
|
pool_current_total_proceeds: string;
|
|
2653
2743
|
pool_current_total_tokens_sold: string;
|
|
@@ -2693,9 +2783,11 @@ declare const assetContract: {
|
|
|
2693
2783
|
pool_current_price: string;
|
|
2694
2784
|
pool_current_sqrt_price: string;
|
|
2695
2785
|
pool_current_fdv: string;
|
|
2786
|
+
pool_current_fdv_usd: string;
|
|
2696
2787
|
pool_current_liquidity: string;
|
|
2697
2788
|
pool_current_tick: number;
|
|
2698
2789
|
pool_current_market_cap: string;
|
|
2790
|
+
pool_current_market_cap_usd: string;
|
|
2699
2791
|
pool_address: string;
|
|
2700
2792
|
pool_migration_timestamp: Date | null;
|
|
2701
2793
|
pool_type: string;
|
|
@@ -2741,10 +2833,12 @@ declare const assetContract: {
|
|
|
2741
2833
|
pool_current_price: string;
|
|
2742
2834
|
pool_current_sqrt_price: string;
|
|
2743
2835
|
pool_current_fdv: string;
|
|
2836
|
+
pool_current_fdv_usd: string;
|
|
2744
2837
|
pool_current_liquidity: string;
|
|
2745
2838
|
pool_current_tick: number;
|
|
2746
2839
|
pool_last_epoch: number;
|
|
2747
2840
|
pool_current_market_cap: string;
|
|
2841
|
+
pool_current_market_cap_usd: string;
|
|
2748
2842
|
pool_current_fees_accrued: string;
|
|
2749
2843
|
pool_current_total_proceeds: string;
|
|
2750
2844
|
pool_current_total_tokens_sold: string;
|
|
@@ -2789,9 +2883,11 @@ declare const assetContract: {
|
|
|
2789
2883
|
pool_current_price: string;
|
|
2790
2884
|
pool_current_sqrt_price: string;
|
|
2791
2885
|
pool_current_fdv: string;
|
|
2886
|
+
pool_current_fdv_usd: string;
|
|
2792
2887
|
pool_current_liquidity: string;
|
|
2793
2888
|
pool_current_tick: number;
|
|
2794
2889
|
pool_current_market_cap: string;
|
|
2890
|
+
pool_current_market_cap_usd: string;
|
|
2795
2891
|
pool_address: `0x${string}`;
|
|
2796
2892
|
pool_migration_timestamp: Date | null;
|
|
2797
2893
|
pool_type: string;
|
|
@@ -2834,10 +2930,12 @@ declare const assetContract: {
|
|
|
2834
2930
|
pool_current_price: string;
|
|
2835
2931
|
pool_current_sqrt_price: string;
|
|
2836
2932
|
pool_current_fdv: string;
|
|
2933
|
+
pool_current_fdv_usd: string;
|
|
2837
2934
|
pool_current_liquidity: string;
|
|
2838
2935
|
pool_current_tick: number;
|
|
2839
2936
|
pool_last_epoch: number;
|
|
2840
2937
|
pool_current_market_cap: string;
|
|
2938
|
+
pool_current_market_cap_usd: string;
|
|
2841
2939
|
pool_current_fees_accrued: string;
|
|
2842
2940
|
pool_current_total_proceeds: string;
|
|
2843
2941
|
pool_current_total_tokens_sold: string;
|
|
@@ -2883,9 +2981,11 @@ declare const assetContract: {
|
|
|
2883
2981
|
pool_current_price: string;
|
|
2884
2982
|
pool_current_sqrt_price: string;
|
|
2885
2983
|
pool_current_fdv: string;
|
|
2984
|
+
pool_current_fdv_usd: string;
|
|
2886
2985
|
pool_current_liquidity: string;
|
|
2887
2986
|
pool_current_tick: number;
|
|
2888
2987
|
pool_current_market_cap: string;
|
|
2988
|
+
pool_current_market_cap_usd: string;
|
|
2889
2989
|
pool_address: string;
|
|
2890
2990
|
pool_migration_timestamp: Date | null;
|
|
2891
2991
|
pool_type: string;
|
|
@@ -2953,10 +3053,12 @@ declare const assetContract: {
|
|
|
2953
3053
|
pool_current_price: z.ZodString;
|
|
2954
3054
|
pool_current_sqrt_price: z.ZodString;
|
|
2955
3055
|
pool_current_fdv: z.ZodString;
|
|
3056
|
+
pool_current_fdv_usd: z.ZodString;
|
|
2956
3057
|
pool_current_liquidity: z.ZodString;
|
|
2957
3058
|
pool_current_tick: z.ZodNumber;
|
|
2958
3059
|
pool_last_epoch: z.ZodNumber;
|
|
2959
3060
|
pool_current_market_cap: z.ZodString;
|
|
3061
|
+
pool_current_market_cap_usd: z.ZodString;
|
|
2960
3062
|
pool_current_fees_accrued: z.ZodString;
|
|
2961
3063
|
pool_current_total_proceeds: z.ZodString;
|
|
2962
3064
|
pool_current_total_tokens_sold: z.ZodString;
|
|
@@ -3098,10 +3200,12 @@ declare const assetContract: {
|
|
|
3098
3200
|
pool_current_price: string;
|
|
3099
3201
|
pool_current_sqrt_price: string;
|
|
3100
3202
|
pool_current_fdv: string;
|
|
3203
|
+
pool_current_fdv_usd: string;
|
|
3101
3204
|
pool_current_liquidity: string;
|
|
3102
3205
|
pool_current_tick: number;
|
|
3103
3206
|
pool_last_epoch: number;
|
|
3104
3207
|
pool_current_market_cap: string;
|
|
3208
|
+
pool_current_market_cap_usd: string;
|
|
3105
3209
|
pool_current_fees_accrued: string;
|
|
3106
3210
|
pool_current_total_proceeds: string;
|
|
3107
3211
|
pool_current_total_tokens_sold: string;
|
|
@@ -3145,10 +3249,12 @@ declare const assetContract: {
|
|
|
3145
3249
|
pool_current_price: string;
|
|
3146
3250
|
pool_current_sqrt_price: string;
|
|
3147
3251
|
pool_current_fdv: string;
|
|
3252
|
+
pool_current_fdv_usd: string;
|
|
3148
3253
|
pool_current_liquidity: string;
|
|
3149
3254
|
pool_current_tick: number;
|
|
3150
3255
|
pool_last_epoch: number;
|
|
3151
3256
|
pool_current_market_cap: string;
|
|
3257
|
+
pool_current_market_cap_usd: string;
|
|
3152
3258
|
pool_current_fees_accrued: string;
|
|
3153
3259
|
pool_current_total_proceeds: string;
|
|
3154
3260
|
pool_current_total_tokens_sold: string;
|
|
@@ -3194,9 +3300,11 @@ declare const assetContract: {
|
|
|
3194
3300
|
pool_current_price: z.ZodString;
|
|
3195
3301
|
pool_current_sqrt_price: z.ZodString;
|
|
3196
3302
|
pool_current_fdv: z.ZodString;
|
|
3303
|
+
pool_current_fdv_usd: z.ZodString;
|
|
3197
3304
|
pool_current_liquidity: z.ZodString;
|
|
3198
3305
|
pool_current_tick: z.ZodNumber;
|
|
3199
3306
|
pool_current_market_cap: z.ZodString;
|
|
3307
|
+
pool_current_market_cap_usd: z.ZodString;
|
|
3200
3308
|
pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
|
|
3201
3309
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
3202
3310
|
pool_type: z.ZodString;
|
|
@@ -3330,9 +3438,11 @@ declare const assetContract: {
|
|
|
3330
3438
|
pool_current_price: string;
|
|
3331
3439
|
pool_current_sqrt_price: string;
|
|
3332
3440
|
pool_current_fdv: string;
|
|
3441
|
+
pool_current_fdv_usd: string;
|
|
3333
3442
|
pool_current_liquidity: string;
|
|
3334
3443
|
pool_current_tick: number;
|
|
3335
3444
|
pool_current_market_cap: string;
|
|
3445
|
+
pool_current_market_cap_usd: string;
|
|
3336
3446
|
pool_address: `0x${string}`;
|
|
3337
3447
|
pool_migration_timestamp: Date | null;
|
|
3338
3448
|
pool_type: string;
|
|
@@ -3366,9 +3476,11 @@ declare const assetContract: {
|
|
|
3366
3476
|
pool_current_price: string;
|
|
3367
3477
|
pool_current_sqrt_price: string;
|
|
3368
3478
|
pool_current_fdv: string;
|
|
3479
|
+
pool_current_fdv_usd: string;
|
|
3369
3480
|
pool_current_liquidity: string;
|
|
3370
3481
|
pool_current_tick: number;
|
|
3371
3482
|
pool_current_market_cap: string;
|
|
3483
|
+
pool_current_market_cap_usd: string;
|
|
3372
3484
|
pool_address: string;
|
|
3373
3485
|
pool_migration_timestamp: Date | null;
|
|
3374
3486
|
pool_type: string;
|
|
@@ -3411,10 +3523,12 @@ declare const assetContract: {
|
|
|
3411
3523
|
pool_current_price: string;
|
|
3412
3524
|
pool_current_sqrt_price: string;
|
|
3413
3525
|
pool_current_fdv: string;
|
|
3526
|
+
pool_current_fdv_usd: string;
|
|
3414
3527
|
pool_current_liquidity: string;
|
|
3415
3528
|
pool_current_tick: number;
|
|
3416
3529
|
pool_last_epoch: number;
|
|
3417
3530
|
pool_current_market_cap: string;
|
|
3531
|
+
pool_current_market_cap_usd: string;
|
|
3418
3532
|
pool_current_fees_accrued: string;
|
|
3419
3533
|
pool_current_total_proceeds: string;
|
|
3420
3534
|
pool_current_total_tokens_sold: string;
|
|
@@ -3459,9 +3573,11 @@ declare const assetContract: {
|
|
|
3459
3573
|
pool_current_price: string;
|
|
3460
3574
|
pool_current_sqrt_price: string;
|
|
3461
3575
|
pool_current_fdv: string;
|
|
3576
|
+
pool_current_fdv_usd: string;
|
|
3462
3577
|
pool_current_liquidity: string;
|
|
3463
3578
|
pool_current_tick: number;
|
|
3464
3579
|
pool_current_market_cap: string;
|
|
3580
|
+
pool_current_market_cap_usd: string;
|
|
3465
3581
|
pool_address: `0x${string}`;
|
|
3466
3582
|
pool_migration_timestamp: Date | null;
|
|
3467
3583
|
pool_type: string;
|
|
@@ -3502,10 +3618,12 @@ declare const assetContract: {
|
|
|
3502
3618
|
pool_current_price: string;
|
|
3503
3619
|
pool_current_sqrt_price: string;
|
|
3504
3620
|
pool_current_fdv: string;
|
|
3621
|
+
pool_current_fdv_usd: string;
|
|
3505
3622
|
pool_current_liquidity: string;
|
|
3506
3623
|
pool_current_tick: number;
|
|
3507
3624
|
pool_last_epoch: number;
|
|
3508
3625
|
pool_current_market_cap: string;
|
|
3626
|
+
pool_current_market_cap_usd: string;
|
|
3509
3627
|
pool_current_fees_accrued: string;
|
|
3510
3628
|
pool_current_total_proceeds: string;
|
|
3511
3629
|
pool_current_total_tokens_sold: string;
|
|
@@ -3551,9 +3669,11 @@ declare const assetContract: {
|
|
|
3551
3669
|
pool_current_price: string;
|
|
3552
3670
|
pool_current_sqrt_price: string;
|
|
3553
3671
|
pool_current_fdv: string;
|
|
3672
|
+
pool_current_fdv_usd: string;
|
|
3554
3673
|
pool_current_liquidity: string;
|
|
3555
3674
|
pool_current_tick: number;
|
|
3556
3675
|
pool_current_market_cap: string;
|
|
3676
|
+
pool_current_market_cap_usd: string;
|
|
3557
3677
|
pool_address: string;
|
|
3558
3678
|
pool_migration_timestamp: Date | null;
|
|
3559
3679
|
pool_type: string;
|
|
@@ -3597,10 +3717,12 @@ declare const assetContract: {
|
|
|
3597
3717
|
pool_current_price: string;
|
|
3598
3718
|
pool_current_sqrt_price: string;
|
|
3599
3719
|
pool_current_fdv: string;
|
|
3720
|
+
pool_current_fdv_usd: string;
|
|
3600
3721
|
pool_current_liquidity: string;
|
|
3601
3722
|
pool_current_tick: number;
|
|
3602
3723
|
pool_last_epoch: number;
|
|
3603
3724
|
pool_current_market_cap: string;
|
|
3725
|
+
pool_current_market_cap_usd: string;
|
|
3604
3726
|
pool_current_fees_accrued: string;
|
|
3605
3727
|
pool_current_total_proceeds: string;
|
|
3606
3728
|
pool_current_total_tokens_sold: string;
|
|
@@ -3645,9 +3767,11 @@ declare const assetContract: {
|
|
|
3645
3767
|
pool_current_price: string;
|
|
3646
3768
|
pool_current_sqrt_price: string;
|
|
3647
3769
|
pool_current_fdv: string;
|
|
3770
|
+
pool_current_fdv_usd: string;
|
|
3648
3771
|
pool_current_liquidity: string;
|
|
3649
3772
|
pool_current_tick: number;
|
|
3650
3773
|
pool_current_market_cap: string;
|
|
3774
|
+
pool_current_market_cap_usd: string;
|
|
3651
3775
|
pool_address: `0x${string}`;
|
|
3652
3776
|
pool_migration_timestamp: Date | null;
|
|
3653
3777
|
pool_type: string;
|
|
@@ -3688,10 +3812,12 @@ declare const assetContract: {
|
|
|
3688
3812
|
pool_current_price: string;
|
|
3689
3813
|
pool_current_sqrt_price: string;
|
|
3690
3814
|
pool_current_fdv: string;
|
|
3815
|
+
pool_current_fdv_usd: string;
|
|
3691
3816
|
pool_current_liquidity: string;
|
|
3692
3817
|
pool_current_tick: number;
|
|
3693
3818
|
pool_last_epoch: number;
|
|
3694
3819
|
pool_current_market_cap: string;
|
|
3820
|
+
pool_current_market_cap_usd: string;
|
|
3695
3821
|
pool_current_fees_accrued: string;
|
|
3696
3822
|
pool_current_total_proceeds: string;
|
|
3697
3823
|
pool_current_total_tokens_sold: string;
|
|
@@ -3737,9 +3863,11 @@ declare const assetContract: {
|
|
|
3737
3863
|
pool_current_price: string;
|
|
3738
3864
|
pool_current_sqrt_price: string;
|
|
3739
3865
|
pool_current_fdv: string;
|
|
3866
|
+
pool_current_fdv_usd: string;
|
|
3740
3867
|
pool_current_liquidity: string;
|
|
3741
3868
|
pool_current_tick: number;
|
|
3742
3869
|
pool_current_market_cap: string;
|
|
3870
|
+
pool_current_market_cap_usd: string;
|
|
3743
3871
|
pool_address: string;
|
|
3744
3872
|
pool_migration_timestamp: Date | null;
|
|
3745
3873
|
pool_type: string;
|
|
@@ -3785,10 +3913,12 @@ declare const assetContract: {
|
|
|
3785
3913
|
pool_current_price: string;
|
|
3786
3914
|
pool_current_sqrt_price: string;
|
|
3787
3915
|
pool_current_fdv: string;
|
|
3916
|
+
pool_current_fdv_usd: string;
|
|
3788
3917
|
pool_current_liquidity: string;
|
|
3789
3918
|
pool_current_tick: number;
|
|
3790
3919
|
pool_last_epoch: number;
|
|
3791
3920
|
pool_current_market_cap: string;
|
|
3921
|
+
pool_current_market_cap_usd: string;
|
|
3792
3922
|
pool_current_fees_accrued: string;
|
|
3793
3923
|
pool_current_total_proceeds: string;
|
|
3794
3924
|
pool_current_total_tokens_sold: string;
|
|
@@ -3833,9 +3963,11 @@ declare const assetContract: {
|
|
|
3833
3963
|
pool_current_price: string;
|
|
3834
3964
|
pool_current_sqrt_price: string;
|
|
3835
3965
|
pool_current_fdv: string;
|
|
3966
|
+
pool_current_fdv_usd: string;
|
|
3836
3967
|
pool_current_liquidity: string;
|
|
3837
3968
|
pool_current_tick: number;
|
|
3838
3969
|
pool_current_market_cap: string;
|
|
3970
|
+
pool_current_market_cap_usd: string;
|
|
3839
3971
|
pool_address: `0x${string}`;
|
|
3840
3972
|
pool_migration_timestamp: Date | null;
|
|
3841
3973
|
pool_type: string;
|
|
@@ -3878,10 +4010,12 @@ declare const assetContract: {
|
|
|
3878
4010
|
pool_current_price: string;
|
|
3879
4011
|
pool_current_sqrt_price: string;
|
|
3880
4012
|
pool_current_fdv: string;
|
|
4013
|
+
pool_current_fdv_usd: string;
|
|
3881
4014
|
pool_current_liquidity: string;
|
|
3882
4015
|
pool_current_tick: number;
|
|
3883
4016
|
pool_last_epoch: number;
|
|
3884
4017
|
pool_current_market_cap: string;
|
|
4018
|
+
pool_current_market_cap_usd: string;
|
|
3885
4019
|
pool_current_fees_accrued: string;
|
|
3886
4020
|
pool_current_total_proceeds: string;
|
|
3887
4021
|
pool_current_total_tokens_sold: string;
|
|
@@ -3927,9 +4061,11 @@ declare const assetContract: {
|
|
|
3927
4061
|
pool_current_price: string;
|
|
3928
4062
|
pool_current_sqrt_price: string;
|
|
3929
4063
|
pool_current_fdv: string;
|
|
4064
|
+
pool_current_fdv_usd: string;
|
|
3930
4065
|
pool_current_liquidity: string;
|
|
3931
4066
|
pool_current_tick: number;
|
|
3932
4067
|
pool_current_market_cap: string;
|
|
4068
|
+
pool_current_market_cap_usd: string;
|
|
3933
4069
|
pool_address: string;
|
|
3934
4070
|
pool_migration_timestamp: Date | null;
|
|
3935
4071
|
pool_type: string;
|