@longdotxyz/shared 0.0.77 → 0.0.79

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,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
+ pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
15
15
  pool_current_liquidity: z.ZodString;
16
16
  pool_current_tick: z.ZodNumber;
17
17
  pool_last_epoch: z.ZodNumber;
18
18
  pool_current_market_cap: z.ZodString;
19
- pool_current_market_cap_usd: z.ZodString;
19
+ pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
20
20
  pool_current_fees_accrued: z.ZodString;
21
21
  pool_current_total_proceeds: z.ZodString;
22
22
  pool_current_total_tokens_sold: z.ZodString;
@@ -158,12 +158,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
158
158
  pool_current_price: string;
159
159
  pool_current_sqrt_price: string;
160
160
  pool_current_fdv: string;
161
- pool_current_fdv_usd: string;
161
+ pool_current_fdv_usd: string | null;
162
162
  pool_current_liquidity: string;
163
163
  pool_current_tick: number;
164
164
  pool_last_epoch: number;
165
165
  pool_current_market_cap: string;
166
- pool_current_market_cap_usd: string;
166
+ pool_current_market_cap_usd: string | null;
167
167
  pool_current_fees_accrued: string;
168
168
  pool_current_total_proceeds: string;
169
169
  pool_current_total_tokens_sold: string;
@@ -207,12 +207,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
207
207
  pool_current_price: string;
208
208
  pool_current_sqrt_price: string;
209
209
  pool_current_fdv: string;
210
- pool_current_fdv_usd: string;
210
+ pool_current_fdv_usd: string | null;
211
211
  pool_current_liquidity: string;
212
212
  pool_current_tick: number;
213
213
  pool_last_epoch: number;
214
214
  pool_current_market_cap: string;
215
- pool_current_market_cap_usd: string;
215
+ pool_current_market_cap_usd: string | null;
216
216
  pool_current_fees_accrued: string;
217
217
  pool_current_total_proceeds: string;
218
218
  pool_current_total_tokens_sold: string;
@@ -258,11 +258,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
258
258
  pool_current_price: z.ZodString;
259
259
  pool_current_sqrt_price: z.ZodString;
260
260
  pool_current_fdv: z.ZodString;
261
- pool_current_fdv_usd: z.ZodString;
261
+ pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
262
262
  pool_current_liquidity: z.ZodString;
263
263
  pool_current_tick: z.ZodNumber;
264
264
  pool_current_market_cap: z.ZodString;
265
- pool_current_market_cap_usd: z.ZodString;
265
+ pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
266
266
  pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
267
267
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
268
268
  pool_type: z.ZodString;
@@ -396,11 +396,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
396
396
  pool_current_price: string;
397
397
  pool_current_sqrt_price: string;
398
398
  pool_current_fdv: string;
399
- pool_current_fdv_usd: string;
399
+ pool_current_fdv_usd: string | null;
400
400
  pool_current_liquidity: string;
401
401
  pool_current_tick: number;
402
402
  pool_current_market_cap: string;
403
- pool_current_market_cap_usd: string;
403
+ pool_current_market_cap_usd: string | null;
404
404
  pool_address: `0x${string}`;
405
405
  pool_migration_timestamp: Date | null;
406
406
  pool_type: string;
@@ -434,11 +434,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
434
434
  pool_current_price: string;
435
435
  pool_current_sqrt_price: string;
436
436
  pool_current_fdv: string;
437
- pool_current_fdv_usd: string;
437
+ pool_current_fdv_usd: string | null;
438
438
  pool_current_liquidity: string;
439
439
  pool_current_tick: number;
440
440
  pool_current_market_cap: string;
441
- pool_current_market_cap_usd: string;
441
+ pool_current_market_cap_usd: string | null;
442
442
  pool_address: string;
443
443
  pool_migration_timestamp: Date | null;
444
444
  pool_type: string;
@@ -481,12 +481,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
481
481
  pool_current_price: string;
482
482
  pool_current_sqrt_price: string;
483
483
  pool_current_fdv: string;
484
- pool_current_fdv_usd: string;
484
+ pool_current_fdv_usd: string | null;
485
485
  pool_current_liquidity: string;
486
486
  pool_current_tick: number;
487
487
  pool_last_epoch: number;
488
488
  pool_current_market_cap: string;
489
- pool_current_market_cap_usd: string;
489
+ pool_current_market_cap_usd: string | null;
490
490
  pool_current_fees_accrued: string;
491
491
  pool_current_total_proceeds: string;
492
492
  pool_current_total_tokens_sold: string;
@@ -531,11 +531,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
531
531
  pool_current_price: string;
532
532
  pool_current_sqrt_price: string;
533
533
  pool_current_fdv: string;
534
- pool_current_fdv_usd: string;
534
+ pool_current_fdv_usd: string | null;
535
535
  pool_current_liquidity: string;
536
536
  pool_current_tick: number;
537
537
  pool_current_market_cap: string;
538
- pool_current_market_cap_usd: string;
538
+ pool_current_market_cap_usd: string | null;
539
539
  pool_address: `0x${string}`;
540
540
  pool_migration_timestamp: Date | null;
541
541
  pool_type: string;
@@ -576,12 +576,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
576
576
  pool_current_price: string;
577
577
  pool_current_sqrt_price: string;
578
578
  pool_current_fdv: string;
579
- pool_current_fdv_usd: string;
579
+ pool_current_fdv_usd: string | null;
580
580
  pool_current_liquidity: string;
581
581
  pool_current_tick: number;
582
582
  pool_last_epoch: number;
583
583
  pool_current_market_cap: string;
584
- pool_current_market_cap_usd: string;
584
+ pool_current_market_cap_usd: string | null;
585
585
  pool_current_fees_accrued: string;
586
586
  pool_current_total_proceeds: string;
587
587
  pool_current_total_tokens_sold: string;
@@ -627,11 +627,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
627
627
  pool_current_price: string;
628
628
  pool_current_sqrt_price: string;
629
629
  pool_current_fdv: string;
630
- pool_current_fdv_usd: string;
630
+ pool_current_fdv_usd: string | null;
631
631
  pool_current_liquidity: string;
632
632
  pool_current_tick: number;
633
633
  pool_current_market_cap: string;
634
- pool_current_market_cap_usd: string;
634
+ pool_current_market_cap_usd: string | null;
635
635
  pool_address: string;
636
636
  pool_migration_timestamp: Date | null;
637
637
  pool_type: string;
@@ -675,12 +675,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
675
675
  pool_current_price: string;
676
676
  pool_current_sqrt_price: string;
677
677
  pool_current_fdv: string;
678
- pool_current_fdv_usd: string;
678
+ pool_current_fdv_usd: string | null;
679
679
  pool_current_liquidity: string;
680
680
  pool_current_tick: number;
681
681
  pool_last_epoch: number;
682
682
  pool_current_market_cap: string;
683
- pool_current_market_cap_usd: string;
683
+ pool_current_market_cap_usd: string | null;
684
684
  pool_current_fees_accrued: string;
685
685
  pool_current_total_proceeds: string;
686
686
  pool_current_total_tokens_sold: string;
@@ -725,11 +725,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
725
725
  pool_current_price: string;
726
726
  pool_current_sqrt_price: string;
727
727
  pool_current_fdv: string;
728
- pool_current_fdv_usd: string;
728
+ pool_current_fdv_usd: string | null;
729
729
  pool_current_liquidity: string;
730
730
  pool_current_tick: number;
731
731
  pool_current_market_cap: string;
732
- pool_current_market_cap_usd: string;
732
+ pool_current_market_cap_usd: string | null;
733
733
  pool_address: `0x${string}`;
734
734
  pool_migration_timestamp: Date | null;
735
735
  pool_type: string;
@@ -770,12 +770,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
770
770
  pool_current_price: string;
771
771
  pool_current_sqrt_price: string;
772
772
  pool_current_fdv: string;
773
- pool_current_fdv_usd: string;
773
+ pool_current_fdv_usd: string | null;
774
774
  pool_current_liquidity: string;
775
775
  pool_current_tick: number;
776
776
  pool_last_epoch: number;
777
777
  pool_current_market_cap: string;
778
- pool_current_market_cap_usd: string;
778
+ pool_current_market_cap_usd: string | null;
779
779
  pool_current_fees_accrued: string;
780
780
  pool_current_total_proceeds: string;
781
781
  pool_current_total_tokens_sold: string;
@@ -821,11 +821,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
821
821
  pool_current_price: string;
822
822
  pool_current_sqrt_price: string;
823
823
  pool_current_fdv: string;
824
- pool_current_fdv_usd: string;
824
+ pool_current_fdv_usd: string | null;
825
825
  pool_current_liquidity: string;
826
826
  pool_current_tick: number;
827
827
  pool_current_market_cap: string;
828
- pool_current_market_cap_usd: string;
828
+ pool_current_market_cap_usd: string | null;
829
829
  pool_address: string;
830
830
  pool_migration_timestamp: Date | null;
831
831
  pool_type: string;
@@ -894,12 +894,12 @@ declare const assetContract: {
894
894
  pool_current_price: z.ZodString;
895
895
  pool_current_sqrt_price: z.ZodString;
896
896
  pool_current_fdv: z.ZodString;
897
- pool_current_fdv_usd: z.ZodString;
897
+ pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
898
898
  pool_current_liquidity: z.ZodString;
899
899
  pool_current_tick: z.ZodNumber;
900
900
  pool_last_epoch: z.ZodNumber;
901
901
  pool_current_market_cap: z.ZodString;
902
- pool_current_market_cap_usd: z.ZodString;
902
+ pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
903
903
  pool_current_fees_accrued: z.ZodString;
904
904
  pool_current_total_proceeds: z.ZodString;
905
905
  pool_current_total_tokens_sold: z.ZodString;
@@ -1041,12 +1041,12 @@ declare const assetContract: {
1041
1041
  pool_current_price: string;
1042
1042
  pool_current_sqrt_price: string;
1043
1043
  pool_current_fdv: string;
1044
- pool_current_fdv_usd: string;
1044
+ pool_current_fdv_usd: string | null;
1045
1045
  pool_current_liquidity: string;
1046
1046
  pool_current_tick: number;
1047
1047
  pool_last_epoch: number;
1048
1048
  pool_current_market_cap: string;
1049
- pool_current_market_cap_usd: string;
1049
+ pool_current_market_cap_usd: string | null;
1050
1050
  pool_current_fees_accrued: string;
1051
1051
  pool_current_total_proceeds: string;
1052
1052
  pool_current_total_tokens_sold: string;
@@ -1090,12 +1090,12 @@ declare const assetContract: {
1090
1090
  pool_current_price: string;
1091
1091
  pool_current_sqrt_price: string;
1092
1092
  pool_current_fdv: string;
1093
- pool_current_fdv_usd: string;
1093
+ pool_current_fdv_usd: string | null;
1094
1094
  pool_current_liquidity: string;
1095
1095
  pool_current_tick: number;
1096
1096
  pool_last_epoch: number;
1097
1097
  pool_current_market_cap: string;
1098
- pool_current_market_cap_usd: string;
1098
+ pool_current_market_cap_usd: string | null;
1099
1099
  pool_current_fees_accrued: string;
1100
1100
  pool_current_total_proceeds: string;
1101
1101
  pool_current_total_tokens_sold: string;
@@ -1141,11 +1141,11 @@ declare const assetContract: {
1141
1141
  pool_current_price: z.ZodString;
1142
1142
  pool_current_sqrt_price: z.ZodString;
1143
1143
  pool_current_fdv: z.ZodString;
1144
- pool_current_fdv_usd: z.ZodString;
1144
+ pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
1145
1145
  pool_current_liquidity: z.ZodString;
1146
1146
  pool_current_tick: z.ZodNumber;
1147
1147
  pool_current_market_cap: z.ZodString;
1148
- pool_current_market_cap_usd: z.ZodString;
1148
+ pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
1149
1149
  pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1150
1150
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1151
1151
  pool_type: z.ZodString;
@@ -1279,11 +1279,11 @@ declare const assetContract: {
1279
1279
  pool_current_price: string;
1280
1280
  pool_current_sqrt_price: string;
1281
1281
  pool_current_fdv: string;
1282
- pool_current_fdv_usd: string;
1282
+ pool_current_fdv_usd: string | null;
1283
1283
  pool_current_liquidity: string;
1284
1284
  pool_current_tick: number;
1285
1285
  pool_current_market_cap: string;
1286
- pool_current_market_cap_usd: string;
1286
+ pool_current_market_cap_usd: string | null;
1287
1287
  pool_address: `0x${string}`;
1288
1288
  pool_migration_timestamp: Date | null;
1289
1289
  pool_type: string;
@@ -1317,11 +1317,11 @@ declare const assetContract: {
1317
1317
  pool_current_price: string;
1318
1318
  pool_current_sqrt_price: string;
1319
1319
  pool_current_fdv: string;
1320
- pool_current_fdv_usd: string;
1320
+ pool_current_fdv_usd: string | null;
1321
1321
  pool_current_liquidity: string;
1322
1322
  pool_current_tick: number;
1323
1323
  pool_current_market_cap: string;
1324
- pool_current_market_cap_usd: string;
1324
+ pool_current_market_cap_usd: string | null;
1325
1325
  pool_address: string;
1326
1326
  pool_migration_timestamp: Date | null;
1327
1327
  pool_type: string;
@@ -1364,12 +1364,12 @@ declare const assetContract: {
1364
1364
  pool_current_price: string;
1365
1365
  pool_current_sqrt_price: string;
1366
1366
  pool_current_fdv: string;
1367
- pool_current_fdv_usd: string;
1367
+ pool_current_fdv_usd: string | null;
1368
1368
  pool_current_liquidity: string;
1369
1369
  pool_current_tick: number;
1370
1370
  pool_last_epoch: number;
1371
1371
  pool_current_market_cap: string;
1372
- pool_current_market_cap_usd: string;
1372
+ pool_current_market_cap_usd: string | null;
1373
1373
  pool_current_fees_accrued: string;
1374
1374
  pool_current_total_proceeds: string;
1375
1375
  pool_current_total_tokens_sold: string;
@@ -1414,11 +1414,11 @@ declare const assetContract: {
1414
1414
  pool_current_price: string;
1415
1415
  pool_current_sqrt_price: string;
1416
1416
  pool_current_fdv: string;
1417
- pool_current_fdv_usd: string;
1417
+ pool_current_fdv_usd: string | null;
1418
1418
  pool_current_liquidity: string;
1419
1419
  pool_current_tick: number;
1420
1420
  pool_current_market_cap: string;
1421
- pool_current_market_cap_usd: string;
1421
+ pool_current_market_cap_usd: string | null;
1422
1422
  pool_address: `0x${string}`;
1423
1423
  pool_migration_timestamp: Date | null;
1424
1424
  pool_type: string;
@@ -1459,12 +1459,12 @@ declare const assetContract: {
1459
1459
  pool_current_price: string;
1460
1460
  pool_current_sqrt_price: string;
1461
1461
  pool_current_fdv: string;
1462
- pool_current_fdv_usd: string;
1462
+ pool_current_fdv_usd: string | null;
1463
1463
  pool_current_liquidity: string;
1464
1464
  pool_current_tick: number;
1465
1465
  pool_last_epoch: number;
1466
1466
  pool_current_market_cap: string;
1467
- pool_current_market_cap_usd: string;
1467
+ pool_current_market_cap_usd: string | null;
1468
1468
  pool_current_fees_accrued: string;
1469
1469
  pool_current_total_proceeds: string;
1470
1470
  pool_current_total_tokens_sold: string;
@@ -1510,11 +1510,11 @@ declare const assetContract: {
1510
1510
  pool_current_price: string;
1511
1511
  pool_current_sqrt_price: string;
1512
1512
  pool_current_fdv: string;
1513
- pool_current_fdv_usd: string;
1513
+ pool_current_fdv_usd: string | null;
1514
1514
  pool_current_liquidity: string;
1515
1515
  pool_current_tick: number;
1516
1516
  pool_current_market_cap: string;
1517
- pool_current_market_cap_usd: string;
1517
+ pool_current_market_cap_usd: string | null;
1518
1518
  pool_address: string;
1519
1519
  pool_migration_timestamp: Date | null;
1520
1520
  pool_type: string;
@@ -1558,12 +1558,12 @@ declare const assetContract: {
1558
1558
  pool_current_price: string;
1559
1559
  pool_current_sqrt_price: string;
1560
1560
  pool_current_fdv: string;
1561
- pool_current_fdv_usd: string;
1561
+ pool_current_fdv_usd: string | null;
1562
1562
  pool_current_liquidity: string;
1563
1563
  pool_current_tick: number;
1564
1564
  pool_last_epoch: number;
1565
1565
  pool_current_market_cap: string;
1566
- pool_current_market_cap_usd: string;
1566
+ pool_current_market_cap_usd: string | null;
1567
1567
  pool_current_fees_accrued: string;
1568
1568
  pool_current_total_proceeds: string;
1569
1569
  pool_current_total_tokens_sold: string;
@@ -1608,11 +1608,11 @@ declare const assetContract: {
1608
1608
  pool_current_price: string;
1609
1609
  pool_current_sqrt_price: string;
1610
1610
  pool_current_fdv: string;
1611
- pool_current_fdv_usd: string;
1611
+ pool_current_fdv_usd: string | null;
1612
1612
  pool_current_liquidity: string;
1613
1613
  pool_current_tick: number;
1614
1614
  pool_current_market_cap: string;
1615
- pool_current_market_cap_usd: string;
1615
+ pool_current_market_cap_usd: string | null;
1616
1616
  pool_address: `0x${string}`;
1617
1617
  pool_migration_timestamp: Date | null;
1618
1618
  pool_type: string;
@@ -1653,12 +1653,12 @@ declare const assetContract: {
1653
1653
  pool_current_price: string;
1654
1654
  pool_current_sqrt_price: string;
1655
1655
  pool_current_fdv: string;
1656
- pool_current_fdv_usd: string;
1656
+ pool_current_fdv_usd: string | null;
1657
1657
  pool_current_liquidity: string;
1658
1658
  pool_current_tick: number;
1659
1659
  pool_last_epoch: number;
1660
1660
  pool_current_market_cap: string;
1661
- pool_current_market_cap_usd: string;
1661
+ pool_current_market_cap_usd: string | null;
1662
1662
  pool_current_fees_accrued: string;
1663
1663
  pool_current_total_proceeds: string;
1664
1664
  pool_current_total_tokens_sold: string;
@@ -1704,11 +1704,11 @@ declare const assetContract: {
1704
1704
  pool_current_price: string;
1705
1705
  pool_current_sqrt_price: string;
1706
1706
  pool_current_fdv: string;
1707
- pool_current_fdv_usd: string;
1707
+ pool_current_fdv_usd: string | null;
1708
1708
  pool_current_liquidity: string;
1709
1709
  pool_current_tick: number;
1710
1710
  pool_current_market_cap: string;
1711
- pool_current_market_cap_usd: string;
1711
+ pool_current_market_cap_usd: string | null;
1712
1712
  pool_address: string;
1713
1713
  pool_migration_timestamp: Date | null;
1714
1714
  pool_type: string;
@@ -1754,12 +1754,12 @@ declare const assetContract: {
1754
1754
  pool_current_price: string;
1755
1755
  pool_current_sqrt_price: string;
1756
1756
  pool_current_fdv: string;
1757
- pool_current_fdv_usd: string;
1757
+ pool_current_fdv_usd: string | null;
1758
1758
  pool_current_liquidity: string;
1759
1759
  pool_current_tick: number;
1760
1760
  pool_last_epoch: number;
1761
1761
  pool_current_market_cap: string;
1762
- pool_current_market_cap_usd: string;
1762
+ pool_current_market_cap_usd: string | null;
1763
1763
  pool_current_fees_accrued: string;
1764
1764
  pool_current_total_proceeds: string;
1765
1765
  pool_current_total_tokens_sold: string;
@@ -1804,11 +1804,11 @@ declare const assetContract: {
1804
1804
  pool_current_price: string;
1805
1805
  pool_current_sqrt_price: string;
1806
1806
  pool_current_fdv: string;
1807
- pool_current_fdv_usd: string;
1807
+ pool_current_fdv_usd: string | null;
1808
1808
  pool_current_liquidity: string;
1809
1809
  pool_current_tick: number;
1810
1810
  pool_current_market_cap: string;
1811
- pool_current_market_cap_usd: string;
1811
+ pool_current_market_cap_usd: string | null;
1812
1812
  pool_address: `0x${string}`;
1813
1813
  pool_migration_timestamp: Date | null;
1814
1814
  pool_type: string;
@@ -1851,12 +1851,12 @@ declare const assetContract: {
1851
1851
  pool_current_price: string;
1852
1852
  pool_current_sqrt_price: string;
1853
1853
  pool_current_fdv: string;
1854
- pool_current_fdv_usd: string;
1854
+ pool_current_fdv_usd: string | null;
1855
1855
  pool_current_liquidity: string;
1856
1856
  pool_current_tick: number;
1857
1857
  pool_last_epoch: number;
1858
1858
  pool_current_market_cap: string;
1859
- pool_current_market_cap_usd: string;
1859
+ pool_current_market_cap_usd: string | null;
1860
1860
  pool_current_fees_accrued: string;
1861
1861
  pool_current_total_proceeds: string;
1862
1862
  pool_current_total_tokens_sold: string;
@@ -1902,11 +1902,11 @@ declare const assetContract: {
1902
1902
  pool_current_price: string;
1903
1903
  pool_current_sqrt_price: string;
1904
1904
  pool_current_fdv: string;
1905
- pool_current_fdv_usd: string;
1905
+ pool_current_fdv_usd: string | null;
1906
1906
  pool_current_liquidity: string;
1907
1907
  pool_current_tick: number;
1908
1908
  pool_current_market_cap: string;
1909
- pool_current_market_cap_usd: string;
1909
+ pool_current_market_cap_usd: string | null;
1910
1910
  pool_address: string;
1911
1911
  pool_migration_timestamp: Date | null;
1912
1912
  pool_type: string;
@@ -1973,12 +1973,12 @@ declare const assetContract: {
1973
1973
  pool_current_price: z.ZodString;
1974
1974
  pool_current_sqrt_price: z.ZodString;
1975
1975
  pool_current_fdv: z.ZodString;
1976
- pool_current_fdv_usd: z.ZodString;
1976
+ pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
1977
1977
  pool_current_liquidity: z.ZodString;
1978
1978
  pool_current_tick: z.ZodNumber;
1979
1979
  pool_last_epoch: z.ZodNumber;
1980
1980
  pool_current_market_cap: z.ZodString;
1981
- pool_current_market_cap_usd: z.ZodString;
1981
+ pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
1982
1982
  pool_current_fees_accrued: z.ZodString;
1983
1983
  pool_current_total_proceeds: z.ZodString;
1984
1984
  pool_current_total_tokens_sold: z.ZodString;
@@ -2120,12 +2120,12 @@ declare const assetContract: {
2120
2120
  pool_current_price: string;
2121
2121
  pool_current_sqrt_price: string;
2122
2122
  pool_current_fdv: string;
2123
- pool_current_fdv_usd: string;
2123
+ pool_current_fdv_usd: string | null;
2124
2124
  pool_current_liquidity: string;
2125
2125
  pool_current_tick: number;
2126
2126
  pool_last_epoch: number;
2127
2127
  pool_current_market_cap: string;
2128
- pool_current_market_cap_usd: string;
2128
+ pool_current_market_cap_usd: string | null;
2129
2129
  pool_current_fees_accrued: string;
2130
2130
  pool_current_total_proceeds: string;
2131
2131
  pool_current_total_tokens_sold: string;
@@ -2169,12 +2169,12 @@ declare const assetContract: {
2169
2169
  pool_current_price: string;
2170
2170
  pool_current_sqrt_price: string;
2171
2171
  pool_current_fdv: string;
2172
- pool_current_fdv_usd: string;
2172
+ pool_current_fdv_usd: string | null;
2173
2173
  pool_current_liquidity: string;
2174
2174
  pool_current_tick: number;
2175
2175
  pool_last_epoch: number;
2176
2176
  pool_current_market_cap: string;
2177
- pool_current_market_cap_usd: string;
2177
+ pool_current_market_cap_usd: string | null;
2178
2178
  pool_current_fees_accrued: string;
2179
2179
  pool_current_total_proceeds: string;
2180
2180
  pool_current_total_tokens_sold: string;
@@ -2220,11 +2220,11 @@ declare const assetContract: {
2220
2220
  pool_current_price: z.ZodString;
2221
2221
  pool_current_sqrt_price: z.ZodString;
2222
2222
  pool_current_fdv: z.ZodString;
2223
- pool_current_fdv_usd: z.ZodString;
2223
+ pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
2224
2224
  pool_current_liquidity: z.ZodString;
2225
2225
  pool_current_tick: z.ZodNumber;
2226
2226
  pool_current_market_cap: z.ZodString;
2227
- pool_current_market_cap_usd: z.ZodString;
2227
+ pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
2228
2228
  pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2229
2229
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2230
2230
  pool_type: z.ZodString;
@@ -2358,11 +2358,11 @@ declare const assetContract: {
2358
2358
  pool_current_price: string;
2359
2359
  pool_current_sqrt_price: string;
2360
2360
  pool_current_fdv: string;
2361
- pool_current_fdv_usd: string;
2361
+ pool_current_fdv_usd: string | null;
2362
2362
  pool_current_liquidity: string;
2363
2363
  pool_current_tick: number;
2364
2364
  pool_current_market_cap: string;
2365
- pool_current_market_cap_usd: string;
2365
+ pool_current_market_cap_usd: string | null;
2366
2366
  pool_address: `0x${string}`;
2367
2367
  pool_migration_timestamp: Date | null;
2368
2368
  pool_type: string;
@@ -2396,11 +2396,11 @@ declare const assetContract: {
2396
2396
  pool_current_price: string;
2397
2397
  pool_current_sqrt_price: string;
2398
2398
  pool_current_fdv: string;
2399
- pool_current_fdv_usd: string;
2399
+ pool_current_fdv_usd: string | null;
2400
2400
  pool_current_liquidity: string;
2401
2401
  pool_current_tick: number;
2402
2402
  pool_current_market_cap: string;
2403
- pool_current_market_cap_usd: string;
2403
+ pool_current_market_cap_usd: string | null;
2404
2404
  pool_address: string;
2405
2405
  pool_migration_timestamp: Date | null;
2406
2406
  pool_type: string;
@@ -2443,12 +2443,12 @@ declare const assetContract: {
2443
2443
  pool_current_price: string;
2444
2444
  pool_current_sqrt_price: string;
2445
2445
  pool_current_fdv: string;
2446
- pool_current_fdv_usd: string;
2446
+ pool_current_fdv_usd: string | null;
2447
2447
  pool_current_liquidity: string;
2448
2448
  pool_current_tick: number;
2449
2449
  pool_last_epoch: number;
2450
2450
  pool_current_market_cap: string;
2451
- pool_current_market_cap_usd: string;
2451
+ pool_current_market_cap_usd: string | null;
2452
2452
  pool_current_fees_accrued: string;
2453
2453
  pool_current_total_proceeds: string;
2454
2454
  pool_current_total_tokens_sold: string;
@@ -2493,11 +2493,11 @@ declare const assetContract: {
2493
2493
  pool_current_price: string;
2494
2494
  pool_current_sqrt_price: string;
2495
2495
  pool_current_fdv: string;
2496
- pool_current_fdv_usd: string;
2496
+ pool_current_fdv_usd: string | null;
2497
2497
  pool_current_liquidity: string;
2498
2498
  pool_current_tick: number;
2499
2499
  pool_current_market_cap: string;
2500
- pool_current_market_cap_usd: string;
2500
+ pool_current_market_cap_usd: string | null;
2501
2501
  pool_address: `0x${string}`;
2502
2502
  pool_migration_timestamp: Date | null;
2503
2503
  pool_type: string;
@@ -2538,12 +2538,12 @@ declare const assetContract: {
2538
2538
  pool_current_price: string;
2539
2539
  pool_current_sqrt_price: string;
2540
2540
  pool_current_fdv: string;
2541
- pool_current_fdv_usd: string;
2541
+ pool_current_fdv_usd: string | null;
2542
2542
  pool_current_liquidity: string;
2543
2543
  pool_current_tick: number;
2544
2544
  pool_last_epoch: number;
2545
2545
  pool_current_market_cap: string;
2546
- pool_current_market_cap_usd: string;
2546
+ pool_current_market_cap_usd: string | null;
2547
2547
  pool_current_fees_accrued: string;
2548
2548
  pool_current_total_proceeds: string;
2549
2549
  pool_current_total_tokens_sold: string;
@@ -2589,11 +2589,11 @@ declare const assetContract: {
2589
2589
  pool_current_price: string;
2590
2590
  pool_current_sqrt_price: string;
2591
2591
  pool_current_fdv: string;
2592
- pool_current_fdv_usd: string;
2592
+ pool_current_fdv_usd: string | null;
2593
2593
  pool_current_liquidity: string;
2594
2594
  pool_current_tick: number;
2595
2595
  pool_current_market_cap: string;
2596
- pool_current_market_cap_usd: string;
2596
+ pool_current_market_cap_usd: string | null;
2597
2597
  pool_address: string;
2598
2598
  pool_migration_timestamp: Date | null;
2599
2599
  pool_type: string;
@@ -2637,12 +2637,12 @@ declare const assetContract: {
2637
2637
  pool_current_price: string;
2638
2638
  pool_current_sqrt_price: string;
2639
2639
  pool_current_fdv: string;
2640
- pool_current_fdv_usd: string;
2640
+ pool_current_fdv_usd: string | null;
2641
2641
  pool_current_liquidity: string;
2642
2642
  pool_current_tick: number;
2643
2643
  pool_last_epoch: number;
2644
2644
  pool_current_market_cap: string;
2645
- pool_current_market_cap_usd: string;
2645
+ pool_current_market_cap_usd: string | null;
2646
2646
  pool_current_fees_accrued: string;
2647
2647
  pool_current_total_proceeds: string;
2648
2648
  pool_current_total_tokens_sold: string;
@@ -2687,11 +2687,11 @@ declare const assetContract: {
2687
2687
  pool_current_price: string;
2688
2688
  pool_current_sqrt_price: string;
2689
2689
  pool_current_fdv: string;
2690
- pool_current_fdv_usd: string;
2690
+ pool_current_fdv_usd: string | null;
2691
2691
  pool_current_liquidity: string;
2692
2692
  pool_current_tick: number;
2693
2693
  pool_current_market_cap: string;
2694
- pool_current_market_cap_usd: string;
2694
+ pool_current_market_cap_usd: string | null;
2695
2695
  pool_address: `0x${string}`;
2696
2696
  pool_migration_timestamp: Date | null;
2697
2697
  pool_type: string;
@@ -2732,12 +2732,12 @@ declare const assetContract: {
2732
2732
  pool_current_price: string;
2733
2733
  pool_current_sqrt_price: string;
2734
2734
  pool_current_fdv: string;
2735
- pool_current_fdv_usd: string;
2735
+ pool_current_fdv_usd: string | null;
2736
2736
  pool_current_liquidity: string;
2737
2737
  pool_current_tick: number;
2738
2738
  pool_last_epoch: number;
2739
2739
  pool_current_market_cap: string;
2740
- pool_current_market_cap_usd: string;
2740
+ pool_current_market_cap_usd: string | null;
2741
2741
  pool_current_fees_accrued: string;
2742
2742
  pool_current_total_proceeds: string;
2743
2743
  pool_current_total_tokens_sold: string;
@@ -2783,11 +2783,11 @@ declare const assetContract: {
2783
2783
  pool_current_price: string;
2784
2784
  pool_current_sqrt_price: string;
2785
2785
  pool_current_fdv: string;
2786
- pool_current_fdv_usd: string;
2786
+ pool_current_fdv_usd: string | null;
2787
2787
  pool_current_liquidity: string;
2788
2788
  pool_current_tick: number;
2789
2789
  pool_current_market_cap: string;
2790
- pool_current_market_cap_usd: string;
2790
+ pool_current_market_cap_usd: string | null;
2791
2791
  pool_address: string;
2792
2792
  pool_migration_timestamp: Date | null;
2793
2793
  pool_type: string;
@@ -2833,12 +2833,12 @@ declare const assetContract: {
2833
2833
  pool_current_price: string;
2834
2834
  pool_current_sqrt_price: string;
2835
2835
  pool_current_fdv: string;
2836
- pool_current_fdv_usd: string;
2836
+ pool_current_fdv_usd: string | null;
2837
2837
  pool_current_liquidity: string;
2838
2838
  pool_current_tick: number;
2839
2839
  pool_last_epoch: number;
2840
2840
  pool_current_market_cap: string;
2841
- pool_current_market_cap_usd: string;
2841
+ pool_current_market_cap_usd: string | null;
2842
2842
  pool_current_fees_accrued: string;
2843
2843
  pool_current_total_proceeds: string;
2844
2844
  pool_current_total_tokens_sold: string;
@@ -2883,11 +2883,11 @@ declare const assetContract: {
2883
2883
  pool_current_price: string;
2884
2884
  pool_current_sqrt_price: string;
2885
2885
  pool_current_fdv: string;
2886
- pool_current_fdv_usd: string;
2886
+ pool_current_fdv_usd: string | null;
2887
2887
  pool_current_liquidity: string;
2888
2888
  pool_current_tick: number;
2889
2889
  pool_current_market_cap: string;
2890
- pool_current_market_cap_usd: string;
2890
+ pool_current_market_cap_usd: string | null;
2891
2891
  pool_address: `0x${string}`;
2892
2892
  pool_migration_timestamp: Date | null;
2893
2893
  pool_type: string;
@@ -2930,12 +2930,12 @@ declare const assetContract: {
2930
2930
  pool_current_price: string;
2931
2931
  pool_current_sqrt_price: string;
2932
2932
  pool_current_fdv: string;
2933
- pool_current_fdv_usd: string;
2933
+ pool_current_fdv_usd: string | null;
2934
2934
  pool_current_liquidity: string;
2935
2935
  pool_current_tick: number;
2936
2936
  pool_last_epoch: number;
2937
2937
  pool_current_market_cap: string;
2938
- pool_current_market_cap_usd: string;
2938
+ pool_current_market_cap_usd: string | null;
2939
2939
  pool_current_fees_accrued: string;
2940
2940
  pool_current_total_proceeds: string;
2941
2941
  pool_current_total_tokens_sold: string;
@@ -2981,11 +2981,11 @@ declare const assetContract: {
2981
2981
  pool_current_price: string;
2982
2982
  pool_current_sqrt_price: string;
2983
2983
  pool_current_fdv: string;
2984
- pool_current_fdv_usd: string;
2984
+ pool_current_fdv_usd: string | null;
2985
2985
  pool_current_liquidity: string;
2986
2986
  pool_current_tick: number;
2987
2987
  pool_current_market_cap: string;
2988
- pool_current_market_cap_usd: string;
2988
+ pool_current_market_cap_usd: string | null;
2989
2989
  pool_address: string;
2990
2990
  pool_migration_timestamp: Date | null;
2991
2991
  pool_type: string;
@@ -3053,12 +3053,12 @@ declare const assetContract: {
3053
3053
  pool_current_price: z.ZodString;
3054
3054
  pool_current_sqrt_price: z.ZodString;
3055
3055
  pool_current_fdv: z.ZodString;
3056
- pool_current_fdv_usd: z.ZodString;
3056
+ pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
3057
3057
  pool_current_liquidity: z.ZodString;
3058
3058
  pool_current_tick: z.ZodNumber;
3059
3059
  pool_last_epoch: z.ZodNumber;
3060
3060
  pool_current_market_cap: z.ZodString;
3061
- pool_current_market_cap_usd: z.ZodString;
3061
+ pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
3062
3062
  pool_current_fees_accrued: z.ZodString;
3063
3063
  pool_current_total_proceeds: z.ZodString;
3064
3064
  pool_current_total_tokens_sold: z.ZodString;
@@ -3200,12 +3200,12 @@ declare const assetContract: {
3200
3200
  pool_current_price: string;
3201
3201
  pool_current_sqrt_price: string;
3202
3202
  pool_current_fdv: string;
3203
- pool_current_fdv_usd: string;
3203
+ pool_current_fdv_usd: string | null;
3204
3204
  pool_current_liquidity: string;
3205
3205
  pool_current_tick: number;
3206
3206
  pool_last_epoch: number;
3207
3207
  pool_current_market_cap: string;
3208
- pool_current_market_cap_usd: string;
3208
+ pool_current_market_cap_usd: string | null;
3209
3209
  pool_current_fees_accrued: string;
3210
3210
  pool_current_total_proceeds: string;
3211
3211
  pool_current_total_tokens_sold: string;
@@ -3249,12 +3249,12 @@ declare const assetContract: {
3249
3249
  pool_current_price: string;
3250
3250
  pool_current_sqrt_price: string;
3251
3251
  pool_current_fdv: string;
3252
- pool_current_fdv_usd: string;
3252
+ pool_current_fdv_usd: string | null;
3253
3253
  pool_current_liquidity: string;
3254
3254
  pool_current_tick: number;
3255
3255
  pool_last_epoch: number;
3256
3256
  pool_current_market_cap: string;
3257
- pool_current_market_cap_usd: string;
3257
+ pool_current_market_cap_usd: string | null;
3258
3258
  pool_current_fees_accrued: string;
3259
3259
  pool_current_total_proceeds: string;
3260
3260
  pool_current_total_tokens_sold: string;
@@ -3300,11 +3300,11 @@ declare const assetContract: {
3300
3300
  pool_current_price: z.ZodString;
3301
3301
  pool_current_sqrt_price: z.ZodString;
3302
3302
  pool_current_fdv: z.ZodString;
3303
- pool_current_fdv_usd: z.ZodString;
3303
+ pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
3304
3304
  pool_current_liquidity: z.ZodString;
3305
3305
  pool_current_tick: z.ZodNumber;
3306
3306
  pool_current_market_cap: z.ZodString;
3307
- pool_current_market_cap_usd: z.ZodString;
3307
+ pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
3308
3308
  pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3309
3309
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
3310
3310
  pool_type: z.ZodString;
@@ -3438,11 +3438,11 @@ declare const assetContract: {
3438
3438
  pool_current_price: string;
3439
3439
  pool_current_sqrt_price: string;
3440
3440
  pool_current_fdv: string;
3441
- pool_current_fdv_usd: string;
3441
+ pool_current_fdv_usd: string | null;
3442
3442
  pool_current_liquidity: string;
3443
3443
  pool_current_tick: number;
3444
3444
  pool_current_market_cap: string;
3445
- pool_current_market_cap_usd: string;
3445
+ pool_current_market_cap_usd: string | null;
3446
3446
  pool_address: `0x${string}`;
3447
3447
  pool_migration_timestamp: Date | null;
3448
3448
  pool_type: string;
@@ -3476,11 +3476,11 @@ declare const assetContract: {
3476
3476
  pool_current_price: string;
3477
3477
  pool_current_sqrt_price: string;
3478
3478
  pool_current_fdv: string;
3479
- pool_current_fdv_usd: string;
3479
+ pool_current_fdv_usd: string | null;
3480
3480
  pool_current_liquidity: string;
3481
3481
  pool_current_tick: number;
3482
3482
  pool_current_market_cap: string;
3483
- pool_current_market_cap_usd: string;
3483
+ pool_current_market_cap_usd: string | null;
3484
3484
  pool_address: string;
3485
3485
  pool_migration_timestamp: Date | null;
3486
3486
  pool_type: string;
@@ -3523,12 +3523,12 @@ declare const assetContract: {
3523
3523
  pool_current_price: string;
3524
3524
  pool_current_sqrt_price: string;
3525
3525
  pool_current_fdv: string;
3526
- pool_current_fdv_usd: string;
3526
+ pool_current_fdv_usd: string | null;
3527
3527
  pool_current_liquidity: string;
3528
3528
  pool_current_tick: number;
3529
3529
  pool_last_epoch: number;
3530
3530
  pool_current_market_cap: string;
3531
- pool_current_market_cap_usd: string;
3531
+ pool_current_market_cap_usd: string | null;
3532
3532
  pool_current_fees_accrued: string;
3533
3533
  pool_current_total_proceeds: string;
3534
3534
  pool_current_total_tokens_sold: string;
@@ -3573,11 +3573,11 @@ declare const assetContract: {
3573
3573
  pool_current_price: string;
3574
3574
  pool_current_sqrt_price: string;
3575
3575
  pool_current_fdv: string;
3576
- pool_current_fdv_usd: string;
3576
+ pool_current_fdv_usd: string | null;
3577
3577
  pool_current_liquidity: string;
3578
3578
  pool_current_tick: number;
3579
3579
  pool_current_market_cap: string;
3580
- pool_current_market_cap_usd: string;
3580
+ pool_current_market_cap_usd: string | null;
3581
3581
  pool_address: `0x${string}`;
3582
3582
  pool_migration_timestamp: Date | null;
3583
3583
  pool_type: string;
@@ -3618,12 +3618,12 @@ declare const assetContract: {
3618
3618
  pool_current_price: string;
3619
3619
  pool_current_sqrt_price: string;
3620
3620
  pool_current_fdv: string;
3621
- pool_current_fdv_usd: string;
3621
+ pool_current_fdv_usd: string | null;
3622
3622
  pool_current_liquidity: string;
3623
3623
  pool_current_tick: number;
3624
3624
  pool_last_epoch: number;
3625
3625
  pool_current_market_cap: string;
3626
- pool_current_market_cap_usd: string;
3626
+ pool_current_market_cap_usd: string | null;
3627
3627
  pool_current_fees_accrued: string;
3628
3628
  pool_current_total_proceeds: string;
3629
3629
  pool_current_total_tokens_sold: string;
@@ -3669,11 +3669,11 @@ declare const assetContract: {
3669
3669
  pool_current_price: string;
3670
3670
  pool_current_sqrt_price: string;
3671
3671
  pool_current_fdv: string;
3672
- pool_current_fdv_usd: string;
3672
+ pool_current_fdv_usd: string | null;
3673
3673
  pool_current_liquidity: string;
3674
3674
  pool_current_tick: number;
3675
3675
  pool_current_market_cap: string;
3676
- pool_current_market_cap_usd: string;
3676
+ pool_current_market_cap_usd: string | null;
3677
3677
  pool_address: string;
3678
3678
  pool_migration_timestamp: Date | null;
3679
3679
  pool_type: string;
@@ -3717,12 +3717,12 @@ declare const assetContract: {
3717
3717
  pool_current_price: string;
3718
3718
  pool_current_sqrt_price: string;
3719
3719
  pool_current_fdv: string;
3720
- pool_current_fdv_usd: string;
3720
+ pool_current_fdv_usd: string | null;
3721
3721
  pool_current_liquidity: string;
3722
3722
  pool_current_tick: number;
3723
3723
  pool_last_epoch: number;
3724
3724
  pool_current_market_cap: string;
3725
- pool_current_market_cap_usd: string;
3725
+ pool_current_market_cap_usd: string | null;
3726
3726
  pool_current_fees_accrued: string;
3727
3727
  pool_current_total_proceeds: string;
3728
3728
  pool_current_total_tokens_sold: string;
@@ -3767,11 +3767,11 @@ declare const assetContract: {
3767
3767
  pool_current_price: string;
3768
3768
  pool_current_sqrt_price: string;
3769
3769
  pool_current_fdv: string;
3770
- pool_current_fdv_usd: string;
3770
+ pool_current_fdv_usd: string | null;
3771
3771
  pool_current_liquidity: string;
3772
3772
  pool_current_tick: number;
3773
3773
  pool_current_market_cap: string;
3774
- pool_current_market_cap_usd: string;
3774
+ pool_current_market_cap_usd: string | null;
3775
3775
  pool_address: `0x${string}`;
3776
3776
  pool_migration_timestamp: Date | null;
3777
3777
  pool_type: string;
@@ -3812,12 +3812,12 @@ declare const assetContract: {
3812
3812
  pool_current_price: string;
3813
3813
  pool_current_sqrt_price: string;
3814
3814
  pool_current_fdv: string;
3815
- pool_current_fdv_usd: string;
3815
+ pool_current_fdv_usd: string | null;
3816
3816
  pool_current_liquidity: string;
3817
3817
  pool_current_tick: number;
3818
3818
  pool_last_epoch: number;
3819
3819
  pool_current_market_cap: string;
3820
- pool_current_market_cap_usd: string;
3820
+ pool_current_market_cap_usd: string | null;
3821
3821
  pool_current_fees_accrued: string;
3822
3822
  pool_current_total_proceeds: string;
3823
3823
  pool_current_total_tokens_sold: string;
@@ -3863,11 +3863,11 @@ declare const assetContract: {
3863
3863
  pool_current_price: string;
3864
3864
  pool_current_sqrt_price: string;
3865
3865
  pool_current_fdv: string;
3866
- pool_current_fdv_usd: string;
3866
+ pool_current_fdv_usd: string | null;
3867
3867
  pool_current_liquidity: string;
3868
3868
  pool_current_tick: number;
3869
3869
  pool_current_market_cap: string;
3870
- pool_current_market_cap_usd: string;
3870
+ pool_current_market_cap_usd: string | null;
3871
3871
  pool_address: string;
3872
3872
  pool_migration_timestamp: Date | null;
3873
3873
  pool_type: string;
@@ -3913,12 +3913,12 @@ declare const assetContract: {
3913
3913
  pool_current_price: string;
3914
3914
  pool_current_sqrt_price: string;
3915
3915
  pool_current_fdv: string;
3916
- pool_current_fdv_usd: string;
3916
+ pool_current_fdv_usd: string | null;
3917
3917
  pool_current_liquidity: string;
3918
3918
  pool_current_tick: number;
3919
3919
  pool_last_epoch: number;
3920
3920
  pool_current_market_cap: string;
3921
- pool_current_market_cap_usd: string;
3921
+ pool_current_market_cap_usd: string | null;
3922
3922
  pool_current_fees_accrued: string;
3923
3923
  pool_current_total_proceeds: string;
3924
3924
  pool_current_total_tokens_sold: string;
@@ -3963,11 +3963,11 @@ declare const assetContract: {
3963
3963
  pool_current_price: string;
3964
3964
  pool_current_sqrt_price: string;
3965
3965
  pool_current_fdv: string;
3966
- pool_current_fdv_usd: string;
3966
+ pool_current_fdv_usd: string | null;
3967
3967
  pool_current_liquidity: string;
3968
3968
  pool_current_tick: number;
3969
3969
  pool_current_market_cap: string;
3970
- pool_current_market_cap_usd: string;
3970
+ pool_current_market_cap_usd: string | null;
3971
3971
  pool_address: `0x${string}`;
3972
3972
  pool_migration_timestamp: Date | null;
3973
3973
  pool_type: string;
@@ -4010,12 +4010,12 @@ declare const assetContract: {
4010
4010
  pool_current_price: string;
4011
4011
  pool_current_sqrt_price: string;
4012
4012
  pool_current_fdv: string;
4013
- pool_current_fdv_usd: string;
4013
+ pool_current_fdv_usd: string | null;
4014
4014
  pool_current_liquidity: string;
4015
4015
  pool_current_tick: number;
4016
4016
  pool_last_epoch: number;
4017
4017
  pool_current_market_cap: string;
4018
- pool_current_market_cap_usd: string;
4018
+ pool_current_market_cap_usd: string | null;
4019
4019
  pool_current_fees_accrued: string;
4020
4020
  pool_current_total_proceeds: string;
4021
4021
  pool_current_total_tokens_sold: string;
@@ -4061,11 +4061,11 @@ declare const assetContract: {
4061
4061
  pool_current_price: string;
4062
4062
  pool_current_sqrt_price: string;
4063
4063
  pool_current_fdv: string;
4064
- pool_current_fdv_usd: string;
4064
+ pool_current_fdv_usd: string | null;
4065
4065
  pool_current_liquidity: string;
4066
4066
  pool_current_tick: number;
4067
4067
  pool_current_market_cap: string;
4068
- pool_current_market_cap_usd: string;
4068
+ pool_current_market_cap_usd: string | null;
4069
4069
  pool_address: string;
4070
4070
  pool_migration_timestamp: Date | null;
4071
4071
  pool_type: string;