@longdotxyz/shared 0.0.95 → 0.0.96

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.
@@ -11,12 +11,10 @@ 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.ZodNullable<z.ZodString>;
15
14
  pool_current_liquidity: z.ZodString;
16
15
  pool_current_tick: z.ZodNumber;
17
16
  pool_last_epoch: z.ZodNumber;
18
17
  pool_current_market_cap: z.ZodString;
19
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
20
18
  pool_current_fees_accrued: z.ZodString;
21
19
  pool_current_total_proceeds: z.ZodString;
22
20
  pool_current_total_tokens_sold: z.ZodString;
@@ -33,7 +31,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
33
31
  pool_type: z.ZodString;
34
32
  pool_volume_24h_base: z.ZodNullable<z.ZodString>;
35
33
  pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
36
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
37
34
  pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
38
35
  pool_volume_last_updated: z.ZodNullable<z.ZodString>;
39
36
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
@@ -196,12 +193,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
196
193
  pool_current_price: string;
197
194
  pool_current_sqrt_price: string;
198
195
  pool_current_fdv: string;
199
- pool_current_fdv_usd: string | null;
200
196
  pool_current_liquidity: string;
201
197
  pool_current_tick: number;
202
198
  pool_last_epoch: number;
203
199
  pool_current_market_cap: string;
204
- pool_current_market_cap_usd: string | null;
205
200
  pool_current_fees_accrued: string;
206
201
  pool_current_total_proceeds: string;
207
202
  pool_current_total_tokens_sold: string;
@@ -218,7 +213,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
218
213
  pool_type: string;
219
214
  pool_volume_24h_base: string | null;
220
215
  pool_volume_24h_quote: string | null;
221
- pool_volume_24h_usd: string | null;
222
216
  pool_volume_24h_swap_count: number | null;
223
217
  pool_volume_last_updated: string | null;
224
218
  pool_market_data: {
@@ -259,12 +253,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
259
253
  pool_current_price: string;
260
254
  pool_current_sqrt_price: string;
261
255
  pool_current_fdv: string;
262
- pool_current_fdv_usd: string | null;
263
256
  pool_current_liquidity: string;
264
257
  pool_current_tick: number;
265
258
  pool_last_epoch: number;
266
259
  pool_current_market_cap: string;
267
- pool_current_market_cap_usd: string | null;
268
260
  pool_current_fees_accrued: string;
269
261
  pool_current_total_proceeds: string;
270
262
  pool_current_total_tokens_sold: string;
@@ -281,7 +273,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
281
273
  pool_type: string;
282
274
  pool_volume_24h_base: string | null;
283
275
  pool_volume_24h_quote: string | null;
284
- pool_volume_24h_usd: string | null;
285
276
  pool_volume_24h_swap_count: number | null;
286
277
  pool_volume_last_updated: string | null;
287
278
  base_token: {
@@ -316,17 +307,14 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
316
307
  pool_current_price: z.ZodString;
317
308
  pool_current_sqrt_price: z.ZodString;
318
309
  pool_current_fdv: z.ZodString;
319
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
320
310
  pool_current_liquidity: z.ZodString;
321
311
  pool_current_tick: z.ZodNumber;
322
312
  pool_current_market_cap: z.ZodString;
323
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
324
313
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
325
314
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
326
315
  pool_type: z.ZodString;
327
316
  pool_volume_24h_base: z.ZodNullable<z.ZodString>;
328
317
  pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
329
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
330
318
  pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
331
319
  pool_volume_last_updated: z.ZodNullable<z.ZodString>;
332
320
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
@@ -492,17 +480,14 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
492
480
  pool_current_price: string;
493
481
  pool_current_sqrt_price: string;
494
482
  pool_current_fdv: string;
495
- pool_current_fdv_usd: string | null;
496
483
  pool_current_liquidity: string;
497
484
  pool_current_tick: number;
498
485
  pool_current_market_cap: string;
499
- pool_current_market_cap_usd: string | null;
500
486
  pool_address: `0x${string}`;
501
487
  pool_migration_timestamp: Date | null;
502
488
  pool_type: string;
503
489
  pool_volume_24h_base: string | null;
504
490
  pool_volume_24h_quote: string | null;
505
- pool_volume_24h_usd: string | null;
506
491
  pool_volume_24h_swap_count: number | null;
507
492
  pool_volume_last_updated: string | null;
508
493
  pool_market_data: {
@@ -544,17 +529,14 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
544
529
  pool_current_price: string;
545
530
  pool_current_sqrt_price: string;
546
531
  pool_current_fdv: string;
547
- pool_current_fdv_usd: string | null;
548
532
  pool_current_liquidity: string;
549
533
  pool_current_tick: number;
550
534
  pool_current_market_cap: string;
551
- pool_current_market_cap_usd: string | null;
552
535
  pool_address: string;
553
536
  pool_migration_timestamp: Date | null;
554
537
  pool_type: string;
555
538
  pool_volume_24h_base: string | null;
556
539
  pool_volume_24h_quote: string | null;
557
- pool_volume_24h_usd: string | null;
558
540
  pool_volume_24h_swap_count: number | null;
559
541
  pool_volume_last_updated: string | null;
560
542
  base_token: {
@@ -597,12 +579,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
597
579
  pool_current_price: string;
598
580
  pool_current_sqrt_price: string;
599
581
  pool_current_fdv: string;
600
- pool_current_fdv_usd: string | null;
601
582
  pool_current_liquidity: string;
602
583
  pool_current_tick: number;
603
584
  pool_last_epoch: number;
604
585
  pool_current_market_cap: string;
605
- pool_current_market_cap_usd: string | null;
606
586
  pool_current_fees_accrued: string;
607
587
  pool_current_total_proceeds: string;
608
588
  pool_current_total_tokens_sold: string;
@@ -619,7 +599,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
619
599
  pool_type: string;
620
600
  pool_volume_24h_base: string | null;
621
601
  pool_volume_24h_quote: string | null;
622
- pool_volume_24h_usd: string | null;
623
602
  pool_volume_24h_swap_count: number | null;
624
603
  pool_volume_last_updated: string | null;
625
604
  pool_market_data: {
@@ -661,17 +640,14 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
661
640
  pool_current_price: string;
662
641
  pool_current_sqrt_price: string;
663
642
  pool_current_fdv: string;
664
- pool_current_fdv_usd: string | null;
665
643
  pool_current_liquidity: string;
666
644
  pool_current_tick: number;
667
645
  pool_current_market_cap: string;
668
- pool_current_market_cap_usd: string | null;
669
646
  pool_address: `0x${string}`;
670
647
  pool_migration_timestamp: Date | null;
671
648
  pool_type: string;
672
649
  pool_volume_24h_base: string | null;
673
650
  pool_volume_24h_quote: string | null;
674
- pool_volume_24h_usd: string | null;
675
651
  pool_volume_24h_swap_count: number | null;
676
652
  pool_volume_last_updated: string | null;
677
653
  pool_market_data: {
@@ -720,12 +696,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
720
696
  pool_current_price: string;
721
697
  pool_current_sqrt_price: string;
722
698
  pool_current_fdv: string;
723
- pool_current_fdv_usd: string | null;
724
699
  pool_current_liquidity: string;
725
700
  pool_current_tick: number;
726
701
  pool_last_epoch: number;
727
702
  pool_current_market_cap: string;
728
- pool_current_market_cap_usd: string | null;
729
703
  pool_current_fees_accrued: string;
730
704
  pool_current_total_proceeds: string;
731
705
  pool_current_total_tokens_sold: string;
@@ -742,7 +716,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
742
716
  pool_type: string;
743
717
  pool_volume_24h_base: string | null;
744
718
  pool_volume_24h_quote: string | null;
745
- pool_volume_24h_usd: string | null;
746
719
  pool_volume_24h_swap_count: number | null;
747
720
  pool_volume_last_updated: string | null;
748
721
  base_token: {
@@ -777,17 +750,14 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
777
750
  pool_current_price: string;
778
751
  pool_current_sqrt_price: string;
779
752
  pool_current_fdv: string;
780
- pool_current_fdv_usd: string | null;
781
753
  pool_current_liquidity: string;
782
754
  pool_current_tick: number;
783
755
  pool_current_market_cap: string;
784
- pool_current_market_cap_usd: string | null;
785
756
  pool_address: string;
786
757
  pool_migration_timestamp: Date | null;
787
758
  pool_type: string;
788
759
  pool_volume_24h_base: string | null;
789
760
  pool_volume_24h_quote: string | null;
790
- pool_volume_24h_usd: string | null;
791
761
  pool_volume_24h_swap_count: number | null;
792
762
  pool_volume_last_updated: string | null;
793
763
  base_token: {
@@ -831,12 +801,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
831
801
  pool_current_price: string;
832
802
  pool_current_sqrt_price: string;
833
803
  pool_current_fdv: string;
834
- pool_current_fdv_usd: string | null;
835
804
  pool_current_liquidity: string;
836
805
  pool_current_tick: number;
837
806
  pool_last_epoch: number;
838
807
  pool_current_market_cap: string;
839
- pool_current_market_cap_usd: string | null;
840
808
  pool_current_fees_accrued: string;
841
809
  pool_current_total_proceeds: string;
842
810
  pool_current_total_tokens_sold: string;
@@ -853,7 +821,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
853
821
  pool_type: string;
854
822
  pool_volume_24h_base: string | null;
855
823
  pool_volume_24h_quote: string | null;
856
- pool_volume_24h_usd: string | null;
857
824
  pool_volume_24h_swap_count: number | null;
858
825
  pool_volume_last_updated: string | null;
859
826
  pool_market_data: {
@@ -895,17 +862,14 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
895
862
  pool_current_price: string;
896
863
  pool_current_sqrt_price: string;
897
864
  pool_current_fdv: string;
898
- pool_current_fdv_usd: string | null;
899
865
  pool_current_liquidity: string;
900
866
  pool_current_tick: number;
901
867
  pool_current_market_cap: string;
902
- pool_current_market_cap_usd: string | null;
903
868
  pool_address: `0x${string}`;
904
869
  pool_migration_timestamp: Date | null;
905
870
  pool_type: string;
906
871
  pool_volume_24h_base: string | null;
907
872
  pool_volume_24h_quote: string | null;
908
- pool_volume_24h_usd: string | null;
909
873
  pool_volume_24h_swap_count: number | null;
910
874
  pool_volume_last_updated: string | null;
911
875
  pool_market_data: {
@@ -954,12 +918,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
954
918
  pool_current_price: string;
955
919
  pool_current_sqrt_price: string;
956
920
  pool_current_fdv: string;
957
- pool_current_fdv_usd: string | null;
958
921
  pool_current_liquidity: string;
959
922
  pool_current_tick: number;
960
923
  pool_last_epoch: number;
961
924
  pool_current_market_cap: string;
962
- pool_current_market_cap_usd: string | null;
963
925
  pool_current_fees_accrued: string;
964
926
  pool_current_total_proceeds: string;
965
927
  pool_current_total_tokens_sold: string;
@@ -976,7 +938,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
976
938
  pool_type: string;
977
939
  pool_volume_24h_base: string | null;
978
940
  pool_volume_24h_quote: string | null;
979
- pool_volume_24h_usd: string | null;
980
941
  pool_volume_24h_swap_count: number | null;
981
942
  pool_volume_last_updated: string | null;
982
943
  base_token: {
@@ -1011,17 +972,14 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
1011
972
  pool_current_price: string;
1012
973
  pool_current_sqrt_price: string;
1013
974
  pool_current_fdv: string;
1014
- pool_current_fdv_usd: string | null;
1015
975
  pool_current_liquidity: string;
1016
976
  pool_current_tick: number;
1017
977
  pool_current_market_cap: string;
1018
- pool_current_market_cap_usd: string | null;
1019
978
  pool_address: string;
1020
979
  pool_migration_timestamp: Date | null;
1021
980
  pool_type: string;
1022
981
  pool_volume_24h_base: string | null;
1023
982
  pool_volume_24h_quote: string | null;
1024
- pool_volume_24h_usd: string | null;
1025
983
  pool_volume_24h_swap_count: number | null;
1026
984
  pool_volume_last_updated: string | null;
1027
985
  base_token: {
@@ -1096,12 +1054,10 @@ declare const assetContract: {
1096
1054
  pool_current_price: z.ZodString;
1097
1055
  pool_current_sqrt_price: z.ZodString;
1098
1056
  pool_current_fdv: z.ZodString;
1099
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
1100
1057
  pool_current_liquidity: z.ZodString;
1101
1058
  pool_current_tick: z.ZodNumber;
1102
1059
  pool_last_epoch: z.ZodNumber;
1103
1060
  pool_current_market_cap: z.ZodString;
1104
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
1105
1061
  pool_current_fees_accrued: z.ZodString;
1106
1062
  pool_current_total_proceeds: z.ZodString;
1107
1063
  pool_current_total_tokens_sold: z.ZodString;
@@ -1118,7 +1074,6 @@ declare const assetContract: {
1118
1074
  pool_type: z.ZodString;
1119
1075
  pool_volume_24h_base: z.ZodNullable<z.ZodString>;
1120
1076
  pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
1121
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
1122
1077
  pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
1123
1078
  pool_volume_last_updated: z.ZodNullable<z.ZodString>;
1124
1079
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
@@ -1281,12 +1236,10 @@ declare const assetContract: {
1281
1236
  pool_current_price: string;
1282
1237
  pool_current_sqrt_price: string;
1283
1238
  pool_current_fdv: string;
1284
- pool_current_fdv_usd: string | null;
1285
1239
  pool_current_liquidity: string;
1286
1240
  pool_current_tick: number;
1287
1241
  pool_last_epoch: number;
1288
1242
  pool_current_market_cap: string;
1289
- pool_current_market_cap_usd: string | null;
1290
1243
  pool_current_fees_accrued: string;
1291
1244
  pool_current_total_proceeds: string;
1292
1245
  pool_current_total_tokens_sold: string;
@@ -1303,7 +1256,6 @@ declare const assetContract: {
1303
1256
  pool_type: string;
1304
1257
  pool_volume_24h_base: string | null;
1305
1258
  pool_volume_24h_quote: string | null;
1306
- pool_volume_24h_usd: string | null;
1307
1259
  pool_volume_24h_swap_count: number | null;
1308
1260
  pool_volume_last_updated: string | null;
1309
1261
  pool_market_data: {
@@ -1344,12 +1296,10 @@ declare const assetContract: {
1344
1296
  pool_current_price: string;
1345
1297
  pool_current_sqrt_price: string;
1346
1298
  pool_current_fdv: string;
1347
- pool_current_fdv_usd: string | null;
1348
1299
  pool_current_liquidity: string;
1349
1300
  pool_current_tick: number;
1350
1301
  pool_last_epoch: number;
1351
1302
  pool_current_market_cap: string;
1352
- pool_current_market_cap_usd: string | null;
1353
1303
  pool_current_fees_accrued: string;
1354
1304
  pool_current_total_proceeds: string;
1355
1305
  pool_current_total_tokens_sold: string;
@@ -1366,7 +1316,6 @@ declare const assetContract: {
1366
1316
  pool_type: string;
1367
1317
  pool_volume_24h_base: string | null;
1368
1318
  pool_volume_24h_quote: string | null;
1369
- pool_volume_24h_usd: string | null;
1370
1319
  pool_volume_24h_swap_count: number | null;
1371
1320
  pool_volume_last_updated: string | null;
1372
1321
  base_token: {
@@ -1401,17 +1350,14 @@ declare const assetContract: {
1401
1350
  pool_current_price: z.ZodString;
1402
1351
  pool_current_sqrt_price: z.ZodString;
1403
1352
  pool_current_fdv: z.ZodString;
1404
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
1405
1353
  pool_current_liquidity: z.ZodString;
1406
1354
  pool_current_tick: z.ZodNumber;
1407
1355
  pool_current_market_cap: z.ZodString;
1408
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
1409
1356
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1410
1357
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1411
1358
  pool_type: z.ZodString;
1412
1359
  pool_volume_24h_base: z.ZodNullable<z.ZodString>;
1413
1360
  pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
1414
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
1415
1361
  pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
1416
1362
  pool_volume_last_updated: z.ZodNullable<z.ZodString>;
1417
1363
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
@@ -1577,17 +1523,14 @@ declare const assetContract: {
1577
1523
  pool_current_price: string;
1578
1524
  pool_current_sqrt_price: string;
1579
1525
  pool_current_fdv: string;
1580
- pool_current_fdv_usd: string | null;
1581
1526
  pool_current_liquidity: string;
1582
1527
  pool_current_tick: number;
1583
1528
  pool_current_market_cap: string;
1584
- pool_current_market_cap_usd: string | null;
1585
1529
  pool_address: `0x${string}`;
1586
1530
  pool_migration_timestamp: Date | null;
1587
1531
  pool_type: string;
1588
1532
  pool_volume_24h_base: string | null;
1589
1533
  pool_volume_24h_quote: string | null;
1590
- pool_volume_24h_usd: string | null;
1591
1534
  pool_volume_24h_swap_count: number | null;
1592
1535
  pool_volume_last_updated: string | null;
1593
1536
  pool_market_data: {
@@ -1629,17 +1572,14 @@ declare const assetContract: {
1629
1572
  pool_current_price: string;
1630
1573
  pool_current_sqrt_price: string;
1631
1574
  pool_current_fdv: string;
1632
- pool_current_fdv_usd: string | null;
1633
1575
  pool_current_liquidity: string;
1634
1576
  pool_current_tick: number;
1635
1577
  pool_current_market_cap: string;
1636
- pool_current_market_cap_usd: string | null;
1637
1578
  pool_address: string;
1638
1579
  pool_migration_timestamp: Date | null;
1639
1580
  pool_type: string;
1640
1581
  pool_volume_24h_base: string | null;
1641
1582
  pool_volume_24h_quote: string | null;
1642
- pool_volume_24h_usd: string | null;
1643
1583
  pool_volume_24h_swap_count: number | null;
1644
1584
  pool_volume_last_updated: string | null;
1645
1585
  base_token: {
@@ -1682,12 +1622,10 @@ declare const assetContract: {
1682
1622
  pool_current_price: string;
1683
1623
  pool_current_sqrt_price: string;
1684
1624
  pool_current_fdv: string;
1685
- pool_current_fdv_usd: string | null;
1686
1625
  pool_current_liquidity: string;
1687
1626
  pool_current_tick: number;
1688
1627
  pool_last_epoch: number;
1689
1628
  pool_current_market_cap: string;
1690
- pool_current_market_cap_usd: string | null;
1691
1629
  pool_current_fees_accrued: string;
1692
1630
  pool_current_total_proceeds: string;
1693
1631
  pool_current_total_tokens_sold: string;
@@ -1704,7 +1642,6 @@ declare const assetContract: {
1704
1642
  pool_type: string;
1705
1643
  pool_volume_24h_base: string | null;
1706
1644
  pool_volume_24h_quote: string | null;
1707
- pool_volume_24h_usd: string | null;
1708
1645
  pool_volume_24h_swap_count: number | null;
1709
1646
  pool_volume_last_updated: string | null;
1710
1647
  pool_market_data: {
@@ -1746,17 +1683,14 @@ declare const assetContract: {
1746
1683
  pool_current_price: string;
1747
1684
  pool_current_sqrt_price: string;
1748
1685
  pool_current_fdv: string;
1749
- pool_current_fdv_usd: string | null;
1750
1686
  pool_current_liquidity: string;
1751
1687
  pool_current_tick: number;
1752
1688
  pool_current_market_cap: string;
1753
- pool_current_market_cap_usd: string | null;
1754
1689
  pool_address: `0x${string}`;
1755
1690
  pool_migration_timestamp: Date | null;
1756
1691
  pool_type: string;
1757
1692
  pool_volume_24h_base: string | null;
1758
1693
  pool_volume_24h_quote: string | null;
1759
- pool_volume_24h_usd: string | null;
1760
1694
  pool_volume_24h_swap_count: number | null;
1761
1695
  pool_volume_last_updated: string | null;
1762
1696
  pool_market_data: {
@@ -1805,12 +1739,10 @@ declare const assetContract: {
1805
1739
  pool_current_price: string;
1806
1740
  pool_current_sqrt_price: string;
1807
1741
  pool_current_fdv: string;
1808
- pool_current_fdv_usd: string | null;
1809
1742
  pool_current_liquidity: string;
1810
1743
  pool_current_tick: number;
1811
1744
  pool_last_epoch: number;
1812
1745
  pool_current_market_cap: string;
1813
- pool_current_market_cap_usd: string | null;
1814
1746
  pool_current_fees_accrued: string;
1815
1747
  pool_current_total_proceeds: string;
1816
1748
  pool_current_total_tokens_sold: string;
@@ -1827,7 +1759,6 @@ declare const assetContract: {
1827
1759
  pool_type: string;
1828
1760
  pool_volume_24h_base: string | null;
1829
1761
  pool_volume_24h_quote: string | null;
1830
- pool_volume_24h_usd: string | null;
1831
1762
  pool_volume_24h_swap_count: number | null;
1832
1763
  pool_volume_last_updated: string | null;
1833
1764
  base_token: {
@@ -1862,17 +1793,14 @@ declare const assetContract: {
1862
1793
  pool_current_price: string;
1863
1794
  pool_current_sqrt_price: string;
1864
1795
  pool_current_fdv: string;
1865
- pool_current_fdv_usd: string | null;
1866
1796
  pool_current_liquidity: string;
1867
1797
  pool_current_tick: number;
1868
1798
  pool_current_market_cap: string;
1869
- pool_current_market_cap_usd: string | null;
1870
1799
  pool_address: string;
1871
1800
  pool_migration_timestamp: Date | null;
1872
1801
  pool_type: string;
1873
1802
  pool_volume_24h_base: string | null;
1874
1803
  pool_volume_24h_quote: string | null;
1875
- pool_volume_24h_usd: string | null;
1876
1804
  pool_volume_24h_swap_count: number | null;
1877
1805
  pool_volume_last_updated: string | null;
1878
1806
  base_token: {
@@ -1916,12 +1844,10 @@ declare const assetContract: {
1916
1844
  pool_current_price: string;
1917
1845
  pool_current_sqrt_price: string;
1918
1846
  pool_current_fdv: string;
1919
- pool_current_fdv_usd: string | null;
1920
1847
  pool_current_liquidity: string;
1921
1848
  pool_current_tick: number;
1922
1849
  pool_last_epoch: number;
1923
1850
  pool_current_market_cap: string;
1924
- pool_current_market_cap_usd: string | null;
1925
1851
  pool_current_fees_accrued: string;
1926
1852
  pool_current_total_proceeds: string;
1927
1853
  pool_current_total_tokens_sold: string;
@@ -1938,7 +1864,6 @@ declare const assetContract: {
1938
1864
  pool_type: string;
1939
1865
  pool_volume_24h_base: string | null;
1940
1866
  pool_volume_24h_quote: string | null;
1941
- pool_volume_24h_usd: string | null;
1942
1867
  pool_volume_24h_swap_count: number | null;
1943
1868
  pool_volume_last_updated: string | null;
1944
1869
  pool_market_data: {
@@ -1980,17 +1905,14 @@ declare const assetContract: {
1980
1905
  pool_current_price: string;
1981
1906
  pool_current_sqrt_price: string;
1982
1907
  pool_current_fdv: string;
1983
- pool_current_fdv_usd: string | null;
1984
1908
  pool_current_liquidity: string;
1985
1909
  pool_current_tick: number;
1986
1910
  pool_current_market_cap: string;
1987
- pool_current_market_cap_usd: string | null;
1988
1911
  pool_address: `0x${string}`;
1989
1912
  pool_migration_timestamp: Date | null;
1990
1913
  pool_type: string;
1991
1914
  pool_volume_24h_base: string | null;
1992
1915
  pool_volume_24h_quote: string | null;
1993
- pool_volume_24h_usd: string | null;
1994
1916
  pool_volume_24h_swap_count: number | null;
1995
1917
  pool_volume_last_updated: string | null;
1996
1918
  pool_market_data: {
@@ -2039,12 +1961,10 @@ declare const assetContract: {
2039
1961
  pool_current_price: string;
2040
1962
  pool_current_sqrt_price: string;
2041
1963
  pool_current_fdv: string;
2042
- pool_current_fdv_usd: string | null;
2043
1964
  pool_current_liquidity: string;
2044
1965
  pool_current_tick: number;
2045
1966
  pool_last_epoch: number;
2046
1967
  pool_current_market_cap: string;
2047
- pool_current_market_cap_usd: string | null;
2048
1968
  pool_current_fees_accrued: string;
2049
1969
  pool_current_total_proceeds: string;
2050
1970
  pool_current_total_tokens_sold: string;
@@ -2061,7 +1981,6 @@ declare const assetContract: {
2061
1981
  pool_type: string;
2062
1982
  pool_volume_24h_base: string | null;
2063
1983
  pool_volume_24h_quote: string | null;
2064
- pool_volume_24h_usd: string | null;
2065
1984
  pool_volume_24h_swap_count: number | null;
2066
1985
  pool_volume_last_updated: string | null;
2067
1986
  base_token: {
@@ -2096,17 +2015,14 @@ declare const assetContract: {
2096
2015
  pool_current_price: string;
2097
2016
  pool_current_sqrt_price: string;
2098
2017
  pool_current_fdv: string;
2099
- pool_current_fdv_usd: string | null;
2100
2018
  pool_current_liquidity: string;
2101
2019
  pool_current_tick: number;
2102
2020
  pool_current_market_cap: string;
2103
- pool_current_market_cap_usd: string | null;
2104
2021
  pool_address: string;
2105
2022
  pool_migration_timestamp: Date | null;
2106
2023
  pool_type: string;
2107
2024
  pool_volume_24h_base: string | null;
2108
2025
  pool_volume_24h_quote: string | null;
2109
- pool_volume_24h_usd: string | null;
2110
2026
  pool_volume_24h_swap_count: number | null;
2111
2027
  pool_volume_last_updated: string | null;
2112
2028
  base_token: {
@@ -2152,12 +2068,10 @@ declare const assetContract: {
2152
2068
  pool_current_price: string;
2153
2069
  pool_current_sqrt_price: string;
2154
2070
  pool_current_fdv: string;
2155
- pool_current_fdv_usd: string | null;
2156
2071
  pool_current_liquidity: string;
2157
2072
  pool_current_tick: number;
2158
2073
  pool_last_epoch: number;
2159
2074
  pool_current_market_cap: string;
2160
- pool_current_market_cap_usd: string | null;
2161
2075
  pool_current_fees_accrued: string;
2162
2076
  pool_current_total_proceeds: string;
2163
2077
  pool_current_total_tokens_sold: string;
@@ -2174,7 +2088,6 @@ declare const assetContract: {
2174
2088
  pool_type: string;
2175
2089
  pool_volume_24h_base: string | null;
2176
2090
  pool_volume_24h_quote: string | null;
2177
- pool_volume_24h_usd: string | null;
2178
2091
  pool_volume_24h_swap_count: number | null;
2179
2092
  pool_volume_last_updated: string | null;
2180
2093
  pool_market_data: {
@@ -2216,17 +2129,14 @@ declare const assetContract: {
2216
2129
  pool_current_price: string;
2217
2130
  pool_current_sqrt_price: string;
2218
2131
  pool_current_fdv: string;
2219
- pool_current_fdv_usd: string | null;
2220
2132
  pool_current_liquidity: string;
2221
2133
  pool_current_tick: number;
2222
2134
  pool_current_market_cap: string;
2223
- pool_current_market_cap_usd: string | null;
2224
2135
  pool_address: `0x${string}`;
2225
2136
  pool_migration_timestamp: Date | null;
2226
2137
  pool_type: string;
2227
2138
  pool_volume_24h_base: string | null;
2228
2139
  pool_volume_24h_quote: string | null;
2229
- pool_volume_24h_usd: string | null;
2230
2140
  pool_volume_24h_swap_count: number | null;
2231
2141
  pool_volume_last_updated: string | null;
2232
2142
  pool_market_data: {
@@ -2277,12 +2187,10 @@ declare const assetContract: {
2277
2187
  pool_current_price: string;
2278
2188
  pool_current_sqrt_price: string;
2279
2189
  pool_current_fdv: string;
2280
- pool_current_fdv_usd: string | null;
2281
2190
  pool_current_liquidity: string;
2282
2191
  pool_current_tick: number;
2283
2192
  pool_last_epoch: number;
2284
2193
  pool_current_market_cap: string;
2285
- pool_current_market_cap_usd: string | null;
2286
2194
  pool_current_fees_accrued: string;
2287
2195
  pool_current_total_proceeds: string;
2288
2196
  pool_current_total_tokens_sold: string;
@@ -2299,7 +2207,6 @@ declare const assetContract: {
2299
2207
  pool_type: string;
2300
2208
  pool_volume_24h_base: string | null;
2301
2209
  pool_volume_24h_quote: string | null;
2302
- pool_volume_24h_usd: string | null;
2303
2210
  pool_volume_24h_swap_count: number | null;
2304
2211
  pool_volume_last_updated: string | null;
2305
2212
  base_token: {
@@ -2334,17 +2241,14 @@ declare const assetContract: {
2334
2241
  pool_current_price: string;
2335
2242
  pool_current_sqrt_price: string;
2336
2243
  pool_current_fdv: string;
2337
- pool_current_fdv_usd: string | null;
2338
2244
  pool_current_liquidity: string;
2339
2245
  pool_current_tick: number;
2340
2246
  pool_current_market_cap: string;
2341
- pool_current_market_cap_usd: string | null;
2342
2247
  pool_address: string;
2343
2248
  pool_migration_timestamp: Date | null;
2344
2249
  pool_type: string;
2345
2250
  pool_volume_24h_base: string | null;
2346
2251
  pool_volume_24h_quote: string | null;
2347
- pool_volume_24h_usd: string | null;
2348
2252
  pool_volume_24h_swap_count: number | null;
2349
2253
  pool_volume_last_updated: string | null;
2350
2254
  base_token: {
@@ -2411,12 +2315,10 @@ declare const assetContract: {
2411
2315
  pool_current_price: z.ZodString;
2412
2316
  pool_current_sqrt_price: z.ZodString;
2413
2317
  pool_current_fdv: z.ZodString;
2414
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
2415
2318
  pool_current_liquidity: z.ZodString;
2416
2319
  pool_current_tick: z.ZodNumber;
2417
2320
  pool_last_epoch: z.ZodNumber;
2418
2321
  pool_current_market_cap: z.ZodString;
2419
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
2420
2322
  pool_current_fees_accrued: z.ZodString;
2421
2323
  pool_current_total_proceeds: z.ZodString;
2422
2324
  pool_current_total_tokens_sold: z.ZodString;
@@ -2433,7 +2335,6 @@ declare const assetContract: {
2433
2335
  pool_type: z.ZodString;
2434
2336
  pool_volume_24h_base: z.ZodNullable<z.ZodString>;
2435
2337
  pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
2436
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
2437
2338
  pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
2438
2339
  pool_volume_last_updated: z.ZodNullable<z.ZodString>;
2439
2340
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
@@ -2596,12 +2497,10 @@ declare const assetContract: {
2596
2497
  pool_current_price: string;
2597
2498
  pool_current_sqrt_price: string;
2598
2499
  pool_current_fdv: string;
2599
- pool_current_fdv_usd: string | null;
2600
2500
  pool_current_liquidity: string;
2601
2501
  pool_current_tick: number;
2602
2502
  pool_last_epoch: number;
2603
2503
  pool_current_market_cap: string;
2604
- pool_current_market_cap_usd: string | null;
2605
2504
  pool_current_fees_accrued: string;
2606
2505
  pool_current_total_proceeds: string;
2607
2506
  pool_current_total_tokens_sold: string;
@@ -2618,7 +2517,6 @@ declare const assetContract: {
2618
2517
  pool_type: string;
2619
2518
  pool_volume_24h_base: string | null;
2620
2519
  pool_volume_24h_quote: string | null;
2621
- pool_volume_24h_usd: string | null;
2622
2520
  pool_volume_24h_swap_count: number | null;
2623
2521
  pool_volume_last_updated: string | null;
2624
2522
  pool_market_data: {
@@ -2659,12 +2557,10 @@ declare const assetContract: {
2659
2557
  pool_current_price: string;
2660
2558
  pool_current_sqrt_price: string;
2661
2559
  pool_current_fdv: string;
2662
- pool_current_fdv_usd: string | null;
2663
2560
  pool_current_liquidity: string;
2664
2561
  pool_current_tick: number;
2665
2562
  pool_last_epoch: number;
2666
2563
  pool_current_market_cap: string;
2667
- pool_current_market_cap_usd: string | null;
2668
2564
  pool_current_fees_accrued: string;
2669
2565
  pool_current_total_proceeds: string;
2670
2566
  pool_current_total_tokens_sold: string;
@@ -2681,7 +2577,6 @@ declare const assetContract: {
2681
2577
  pool_type: string;
2682
2578
  pool_volume_24h_base: string | null;
2683
2579
  pool_volume_24h_quote: string | null;
2684
- pool_volume_24h_usd: string | null;
2685
2580
  pool_volume_24h_swap_count: number | null;
2686
2581
  pool_volume_last_updated: string | null;
2687
2582
  base_token: {
@@ -2716,17 +2611,14 @@ declare const assetContract: {
2716
2611
  pool_current_price: z.ZodString;
2717
2612
  pool_current_sqrt_price: z.ZodString;
2718
2613
  pool_current_fdv: z.ZodString;
2719
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
2720
2614
  pool_current_liquidity: z.ZodString;
2721
2615
  pool_current_tick: z.ZodNumber;
2722
2616
  pool_current_market_cap: z.ZodString;
2723
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
2724
2617
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2725
2618
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2726
2619
  pool_type: z.ZodString;
2727
2620
  pool_volume_24h_base: z.ZodNullable<z.ZodString>;
2728
2621
  pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
2729
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
2730
2622
  pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
2731
2623
  pool_volume_last_updated: z.ZodNullable<z.ZodString>;
2732
2624
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
@@ -2892,17 +2784,14 @@ declare const assetContract: {
2892
2784
  pool_current_price: string;
2893
2785
  pool_current_sqrt_price: string;
2894
2786
  pool_current_fdv: string;
2895
- pool_current_fdv_usd: string | null;
2896
2787
  pool_current_liquidity: string;
2897
2788
  pool_current_tick: number;
2898
2789
  pool_current_market_cap: string;
2899
- pool_current_market_cap_usd: string | null;
2900
2790
  pool_address: `0x${string}`;
2901
2791
  pool_migration_timestamp: Date | null;
2902
2792
  pool_type: string;
2903
2793
  pool_volume_24h_base: string | null;
2904
2794
  pool_volume_24h_quote: string | null;
2905
- pool_volume_24h_usd: string | null;
2906
2795
  pool_volume_24h_swap_count: number | null;
2907
2796
  pool_volume_last_updated: string | null;
2908
2797
  pool_market_data: {
@@ -2944,17 +2833,14 @@ declare const assetContract: {
2944
2833
  pool_current_price: string;
2945
2834
  pool_current_sqrt_price: string;
2946
2835
  pool_current_fdv: string;
2947
- pool_current_fdv_usd: string | null;
2948
2836
  pool_current_liquidity: string;
2949
2837
  pool_current_tick: number;
2950
2838
  pool_current_market_cap: string;
2951
- pool_current_market_cap_usd: string | null;
2952
2839
  pool_address: string;
2953
2840
  pool_migration_timestamp: Date | null;
2954
2841
  pool_type: string;
2955
2842
  pool_volume_24h_base: string | null;
2956
2843
  pool_volume_24h_quote: string | null;
2957
- pool_volume_24h_usd: string | null;
2958
2844
  pool_volume_24h_swap_count: number | null;
2959
2845
  pool_volume_last_updated: string | null;
2960
2846
  base_token: {
@@ -2997,12 +2883,10 @@ declare const assetContract: {
2997
2883
  pool_current_price: string;
2998
2884
  pool_current_sqrt_price: string;
2999
2885
  pool_current_fdv: string;
3000
- pool_current_fdv_usd: string | null;
3001
2886
  pool_current_liquidity: string;
3002
2887
  pool_current_tick: number;
3003
2888
  pool_last_epoch: number;
3004
2889
  pool_current_market_cap: string;
3005
- pool_current_market_cap_usd: string | null;
3006
2890
  pool_current_fees_accrued: string;
3007
2891
  pool_current_total_proceeds: string;
3008
2892
  pool_current_total_tokens_sold: string;
@@ -3019,7 +2903,6 @@ declare const assetContract: {
3019
2903
  pool_type: string;
3020
2904
  pool_volume_24h_base: string | null;
3021
2905
  pool_volume_24h_quote: string | null;
3022
- pool_volume_24h_usd: string | null;
3023
2906
  pool_volume_24h_swap_count: number | null;
3024
2907
  pool_volume_last_updated: string | null;
3025
2908
  pool_market_data: {
@@ -3061,17 +2944,14 @@ declare const assetContract: {
3061
2944
  pool_current_price: string;
3062
2945
  pool_current_sqrt_price: string;
3063
2946
  pool_current_fdv: string;
3064
- pool_current_fdv_usd: string | null;
3065
2947
  pool_current_liquidity: string;
3066
2948
  pool_current_tick: number;
3067
2949
  pool_current_market_cap: string;
3068
- pool_current_market_cap_usd: string | null;
3069
2950
  pool_address: `0x${string}`;
3070
2951
  pool_migration_timestamp: Date | null;
3071
2952
  pool_type: string;
3072
2953
  pool_volume_24h_base: string | null;
3073
2954
  pool_volume_24h_quote: string | null;
3074
- pool_volume_24h_usd: string | null;
3075
2955
  pool_volume_24h_swap_count: number | null;
3076
2956
  pool_volume_last_updated: string | null;
3077
2957
  pool_market_data: {
@@ -3120,12 +3000,10 @@ declare const assetContract: {
3120
3000
  pool_current_price: string;
3121
3001
  pool_current_sqrt_price: string;
3122
3002
  pool_current_fdv: string;
3123
- pool_current_fdv_usd: string | null;
3124
3003
  pool_current_liquidity: string;
3125
3004
  pool_current_tick: number;
3126
3005
  pool_last_epoch: number;
3127
3006
  pool_current_market_cap: string;
3128
- pool_current_market_cap_usd: string | null;
3129
3007
  pool_current_fees_accrued: string;
3130
3008
  pool_current_total_proceeds: string;
3131
3009
  pool_current_total_tokens_sold: string;
@@ -3142,7 +3020,6 @@ declare const assetContract: {
3142
3020
  pool_type: string;
3143
3021
  pool_volume_24h_base: string | null;
3144
3022
  pool_volume_24h_quote: string | null;
3145
- pool_volume_24h_usd: string | null;
3146
3023
  pool_volume_24h_swap_count: number | null;
3147
3024
  pool_volume_last_updated: string | null;
3148
3025
  base_token: {
@@ -3177,17 +3054,14 @@ declare const assetContract: {
3177
3054
  pool_current_price: string;
3178
3055
  pool_current_sqrt_price: string;
3179
3056
  pool_current_fdv: string;
3180
- pool_current_fdv_usd: string | null;
3181
3057
  pool_current_liquidity: string;
3182
3058
  pool_current_tick: number;
3183
3059
  pool_current_market_cap: string;
3184
- pool_current_market_cap_usd: string | null;
3185
3060
  pool_address: string;
3186
3061
  pool_migration_timestamp: Date | null;
3187
3062
  pool_type: string;
3188
3063
  pool_volume_24h_base: string | null;
3189
3064
  pool_volume_24h_quote: string | null;
3190
- pool_volume_24h_usd: string | null;
3191
3065
  pool_volume_24h_swap_count: number | null;
3192
3066
  pool_volume_last_updated: string | null;
3193
3067
  base_token: {
@@ -3231,12 +3105,10 @@ declare const assetContract: {
3231
3105
  pool_current_price: string;
3232
3106
  pool_current_sqrt_price: string;
3233
3107
  pool_current_fdv: string;
3234
- pool_current_fdv_usd: string | null;
3235
3108
  pool_current_liquidity: string;
3236
3109
  pool_current_tick: number;
3237
3110
  pool_last_epoch: number;
3238
3111
  pool_current_market_cap: string;
3239
- pool_current_market_cap_usd: string | null;
3240
3112
  pool_current_fees_accrued: string;
3241
3113
  pool_current_total_proceeds: string;
3242
3114
  pool_current_total_tokens_sold: string;
@@ -3253,7 +3125,6 @@ declare const assetContract: {
3253
3125
  pool_type: string;
3254
3126
  pool_volume_24h_base: string | null;
3255
3127
  pool_volume_24h_quote: string | null;
3256
- pool_volume_24h_usd: string | null;
3257
3128
  pool_volume_24h_swap_count: number | null;
3258
3129
  pool_volume_last_updated: string | null;
3259
3130
  pool_market_data: {
@@ -3295,17 +3166,14 @@ declare const assetContract: {
3295
3166
  pool_current_price: string;
3296
3167
  pool_current_sqrt_price: string;
3297
3168
  pool_current_fdv: string;
3298
- pool_current_fdv_usd: string | null;
3299
3169
  pool_current_liquidity: string;
3300
3170
  pool_current_tick: number;
3301
3171
  pool_current_market_cap: string;
3302
- pool_current_market_cap_usd: string | null;
3303
3172
  pool_address: `0x${string}`;
3304
3173
  pool_migration_timestamp: Date | null;
3305
3174
  pool_type: string;
3306
3175
  pool_volume_24h_base: string | null;
3307
3176
  pool_volume_24h_quote: string | null;
3308
- pool_volume_24h_usd: string | null;
3309
3177
  pool_volume_24h_swap_count: number | null;
3310
3178
  pool_volume_last_updated: string | null;
3311
3179
  pool_market_data: {
@@ -3354,12 +3222,10 @@ declare const assetContract: {
3354
3222
  pool_current_price: string;
3355
3223
  pool_current_sqrt_price: string;
3356
3224
  pool_current_fdv: string;
3357
- pool_current_fdv_usd: string | null;
3358
3225
  pool_current_liquidity: string;
3359
3226
  pool_current_tick: number;
3360
3227
  pool_last_epoch: number;
3361
3228
  pool_current_market_cap: string;
3362
- pool_current_market_cap_usd: string | null;
3363
3229
  pool_current_fees_accrued: string;
3364
3230
  pool_current_total_proceeds: string;
3365
3231
  pool_current_total_tokens_sold: string;
@@ -3376,7 +3242,6 @@ declare const assetContract: {
3376
3242
  pool_type: string;
3377
3243
  pool_volume_24h_base: string | null;
3378
3244
  pool_volume_24h_quote: string | null;
3379
- pool_volume_24h_usd: string | null;
3380
3245
  pool_volume_24h_swap_count: number | null;
3381
3246
  pool_volume_last_updated: string | null;
3382
3247
  base_token: {
@@ -3411,17 +3276,14 @@ declare const assetContract: {
3411
3276
  pool_current_price: string;
3412
3277
  pool_current_sqrt_price: string;
3413
3278
  pool_current_fdv: string;
3414
- pool_current_fdv_usd: string | null;
3415
3279
  pool_current_liquidity: string;
3416
3280
  pool_current_tick: number;
3417
3281
  pool_current_market_cap: string;
3418
- pool_current_market_cap_usd: string | null;
3419
3282
  pool_address: string;
3420
3283
  pool_migration_timestamp: Date | null;
3421
3284
  pool_type: string;
3422
3285
  pool_volume_24h_base: string | null;
3423
3286
  pool_volume_24h_quote: string | null;
3424
- pool_volume_24h_usd: string | null;
3425
3287
  pool_volume_24h_swap_count: number | null;
3426
3288
  pool_volume_last_updated: string | null;
3427
3289
  base_token: {
@@ -3467,12 +3329,10 @@ declare const assetContract: {
3467
3329
  pool_current_price: string;
3468
3330
  pool_current_sqrt_price: string;
3469
3331
  pool_current_fdv: string;
3470
- pool_current_fdv_usd: string | null;
3471
3332
  pool_current_liquidity: string;
3472
3333
  pool_current_tick: number;
3473
3334
  pool_last_epoch: number;
3474
3335
  pool_current_market_cap: string;
3475
- pool_current_market_cap_usd: string | null;
3476
3336
  pool_current_fees_accrued: string;
3477
3337
  pool_current_total_proceeds: string;
3478
3338
  pool_current_total_tokens_sold: string;
@@ -3489,7 +3349,6 @@ declare const assetContract: {
3489
3349
  pool_type: string;
3490
3350
  pool_volume_24h_base: string | null;
3491
3351
  pool_volume_24h_quote: string | null;
3492
- pool_volume_24h_usd: string | null;
3493
3352
  pool_volume_24h_swap_count: number | null;
3494
3353
  pool_volume_last_updated: string | null;
3495
3354
  pool_market_data: {
@@ -3531,17 +3390,14 @@ declare const assetContract: {
3531
3390
  pool_current_price: string;
3532
3391
  pool_current_sqrt_price: string;
3533
3392
  pool_current_fdv: string;
3534
- pool_current_fdv_usd: string | null;
3535
3393
  pool_current_liquidity: string;
3536
3394
  pool_current_tick: number;
3537
3395
  pool_current_market_cap: string;
3538
- pool_current_market_cap_usd: string | null;
3539
3396
  pool_address: `0x${string}`;
3540
3397
  pool_migration_timestamp: Date | null;
3541
3398
  pool_type: string;
3542
3399
  pool_volume_24h_base: string | null;
3543
3400
  pool_volume_24h_quote: string | null;
3544
- pool_volume_24h_usd: string | null;
3545
3401
  pool_volume_24h_swap_count: number | null;
3546
3402
  pool_volume_last_updated: string | null;
3547
3403
  pool_market_data: {
@@ -3592,12 +3448,10 @@ declare const assetContract: {
3592
3448
  pool_current_price: string;
3593
3449
  pool_current_sqrt_price: string;
3594
3450
  pool_current_fdv: string;
3595
- pool_current_fdv_usd: string | null;
3596
3451
  pool_current_liquidity: string;
3597
3452
  pool_current_tick: number;
3598
3453
  pool_last_epoch: number;
3599
3454
  pool_current_market_cap: string;
3600
- pool_current_market_cap_usd: string | null;
3601
3455
  pool_current_fees_accrued: string;
3602
3456
  pool_current_total_proceeds: string;
3603
3457
  pool_current_total_tokens_sold: string;
@@ -3614,7 +3468,6 @@ declare const assetContract: {
3614
3468
  pool_type: string;
3615
3469
  pool_volume_24h_base: string | null;
3616
3470
  pool_volume_24h_quote: string | null;
3617
- pool_volume_24h_usd: string | null;
3618
3471
  pool_volume_24h_swap_count: number | null;
3619
3472
  pool_volume_last_updated: string | null;
3620
3473
  base_token: {
@@ -3649,17 +3502,14 @@ declare const assetContract: {
3649
3502
  pool_current_price: string;
3650
3503
  pool_current_sqrt_price: string;
3651
3504
  pool_current_fdv: string;
3652
- pool_current_fdv_usd: string | null;
3653
3505
  pool_current_liquidity: string;
3654
3506
  pool_current_tick: number;
3655
3507
  pool_current_market_cap: string;
3656
- pool_current_market_cap_usd: string | null;
3657
3508
  pool_address: string;
3658
3509
  pool_migration_timestamp: Date | null;
3659
3510
  pool_type: string;
3660
3511
  pool_volume_24h_base: string | null;
3661
3512
  pool_volume_24h_quote: string | null;
3662
- pool_volume_24h_usd: string | null;
3663
3513
  pool_volume_24h_swap_count: number | null;
3664
3514
  pool_volume_last_updated: string | null;
3665
3515
  base_token: {
@@ -3727,12 +3577,10 @@ declare const assetContract: {
3727
3577
  pool_current_price: z.ZodString;
3728
3578
  pool_current_sqrt_price: z.ZodString;
3729
3579
  pool_current_fdv: z.ZodString;
3730
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
3731
3580
  pool_current_liquidity: z.ZodString;
3732
3581
  pool_current_tick: z.ZodNumber;
3733
3582
  pool_last_epoch: z.ZodNumber;
3734
3583
  pool_current_market_cap: z.ZodString;
3735
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
3736
3584
  pool_current_fees_accrued: z.ZodString;
3737
3585
  pool_current_total_proceeds: z.ZodString;
3738
3586
  pool_current_total_tokens_sold: z.ZodString;
@@ -3749,7 +3597,6 @@ declare const assetContract: {
3749
3597
  pool_type: z.ZodString;
3750
3598
  pool_volume_24h_base: z.ZodNullable<z.ZodString>;
3751
3599
  pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
3752
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
3753
3600
  pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
3754
3601
  pool_volume_last_updated: z.ZodNullable<z.ZodString>;
3755
3602
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
@@ -3912,12 +3759,10 @@ declare const assetContract: {
3912
3759
  pool_current_price: string;
3913
3760
  pool_current_sqrt_price: string;
3914
3761
  pool_current_fdv: string;
3915
- pool_current_fdv_usd: string | null;
3916
3762
  pool_current_liquidity: string;
3917
3763
  pool_current_tick: number;
3918
3764
  pool_last_epoch: number;
3919
3765
  pool_current_market_cap: string;
3920
- pool_current_market_cap_usd: string | null;
3921
3766
  pool_current_fees_accrued: string;
3922
3767
  pool_current_total_proceeds: string;
3923
3768
  pool_current_total_tokens_sold: string;
@@ -3934,7 +3779,6 @@ declare const assetContract: {
3934
3779
  pool_type: string;
3935
3780
  pool_volume_24h_base: string | null;
3936
3781
  pool_volume_24h_quote: string | null;
3937
- pool_volume_24h_usd: string | null;
3938
3782
  pool_volume_24h_swap_count: number | null;
3939
3783
  pool_volume_last_updated: string | null;
3940
3784
  pool_market_data: {
@@ -3975,12 +3819,10 @@ declare const assetContract: {
3975
3819
  pool_current_price: string;
3976
3820
  pool_current_sqrt_price: string;
3977
3821
  pool_current_fdv: string;
3978
- pool_current_fdv_usd: string | null;
3979
3822
  pool_current_liquidity: string;
3980
3823
  pool_current_tick: number;
3981
3824
  pool_last_epoch: number;
3982
3825
  pool_current_market_cap: string;
3983
- pool_current_market_cap_usd: string | null;
3984
3826
  pool_current_fees_accrued: string;
3985
3827
  pool_current_total_proceeds: string;
3986
3828
  pool_current_total_tokens_sold: string;
@@ -3997,7 +3839,6 @@ declare const assetContract: {
3997
3839
  pool_type: string;
3998
3840
  pool_volume_24h_base: string | null;
3999
3841
  pool_volume_24h_quote: string | null;
4000
- pool_volume_24h_usd: string | null;
4001
3842
  pool_volume_24h_swap_count: number | null;
4002
3843
  pool_volume_last_updated: string | null;
4003
3844
  base_token: {
@@ -4032,17 +3873,14 @@ declare const assetContract: {
4032
3873
  pool_current_price: z.ZodString;
4033
3874
  pool_current_sqrt_price: z.ZodString;
4034
3875
  pool_current_fdv: z.ZodString;
4035
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
4036
3876
  pool_current_liquidity: z.ZodString;
4037
3877
  pool_current_tick: z.ZodNumber;
4038
3878
  pool_current_market_cap: z.ZodString;
4039
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
4040
3879
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4041
3880
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
4042
3881
  pool_type: z.ZodString;
4043
3882
  pool_volume_24h_base: z.ZodNullable<z.ZodString>;
4044
3883
  pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
4045
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
4046
3884
  pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
4047
3885
  pool_volume_last_updated: z.ZodNullable<z.ZodString>;
4048
3886
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
@@ -4208,17 +4046,14 @@ declare const assetContract: {
4208
4046
  pool_current_price: string;
4209
4047
  pool_current_sqrt_price: string;
4210
4048
  pool_current_fdv: string;
4211
- pool_current_fdv_usd: string | null;
4212
4049
  pool_current_liquidity: string;
4213
4050
  pool_current_tick: number;
4214
4051
  pool_current_market_cap: string;
4215
- pool_current_market_cap_usd: string | null;
4216
4052
  pool_address: `0x${string}`;
4217
4053
  pool_migration_timestamp: Date | null;
4218
4054
  pool_type: string;
4219
4055
  pool_volume_24h_base: string | null;
4220
4056
  pool_volume_24h_quote: string | null;
4221
- pool_volume_24h_usd: string | null;
4222
4057
  pool_volume_24h_swap_count: number | null;
4223
4058
  pool_volume_last_updated: string | null;
4224
4059
  pool_market_data: {
@@ -4260,17 +4095,14 @@ declare const assetContract: {
4260
4095
  pool_current_price: string;
4261
4096
  pool_current_sqrt_price: string;
4262
4097
  pool_current_fdv: string;
4263
- pool_current_fdv_usd: string | null;
4264
4098
  pool_current_liquidity: string;
4265
4099
  pool_current_tick: number;
4266
4100
  pool_current_market_cap: string;
4267
- pool_current_market_cap_usd: string | null;
4268
4101
  pool_address: string;
4269
4102
  pool_migration_timestamp: Date | null;
4270
4103
  pool_type: string;
4271
4104
  pool_volume_24h_base: string | null;
4272
4105
  pool_volume_24h_quote: string | null;
4273
- pool_volume_24h_usd: string | null;
4274
4106
  pool_volume_24h_swap_count: number | null;
4275
4107
  pool_volume_last_updated: string | null;
4276
4108
  base_token: {
@@ -4313,12 +4145,10 @@ declare const assetContract: {
4313
4145
  pool_current_price: string;
4314
4146
  pool_current_sqrt_price: string;
4315
4147
  pool_current_fdv: string;
4316
- pool_current_fdv_usd: string | null;
4317
4148
  pool_current_liquidity: string;
4318
4149
  pool_current_tick: number;
4319
4150
  pool_last_epoch: number;
4320
4151
  pool_current_market_cap: string;
4321
- pool_current_market_cap_usd: string | null;
4322
4152
  pool_current_fees_accrued: string;
4323
4153
  pool_current_total_proceeds: string;
4324
4154
  pool_current_total_tokens_sold: string;
@@ -4335,7 +4165,6 @@ declare const assetContract: {
4335
4165
  pool_type: string;
4336
4166
  pool_volume_24h_base: string | null;
4337
4167
  pool_volume_24h_quote: string | null;
4338
- pool_volume_24h_usd: string | null;
4339
4168
  pool_volume_24h_swap_count: number | null;
4340
4169
  pool_volume_last_updated: string | null;
4341
4170
  pool_market_data: {
@@ -4377,17 +4206,14 @@ declare const assetContract: {
4377
4206
  pool_current_price: string;
4378
4207
  pool_current_sqrt_price: string;
4379
4208
  pool_current_fdv: string;
4380
- pool_current_fdv_usd: string | null;
4381
4209
  pool_current_liquidity: string;
4382
4210
  pool_current_tick: number;
4383
4211
  pool_current_market_cap: string;
4384
- pool_current_market_cap_usd: string | null;
4385
4212
  pool_address: `0x${string}`;
4386
4213
  pool_migration_timestamp: Date | null;
4387
4214
  pool_type: string;
4388
4215
  pool_volume_24h_base: string | null;
4389
4216
  pool_volume_24h_quote: string | null;
4390
- pool_volume_24h_usd: string | null;
4391
4217
  pool_volume_24h_swap_count: number | null;
4392
4218
  pool_volume_last_updated: string | null;
4393
4219
  pool_market_data: {
@@ -4436,12 +4262,10 @@ declare const assetContract: {
4436
4262
  pool_current_price: string;
4437
4263
  pool_current_sqrt_price: string;
4438
4264
  pool_current_fdv: string;
4439
- pool_current_fdv_usd: string | null;
4440
4265
  pool_current_liquidity: string;
4441
4266
  pool_current_tick: number;
4442
4267
  pool_last_epoch: number;
4443
4268
  pool_current_market_cap: string;
4444
- pool_current_market_cap_usd: string | null;
4445
4269
  pool_current_fees_accrued: string;
4446
4270
  pool_current_total_proceeds: string;
4447
4271
  pool_current_total_tokens_sold: string;
@@ -4458,7 +4282,6 @@ declare const assetContract: {
4458
4282
  pool_type: string;
4459
4283
  pool_volume_24h_base: string | null;
4460
4284
  pool_volume_24h_quote: string | null;
4461
- pool_volume_24h_usd: string | null;
4462
4285
  pool_volume_24h_swap_count: number | null;
4463
4286
  pool_volume_last_updated: string | null;
4464
4287
  base_token: {
@@ -4493,17 +4316,14 @@ declare const assetContract: {
4493
4316
  pool_current_price: string;
4494
4317
  pool_current_sqrt_price: string;
4495
4318
  pool_current_fdv: string;
4496
- pool_current_fdv_usd: string | null;
4497
4319
  pool_current_liquidity: string;
4498
4320
  pool_current_tick: number;
4499
4321
  pool_current_market_cap: string;
4500
- pool_current_market_cap_usd: string | null;
4501
4322
  pool_address: string;
4502
4323
  pool_migration_timestamp: Date | null;
4503
4324
  pool_type: string;
4504
4325
  pool_volume_24h_base: string | null;
4505
4326
  pool_volume_24h_quote: string | null;
4506
- pool_volume_24h_usd: string | null;
4507
4327
  pool_volume_24h_swap_count: number | null;
4508
4328
  pool_volume_last_updated: string | null;
4509
4329
  base_token: {
@@ -4547,12 +4367,10 @@ declare const assetContract: {
4547
4367
  pool_current_price: string;
4548
4368
  pool_current_sqrt_price: string;
4549
4369
  pool_current_fdv: string;
4550
- pool_current_fdv_usd: string | null;
4551
4370
  pool_current_liquidity: string;
4552
4371
  pool_current_tick: number;
4553
4372
  pool_last_epoch: number;
4554
4373
  pool_current_market_cap: string;
4555
- pool_current_market_cap_usd: string | null;
4556
4374
  pool_current_fees_accrued: string;
4557
4375
  pool_current_total_proceeds: string;
4558
4376
  pool_current_total_tokens_sold: string;
@@ -4569,7 +4387,6 @@ declare const assetContract: {
4569
4387
  pool_type: string;
4570
4388
  pool_volume_24h_base: string | null;
4571
4389
  pool_volume_24h_quote: string | null;
4572
- pool_volume_24h_usd: string | null;
4573
4390
  pool_volume_24h_swap_count: number | null;
4574
4391
  pool_volume_last_updated: string | null;
4575
4392
  pool_market_data: {
@@ -4611,17 +4428,14 @@ declare const assetContract: {
4611
4428
  pool_current_price: string;
4612
4429
  pool_current_sqrt_price: string;
4613
4430
  pool_current_fdv: string;
4614
- pool_current_fdv_usd: string | null;
4615
4431
  pool_current_liquidity: string;
4616
4432
  pool_current_tick: number;
4617
4433
  pool_current_market_cap: string;
4618
- pool_current_market_cap_usd: string | null;
4619
4434
  pool_address: `0x${string}`;
4620
4435
  pool_migration_timestamp: Date | null;
4621
4436
  pool_type: string;
4622
4437
  pool_volume_24h_base: string | null;
4623
4438
  pool_volume_24h_quote: string | null;
4624
- pool_volume_24h_usd: string | null;
4625
4439
  pool_volume_24h_swap_count: number | null;
4626
4440
  pool_volume_last_updated: string | null;
4627
4441
  pool_market_data: {
@@ -4670,12 +4484,10 @@ declare const assetContract: {
4670
4484
  pool_current_price: string;
4671
4485
  pool_current_sqrt_price: string;
4672
4486
  pool_current_fdv: string;
4673
- pool_current_fdv_usd: string | null;
4674
4487
  pool_current_liquidity: string;
4675
4488
  pool_current_tick: number;
4676
4489
  pool_last_epoch: number;
4677
4490
  pool_current_market_cap: string;
4678
- pool_current_market_cap_usd: string | null;
4679
4491
  pool_current_fees_accrued: string;
4680
4492
  pool_current_total_proceeds: string;
4681
4493
  pool_current_total_tokens_sold: string;
@@ -4692,7 +4504,6 @@ declare const assetContract: {
4692
4504
  pool_type: string;
4693
4505
  pool_volume_24h_base: string | null;
4694
4506
  pool_volume_24h_quote: string | null;
4695
- pool_volume_24h_usd: string | null;
4696
4507
  pool_volume_24h_swap_count: number | null;
4697
4508
  pool_volume_last_updated: string | null;
4698
4509
  base_token: {
@@ -4727,17 +4538,14 @@ declare const assetContract: {
4727
4538
  pool_current_price: string;
4728
4539
  pool_current_sqrt_price: string;
4729
4540
  pool_current_fdv: string;
4730
- pool_current_fdv_usd: string | null;
4731
4541
  pool_current_liquidity: string;
4732
4542
  pool_current_tick: number;
4733
4543
  pool_current_market_cap: string;
4734
- pool_current_market_cap_usd: string | null;
4735
4544
  pool_address: string;
4736
4545
  pool_migration_timestamp: Date | null;
4737
4546
  pool_type: string;
4738
4547
  pool_volume_24h_base: string | null;
4739
4548
  pool_volume_24h_quote: string | null;
4740
- pool_volume_24h_usd: string | null;
4741
4549
  pool_volume_24h_swap_count: number | null;
4742
4550
  pool_volume_last_updated: string | null;
4743
4551
  base_token: {
@@ -4783,12 +4591,10 @@ declare const assetContract: {
4783
4591
  pool_current_price: string;
4784
4592
  pool_current_sqrt_price: string;
4785
4593
  pool_current_fdv: string;
4786
- pool_current_fdv_usd: string | null;
4787
4594
  pool_current_liquidity: string;
4788
4595
  pool_current_tick: number;
4789
4596
  pool_last_epoch: number;
4790
4597
  pool_current_market_cap: string;
4791
- pool_current_market_cap_usd: string | null;
4792
4598
  pool_current_fees_accrued: string;
4793
4599
  pool_current_total_proceeds: string;
4794
4600
  pool_current_total_tokens_sold: string;
@@ -4805,7 +4611,6 @@ declare const assetContract: {
4805
4611
  pool_type: string;
4806
4612
  pool_volume_24h_base: string | null;
4807
4613
  pool_volume_24h_quote: string | null;
4808
- pool_volume_24h_usd: string | null;
4809
4614
  pool_volume_24h_swap_count: number | null;
4810
4615
  pool_volume_last_updated: string | null;
4811
4616
  pool_market_data: {
@@ -4847,17 +4652,14 @@ declare const assetContract: {
4847
4652
  pool_current_price: string;
4848
4653
  pool_current_sqrt_price: string;
4849
4654
  pool_current_fdv: string;
4850
- pool_current_fdv_usd: string | null;
4851
4655
  pool_current_liquidity: string;
4852
4656
  pool_current_tick: number;
4853
4657
  pool_current_market_cap: string;
4854
- pool_current_market_cap_usd: string | null;
4855
4658
  pool_address: `0x${string}`;
4856
4659
  pool_migration_timestamp: Date | null;
4857
4660
  pool_type: string;
4858
4661
  pool_volume_24h_base: string | null;
4859
4662
  pool_volume_24h_quote: string | null;
4860
- pool_volume_24h_usd: string | null;
4861
4663
  pool_volume_24h_swap_count: number | null;
4862
4664
  pool_volume_last_updated: string | null;
4863
4665
  pool_market_data: {
@@ -4908,12 +4710,10 @@ declare const assetContract: {
4908
4710
  pool_current_price: string;
4909
4711
  pool_current_sqrt_price: string;
4910
4712
  pool_current_fdv: string;
4911
- pool_current_fdv_usd: string | null;
4912
4713
  pool_current_liquidity: string;
4913
4714
  pool_current_tick: number;
4914
4715
  pool_last_epoch: number;
4915
4716
  pool_current_market_cap: string;
4916
- pool_current_market_cap_usd: string | null;
4917
4717
  pool_current_fees_accrued: string;
4918
4718
  pool_current_total_proceeds: string;
4919
4719
  pool_current_total_tokens_sold: string;
@@ -4930,7 +4730,6 @@ declare const assetContract: {
4930
4730
  pool_type: string;
4931
4731
  pool_volume_24h_base: string | null;
4932
4732
  pool_volume_24h_quote: string | null;
4933
- pool_volume_24h_usd: string | null;
4934
4733
  pool_volume_24h_swap_count: number | null;
4935
4734
  pool_volume_last_updated: string | null;
4936
4735
  base_token: {
@@ -4965,17 +4764,14 @@ declare const assetContract: {
4965
4764
  pool_current_price: string;
4966
4765
  pool_current_sqrt_price: string;
4967
4766
  pool_current_fdv: string;
4968
- pool_current_fdv_usd: string | null;
4969
4767
  pool_current_liquidity: string;
4970
4768
  pool_current_tick: number;
4971
4769
  pool_current_market_cap: string;
4972
- pool_current_market_cap_usd: string | null;
4973
4770
  pool_address: string;
4974
4771
  pool_migration_timestamp: Date | null;
4975
4772
  pool_type: string;
4976
4773
  pool_volume_24h_base: string | null;
4977
4774
  pool_volume_24h_quote: string | null;
4978
- pool_volume_24h_usd: string | null;
4979
4775
  pool_volume_24h_swap_count: number | null;
4980
4776
  pool_volume_last_updated: string | null;
4981
4777
  base_token: {