@longdotxyz/shared 0.0.95 → 0.0.97

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;
@@ -31,11 +29,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
31
29
  pool_config_ending_time: z.ZodString;
32
30
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
33
31
  pool_type: z.ZodString;
34
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
35
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
36
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
37
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
38
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
39
32
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
40
33
  pool_liquidity: z.ZodNullable<z.ZodString>;
41
34
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -196,12 +189,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
196
189
  pool_current_price: string;
197
190
  pool_current_sqrt_price: string;
198
191
  pool_current_fdv: string;
199
- pool_current_fdv_usd: string | null;
200
192
  pool_current_liquidity: string;
201
193
  pool_current_tick: number;
202
194
  pool_last_epoch: number;
203
195
  pool_current_market_cap: string;
204
- pool_current_market_cap_usd: string | null;
205
196
  pool_current_fees_accrued: string;
206
197
  pool_current_total_proceeds: string;
207
198
  pool_current_total_tokens_sold: string;
@@ -216,11 +207,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
216
207
  pool_config_ending_time: string;
217
208
  pool_migration_timestamp: Date | null;
218
209
  pool_type: string;
219
- pool_volume_24h_base: string | null;
220
- pool_volume_24h_quote: string | null;
221
- pool_volume_24h_usd: string | null;
222
- pool_volume_24h_swap_count: number | null;
223
- pool_volume_last_updated: string | null;
224
210
  pool_market_data: {
225
211
  pool_liquidity: string | null;
226
212
  pool_market_cap: string | null;
@@ -259,12 +245,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
259
245
  pool_current_price: string;
260
246
  pool_current_sqrt_price: string;
261
247
  pool_current_fdv: string;
262
- pool_current_fdv_usd: string | null;
263
248
  pool_current_liquidity: string;
264
249
  pool_current_tick: number;
265
250
  pool_last_epoch: number;
266
251
  pool_current_market_cap: string;
267
- pool_current_market_cap_usd: string | null;
268
252
  pool_current_fees_accrued: string;
269
253
  pool_current_total_proceeds: string;
270
254
  pool_current_total_tokens_sold: string;
@@ -279,11 +263,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
279
263
  pool_config_ending_time: string;
280
264
  pool_migration_timestamp: Date | null;
281
265
  pool_type: string;
282
- pool_volume_24h_base: string | null;
283
- pool_volume_24h_quote: string | null;
284
- pool_volume_24h_usd: string | null;
285
- pool_volume_24h_swap_count: number | null;
286
- pool_volume_last_updated: string | null;
287
266
  base_token: {
288
267
  token_address: string;
289
268
  token_name: string;
@@ -316,19 +295,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
316
295
  pool_current_price: z.ZodString;
317
296
  pool_current_sqrt_price: z.ZodString;
318
297
  pool_current_fdv: z.ZodString;
319
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
320
298
  pool_current_liquidity: z.ZodString;
321
299
  pool_current_tick: z.ZodNumber;
322
300
  pool_current_market_cap: z.ZodString;
323
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
324
301
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
325
302
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
326
303
  pool_type: z.ZodString;
327
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
328
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
329
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
330
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
331
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
332
304
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
333
305
  pool_liquidity: z.ZodNullable<z.ZodString>;
334
306
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -492,19 +464,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
492
464
  pool_current_price: string;
493
465
  pool_current_sqrt_price: string;
494
466
  pool_current_fdv: string;
495
- pool_current_fdv_usd: string | null;
496
467
  pool_current_liquidity: string;
497
468
  pool_current_tick: number;
498
469
  pool_current_market_cap: string;
499
- pool_current_market_cap_usd: string | null;
500
470
  pool_address: `0x${string}`;
501
471
  pool_migration_timestamp: Date | null;
502
472
  pool_type: string;
503
- pool_volume_24h_base: string | null;
504
- pool_volume_24h_quote: string | null;
505
- pool_volume_24h_usd: string | null;
506
- pool_volume_24h_swap_count: number | null;
507
- pool_volume_last_updated: string | null;
508
473
  pool_market_data: {
509
474
  pool_liquidity: string | null;
510
475
  pool_market_cap: string | null;
@@ -544,19 +509,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
544
509
  pool_current_price: string;
545
510
  pool_current_sqrt_price: string;
546
511
  pool_current_fdv: string;
547
- pool_current_fdv_usd: string | null;
548
512
  pool_current_liquidity: string;
549
513
  pool_current_tick: number;
550
514
  pool_current_market_cap: string;
551
- pool_current_market_cap_usd: string | null;
552
515
  pool_address: string;
553
516
  pool_migration_timestamp: Date | null;
554
517
  pool_type: string;
555
- pool_volume_24h_base: string | null;
556
- pool_volume_24h_quote: string | null;
557
- pool_volume_24h_usd: string | null;
558
- pool_volume_24h_swap_count: number | null;
559
- pool_volume_last_updated: string | null;
560
518
  base_token: {
561
519
  token_address: string;
562
520
  token_name: string;
@@ -597,12 +555,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
597
555
  pool_current_price: string;
598
556
  pool_current_sqrt_price: string;
599
557
  pool_current_fdv: string;
600
- pool_current_fdv_usd: string | null;
601
558
  pool_current_liquidity: string;
602
559
  pool_current_tick: number;
603
560
  pool_last_epoch: number;
604
561
  pool_current_market_cap: string;
605
- pool_current_market_cap_usd: string | null;
606
562
  pool_current_fees_accrued: string;
607
563
  pool_current_total_proceeds: string;
608
564
  pool_current_total_tokens_sold: string;
@@ -617,11 +573,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
617
573
  pool_config_ending_time: string;
618
574
  pool_migration_timestamp: Date | null;
619
575
  pool_type: string;
620
- pool_volume_24h_base: string | null;
621
- pool_volume_24h_quote: string | null;
622
- pool_volume_24h_usd: string | null;
623
- pool_volume_24h_swap_count: number | null;
624
- pool_volume_last_updated: string | null;
625
576
  pool_market_data: {
626
577
  pool_liquidity: string | null;
627
578
  pool_market_cap: string | null;
@@ -661,19 +612,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
661
612
  pool_current_price: string;
662
613
  pool_current_sqrt_price: string;
663
614
  pool_current_fdv: string;
664
- pool_current_fdv_usd: string | null;
665
615
  pool_current_liquidity: string;
666
616
  pool_current_tick: number;
667
617
  pool_current_market_cap: string;
668
- pool_current_market_cap_usd: string | null;
669
618
  pool_address: `0x${string}`;
670
619
  pool_migration_timestamp: Date | null;
671
620
  pool_type: string;
672
- pool_volume_24h_base: string | null;
673
- pool_volume_24h_quote: string | null;
674
- pool_volume_24h_usd: string | null;
675
- pool_volume_24h_swap_count: number | null;
676
- pool_volume_last_updated: string | null;
677
621
  pool_market_data: {
678
622
  pool_liquidity: string | null;
679
623
  pool_market_cap: string | null;
@@ -720,12 +664,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
720
664
  pool_current_price: string;
721
665
  pool_current_sqrt_price: string;
722
666
  pool_current_fdv: string;
723
- pool_current_fdv_usd: string | null;
724
667
  pool_current_liquidity: string;
725
668
  pool_current_tick: number;
726
669
  pool_last_epoch: number;
727
670
  pool_current_market_cap: string;
728
- pool_current_market_cap_usd: string | null;
729
671
  pool_current_fees_accrued: string;
730
672
  pool_current_total_proceeds: string;
731
673
  pool_current_total_tokens_sold: string;
@@ -740,11 +682,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
740
682
  pool_config_ending_time: string;
741
683
  pool_migration_timestamp: Date | null;
742
684
  pool_type: string;
743
- pool_volume_24h_base: string | null;
744
- pool_volume_24h_quote: string | null;
745
- pool_volume_24h_usd: string | null;
746
- pool_volume_24h_swap_count: number | null;
747
- pool_volume_last_updated: string | null;
748
685
  base_token: {
749
686
  token_address: string;
750
687
  token_name: string;
@@ -777,19 +714,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
777
714
  pool_current_price: string;
778
715
  pool_current_sqrt_price: string;
779
716
  pool_current_fdv: string;
780
- pool_current_fdv_usd: string | null;
781
717
  pool_current_liquidity: string;
782
718
  pool_current_tick: number;
783
719
  pool_current_market_cap: string;
784
- pool_current_market_cap_usd: string | null;
785
720
  pool_address: string;
786
721
  pool_migration_timestamp: Date | null;
787
722
  pool_type: string;
788
- pool_volume_24h_base: string | null;
789
- pool_volume_24h_quote: string | null;
790
- pool_volume_24h_usd: string | null;
791
- pool_volume_24h_swap_count: number | null;
792
- pool_volume_last_updated: string | null;
793
723
  base_token: {
794
724
  token_address: string;
795
725
  token_name: string;
@@ -831,12 +761,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
831
761
  pool_current_price: string;
832
762
  pool_current_sqrt_price: string;
833
763
  pool_current_fdv: string;
834
- pool_current_fdv_usd: string | null;
835
764
  pool_current_liquidity: string;
836
765
  pool_current_tick: number;
837
766
  pool_last_epoch: number;
838
767
  pool_current_market_cap: string;
839
- pool_current_market_cap_usd: string | null;
840
768
  pool_current_fees_accrued: string;
841
769
  pool_current_total_proceeds: string;
842
770
  pool_current_total_tokens_sold: string;
@@ -851,11 +779,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
851
779
  pool_config_ending_time: string;
852
780
  pool_migration_timestamp: Date | null;
853
781
  pool_type: string;
854
- pool_volume_24h_base: string | null;
855
- pool_volume_24h_quote: string | null;
856
- pool_volume_24h_usd: string | null;
857
- pool_volume_24h_swap_count: number | null;
858
- pool_volume_last_updated: string | null;
859
782
  pool_market_data: {
860
783
  pool_liquidity: string | null;
861
784
  pool_market_cap: string | null;
@@ -895,19 +818,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
895
818
  pool_current_price: string;
896
819
  pool_current_sqrt_price: string;
897
820
  pool_current_fdv: string;
898
- pool_current_fdv_usd: string | null;
899
821
  pool_current_liquidity: string;
900
822
  pool_current_tick: number;
901
823
  pool_current_market_cap: string;
902
- pool_current_market_cap_usd: string | null;
903
824
  pool_address: `0x${string}`;
904
825
  pool_migration_timestamp: Date | null;
905
826
  pool_type: string;
906
- pool_volume_24h_base: string | null;
907
- pool_volume_24h_quote: string | null;
908
- pool_volume_24h_usd: string | null;
909
- pool_volume_24h_swap_count: number | null;
910
- pool_volume_last_updated: string | null;
911
827
  pool_market_data: {
912
828
  pool_liquidity: string | null;
913
829
  pool_market_cap: string | null;
@@ -954,12 +870,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
954
870
  pool_current_price: string;
955
871
  pool_current_sqrt_price: string;
956
872
  pool_current_fdv: string;
957
- pool_current_fdv_usd: string | null;
958
873
  pool_current_liquidity: string;
959
874
  pool_current_tick: number;
960
875
  pool_last_epoch: number;
961
876
  pool_current_market_cap: string;
962
- pool_current_market_cap_usd: string | null;
963
877
  pool_current_fees_accrued: string;
964
878
  pool_current_total_proceeds: string;
965
879
  pool_current_total_tokens_sold: string;
@@ -974,11 +888,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
974
888
  pool_config_ending_time: string;
975
889
  pool_migration_timestamp: Date | null;
976
890
  pool_type: string;
977
- pool_volume_24h_base: string | null;
978
- pool_volume_24h_quote: string | null;
979
- pool_volume_24h_usd: string | null;
980
- pool_volume_24h_swap_count: number | null;
981
- pool_volume_last_updated: string | null;
982
891
  base_token: {
983
892
  token_address: string;
984
893
  token_name: string;
@@ -1011,19 +920,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
1011
920
  pool_current_price: string;
1012
921
  pool_current_sqrt_price: string;
1013
922
  pool_current_fdv: string;
1014
- pool_current_fdv_usd: string | null;
1015
923
  pool_current_liquidity: string;
1016
924
  pool_current_tick: number;
1017
925
  pool_current_market_cap: string;
1018
- pool_current_market_cap_usd: string | null;
1019
926
  pool_address: string;
1020
927
  pool_migration_timestamp: Date | null;
1021
928
  pool_type: string;
1022
- pool_volume_24h_base: string | null;
1023
- pool_volume_24h_quote: string | null;
1024
- pool_volume_24h_usd: string | null;
1025
- pool_volume_24h_swap_count: number | null;
1026
- pool_volume_last_updated: string | null;
1027
929
  base_token: {
1028
930
  token_address: string;
1029
931
  token_name: string;
@@ -1096,12 +998,10 @@ declare const assetContract: {
1096
998
  pool_current_price: z.ZodString;
1097
999
  pool_current_sqrt_price: z.ZodString;
1098
1000
  pool_current_fdv: z.ZodString;
1099
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
1100
1001
  pool_current_liquidity: z.ZodString;
1101
1002
  pool_current_tick: z.ZodNumber;
1102
1003
  pool_last_epoch: z.ZodNumber;
1103
1004
  pool_current_market_cap: z.ZodString;
1104
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
1105
1005
  pool_current_fees_accrued: z.ZodString;
1106
1006
  pool_current_total_proceeds: z.ZodString;
1107
1007
  pool_current_total_tokens_sold: z.ZodString;
@@ -1116,11 +1016,6 @@ declare const assetContract: {
1116
1016
  pool_config_ending_time: z.ZodString;
1117
1017
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1118
1018
  pool_type: z.ZodString;
1119
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
1120
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
1121
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
1122
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
1123
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
1124
1019
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
1125
1020
  pool_liquidity: z.ZodNullable<z.ZodString>;
1126
1021
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -1281,12 +1176,10 @@ declare const assetContract: {
1281
1176
  pool_current_price: string;
1282
1177
  pool_current_sqrt_price: string;
1283
1178
  pool_current_fdv: string;
1284
- pool_current_fdv_usd: string | null;
1285
1179
  pool_current_liquidity: string;
1286
1180
  pool_current_tick: number;
1287
1181
  pool_last_epoch: number;
1288
1182
  pool_current_market_cap: string;
1289
- pool_current_market_cap_usd: string | null;
1290
1183
  pool_current_fees_accrued: string;
1291
1184
  pool_current_total_proceeds: string;
1292
1185
  pool_current_total_tokens_sold: string;
@@ -1301,11 +1194,6 @@ declare const assetContract: {
1301
1194
  pool_config_ending_time: string;
1302
1195
  pool_migration_timestamp: Date | null;
1303
1196
  pool_type: string;
1304
- pool_volume_24h_base: string | null;
1305
- pool_volume_24h_quote: string | null;
1306
- pool_volume_24h_usd: string | null;
1307
- pool_volume_24h_swap_count: number | null;
1308
- pool_volume_last_updated: string | null;
1309
1197
  pool_market_data: {
1310
1198
  pool_liquidity: string | null;
1311
1199
  pool_market_cap: string | null;
@@ -1344,12 +1232,10 @@ declare const assetContract: {
1344
1232
  pool_current_price: string;
1345
1233
  pool_current_sqrt_price: string;
1346
1234
  pool_current_fdv: string;
1347
- pool_current_fdv_usd: string | null;
1348
1235
  pool_current_liquidity: string;
1349
1236
  pool_current_tick: number;
1350
1237
  pool_last_epoch: number;
1351
1238
  pool_current_market_cap: string;
1352
- pool_current_market_cap_usd: string | null;
1353
1239
  pool_current_fees_accrued: string;
1354
1240
  pool_current_total_proceeds: string;
1355
1241
  pool_current_total_tokens_sold: string;
@@ -1364,11 +1250,6 @@ declare const assetContract: {
1364
1250
  pool_config_ending_time: string;
1365
1251
  pool_migration_timestamp: Date | null;
1366
1252
  pool_type: string;
1367
- pool_volume_24h_base: string | null;
1368
- pool_volume_24h_quote: string | null;
1369
- pool_volume_24h_usd: string | null;
1370
- pool_volume_24h_swap_count: number | null;
1371
- pool_volume_last_updated: string | null;
1372
1253
  base_token: {
1373
1254
  token_address: string;
1374
1255
  token_name: string;
@@ -1401,19 +1282,12 @@ declare const assetContract: {
1401
1282
  pool_current_price: z.ZodString;
1402
1283
  pool_current_sqrt_price: z.ZodString;
1403
1284
  pool_current_fdv: z.ZodString;
1404
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
1405
1285
  pool_current_liquidity: z.ZodString;
1406
1286
  pool_current_tick: z.ZodNumber;
1407
1287
  pool_current_market_cap: z.ZodString;
1408
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
1409
1288
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1410
1289
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1411
1290
  pool_type: z.ZodString;
1412
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
1413
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
1414
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
1415
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
1416
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
1417
1291
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
1418
1292
  pool_liquidity: z.ZodNullable<z.ZodString>;
1419
1293
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -1577,19 +1451,12 @@ declare const assetContract: {
1577
1451
  pool_current_price: string;
1578
1452
  pool_current_sqrt_price: string;
1579
1453
  pool_current_fdv: string;
1580
- pool_current_fdv_usd: string | null;
1581
1454
  pool_current_liquidity: string;
1582
1455
  pool_current_tick: number;
1583
1456
  pool_current_market_cap: string;
1584
- pool_current_market_cap_usd: string | null;
1585
1457
  pool_address: `0x${string}`;
1586
1458
  pool_migration_timestamp: Date | null;
1587
1459
  pool_type: string;
1588
- pool_volume_24h_base: string | null;
1589
- pool_volume_24h_quote: string | null;
1590
- pool_volume_24h_usd: string | null;
1591
- pool_volume_24h_swap_count: number | null;
1592
- pool_volume_last_updated: string | null;
1593
1460
  pool_market_data: {
1594
1461
  pool_liquidity: string | null;
1595
1462
  pool_market_cap: string | null;
@@ -1629,19 +1496,12 @@ declare const assetContract: {
1629
1496
  pool_current_price: string;
1630
1497
  pool_current_sqrt_price: string;
1631
1498
  pool_current_fdv: string;
1632
- pool_current_fdv_usd: string | null;
1633
1499
  pool_current_liquidity: string;
1634
1500
  pool_current_tick: number;
1635
1501
  pool_current_market_cap: string;
1636
- pool_current_market_cap_usd: string | null;
1637
1502
  pool_address: string;
1638
1503
  pool_migration_timestamp: Date | null;
1639
1504
  pool_type: string;
1640
- pool_volume_24h_base: string | null;
1641
- pool_volume_24h_quote: string | null;
1642
- pool_volume_24h_usd: string | null;
1643
- pool_volume_24h_swap_count: number | null;
1644
- pool_volume_last_updated: string | null;
1645
1505
  base_token: {
1646
1506
  token_address: string;
1647
1507
  token_name: string;
@@ -1682,12 +1542,10 @@ declare const assetContract: {
1682
1542
  pool_current_price: string;
1683
1543
  pool_current_sqrt_price: string;
1684
1544
  pool_current_fdv: string;
1685
- pool_current_fdv_usd: string | null;
1686
1545
  pool_current_liquidity: string;
1687
1546
  pool_current_tick: number;
1688
1547
  pool_last_epoch: number;
1689
1548
  pool_current_market_cap: string;
1690
- pool_current_market_cap_usd: string | null;
1691
1549
  pool_current_fees_accrued: string;
1692
1550
  pool_current_total_proceeds: string;
1693
1551
  pool_current_total_tokens_sold: string;
@@ -1702,11 +1560,6 @@ declare const assetContract: {
1702
1560
  pool_config_ending_time: string;
1703
1561
  pool_migration_timestamp: Date | null;
1704
1562
  pool_type: string;
1705
- pool_volume_24h_base: string | null;
1706
- pool_volume_24h_quote: string | null;
1707
- pool_volume_24h_usd: string | null;
1708
- pool_volume_24h_swap_count: number | null;
1709
- pool_volume_last_updated: string | null;
1710
1563
  pool_market_data: {
1711
1564
  pool_liquidity: string | null;
1712
1565
  pool_market_cap: string | null;
@@ -1746,19 +1599,12 @@ declare const assetContract: {
1746
1599
  pool_current_price: string;
1747
1600
  pool_current_sqrt_price: string;
1748
1601
  pool_current_fdv: string;
1749
- pool_current_fdv_usd: string | null;
1750
1602
  pool_current_liquidity: string;
1751
1603
  pool_current_tick: number;
1752
1604
  pool_current_market_cap: string;
1753
- pool_current_market_cap_usd: string | null;
1754
1605
  pool_address: `0x${string}`;
1755
1606
  pool_migration_timestamp: Date | null;
1756
1607
  pool_type: string;
1757
- pool_volume_24h_base: string | null;
1758
- pool_volume_24h_quote: string | null;
1759
- pool_volume_24h_usd: string | null;
1760
- pool_volume_24h_swap_count: number | null;
1761
- pool_volume_last_updated: string | null;
1762
1608
  pool_market_data: {
1763
1609
  pool_liquidity: string | null;
1764
1610
  pool_market_cap: string | null;
@@ -1805,12 +1651,10 @@ declare const assetContract: {
1805
1651
  pool_current_price: string;
1806
1652
  pool_current_sqrt_price: string;
1807
1653
  pool_current_fdv: string;
1808
- pool_current_fdv_usd: string | null;
1809
1654
  pool_current_liquidity: string;
1810
1655
  pool_current_tick: number;
1811
1656
  pool_last_epoch: number;
1812
1657
  pool_current_market_cap: string;
1813
- pool_current_market_cap_usd: string | null;
1814
1658
  pool_current_fees_accrued: string;
1815
1659
  pool_current_total_proceeds: string;
1816
1660
  pool_current_total_tokens_sold: string;
@@ -1825,11 +1669,6 @@ declare const assetContract: {
1825
1669
  pool_config_ending_time: string;
1826
1670
  pool_migration_timestamp: Date | null;
1827
1671
  pool_type: string;
1828
- pool_volume_24h_base: string | null;
1829
- pool_volume_24h_quote: string | null;
1830
- pool_volume_24h_usd: string | null;
1831
- pool_volume_24h_swap_count: number | null;
1832
- pool_volume_last_updated: string | null;
1833
1672
  base_token: {
1834
1673
  token_address: string;
1835
1674
  token_name: string;
@@ -1862,19 +1701,12 @@ declare const assetContract: {
1862
1701
  pool_current_price: string;
1863
1702
  pool_current_sqrt_price: string;
1864
1703
  pool_current_fdv: string;
1865
- pool_current_fdv_usd: string | null;
1866
1704
  pool_current_liquidity: string;
1867
1705
  pool_current_tick: number;
1868
1706
  pool_current_market_cap: string;
1869
- pool_current_market_cap_usd: string | null;
1870
1707
  pool_address: string;
1871
1708
  pool_migration_timestamp: Date | null;
1872
1709
  pool_type: string;
1873
- pool_volume_24h_base: string | null;
1874
- pool_volume_24h_quote: string | null;
1875
- pool_volume_24h_usd: string | null;
1876
- pool_volume_24h_swap_count: number | null;
1877
- pool_volume_last_updated: string | null;
1878
1710
  base_token: {
1879
1711
  token_address: string;
1880
1712
  token_name: string;
@@ -1916,12 +1748,10 @@ declare const assetContract: {
1916
1748
  pool_current_price: string;
1917
1749
  pool_current_sqrt_price: string;
1918
1750
  pool_current_fdv: string;
1919
- pool_current_fdv_usd: string | null;
1920
1751
  pool_current_liquidity: string;
1921
1752
  pool_current_tick: number;
1922
1753
  pool_last_epoch: number;
1923
1754
  pool_current_market_cap: string;
1924
- pool_current_market_cap_usd: string | null;
1925
1755
  pool_current_fees_accrued: string;
1926
1756
  pool_current_total_proceeds: string;
1927
1757
  pool_current_total_tokens_sold: string;
@@ -1936,11 +1766,6 @@ declare const assetContract: {
1936
1766
  pool_config_ending_time: string;
1937
1767
  pool_migration_timestamp: Date | null;
1938
1768
  pool_type: string;
1939
- pool_volume_24h_base: string | null;
1940
- pool_volume_24h_quote: string | null;
1941
- pool_volume_24h_usd: string | null;
1942
- pool_volume_24h_swap_count: number | null;
1943
- pool_volume_last_updated: string | null;
1944
1769
  pool_market_data: {
1945
1770
  pool_liquidity: string | null;
1946
1771
  pool_market_cap: string | null;
@@ -1980,19 +1805,12 @@ declare const assetContract: {
1980
1805
  pool_current_price: string;
1981
1806
  pool_current_sqrt_price: string;
1982
1807
  pool_current_fdv: string;
1983
- pool_current_fdv_usd: string | null;
1984
1808
  pool_current_liquidity: string;
1985
1809
  pool_current_tick: number;
1986
1810
  pool_current_market_cap: string;
1987
- pool_current_market_cap_usd: string | null;
1988
1811
  pool_address: `0x${string}`;
1989
1812
  pool_migration_timestamp: Date | null;
1990
1813
  pool_type: string;
1991
- pool_volume_24h_base: string | null;
1992
- pool_volume_24h_quote: string | null;
1993
- pool_volume_24h_usd: string | null;
1994
- pool_volume_24h_swap_count: number | null;
1995
- pool_volume_last_updated: string | null;
1996
1814
  pool_market_data: {
1997
1815
  pool_liquidity: string | null;
1998
1816
  pool_market_cap: string | null;
@@ -2039,12 +1857,10 @@ declare const assetContract: {
2039
1857
  pool_current_price: string;
2040
1858
  pool_current_sqrt_price: string;
2041
1859
  pool_current_fdv: string;
2042
- pool_current_fdv_usd: string | null;
2043
1860
  pool_current_liquidity: string;
2044
1861
  pool_current_tick: number;
2045
1862
  pool_last_epoch: number;
2046
1863
  pool_current_market_cap: string;
2047
- pool_current_market_cap_usd: string | null;
2048
1864
  pool_current_fees_accrued: string;
2049
1865
  pool_current_total_proceeds: string;
2050
1866
  pool_current_total_tokens_sold: string;
@@ -2059,11 +1875,6 @@ declare const assetContract: {
2059
1875
  pool_config_ending_time: string;
2060
1876
  pool_migration_timestamp: Date | null;
2061
1877
  pool_type: string;
2062
- pool_volume_24h_base: string | null;
2063
- pool_volume_24h_quote: string | null;
2064
- pool_volume_24h_usd: string | null;
2065
- pool_volume_24h_swap_count: number | null;
2066
- pool_volume_last_updated: string | null;
2067
1878
  base_token: {
2068
1879
  token_address: string;
2069
1880
  token_name: string;
@@ -2096,19 +1907,12 @@ declare const assetContract: {
2096
1907
  pool_current_price: string;
2097
1908
  pool_current_sqrt_price: string;
2098
1909
  pool_current_fdv: string;
2099
- pool_current_fdv_usd: string | null;
2100
1910
  pool_current_liquidity: string;
2101
1911
  pool_current_tick: number;
2102
1912
  pool_current_market_cap: string;
2103
- pool_current_market_cap_usd: string | null;
2104
1913
  pool_address: string;
2105
1914
  pool_migration_timestamp: Date | null;
2106
1915
  pool_type: string;
2107
- pool_volume_24h_base: string | null;
2108
- pool_volume_24h_quote: string | null;
2109
- pool_volume_24h_usd: string | null;
2110
- pool_volume_24h_swap_count: number | null;
2111
- pool_volume_last_updated: string | null;
2112
1916
  base_token: {
2113
1917
  token_address: string;
2114
1918
  token_name: string;
@@ -2152,12 +1956,10 @@ declare const assetContract: {
2152
1956
  pool_current_price: string;
2153
1957
  pool_current_sqrt_price: string;
2154
1958
  pool_current_fdv: string;
2155
- pool_current_fdv_usd: string | null;
2156
1959
  pool_current_liquidity: string;
2157
1960
  pool_current_tick: number;
2158
1961
  pool_last_epoch: number;
2159
1962
  pool_current_market_cap: string;
2160
- pool_current_market_cap_usd: string | null;
2161
1963
  pool_current_fees_accrued: string;
2162
1964
  pool_current_total_proceeds: string;
2163
1965
  pool_current_total_tokens_sold: string;
@@ -2172,11 +1974,6 @@ declare const assetContract: {
2172
1974
  pool_config_ending_time: string;
2173
1975
  pool_migration_timestamp: Date | null;
2174
1976
  pool_type: string;
2175
- pool_volume_24h_base: string | null;
2176
- pool_volume_24h_quote: string | null;
2177
- pool_volume_24h_usd: string | null;
2178
- pool_volume_24h_swap_count: number | null;
2179
- pool_volume_last_updated: string | null;
2180
1977
  pool_market_data: {
2181
1978
  pool_liquidity: string | null;
2182
1979
  pool_market_cap: string | null;
@@ -2216,19 +2013,12 @@ declare const assetContract: {
2216
2013
  pool_current_price: string;
2217
2014
  pool_current_sqrt_price: string;
2218
2015
  pool_current_fdv: string;
2219
- pool_current_fdv_usd: string | null;
2220
2016
  pool_current_liquidity: string;
2221
2017
  pool_current_tick: number;
2222
2018
  pool_current_market_cap: string;
2223
- pool_current_market_cap_usd: string | null;
2224
2019
  pool_address: `0x${string}`;
2225
2020
  pool_migration_timestamp: Date | null;
2226
2021
  pool_type: string;
2227
- pool_volume_24h_base: string | null;
2228
- pool_volume_24h_quote: string | null;
2229
- pool_volume_24h_usd: string | null;
2230
- pool_volume_24h_swap_count: number | null;
2231
- pool_volume_last_updated: string | null;
2232
2022
  pool_market_data: {
2233
2023
  pool_liquidity: string | null;
2234
2024
  pool_market_cap: string | null;
@@ -2277,12 +2067,10 @@ declare const assetContract: {
2277
2067
  pool_current_price: string;
2278
2068
  pool_current_sqrt_price: string;
2279
2069
  pool_current_fdv: string;
2280
- pool_current_fdv_usd: string | null;
2281
2070
  pool_current_liquidity: string;
2282
2071
  pool_current_tick: number;
2283
2072
  pool_last_epoch: number;
2284
2073
  pool_current_market_cap: string;
2285
- pool_current_market_cap_usd: string | null;
2286
2074
  pool_current_fees_accrued: string;
2287
2075
  pool_current_total_proceeds: string;
2288
2076
  pool_current_total_tokens_sold: string;
@@ -2297,11 +2085,6 @@ declare const assetContract: {
2297
2085
  pool_config_ending_time: string;
2298
2086
  pool_migration_timestamp: Date | null;
2299
2087
  pool_type: string;
2300
- pool_volume_24h_base: string | null;
2301
- pool_volume_24h_quote: string | null;
2302
- pool_volume_24h_usd: string | null;
2303
- pool_volume_24h_swap_count: number | null;
2304
- pool_volume_last_updated: string | null;
2305
2088
  base_token: {
2306
2089
  token_address: string;
2307
2090
  token_name: string;
@@ -2334,19 +2117,12 @@ declare const assetContract: {
2334
2117
  pool_current_price: string;
2335
2118
  pool_current_sqrt_price: string;
2336
2119
  pool_current_fdv: string;
2337
- pool_current_fdv_usd: string | null;
2338
2120
  pool_current_liquidity: string;
2339
2121
  pool_current_tick: number;
2340
2122
  pool_current_market_cap: string;
2341
- pool_current_market_cap_usd: string | null;
2342
2123
  pool_address: string;
2343
2124
  pool_migration_timestamp: Date | null;
2344
2125
  pool_type: string;
2345
- pool_volume_24h_base: string | null;
2346
- pool_volume_24h_quote: string | null;
2347
- pool_volume_24h_usd: string | null;
2348
- pool_volume_24h_swap_count: number | null;
2349
- pool_volume_last_updated: string | null;
2350
2126
  base_token: {
2351
2127
  token_address: string;
2352
2128
  token_name: string;
@@ -2411,12 +2187,10 @@ declare const assetContract: {
2411
2187
  pool_current_price: z.ZodString;
2412
2188
  pool_current_sqrt_price: z.ZodString;
2413
2189
  pool_current_fdv: z.ZodString;
2414
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
2415
2190
  pool_current_liquidity: z.ZodString;
2416
2191
  pool_current_tick: z.ZodNumber;
2417
2192
  pool_last_epoch: z.ZodNumber;
2418
2193
  pool_current_market_cap: z.ZodString;
2419
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
2420
2194
  pool_current_fees_accrued: z.ZodString;
2421
2195
  pool_current_total_proceeds: z.ZodString;
2422
2196
  pool_current_total_tokens_sold: z.ZodString;
@@ -2431,11 +2205,6 @@ declare const assetContract: {
2431
2205
  pool_config_ending_time: z.ZodString;
2432
2206
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2433
2207
  pool_type: z.ZodString;
2434
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
2435
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
2436
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
2437
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
2438
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
2439
2208
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
2440
2209
  pool_liquidity: z.ZodNullable<z.ZodString>;
2441
2210
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -2596,12 +2365,10 @@ declare const assetContract: {
2596
2365
  pool_current_price: string;
2597
2366
  pool_current_sqrt_price: string;
2598
2367
  pool_current_fdv: string;
2599
- pool_current_fdv_usd: string | null;
2600
2368
  pool_current_liquidity: string;
2601
2369
  pool_current_tick: number;
2602
2370
  pool_last_epoch: number;
2603
2371
  pool_current_market_cap: string;
2604
- pool_current_market_cap_usd: string | null;
2605
2372
  pool_current_fees_accrued: string;
2606
2373
  pool_current_total_proceeds: string;
2607
2374
  pool_current_total_tokens_sold: string;
@@ -2616,11 +2383,6 @@ declare const assetContract: {
2616
2383
  pool_config_ending_time: string;
2617
2384
  pool_migration_timestamp: Date | null;
2618
2385
  pool_type: string;
2619
- pool_volume_24h_base: string | null;
2620
- pool_volume_24h_quote: string | null;
2621
- pool_volume_24h_usd: string | null;
2622
- pool_volume_24h_swap_count: number | null;
2623
- pool_volume_last_updated: string | null;
2624
2386
  pool_market_data: {
2625
2387
  pool_liquidity: string | null;
2626
2388
  pool_market_cap: string | null;
@@ -2659,12 +2421,10 @@ declare const assetContract: {
2659
2421
  pool_current_price: string;
2660
2422
  pool_current_sqrt_price: string;
2661
2423
  pool_current_fdv: string;
2662
- pool_current_fdv_usd: string | null;
2663
2424
  pool_current_liquidity: string;
2664
2425
  pool_current_tick: number;
2665
2426
  pool_last_epoch: number;
2666
2427
  pool_current_market_cap: string;
2667
- pool_current_market_cap_usd: string | null;
2668
2428
  pool_current_fees_accrued: string;
2669
2429
  pool_current_total_proceeds: string;
2670
2430
  pool_current_total_tokens_sold: string;
@@ -2679,11 +2439,6 @@ declare const assetContract: {
2679
2439
  pool_config_ending_time: string;
2680
2440
  pool_migration_timestamp: Date | null;
2681
2441
  pool_type: string;
2682
- pool_volume_24h_base: string | null;
2683
- pool_volume_24h_quote: string | null;
2684
- pool_volume_24h_usd: string | null;
2685
- pool_volume_24h_swap_count: number | null;
2686
- pool_volume_last_updated: string | null;
2687
2442
  base_token: {
2688
2443
  token_address: string;
2689
2444
  token_name: string;
@@ -2716,19 +2471,12 @@ declare const assetContract: {
2716
2471
  pool_current_price: z.ZodString;
2717
2472
  pool_current_sqrt_price: z.ZodString;
2718
2473
  pool_current_fdv: z.ZodString;
2719
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
2720
2474
  pool_current_liquidity: z.ZodString;
2721
2475
  pool_current_tick: z.ZodNumber;
2722
2476
  pool_current_market_cap: z.ZodString;
2723
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
2724
2477
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2725
2478
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2726
2479
  pool_type: z.ZodString;
2727
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
2728
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
2729
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
2730
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
2731
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
2732
2480
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
2733
2481
  pool_liquidity: z.ZodNullable<z.ZodString>;
2734
2482
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -2892,19 +2640,12 @@ declare const assetContract: {
2892
2640
  pool_current_price: string;
2893
2641
  pool_current_sqrt_price: string;
2894
2642
  pool_current_fdv: string;
2895
- pool_current_fdv_usd: string | null;
2896
2643
  pool_current_liquidity: string;
2897
2644
  pool_current_tick: number;
2898
2645
  pool_current_market_cap: string;
2899
- pool_current_market_cap_usd: string | null;
2900
2646
  pool_address: `0x${string}`;
2901
2647
  pool_migration_timestamp: Date | null;
2902
2648
  pool_type: string;
2903
- pool_volume_24h_base: string | null;
2904
- pool_volume_24h_quote: string | null;
2905
- pool_volume_24h_usd: string | null;
2906
- pool_volume_24h_swap_count: number | null;
2907
- pool_volume_last_updated: string | null;
2908
2649
  pool_market_data: {
2909
2650
  pool_liquidity: string | null;
2910
2651
  pool_market_cap: string | null;
@@ -2944,19 +2685,12 @@ declare const assetContract: {
2944
2685
  pool_current_price: string;
2945
2686
  pool_current_sqrt_price: string;
2946
2687
  pool_current_fdv: string;
2947
- pool_current_fdv_usd: string | null;
2948
2688
  pool_current_liquidity: string;
2949
2689
  pool_current_tick: number;
2950
2690
  pool_current_market_cap: string;
2951
- pool_current_market_cap_usd: string | null;
2952
2691
  pool_address: string;
2953
2692
  pool_migration_timestamp: Date | null;
2954
2693
  pool_type: string;
2955
- pool_volume_24h_base: string | null;
2956
- pool_volume_24h_quote: string | null;
2957
- pool_volume_24h_usd: string | null;
2958
- pool_volume_24h_swap_count: number | null;
2959
- pool_volume_last_updated: string | null;
2960
2694
  base_token: {
2961
2695
  token_address: string;
2962
2696
  token_name: string;
@@ -2997,12 +2731,10 @@ declare const assetContract: {
2997
2731
  pool_current_price: string;
2998
2732
  pool_current_sqrt_price: string;
2999
2733
  pool_current_fdv: string;
3000
- pool_current_fdv_usd: string | null;
3001
2734
  pool_current_liquidity: string;
3002
2735
  pool_current_tick: number;
3003
2736
  pool_last_epoch: number;
3004
2737
  pool_current_market_cap: string;
3005
- pool_current_market_cap_usd: string | null;
3006
2738
  pool_current_fees_accrued: string;
3007
2739
  pool_current_total_proceeds: string;
3008
2740
  pool_current_total_tokens_sold: string;
@@ -3017,11 +2749,6 @@ declare const assetContract: {
3017
2749
  pool_config_ending_time: string;
3018
2750
  pool_migration_timestamp: Date | null;
3019
2751
  pool_type: string;
3020
- pool_volume_24h_base: string | null;
3021
- pool_volume_24h_quote: string | null;
3022
- pool_volume_24h_usd: string | null;
3023
- pool_volume_24h_swap_count: number | null;
3024
- pool_volume_last_updated: string | null;
3025
2752
  pool_market_data: {
3026
2753
  pool_liquidity: string | null;
3027
2754
  pool_market_cap: string | null;
@@ -3061,19 +2788,12 @@ declare const assetContract: {
3061
2788
  pool_current_price: string;
3062
2789
  pool_current_sqrt_price: string;
3063
2790
  pool_current_fdv: string;
3064
- pool_current_fdv_usd: string | null;
3065
2791
  pool_current_liquidity: string;
3066
2792
  pool_current_tick: number;
3067
2793
  pool_current_market_cap: string;
3068
- pool_current_market_cap_usd: string | null;
3069
2794
  pool_address: `0x${string}`;
3070
2795
  pool_migration_timestamp: Date | null;
3071
2796
  pool_type: string;
3072
- pool_volume_24h_base: string | null;
3073
- pool_volume_24h_quote: string | null;
3074
- pool_volume_24h_usd: string | null;
3075
- pool_volume_24h_swap_count: number | null;
3076
- pool_volume_last_updated: string | null;
3077
2797
  pool_market_data: {
3078
2798
  pool_liquidity: string | null;
3079
2799
  pool_market_cap: string | null;
@@ -3120,12 +2840,10 @@ declare const assetContract: {
3120
2840
  pool_current_price: string;
3121
2841
  pool_current_sqrt_price: string;
3122
2842
  pool_current_fdv: string;
3123
- pool_current_fdv_usd: string | null;
3124
2843
  pool_current_liquidity: string;
3125
2844
  pool_current_tick: number;
3126
2845
  pool_last_epoch: number;
3127
2846
  pool_current_market_cap: string;
3128
- pool_current_market_cap_usd: string | null;
3129
2847
  pool_current_fees_accrued: string;
3130
2848
  pool_current_total_proceeds: string;
3131
2849
  pool_current_total_tokens_sold: string;
@@ -3140,11 +2858,6 @@ declare const assetContract: {
3140
2858
  pool_config_ending_time: string;
3141
2859
  pool_migration_timestamp: Date | null;
3142
2860
  pool_type: string;
3143
- pool_volume_24h_base: string | null;
3144
- pool_volume_24h_quote: string | null;
3145
- pool_volume_24h_usd: string | null;
3146
- pool_volume_24h_swap_count: number | null;
3147
- pool_volume_last_updated: string | null;
3148
2861
  base_token: {
3149
2862
  token_address: string;
3150
2863
  token_name: string;
@@ -3177,19 +2890,12 @@ declare const assetContract: {
3177
2890
  pool_current_price: string;
3178
2891
  pool_current_sqrt_price: string;
3179
2892
  pool_current_fdv: string;
3180
- pool_current_fdv_usd: string | null;
3181
2893
  pool_current_liquidity: string;
3182
2894
  pool_current_tick: number;
3183
2895
  pool_current_market_cap: string;
3184
- pool_current_market_cap_usd: string | null;
3185
2896
  pool_address: string;
3186
2897
  pool_migration_timestamp: Date | null;
3187
2898
  pool_type: string;
3188
- pool_volume_24h_base: string | null;
3189
- pool_volume_24h_quote: string | null;
3190
- pool_volume_24h_usd: string | null;
3191
- pool_volume_24h_swap_count: number | null;
3192
- pool_volume_last_updated: string | null;
3193
2899
  base_token: {
3194
2900
  token_address: string;
3195
2901
  token_name: string;
@@ -3231,12 +2937,10 @@ declare const assetContract: {
3231
2937
  pool_current_price: string;
3232
2938
  pool_current_sqrt_price: string;
3233
2939
  pool_current_fdv: string;
3234
- pool_current_fdv_usd: string | null;
3235
2940
  pool_current_liquidity: string;
3236
2941
  pool_current_tick: number;
3237
2942
  pool_last_epoch: number;
3238
2943
  pool_current_market_cap: string;
3239
- pool_current_market_cap_usd: string | null;
3240
2944
  pool_current_fees_accrued: string;
3241
2945
  pool_current_total_proceeds: string;
3242
2946
  pool_current_total_tokens_sold: string;
@@ -3251,11 +2955,6 @@ declare const assetContract: {
3251
2955
  pool_config_ending_time: string;
3252
2956
  pool_migration_timestamp: Date | null;
3253
2957
  pool_type: string;
3254
- pool_volume_24h_base: string | null;
3255
- pool_volume_24h_quote: string | null;
3256
- pool_volume_24h_usd: string | null;
3257
- pool_volume_24h_swap_count: number | null;
3258
- pool_volume_last_updated: string | null;
3259
2958
  pool_market_data: {
3260
2959
  pool_liquidity: string | null;
3261
2960
  pool_market_cap: string | null;
@@ -3295,19 +2994,12 @@ declare const assetContract: {
3295
2994
  pool_current_price: string;
3296
2995
  pool_current_sqrt_price: string;
3297
2996
  pool_current_fdv: string;
3298
- pool_current_fdv_usd: string | null;
3299
2997
  pool_current_liquidity: string;
3300
2998
  pool_current_tick: number;
3301
2999
  pool_current_market_cap: string;
3302
- pool_current_market_cap_usd: string | null;
3303
3000
  pool_address: `0x${string}`;
3304
3001
  pool_migration_timestamp: Date | null;
3305
3002
  pool_type: string;
3306
- pool_volume_24h_base: string | null;
3307
- pool_volume_24h_quote: string | null;
3308
- pool_volume_24h_usd: string | null;
3309
- pool_volume_24h_swap_count: number | null;
3310
- pool_volume_last_updated: string | null;
3311
3003
  pool_market_data: {
3312
3004
  pool_liquidity: string | null;
3313
3005
  pool_market_cap: string | null;
@@ -3354,12 +3046,10 @@ declare const assetContract: {
3354
3046
  pool_current_price: string;
3355
3047
  pool_current_sqrt_price: string;
3356
3048
  pool_current_fdv: string;
3357
- pool_current_fdv_usd: string | null;
3358
3049
  pool_current_liquidity: string;
3359
3050
  pool_current_tick: number;
3360
3051
  pool_last_epoch: number;
3361
3052
  pool_current_market_cap: string;
3362
- pool_current_market_cap_usd: string | null;
3363
3053
  pool_current_fees_accrued: string;
3364
3054
  pool_current_total_proceeds: string;
3365
3055
  pool_current_total_tokens_sold: string;
@@ -3374,11 +3064,6 @@ declare const assetContract: {
3374
3064
  pool_config_ending_time: string;
3375
3065
  pool_migration_timestamp: Date | null;
3376
3066
  pool_type: string;
3377
- pool_volume_24h_base: string | null;
3378
- pool_volume_24h_quote: string | null;
3379
- pool_volume_24h_usd: string | null;
3380
- pool_volume_24h_swap_count: number | null;
3381
- pool_volume_last_updated: string | null;
3382
3067
  base_token: {
3383
3068
  token_address: string;
3384
3069
  token_name: string;
@@ -3411,19 +3096,12 @@ declare const assetContract: {
3411
3096
  pool_current_price: string;
3412
3097
  pool_current_sqrt_price: string;
3413
3098
  pool_current_fdv: string;
3414
- pool_current_fdv_usd: string | null;
3415
3099
  pool_current_liquidity: string;
3416
3100
  pool_current_tick: number;
3417
3101
  pool_current_market_cap: string;
3418
- pool_current_market_cap_usd: string | null;
3419
3102
  pool_address: string;
3420
3103
  pool_migration_timestamp: Date | null;
3421
3104
  pool_type: string;
3422
- pool_volume_24h_base: string | null;
3423
- pool_volume_24h_quote: string | null;
3424
- pool_volume_24h_usd: string | null;
3425
- pool_volume_24h_swap_count: number | null;
3426
- pool_volume_last_updated: string | null;
3427
3105
  base_token: {
3428
3106
  token_address: string;
3429
3107
  token_name: string;
@@ -3467,12 +3145,10 @@ declare const assetContract: {
3467
3145
  pool_current_price: string;
3468
3146
  pool_current_sqrt_price: string;
3469
3147
  pool_current_fdv: string;
3470
- pool_current_fdv_usd: string | null;
3471
3148
  pool_current_liquidity: string;
3472
3149
  pool_current_tick: number;
3473
3150
  pool_last_epoch: number;
3474
3151
  pool_current_market_cap: string;
3475
- pool_current_market_cap_usd: string | null;
3476
3152
  pool_current_fees_accrued: string;
3477
3153
  pool_current_total_proceeds: string;
3478
3154
  pool_current_total_tokens_sold: string;
@@ -3487,11 +3163,6 @@ declare const assetContract: {
3487
3163
  pool_config_ending_time: string;
3488
3164
  pool_migration_timestamp: Date | null;
3489
3165
  pool_type: string;
3490
- pool_volume_24h_base: string | null;
3491
- pool_volume_24h_quote: string | null;
3492
- pool_volume_24h_usd: string | null;
3493
- pool_volume_24h_swap_count: number | null;
3494
- pool_volume_last_updated: string | null;
3495
3166
  pool_market_data: {
3496
3167
  pool_liquidity: string | null;
3497
3168
  pool_market_cap: string | null;
@@ -3531,19 +3202,12 @@ declare const assetContract: {
3531
3202
  pool_current_price: string;
3532
3203
  pool_current_sqrt_price: string;
3533
3204
  pool_current_fdv: string;
3534
- pool_current_fdv_usd: string | null;
3535
3205
  pool_current_liquidity: string;
3536
3206
  pool_current_tick: number;
3537
3207
  pool_current_market_cap: string;
3538
- pool_current_market_cap_usd: string | null;
3539
3208
  pool_address: `0x${string}`;
3540
3209
  pool_migration_timestamp: Date | null;
3541
3210
  pool_type: string;
3542
- pool_volume_24h_base: string | null;
3543
- pool_volume_24h_quote: string | null;
3544
- pool_volume_24h_usd: string | null;
3545
- pool_volume_24h_swap_count: number | null;
3546
- pool_volume_last_updated: string | null;
3547
3211
  pool_market_data: {
3548
3212
  pool_liquidity: string | null;
3549
3213
  pool_market_cap: string | null;
@@ -3592,12 +3256,10 @@ declare const assetContract: {
3592
3256
  pool_current_price: string;
3593
3257
  pool_current_sqrt_price: string;
3594
3258
  pool_current_fdv: string;
3595
- pool_current_fdv_usd: string | null;
3596
3259
  pool_current_liquidity: string;
3597
3260
  pool_current_tick: number;
3598
3261
  pool_last_epoch: number;
3599
3262
  pool_current_market_cap: string;
3600
- pool_current_market_cap_usd: string | null;
3601
3263
  pool_current_fees_accrued: string;
3602
3264
  pool_current_total_proceeds: string;
3603
3265
  pool_current_total_tokens_sold: string;
@@ -3612,11 +3274,6 @@ declare const assetContract: {
3612
3274
  pool_config_ending_time: string;
3613
3275
  pool_migration_timestamp: Date | null;
3614
3276
  pool_type: string;
3615
- pool_volume_24h_base: string | null;
3616
- pool_volume_24h_quote: string | null;
3617
- pool_volume_24h_usd: string | null;
3618
- pool_volume_24h_swap_count: number | null;
3619
- pool_volume_last_updated: string | null;
3620
3277
  base_token: {
3621
3278
  token_address: string;
3622
3279
  token_name: string;
@@ -3649,19 +3306,12 @@ declare const assetContract: {
3649
3306
  pool_current_price: string;
3650
3307
  pool_current_sqrt_price: string;
3651
3308
  pool_current_fdv: string;
3652
- pool_current_fdv_usd: string | null;
3653
3309
  pool_current_liquidity: string;
3654
3310
  pool_current_tick: number;
3655
3311
  pool_current_market_cap: string;
3656
- pool_current_market_cap_usd: string | null;
3657
3312
  pool_address: string;
3658
3313
  pool_migration_timestamp: Date | null;
3659
3314
  pool_type: string;
3660
- pool_volume_24h_base: string | null;
3661
- pool_volume_24h_quote: string | null;
3662
- pool_volume_24h_usd: string | null;
3663
- pool_volume_24h_swap_count: number | null;
3664
- pool_volume_last_updated: string | null;
3665
3315
  base_token: {
3666
3316
  token_address: string;
3667
3317
  token_name: string;
@@ -3727,12 +3377,10 @@ declare const assetContract: {
3727
3377
  pool_current_price: z.ZodString;
3728
3378
  pool_current_sqrt_price: z.ZodString;
3729
3379
  pool_current_fdv: z.ZodString;
3730
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
3731
3380
  pool_current_liquidity: z.ZodString;
3732
3381
  pool_current_tick: z.ZodNumber;
3733
3382
  pool_last_epoch: z.ZodNumber;
3734
3383
  pool_current_market_cap: z.ZodString;
3735
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
3736
3384
  pool_current_fees_accrued: z.ZodString;
3737
3385
  pool_current_total_proceeds: z.ZodString;
3738
3386
  pool_current_total_tokens_sold: z.ZodString;
@@ -3747,11 +3395,6 @@ declare const assetContract: {
3747
3395
  pool_config_ending_time: z.ZodString;
3748
3396
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
3749
3397
  pool_type: z.ZodString;
3750
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
3751
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
3752
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
3753
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
3754
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
3755
3398
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
3756
3399
  pool_liquidity: z.ZodNullable<z.ZodString>;
3757
3400
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -3912,12 +3555,10 @@ declare const assetContract: {
3912
3555
  pool_current_price: string;
3913
3556
  pool_current_sqrt_price: string;
3914
3557
  pool_current_fdv: string;
3915
- pool_current_fdv_usd: string | null;
3916
3558
  pool_current_liquidity: string;
3917
3559
  pool_current_tick: number;
3918
3560
  pool_last_epoch: number;
3919
3561
  pool_current_market_cap: string;
3920
- pool_current_market_cap_usd: string | null;
3921
3562
  pool_current_fees_accrued: string;
3922
3563
  pool_current_total_proceeds: string;
3923
3564
  pool_current_total_tokens_sold: string;
@@ -3932,11 +3573,6 @@ declare const assetContract: {
3932
3573
  pool_config_ending_time: string;
3933
3574
  pool_migration_timestamp: Date | null;
3934
3575
  pool_type: string;
3935
- pool_volume_24h_base: string | null;
3936
- pool_volume_24h_quote: string | null;
3937
- pool_volume_24h_usd: string | null;
3938
- pool_volume_24h_swap_count: number | null;
3939
- pool_volume_last_updated: string | null;
3940
3576
  pool_market_data: {
3941
3577
  pool_liquidity: string | null;
3942
3578
  pool_market_cap: string | null;
@@ -3975,12 +3611,10 @@ declare const assetContract: {
3975
3611
  pool_current_price: string;
3976
3612
  pool_current_sqrt_price: string;
3977
3613
  pool_current_fdv: string;
3978
- pool_current_fdv_usd: string | null;
3979
3614
  pool_current_liquidity: string;
3980
3615
  pool_current_tick: number;
3981
3616
  pool_last_epoch: number;
3982
3617
  pool_current_market_cap: string;
3983
- pool_current_market_cap_usd: string | null;
3984
3618
  pool_current_fees_accrued: string;
3985
3619
  pool_current_total_proceeds: string;
3986
3620
  pool_current_total_tokens_sold: string;
@@ -3995,11 +3629,6 @@ declare const assetContract: {
3995
3629
  pool_config_ending_time: string;
3996
3630
  pool_migration_timestamp: Date | null;
3997
3631
  pool_type: string;
3998
- pool_volume_24h_base: string | null;
3999
- pool_volume_24h_quote: string | null;
4000
- pool_volume_24h_usd: string | null;
4001
- pool_volume_24h_swap_count: number | null;
4002
- pool_volume_last_updated: string | null;
4003
3632
  base_token: {
4004
3633
  token_address: string;
4005
3634
  token_name: string;
@@ -4032,19 +3661,12 @@ declare const assetContract: {
4032
3661
  pool_current_price: z.ZodString;
4033
3662
  pool_current_sqrt_price: z.ZodString;
4034
3663
  pool_current_fdv: z.ZodString;
4035
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
4036
3664
  pool_current_liquidity: z.ZodString;
4037
3665
  pool_current_tick: z.ZodNumber;
4038
3666
  pool_current_market_cap: z.ZodString;
4039
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
4040
3667
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
4041
3668
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
4042
3669
  pool_type: z.ZodString;
4043
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
4044
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
4045
- pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
4046
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
4047
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
4048
3670
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
4049
3671
  pool_liquidity: z.ZodNullable<z.ZodString>;
4050
3672
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -4208,19 +3830,12 @@ declare const assetContract: {
4208
3830
  pool_current_price: string;
4209
3831
  pool_current_sqrt_price: string;
4210
3832
  pool_current_fdv: string;
4211
- pool_current_fdv_usd: string | null;
4212
3833
  pool_current_liquidity: string;
4213
3834
  pool_current_tick: number;
4214
3835
  pool_current_market_cap: string;
4215
- pool_current_market_cap_usd: string | null;
4216
3836
  pool_address: `0x${string}`;
4217
3837
  pool_migration_timestamp: Date | null;
4218
3838
  pool_type: string;
4219
- pool_volume_24h_base: string | null;
4220
- pool_volume_24h_quote: string | null;
4221
- pool_volume_24h_usd: string | null;
4222
- pool_volume_24h_swap_count: number | null;
4223
- pool_volume_last_updated: string | null;
4224
3839
  pool_market_data: {
4225
3840
  pool_liquidity: string | null;
4226
3841
  pool_market_cap: string | null;
@@ -4260,19 +3875,12 @@ declare const assetContract: {
4260
3875
  pool_current_price: string;
4261
3876
  pool_current_sqrt_price: string;
4262
3877
  pool_current_fdv: string;
4263
- pool_current_fdv_usd: string | null;
4264
3878
  pool_current_liquidity: string;
4265
3879
  pool_current_tick: number;
4266
3880
  pool_current_market_cap: string;
4267
- pool_current_market_cap_usd: string | null;
4268
3881
  pool_address: string;
4269
3882
  pool_migration_timestamp: Date | null;
4270
3883
  pool_type: string;
4271
- pool_volume_24h_base: string | null;
4272
- pool_volume_24h_quote: string | null;
4273
- pool_volume_24h_usd: string | null;
4274
- pool_volume_24h_swap_count: number | null;
4275
- pool_volume_last_updated: string | null;
4276
3884
  base_token: {
4277
3885
  token_address: string;
4278
3886
  token_name: string;
@@ -4313,12 +3921,10 @@ declare const assetContract: {
4313
3921
  pool_current_price: string;
4314
3922
  pool_current_sqrt_price: string;
4315
3923
  pool_current_fdv: string;
4316
- pool_current_fdv_usd: string | null;
4317
3924
  pool_current_liquidity: string;
4318
3925
  pool_current_tick: number;
4319
3926
  pool_last_epoch: number;
4320
3927
  pool_current_market_cap: string;
4321
- pool_current_market_cap_usd: string | null;
4322
3928
  pool_current_fees_accrued: string;
4323
3929
  pool_current_total_proceeds: string;
4324
3930
  pool_current_total_tokens_sold: string;
@@ -4333,11 +3939,6 @@ declare const assetContract: {
4333
3939
  pool_config_ending_time: string;
4334
3940
  pool_migration_timestamp: Date | null;
4335
3941
  pool_type: string;
4336
- pool_volume_24h_base: string | null;
4337
- pool_volume_24h_quote: string | null;
4338
- pool_volume_24h_usd: string | null;
4339
- pool_volume_24h_swap_count: number | null;
4340
- pool_volume_last_updated: string | null;
4341
3942
  pool_market_data: {
4342
3943
  pool_liquidity: string | null;
4343
3944
  pool_market_cap: string | null;
@@ -4377,19 +3978,12 @@ declare const assetContract: {
4377
3978
  pool_current_price: string;
4378
3979
  pool_current_sqrt_price: string;
4379
3980
  pool_current_fdv: string;
4380
- pool_current_fdv_usd: string | null;
4381
3981
  pool_current_liquidity: string;
4382
3982
  pool_current_tick: number;
4383
3983
  pool_current_market_cap: string;
4384
- pool_current_market_cap_usd: string | null;
4385
3984
  pool_address: `0x${string}`;
4386
3985
  pool_migration_timestamp: Date | null;
4387
3986
  pool_type: string;
4388
- pool_volume_24h_base: string | null;
4389
- pool_volume_24h_quote: string | null;
4390
- pool_volume_24h_usd: string | null;
4391
- pool_volume_24h_swap_count: number | null;
4392
- pool_volume_last_updated: string | null;
4393
3987
  pool_market_data: {
4394
3988
  pool_liquidity: string | null;
4395
3989
  pool_market_cap: string | null;
@@ -4436,12 +4030,10 @@ declare const assetContract: {
4436
4030
  pool_current_price: string;
4437
4031
  pool_current_sqrt_price: string;
4438
4032
  pool_current_fdv: string;
4439
- pool_current_fdv_usd: string | null;
4440
4033
  pool_current_liquidity: string;
4441
4034
  pool_current_tick: number;
4442
4035
  pool_last_epoch: number;
4443
4036
  pool_current_market_cap: string;
4444
- pool_current_market_cap_usd: string | null;
4445
4037
  pool_current_fees_accrued: string;
4446
4038
  pool_current_total_proceeds: string;
4447
4039
  pool_current_total_tokens_sold: string;
@@ -4456,11 +4048,6 @@ declare const assetContract: {
4456
4048
  pool_config_ending_time: string;
4457
4049
  pool_migration_timestamp: Date | null;
4458
4050
  pool_type: string;
4459
- pool_volume_24h_base: string | null;
4460
- pool_volume_24h_quote: string | null;
4461
- pool_volume_24h_usd: string | null;
4462
- pool_volume_24h_swap_count: number | null;
4463
- pool_volume_last_updated: string | null;
4464
4051
  base_token: {
4465
4052
  token_address: string;
4466
4053
  token_name: string;
@@ -4493,19 +4080,12 @@ declare const assetContract: {
4493
4080
  pool_current_price: string;
4494
4081
  pool_current_sqrt_price: string;
4495
4082
  pool_current_fdv: string;
4496
- pool_current_fdv_usd: string | null;
4497
4083
  pool_current_liquidity: string;
4498
4084
  pool_current_tick: number;
4499
4085
  pool_current_market_cap: string;
4500
- pool_current_market_cap_usd: string | null;
4501
4086
  pool_address: string;
4502
4087
  pool_migration_timestamp: Date | null;
4503
4088
  pool_type: string;
4504
- pool_volume_24h_base: string | null;
4505
- pool_volume_24h_quote: string | null;
4506
- pool_volume_24h_usd: string | null;
4507
- pool_volume_24h_swap_count: number | null;
4508
- pool_volume_last_updated: string | null;
4509
4089
  base_token: {
4510
4090
  token_address: string;
4511
4091
  token_name: string;
@@ -4547,12 +4127,10 @@ declare const assetContract: {
4547
4127
  pool_current_price: string;
4548
4128
  pool_current_sqrt_price: string;
4549
4129
  pool_current_fdv: string;
4550
- pool_current_fdv_usd: string | null;
4551
4130
  pool_current_liquidity: string;
4552
4131
  pool_current_tick: number;
4553
4132
  pool_last_epoch: number;
4554
4133
  pool_current_market_cap: string;
4555
- pool_current_market_cap_usd: string | null;
4556
4134
  pool_current_fees_accrued: string;
4557
4135
  pool_current_total_proceeds: string;
4558
4136
  pool_current_total_tokens_sold: string;
@@ -4567,11 +4145,6 @@ declare const assetContract: {
4567
4145
  pool_config_ending_time: string;
4568
4146
  pool_migration_timestamp: Date | null;
4569
4147
  pool_type: string;
4570
- pool_volume_24h_base: string | null;
4571
- pool_volume_24h_quote: string | null;
4572
- pool_volume_24h_usd: string | null;
4573
- pool_volume_24h_swap_count: number | null;
4574
- pool_volume_last_updated: string | null;
4575
4148
  pool_market_data: {
4576
4149
  pool_liquidity: string | null;
4577
4150
  pool_market_cap: string | null;
@@ -4611,19 +4184,12 @@ declare const assetContract: {
4611
4184
  pool_current_price: string;
4612
4185
  pool_current_sqrt_price: string;
4613
4186
  pool_current_fdv: string;
4614
- pool_current_fdv_usd: string | null;
4615
4187
  pool_current_liquidity: string;
4616
4188
  pool_current_tick: number;
4617
4189
  pool_current_market_cap: string;
4618
- pool_current_market_cap_usd: string | null;
4619
4190
  pool_address: `0x${string}`;
4620
4191
  pool_migration_timestamp: Date | null;
4621
4192
  pool_type: string;
4622
- pool_volume_24h_base: string | null;
4623
- pool_volume_24h_quote: string | null;
4624
- pool_volume_24h_usd: string | null;
4625
- pool_volume_24h_swap_count: number | null;
4626
- pool_volume_last_updated: string | null;
4627
4193
  pool_market_data: {
4628
4194
  pool_liquidity: string | null;
4629
4195
  pool_market_cap: string | null;
@@ -4670,12 +4236,10 @@ declare const assetContract: {
4670
4236
  pool_current_price: string;
4671
4237
  pool_current_sqrt_price: string;
4672
4238
  pool_current_fdv: string;
4673
- pool_current_fdv_usd: string | null;
4674
4239
  pool_current_liquidity: string;
4675
4240
  pool_current_tick: number;
4676
4241
  pool_last_epoch: number;
4677
4242
  pool_current_market_cap: string;
4678
- pool_current_market_cap_usd: string | null;
4679
4243
  pool_current_fees_accrued: string;
4680
4244
  pool_current_total_proceeds: string;
4681
4245
  pool_current_total_tokens_sold: string;
@@ -4690,11 +4254,6 @@ declare const assetContract: {
4690
4254
  pool_config_ending_time: string;
4691
4255
  pool_migration_timestamp: Date | null;
4692
4256
  pool_type: string;
4693
- pool_volume_24h_base: string | null;
4694
- pool_volume_24h_quote: string | null;
4695
- pool_volume_24h_usd: string | null;
4696
- pool_volume_24h_swap_count: number | null;
4697
- pool_volume_last_updated: string | null;
4698
4257
  base_token: {
4699
4258
  token_address: string;
4700
4259
  token_name: string;
@@ -4727,19 +4286,12 @@ declare const assetContract: {
4727
4286
  pool_current_price: string;
4728
4287
  pool_current_sqrt_price: string;
4729
4288
  pool_current_fdv: string;
4730
- pool_current_fdv_usd: string | null;
4731
4289
  pool_current_liquidity: string;
4732
4290
  pool_current_tick: number;
4733
4291
  pool_current_market_cap: string;
4734
- pool_current_market_cap_usd: string | null;
4735
4292
  pool_address: string;
4736
4293
  pool_migration_timestamp: Date | null;
4737
4294
  pool_type: string;
4738
- pool_volume_24h_base: string | null;
4739
- pool_volume_24h_quote: string | null;
4740
- pool_volume_24h_usd: string | null;
4741
- pool_volume_24h_swap_count: number | null;
4742
- pool_volume_last_updated: string | null;
4743
4295
  base_token: {
4744
4296
  token_address: string;
4745
4297
  token_name: string;
@@ -4783,12 +4335,10 @@ declare const assetContract: {
4783
4335
  pool_current_price: string;
4784
4336
  pool_current_sqrt_price: string;
4785
4337
  pool_current_fdv: string;
4786
- pool_current_fdv_usd: string | null;
4787
4338
  pool_current_liquidity: string;
4788
4339
  pool_current_tick: number;
4789
4340
  pool_last_epoch: number;
4790
4341
  pool_current_market_cap: string;
4791
- pool_current_market_cap_usd: string | null;
4792
4342
  pool_current_fees_accrued: string;
4793
4343
  pool_current_total_proceeds: string;
4794
4344
  pool_current_total_tokens_sold: string;
@@ -4803,11 +4353,6 @@ declare const assetContract: {
4803
4353
  pool_config_ending_time: string;
4804
4354
  pool_migration_timestamp: Date | null;
4805
4355
  pool_type: string;
4806
- pool_volume_24h_base: string | null;
4807
- pool_volume_24h_quote: string | null;
4808
- pool_volume_24h_usd: string | null;
4809
- pool_volume_24h_swap_count: number | null;
4810
- pool_volume_last_updated: string | null;
4811
4356
  pool_market_data: {
4812
4357
  pool_liquidity: string | null;
4813
4358
  pool_market_cap: string | null;
@@ -4847,19 +4392,12 @@ declare const assetContract: {
4847
4392
  pool_current_price: string;
4848
4393
  pool_current_sqrt_price: string;
4849
4394
  pool_current_fdv: string;
4850
- pool_current_fdv_usd: string | null;
4851
4395
  pool_current_liquidity: string;
4852
4396
  pool_current_tick: number;
4853
4397
  pool_current_market_cap: string;
4854
- pool_current_market_cap_usd: string | null;
4855
4398
  pool_address: `0x${string}`;
4856
4399
  pool_migration_timestamp: Date | null;
4857
4400
  pool_type: string;
4858
- pool_volume_24h_base: string | null;
4859
- pool_volume_24h_quote: string | null;
4860
- pool_volume_24h_usd: string | null;
4861
- pool_volume_24h_swap_count: number | null;
4862
- pool_volume_last_updated: string | null;
4863
4401
  pool_market_data: {
4864
4402
  pool_liquidity: string | null;
4865
4403
  pool_market_cap: string | null;
@@ -4908,12 +4446,10 @@ declare const assetContract: {
4908
4446
  pool_current_price: string;
4909
4447
  pool_current_sqrt_price: string;
4910
4448
  pool_current_fdv: string;
4911
- pool_current_fdv_usd: string | null;
4912
4449
  pool_current_liquidity: string;
4913
4450
  pool_current_tick: number;
4914
4451
  pool_last_epoch: number;
4915
4452
  pool_current_market_cap: string;
4916
- pool_current_market_cap_usd: string | null;
4917
4453
  pool_current_fees_accrued: string;
4918
4454
  pool_current_total_proceeds: string;
4919
4455
  pool_current_total_tokens_sold: string;
@@ -4928,11 +4464,6 @@ declare const assetContract: {
4928
4464
  pool_config_ending_time: string;
4929
4465
  pool_migration_timestamp: Date | null;
4930
4466
  pool_type: string;
4931
- pool_volume_24h_base: string | null;
4932
- pool_volume_24h_quote: string | null;
4933
- pool_volume_24h_usd: string | null;
4934
- pool_volume_24h_swap_count: number | null;
4935
- pool_volume_last_updated: string | null;
4936
4467
  base_token: {
4937
4468
  token_address: string;
4938
4469
  token_name: string;
@@ -4965,19 +4496,12 @@ declare const assetContract: {
4965
4496
  pool_current_price: string;
4966
4497
  pool_current_sqrt_price: string;
4967
4498
  pool_current_fdv: string;
4968
- pool_current_fdv_usd: string | null;
4969
4499
  pool_current_liquidity: string;
4970
4500
  pool_current_tick: number;
4971
4501
  pool_current_market_cap: string;
4972
- pool_current_market_cap_usd: string | null;
4973
4502
  pool_address: string;
4974
4503
  pool_migration_timestamp: Date | null;
4975
4504
  pool_type: string;
4976
- pool_volume_24h_base: string | null;
4977
- pool_volume_24h_quote: string | null;
4978
- pool_volume_24h_usd: string | null;
4979
- pool_volume_24h_swap_count: number | null;
4980
- pool_volume_last_updated: string | null;
4981
4505
  base_token: {
4982
4506
  token_address: string;
4983
4507
  token_name: string;