@longdotxyz/shared 0.0.96 → 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.
@@ -29,10 +29,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
29
29
  pool_config_ending_time: z.ZodString;
30
30
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
31
31
  pool_type: z.ZodString;
32
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
33
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
34
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
35
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
36
32
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
37
33
  pool_liquidity: z.ZodNullable<z.ZodString>;
38
34
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -211,10 +207,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
211
207
  pool_config_ending_time: string;
212
208
  pool_migration_timestamp: Date | null;
213
209
  pool_type: string;
214
- pool_volume_24h_base: string | null;
215
- pool_volume_24h_quote: string | null;
216
- pool_volume_24h_swap_count: number | null;
217
- pool_volume_last_updated: string | null;
218
210
  pool_market_data: {
219
211
  pool_liquidity: string | null;
220
212
  pool_market_cap: string | null;
@@ -271,10 +263,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
271
263
  pool_config_ending_time: string;
272
264
  pool_migration_timestamp: Date | null;
273
265
  pool_type: string;
274
- pool_volume_24h_base: string | null;
275
- pool_volume_24h_quote: string | null;
276
- pool_volume_24h_swap_count: number | null;
277
- pool_volume_last_updated: string | null;
278
266
  base_token: {
279
267
  token_address: string;
280
268
  token_name: string;
@@ -313,10 +301,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
313
301
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
314
302
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
315
303
  pool_type: z.ZodString;
316
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
317
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
318
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
319
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
320
304
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
321
305
  pool_liquidity: z.ZodNullable<z.ZodString>;
322
306
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -486,10 +470,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
486
470
  pool_address: `0x${string}`;
487
471
  pool_migration_timestamp: Date | null;
488
472
  pool_type: string;
489
- pool_volume_24h_base: string | null;
490
- pool_volume_24h_quote: string | null;
491
- pool_volume_24h_swap_count: number | null;
492
- pool_volume_last_updated: string | null;
493
473
  pool_market_data: {
494
474
  pool_liquidity: string | null;
495
475
  pool_market_cap: string | null;
@@ -535,10 +515,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
535
515
  pool_address: string;
536
516
  pool_migration_timestamp: Date | null;
537
517
  pool_type: string;
538
- pool_volume_24h_base: string | null;
539
- pool_volume_24h_quote: string | null;
540
- pool_volume_24h_swap_count: number | null;
541
- pool_volume_last_updated: string | null;
542
518
  base_token: {
543
519
  token_address: string;
544
520
  token_name: string;
@@ -597,10 +573,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
597
573
  pool_config_ending_time: string;
598
574
  pool_migration_timestamp: Date | null;
599
575
  pool_type: string;
600
- pool_volume_24h_base: string | null;
601
- pool_volume_24h_quote: string | null;
602
- pool_volume_24h_swap_count: number | null;
603
- pool_volume_last_updated: string | null;
604
576
  pool_market_data: {
605
577
  pool_liquidity: string | null;
606
578
  pool_market_cap: string | null;
@@ -646,10 +618,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
646
618
  pool_address: `0x${string}`;
647
619
  pool_migration_timestamp: Date | null;
648
620
  pool_type: string;
649
- pool_volume_24h_base: string | null;
650
- pool_volume_24h_quote: string | null;
651
- pool_volume_24h_swap_count: number | null;
652
- pool_volume_last_updated: string | null;
653
621
  pool_market_data: {
654
622
  pool_liquidity: string | null;
655
623
  pool_market_cap: string | null;
@@ -714,10 +682,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
714
682
  pool_config_ending_time: string;
715
683
  pool_migration_timestamp: Date | null;
716
684
  pool_type: string;
717
- pool_volume_24h_base: string | null;
718
- pool_volume_24h_quote: string | null;
719
- pool_volume_24h_swap_count: number | null;
720
- pool_volume_last_updated: string | null;
721
685
  base_token: {
722
686
  token_address: string;
723
687
  token_name: string;
@@ -756,10 +720,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
756
720
  pool_address: string;
757
721
  pool_migration_timestamp: Date | null;
758
722
  pool_type: string;
759
- pool_volume_24h_base: string | null;
760
- pool_volume_24h_quote: string | null;
761
- pool_volume_24h_swap_count: number | null;
762
- pool_volume_last_updated: string | null;
763
723
  base_token: {
764
724
  token_address: string;
765
725
  token_name: string;
@@ -819,10 +779,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
819
779
  pool_config_ending_time: string;
820
780
  pool_migration_timestamp: Date | null;
821
781
  pool_type: string;
822
- pool_volume_24h_base: string | null;
823
- pool_volume_24h_quote: string | null;
824
- pool_volume_24h_swap_count: number | null;
825
- pool_volume_last_updated: string | null;
826
782
  pool_market_data: {
827
783
  pool_liquidity: string | null;
828
784
  pool_market_cap: string | null;
@@ -868,10 +824,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
868
824
  pool_address: `0x${string}`;
869
825
  pool_migration_timestamp: Date | null;
870
826
  pool_type: string;
871
- pool_volume_24h_base: string | null;
872
- pool_volume_24h_quote: string | null;
873
- pool_volume_24h_swap_count: number | null;
874
- pool_volume_last_updated: string | null;
875
827
  pool_market_data: {
876
828
  pool_liquidity: string | null;
877
829
  pool_market_cap: string | null;
@@ -936,10 +888,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
936
888
  pool_config_ending_time: string;
937
889
  pool_migration_timestamp: Date | null;
938
890
  pool_type: string;
939
- pool_volume_24h_base: string | null;
940
- pool_volume_24h_quote: string | null;
941
- pool_volume_24h_swap_count: number | null;
942
- pool_volume_last_updated: string | null;
943
891
  base_token: {
944
892
  token_address: string;
945
893
  token_name: string;
@@ -978,10 +926,6 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
978
926
  pool_address: string;
979
927
  pool_migration_timestamp: Date | null;
980
928
  pool_type: string;
981
- pool_volume_24h_base: string | null;
982
- pool_volume_24h_quote: string | null;
983
- pool_volume_24h_swap_count: number | null;
984
- pool_volume_last_updated: string | null;
985
929
  base_token: {
986
930
  token_address: string;
987
931
  token_name: string;
@@ -1072,10 +1016,6 @@ declare const assetContract: {
1072
1016
  pool_config_ending_time: z.ZodString;
1073
1017
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1074
1018
  pool_type: z.ZodString;
1075
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
1076
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
1077
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
1078
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
1079
1019
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
1080
1020
  pool_liquidity: z.ZodNullable<z.ZodString>;
1081
1021
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -1254,10 +1194,6 @@ declare const assetContract: {
1254
1194
  pool_config_ending_time: string;
1255
1195
  pool_migration_timestamp: Date | null;
1256
1196
  pool_type: string;
1257
- pool_volume_24h_base: string | null;
1258
- pool_volume_24h_quote: string | null;
1259
- pool_volume_24h_swap_count: number | null;
1260
- pool_volume_last_updated: string | null;
1261
1197
  pool_market_data: {
1262
1198
  pool_liquidity: string | null;
1263
1199
  pool_market_cap: string | null;
@@ -1314,10 +1250,6 @@ declare const assetContract: {
1314
1250
  pool_config_ending_time: string;
1315
1251
  pool_migration_timestamp: Date | null;
1316
1252
  pool_type: string;
1317
- pool_volume_24h_base: string | null;
1318
- pool_volume_24h_quote: string | null;
1319
- pool_volume_24h_swap_count: number | null;
1320
- pool_volume_last_updated: string | null;
1321
1253
  base_token: {
1322
1254
  token_address: string;
1323
1255
  token_name: string;
@@ -1356,10 +1288,6 @@ declare const assetContract: {
1356
1288
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1357
1289
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1358
1290
  pool_type: z.ZodString;
1359
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
1360
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
1361
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
1362
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
1363
1291
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
1364
1292
  pool_liquidity: z.ZodNullable<z.ZodString>;
1365
1293
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -1529,10 +1457,6 @@ declare const assetContract: {
1529
1457
  pool_address: `0x${string}`;
1530
1458
  pool_migration_timestamp: Date | null;
1531
1459
  pool_type: string;
1532
- pool_volume_24h_base: string | null;
1533
- pool_volume_24h_quote: string | null;
1534
- pool_volume_24h_swap_count: number | null;
1535
- pool_volume_last_updated: string | null;
1536
1460
  pool_market_data: {
1537
1461
  pool_liquidity: string | null;
1538
1462
  pool_market_cap: string | null;
@@ -1578,10 +1502,6 @@ declare const assetContract: {
1578
1502
  pool_address: string;
1579
1503
  pool_migration_timestamp: Date | null;
1580
1504
  pool_type: string;
1581
- pool_volume_24h_base: string | null;
1582
- pool_volume_24h_quote: string | null;
1583
- pool_volume_24h_swap_count: number | null;
1584
- pool_volume_last_updated: string | null;
1585
1505
  base_token: {
1586
1506
  token_address: string;
1587
1507
  token_name: string;
@@ -1640,10 +1560,6 @@ declare const assetContract: {
1640
1560
  pool_config_ending_time: string;
1641
1561
  pool_migration_timestamp: Date | null;
1642
1562
  pool_type: string;
1643
- pool_volume_24h_base: string | null;
1644
- pool_volume_24h_quote: string | null;
1645
- pool_volume_24h_swap_count: number | null;
1646
- pool_volume_last_updated: string | null;
1647
1563
  pool_market_data: {
1648
1564
  pool_liquidity: string | null;
1649
1565
  pool_market_cap: string | null;
@@ -1689,10 +1605,6 @@ declare const assetContract: {
1689
1605
  pool_address: `0x${string}`;
1690
1606
  pool_migration_timestamp: Date | null;
1691
1607
  pool_type: string;
1692
- pool_volume_24h_base: string | null;
1693
- pool_volume_24h_quote: string | null;
1694
- pool_volume_24h_swap_count: number | null;
1695
- pool_volume_last_updated: string | null;
1696
1608
  pool_market_data: {
1697
1609
  pool_liquidity: string | null;
1698
1610
  pool_market_cap: string | null;
@@ -1757,10 +1669,6 @@ declare const assetContract: {
1757
1669
  pool_config_ending_time: string;
1758
1670
  pool_migration_timestamp: Date | null;
1759
1671
  pool_type: string;
1760
- pool_volume_24h_base: string | null;
1761
- pool_volume_24h_quote: string | null;
1762
- pool_volume_24h_swap_count: number | null;
1763
- pool_volume_last_updated: string | null;
1764
1672
  base_token: {
1765
1673
  token_address: string;
1766
1674
  token_name: string;
@@ -1799,10 +1707,6 @@ declare const assetContract: {
1799
1707
  pool_address: string;
1800
1708
  pool_migration_timestamp: Date | null;
1801
1709
  pool_type: string;
1802
- pool_volume_24h_base: string | null;
1803
- pool_volume_24h_quote: string | null;
1804
- pool_volume_24h_swap_count: number | null;
1805
- pool_volume_last_updated: string | null;
1806
1710
  base_token: {
1807
1711
  token_address: string;
1808
1712
  token_name: string;
@@ -1862,10 +1766,6 @@ declare const assetContract: {
1862
1766
  pool_config_ending_time: string;
1863
1767
  pool_migration_timestamp: Date | null;
1864
1768
  pool_type: string;
1865
- pool_volume_24h_base: string | null;
1866
- pool_volume_24h_quote: string | null;
1867
- pool_volume_24h_swap_count: number | null;
1868
- pool_volume_last_updated: string | null;
1869
1769
  pool_market_data: {
1870
1770
  pool_liquidity: string | null;
1871
1771
  pool_market_cap: string | null;
@@ -1911,10 +1811,6 @@ declare const assetContract: {
1911
1811
  pool_address: `0x${string}`;
1912
1812
  pool_migration_timestamp: Date | null;
1913
1813
  pool_type: string;
1914
- pool_volume_24h_base: string | null;
1915
- pool_volume_24h_quote: string | null;
1916
- pool_volume_24h_swap_count: number | null;
1917
- pool_volume_last_updated: string | null;
1918
1814
  pool_market_data: {
1919
1815
  pool_liquidity: string | null;
1920
1816
  pool_market_cap: string | null;
@@ -1979,10 +1875,6 @@ declare const assetContract: {
1979
1875
  pool_config_ending_time: string;
1980
1876
  pool_migration_timestamp: Date | null;
1981
1877
  pool_type: string;
1982
- pool_volume_24h_base: string | null;
1983
- pool_volume_24h_quote: string | null;
1984
- pool_volume_24h_swap_count: number | null;
1985
- pool_volume_last_updated: string | null;
1986
1878
  base_token: {
1987
1879
  token_address: string;
1988
1880
  token_name: string;
@@ -2021,10 +1913,6 @@ declare const assetContract: {
2021
1913
  pool_address: string;
2022
1914
  pool_migration_timestamp: Date | null;
2023
1915
  pool_type: string;
2024
- pool_volume_24h_base: string | null;
2025
- pool_volume_24h_quote: string | null;
2026
- pool_volume_24h_swap_count: number | null;
2027
- pool_volume_last_updated: string | null;
2028
1916
  base_token: {
2029
1917
  token_address: string;
2030
1918
  token_name: string;
@@ -2086,10 +1974,6 @@ declare const assetContract: {
2086
1974
  pool_config_ending_time: string;
2087
1975
  pool_migration_timestamp: Date | null;
2088
1976
  pool_type: string;
2089
- pool_volume_24h_base: string | null;
2090
- pool_volume_24h_quote: string | null;
2091
- pool_volume_24h_swap_count: number | null;
2092
- pool_volume_last_updated: string | null;
2093
1977
  pool_market_data: {
2094
1978
  pool_liquidity: string | null;
2095
1979
  pool_market_cap: string | null;
@@ -2135,10 +2019,6 @@ declare const assetContract: {
2135
2019
  pool_address: `0x${string}`;
2136
2020
  pool_migration_timestamp: Date | null;
2137
2021
  pool_type: string;
2138
- pool_volume_24h_base: string | null;
2139
- pool_volume_24h_quote: string | null;
2140
- pool_volume_24h_swap_count: number | null;
2141
- pool_volume_last_updated: string | null;
2142
2022
  pool_market_data: {
2143
2023
  pool_liquidity: string | null;
2144
2024
  pool_market_cap: string | null;
@@ -2205,10 +2085,6 @@ declare const assetContract: {
2205
2085
  pool_config_ending_time: string;
2206
2086
  pool_migration_timestamp: Date | null;
2207
2087
  pool_type: string;
2208
- pool_volume_24h_base: string | null;
2209
- pool_volume_24h_quote: string | null;
2210
- pool_volume_24h_swap_count: number | null;
2211
- pool_volume_last_updated: string | null;
2212
2088
  base_token: {
2213
2089
  token_address: string;
2214
2090
  token_name: string;
@@ -2247,10 +2123,6 @@ declare const assetContract: {
2247
2123
  pool_address: string;
2248
2124
  pool_migration_timestamp: Date | null;
2249
2125
  pool_type: string;
2250
- pool_volume_24h_base: string | null;
2251
- pool_volume_24h_quote: string | null;
2252
- pool_volume_24h_swap_count: number | null;
2253
- pool_volume_last_updated: string | null;
2254
2126
  base_token: {
2255
2127
  token_address: string;
2256
2128
  token_name: string;
@@ -2333,10 +2205,6 @@ declare const assetContract: {
2333
2205
  pool_config_ending_time: z.ZodString;
2334
2206
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2335
2207
  pool_type: z.ZodString;
2336
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
2337
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
2338
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
2339
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
2340
2208
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
2341
2209
  pool_liquidity: z.ZodNullable<z.ZodString>;
2342
2210
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -2515,10 +2383,6 @@ declare const assetContract: {
2515
2383
  pool_config_ending_time: string;
2516
2384
  pool_migration_timestamp: Date | null;
2517
2385
  pool_type: string;
2518
- pool_volume_24h_base: string | null;
2519
- pool_volume_24h_quote: string | null;
2520
- pool_volume_24h_swap_count: number | null;
2521
- pool_volume_last_updated: string | null;
2522
2386
  pool_market_data: {
2523
2387
  pool_liquidity: string | null;
2524
2388
  pool_market_cap: string | null;
@@ -2575,10 +2439,6 @@ declare const assetContract: {
2575
2439
  pool_config_ending_time: string;
2576
2440
  pool_migration_timestamp: Date | null;
2577
2441
  pool_type: string;
2578
- pool_volume_24h_base: string | null;
2579
- pool_volume_24h_quote: string | null;
2580
- pool_volume_24h_swap_count: number | null;
2581
- pool_volume_last_updated: string | null;
2582
2442
  base_token: {
2583
2443
  token_address: string;
2584
2444
  token_name: string;
@@ -2617,10 +2477,6 @@ declare const assetContract: {
2617
2477
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2618
2478
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2619
2479
  pool_type: z.ZodString;
2620
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
2621
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
2622
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
2623
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
2624
2480
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
2625
2481
  pool_liquidity: z.ZodNullable<z.ZodString>;
2626
2482
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -2790,10 +2646,6 @@ declare const assetContract: {
2790
2646
  pool_address: `0x${string}`;
2791
2647
  pool_migration_timestamp: Date | null;
2792
2648
  pool_type: string;
2793
- pool_volume_24h_base: string | null;
2794
- pool_volume_24h_quote: string | null;
2795
- pool_volume_24h_swap_count: number | null;
2796
- pool_volume_last_updated: string | null;
2797
2649
  pool_market_data: {
2798
2650
  pool_liquidity: string | null;
2799
2651
  pool_market_cap: string | null;
@@ -2839,10 +2691,6 @@ declare const assetContract: {
2839
2691
  pool_address: string;
2840
2692
  pool_migration_timestamp: Date | null;
2841
2693
  pool_type: string;
2842
- pool_volume_24h_base: string | null;
2843
- pool_volume_24h_quote: string | null;
2844
- pool_volume_24h_swap_count: number | null;
2845
- pool_volume_last_updated: string | null;
2846
2694
  base_token: {
2847
2695
  token_address: string;
2848
2696
  token_name: string;
@@ -2901,10 +2749,6 @@ declare const assetContract: {
2901
2749
  pool_config_ending_time: string;
2902
2750
  pool_migration_timestamp: Date | null;
2903
2751
  pool_type: string;
2904
- pool_volume_24h_base: string | null;
2905
- pool_volume_24h_quote: string | null;
2906
- pool_volume_24h_swap_count: number | null;
2907
- pool_volume_last_updated: string | null;
2908
2752
  pool_market_data: {
2909
2753
  pool_liquidity: string | null;
2910
2754
  pool_market_cap: string | null;
@@ -2950,10 +2794,6 @@ declare const assetContract: {
2950
2794
  pool_address: `0x${string}`;
2951
2795
  pool_migration_timestamp: Date | null;
2952
2796
  pool_type: string;
2953
- pool_volume_24h_base: string | null;
2954
- pool_volume_24h_quote: string | null;
2955
- pool_volume_24h_swap_count: number | null;
2956
- pool_volume_last_updated: string | null;
2957
2797
  pool_market_data: {
2958
2798
  pool_liquidity: string | null;
2959
2799
  pool_market_cap: string | null;
@@ -3018,10 +2858,6 @@ declare const assetContract: {
3018
2858
  pool_config_ending_time: string;
3019
2859
  pool_migration_timestamp: Date | null;
3020
2860
  pool_type: string;
3021
- pool_volume_24h_base: string | null;
3022
- pool_volume_24h_quote: string | null;
3023
- pool_volume_24h_swap_count: number | null;
3024
- pool_volume_last_updated: string | null;
3025
2861
  base_token: {
3026
2862
  token_address: string;
3027
2863
  token_name: string;
@@ -3060,10 +2896,6 @@ declare const assetContract: {
3060
2896
  pool_address: string;
3061
2897
  pool_migration_timestamp: Date | null;
3062
2898
  pool_type: string;
3063
- pool_volume_24h_base: string | null;
3064
- pool_volume_24h_quote: string | null;
3065
- pool_volume_24h_swap_count: number | null;
3066
- pool_volume_last_updated: string | null;
3067
2899
  base_token: {
3068
2900
  token_address: string;
3069
2901
  token_name: string;
@@ -3123,10 +2955,6 @@ declare const assetContract: {
3123
2955
  pool_config_ending_time: string;
3124
2956
  pool_migration_timestamp: Date | null;
3125
2957
  pool_type: string;
3126
- pool_volume_24h_base: string | null;
3127
- pool_volume_24h_quote: string | null;
3128
- pool_volume_24h_swap_count: number | null;
3129
- pool_volume_last_updated: string | null;
3130
2958
  pool_market_data: {
3131
2959
  pool_liquidity: string | null;
3132
2960
  pool_market_cap: string | null;
@@ -3172,10 +3000,6 @@ declare const assetContract: {
3172
3000
  pool_address: `0x${string}`;
3173
3001
  pool_migration_timestamp: Date | null;
3174
3002
  pool_type: string;
3175
- pool_volume_24h_base: string | null;
3176
- pool_volume_24h_quote: string | null;
3177
- pool_volume_24h_swap_count: number | null;
3178
- pool_volume_last_updated: string | null;
3179
3003
  pool_market_data: {
3180
3004
  pool_liquidity: string | null;
3181
3005
  pool_market_cap: string | null;
@@ -3240,10 +3064,6 @@ declare const assetContract: {
3240
3064
  pool_config_ending_time: string;
3241
3065
  pool_migration_timestamp: Date | null;
3242
3066
  pool_type: string;
3243
- pool_volume_24h_base: string | null;
3244
- pool_volume_24h_quote: string | null;
3245
- pool_volume_24h_swap_count: number | null;
3246
- pool_volume_last_updated: string | null;
3247
3067
  base_token: {
3248
3068
  token_address: string;
3249
3069
  token_name: string;
@@ -3282,10 +3102,6 @@ declare const assetContract: {
3282
3102
  pool_address: string;
3283
3103
  pool_migration_timestamp: Date | null;
3284
3104
  pool_type: string;
3285
- pool_volume_24h_base: string | null;
3286
- pool_volume_24h_quote: string | null;
3287
- pool_volume_24h_swap_count: number | null;
3288
- pool_volume_last_updated: string | null;
3289
3105
  base_token: {
3290
3106
  token_address: string;
3291
3107
  token_name: string;
@@ -3347,10 +3163,6 @@ declare const assetContract: {
3347
3163
  pool_config_ending_time: string;
3348
3164
  pool_migration_timestamp: Date | null;
3349
3165
  pool_type: string;
3350
- pool_volume_24h_base: string | null;
3351
- pool_volume_24h_quote: string | null;
3352
- pool_volume_24h_swap_count: number | null;
3353
- pool_volume_last_updated: string | null;
3354
3166
  pool_market_data: {
3355
3167
  pool_liquidity: string | null;
3356
3168
  pool_market_cap: string | null;
@@ -3396,10 +3208,6 @@ declare const assetContract: {
3396
3208
  pool_address: `0x${string}`;
3397
3209
  pool_migration_timestamp: Date | null;
3398
3210
  pool_type: string;
3399
- pool_volume_24h_base: string | null;
3400
- pool_volume_24h_quote: string | null;
3401
- pool_volume_24h_swap_count: number | null;
3402
- pool_volume_last_updated: string | null;
3403
3211
  pool_market_data: {
3404
3212
  pool_liquidity: string | null;
3405
3213
  pool_market_cap: string | null;
@@ -3466,10 +3274,6 @@ declare const assetContract: {
3466
3274
  pool_config_ending_time: string;
3467
3275
  pool_migration_timestamp: Date | null;
3468
3276
  pool_type: string;
3469
- pool_volume_24h_base: string | null;
3470
- pool_volume_24h_quote: string | null;
3471
- pool_volume_24h_swap_count: number | null;
3472
- pool_volume_last_updated: string | null;
3473
3277
  base_token: {
3474
3278
  token_address: string;
3475
3279
  token_name: string;
@@ -3508,10 +3312,6 @@ declare const assetContract: {
3508
3312
  pool_address: string;
3509
3313
  pool_migration_timestamp: Date | null;
3510
3314
  pool_type: string;
3511
- pool_volume_24h_base: string | null;
3512
- pool_volume_24h_quote: string | null;
3513
- pool_volume_24h_swap_count: number | null;
3514
- pool_volume_last_updated: string | null;
3515
3315
  base_token: {
3516
3316
  token_address: string;
3517
3317
  token_name: string;
@@ -3595,10 +3395,6 @@ declare const assetContract: {
3595
3395
  pool_config_ending_time: z.ZodString;
3596
3396
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
3597
3397
  pool_type: z.ZodString;
3598
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
3599
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
3600
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
3601
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
3602
3398
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
3603
3399
  pool_liquidity: z.ZodNullable<z.ZodString>;
3604
3400
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -3777,10 +3573,6 @@ declare const assetContract: {
3777
3573
  pool_config_ending_time: string;
3778
3574
  pool_migration_timestamp: Date | null;
3779
3575
  pool_type: string;
3780
- pool_volume_24h_base: string | null;
3781
- pool_volume_24h_quote: string | null;
3782
- pool_volume_24h_swap_count: number | null;
3783
- pool_volume_last_updated: string | null;
3784
3576
  pool_market_data: {
3785
3577
  pool_liquidity: string | null;
3786
3578
  pool_market_cap: string | null;
@@ -3837,10 +3629,6 @@ declare const assetContract: {
3837
3629
  pool_config_ending_time: string;
3838
3630
  pool_migration_timestamp: Date | null;
3839
3631
  pool_type: string;
3840
- pool_volume_24h_base: string | null;
3841
- pool_volume_24h_quote: string | null;
3842
- pool_volume_24h_swap_count: number | null;
3843
- pool_volume_last_updated: string | null;
3844
3632
  base_token: {
3845
3633
  token_address: string;
3846
3634
  token_name: string;
@@ -3879,10 +3667,6 @@ declare const assetContract: {
3879
3667
  pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3880
3668
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
3881
3669
  pool_type: z.ZodString;
3882
- pool_volume_24h_base: z.ZodNullable<z.ZodString>;
3883
- pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
3884
- pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
3885
- pool_volume_last_updated: z.ZodNullable<z.ZodString>;
3886
3670
  pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
3887
3671
  pool_liquidity: z.ZodNullable<z.ZodString>;
3888
3672
  pool_market_cap: z.ZodNullable<z.ZodString>;
@@ -4052,10 +3836,6 @@ declare const assetContract: {
4052
3836
  pool_address: `0x${string}`;
4053
3837
  pool_migration_timestamp: Date | null;
4054
3838
  pool_type: string;
4055
- pool_volume_24h_base: string | null;
4056
- pool_volume_24h_quote: string | null;
4057
- pool_volume_24h_swap_count: number | null;
4058
- pool_volume_last_updated: string | null;
4059
3839
  pool_market_data: {
4060
3840
  pool_liquidity: string | null;
4061
3841
  pool_market_cap: string | null;
@@ -4101,10 +3881,6 @@ declare const assetContract: {
4101
3881
  pool_address: string;
4102
3882
  pool_migration_timestamp: Date | null;
4103
3883
  pool_type: string;
4104
- pool_volume_24h_base: string | null;
4105
- pool_volume_24h_quote: string | null;
4106
- pool_volume_24h_swap_count: number | null;
4107
- pool_volume_last_updated: string | null;
4108
3884
  base_token: {
4109
3885
  token_address: string;
4110
3886
  token_name: string;
@@ -4163,10 +3939,6 @@ declare const assetContract: {
4163
3939
  pool_config_ending_time: string;
4164
3940
  pool_migration_timestamp: Date | null;
4165
3941
  pool_type: string;
4166
- pool_volume_24h_base: string | null;
4167
- pool_volume_24h_quote: string | null;
4168
- pool_volume_24h_swap_count: number | null;
4169
- pool_volume_last_updated: string | null;
4170
3942
  pool_market_data: {
4171
3943
  pool_liquidity: string | null;
4172
3944
  pool_market_cap: string | null;
@@ -4212,10 +3984,6 @@ declare const assetContract: {
4212
3984
  pool_address: `0x${string}`;
4213
3985
  pool_migration_timestamp: Date | null;
4214
3986
  pool_type: string;
4215
- pool_volume_24h_base: string | null;
4216
- pool_volume_24h_quote: string | null;
4217
- pool_volume_24h_swap_count: number | null;
4218
- pool_volume_last_updated: string | null;
4219
3987
  pool_market_data: {
4220
3988
  pool_liquidity: string | null;
4221
3989
  pool_market_cap: string | null;
@@ -4280,10 +4048,6 @@ declare const assetContract: {
4280
4048
  pool_config_ending_time: string;
4281
4049
  pool_migration_timestamp: Date | null;
4282
4050
  pool_type: string;
4283
- pool_volume_24h_base: string | null;
4284
- pool_volume_24h_quote: string | null;
4285
- pool_volume_24h_swap_count: number | null;
4286
- pool_volume_last_updated: string | null;
4287
4051
  base_token: {
4288
4052
  token_address: string;
4289
4053
  token_name: string;
@@ -4322,10 +4086,6 @@ declare const assetContract: {
4322
4086
  pool_address: string;
4323
4087
  pool_migration_timestamp: Date | null;
4324
4088
  pool_type: string;
4325
- pool_volume_24h_base: string | null;
4326
- pool_volume_24h_quote: string | null;
4327
- pool_volume_24h_swap_count: number | null;
4328
- pool_volume_last_updated: string | null;
4329
4089
  base_token: {
4330
4090
  token_address: string;
4331
4091
  token_name: string;
@@ -4385,10 +4145,6 @@ declare const assetContract: {
4385
4145
  pool_config_ending_time: string;
4386
4146
  pool_migration_timestamp: Date | null;
4387
4147
  pool_type: string;
4388
- pool_volume_24h_base: string | null;
4389
- pool_volume_24h_quote: string | null;
4390
- pool_volume_24h_swap_count: number | null;
4391
- pool_volume_last_updated: string | null;
4392
4148
  pool_market_data: {
4393
4149
  pool_liquidity: string | null;
4394
4150
  pool_market_cap: string | null;
@@ -4434,10 +4190,6 @@ declare const assetContract: {
4434
4190
  pool_address: `0x${string}`;
4435
4191
  pool_migration_timestamp: Date | null;
4436
4192
  pool_type: string;
4437
- pool_volume_24h_base: string | null;
4438
- pool_volume_24h_quote: string | null;
4439
- pool_volume_24h_swap_count: number | null;
4440
- pool_volume_last_updated: string | null;
4441
4193
  pool_market_data: {
4442
4194
  pool_liquidity: string | null;
4443
4195
  pool_market_cap: string | null;
@@ -4502,10 +4254,6 @@ declare const assetContract: {
4502
4254
  pool_config_ending_time: string;
4503
4255
  pool_migration_timestamp: Date | null;
4504
4256
  pool_type: string;
4505
- pool_volume_24h_base: string | null;
4506
- pool_volume_24h_quote: string | null;
4507
- pool_volume_24h_swap_count: number | null;
4508
- pool_volume_last_updated: string | null;
4509
4257
  base_token: {
4510
4258
  token_address: string;
4511
4259
  token_name: string;
@@ -4544,10 +4292,6 @@ declare const assetContract: {
4544
4292
  pool_address: string;
4545
4293
  pool_migration_timestamp: Date | null;
4546
4294
  pool_type: string;
4547
- pool_volume_24h_base: string | null;
4548
- pool_volume_24h_quote: string | null;
4549
- pool_volume_24h_swap_count: number | null;
4550
- pool_volume_last_updated: string | null;
4551
4295
  base_token: {
4552
4296
  token_address: string;
4553
4297
  token_name: string;
@@ -4609,10 +4353,6 @@ declare const assetContract: {
4609
4353
  pool_config_ending_time: string;
4610
4354
  pool_migration_timestamp: Date | null;
4611
4355
  pool_type: string;
4612
- pool_volume_24h_base: string | null;
4613
- pool_volume_24h_quote: string | null;
4614
- pool_volume_24h_swap_count: number | null;
4615
- pool_volume_last_updated: string | null;
4616
4356
  pool_market_data: {
4617
4357
  pool_liquidity: string | null;
4618
4358
  pool_market_cap: string | null;
@@ -4658,10 +4398,6 @@ declare const assetContract: {
4658
4398
  pool_address: `0x${string}`;
4659
4399
  pool_migration_timestamp: Date | null;
4660
4400
  pool_type: string;
4661
- pool_volume_24h_base: string | null;
4662
- pool_volume_24h_quote: string | null;
4663
- pool_volume_24h_swap_count: number | null;
4664
- pool_volume_last_updated: string | null;
4665
4401
  pool_market_data: {
4666
4402
  pool_liquidity: string | null;
4667
4403
  pool_market_cap: string | null;
@@ -4728,10 +4464,6 @@ declare const assetContract: {
4728
4464
  pool_config_ending_time: string;
4729
4465
  pool_migration_timestamp: Date | null;
4730
4466
  pool_type: string;
4731
- pool_volume_24h_base: string | null;
4732
- pool_volume_24h_quote: string | null;
4733
- pool_volume_24h_swap_count: number | null;
4734
- pool_volume_last_updated: string | null;
4735
4467
  base_token: {
4736
4468
  token_address: string;
4737
4469
  token_name: string;
@@ -4770,10 +4502,6 @@ declare const assetContract: {
4770
4502
  pool_address: string;
4771
4503
  pool_migration_timestamp: Date | null;
4772
4504
  pool_type: string;
4773
- pool_volume_24h_base: string | null;
4774
- pool_volume_24h_quote: string | null;
4775
- pool_volume_24h_swap_count: number | null;
4776
- pool_volume_last_updated: string | null;
4777
4505
  base_token: {
4778
4506
  token_address: string;
4779
4507
  token_name: string;