@longdotxyz/shared 0.0.83 → 0.0.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/contracts/asset.contract.d.ts +887 -187
  2. package/dist/contracts/asset.contract.js +49 -20
  3. package/dist/contracts/asset.contract.js.map +1 -1
  4. package/dist/contracts/auction-template.contract.d.ts +30 -30
  5. package/dist/contracts/auction-template.contract.js +16 -16
  6. package/dist/contracts/auction-template.contract.js.map +1 -1
  7. package/dist/contracts/auction.contract.d.ts +1 -1
  8. package/dist/contracts/auction.contract.js +1 -1
  9. package/dist/contracts/auction.contract.js.map +1 -1
  10. package/dist/contracts/charts.contract.d.ts +214 -0
  11. package/dist/contracts/charts.contract.js +61 -0
  12. package/dist/contracts/charts.contract.js.map +1 -0
  13. package/dist/contracts/index.d.ts +2233 -174
  14. package/dist/contracts/index.js +6 -0
  15. package/dist/contracts/index.js.map +1 -1
  16. package/dist/contracts/market.contract.d.ts +2060 -0
  17. package/dist/contracts/market.contract.js +195 -0
  18. package/dist/contracts/market.contract.js.map +1 -0
  19. package/dist/contracts/pathfinding.contract.d.ts +14 -14
  20. package/dist/contracts/pathfinding.contract.js +2 -2
  21. package/dist/contracts/pathfinding.contract.js.map +1 -1
  22. package/dist/contracts/sponsorship.contract.d.ts +2 -2
  23. package/dist/contracts/sponsorship.contract.js +2 -2
  24. package/dist/contracts/sponsorship.contract.js.map +1 -1
  25. package/dist/graphql/generated.d.ts +1103 -645
  26. package/dist/graphql/generated.js +139 -47
  27. package/dist/graphql/generated.js.map +1 -1
  28. package/dist/types/constants.d.ts +3 -1
  29. package/dist/types/constants.js +2 -0
  30. package/dist/types/constants.js.map +1 -1
  31. package/dist/types/hex.type.d.ts +1 -1
  32. package/dist/types/hex.type.js +2 -2
  33. package/dist/types/hex.type.js.map +1 -1
  34. package/dist/types/pool-key.type.d.ts +3 -3
  35. package/package.json +8 -8
@@ -1,8 +1,8 @@
1
1
  import z from "zod";
2
2
  import { AssetOrderBy, AssetStatus, AssetStatusQuery } from "../types";
3
3
  declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
4
- asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
5
- asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
4
+ asset_address: z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, `0x${string}`, string>>;
5
+ asset_numeraire_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
6
6
  asset_creation_timestamp: z.ZodDate;
7
7
  asset_current_pool: z.ZodString;
8
8
  asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
@@ -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;
@@ -26,13 +24,50 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
26
24
  pool_config_min_proceeds: z.ZodString;
27
25
  pool_config_num_tokens_to_sell: z.ZodString;
28
26
  pool_id: z.ZodString;
29
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
27
+ pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
30
28
  pool_config_starting_time: z.ZodString;
31
29
  pool_config_ending_time: z.ZodString;
32
30
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
33
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
+ pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
37
+ pool_liquidity: z.ZodNullable<z.ZodString>;
38
+ pool_market_cap: z.ZodNullable<z.ZodString>;
39
+ pool_price: z.ZodNullable<z.ZodString>;
40
+ pool_price_scale: z.ZodNullable<z.ZodString>;
41
+ pool_price_change_24h: z.ZodNullable<z.ZodString>;
42
+ pool_volume_change_24h: z.ZodNullable<z.ZodString>;
43
+ pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
44
+ }, "strip", z.ZodTypeAny, {
45
+ pool_liquidity: string | null;
46
+ pool_market_cap: string | null;
47
+ pool_price: string | null;
48
+ pool_price_scale: string | null;
49
+ pool_price_change_24h: string | null;
50
+ pool_volume_change_24h: string | null;
51
+ pool_volume_usd_24h: string | null;
52
+ }, {
53
+ pool_liquidity: string | null;
54
+ pool_market_cap: string | null;
55
+ pool_price: string | null;
56
+ pool_price_scale: string | null;
57
+ pool_price_change_24h: string | null;
58
+ pool_volume_change_24h: string | null;
59
+ pool_volume_usd_24h: string | null;
60
+ }>>, {
61
+ pool_liquidity: string | null;
62
+ pool_market_cap: string | null;
63
+ pool_price: string | null;
64
+ pool_price_scale: string | null;
65
+ pool_price_change_24h: string | null;
66
+ pool_volume_change_24h: string | null;
67
+ pool_volume_usd_24h: string | null;
68
+ } | null, unknown>;
34
69
  base_token: z.ZodObject<{
35
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
70
+ token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
36
71
  token_name: z.ZodString;
37
72
  token_description: z.ZodNullable<z.ZodString>;
38
73
  token_symbol: z.ZodString;
@@ -101,9 +136,9 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
101
136
  }[] | undefined;
102
137
  }>>;
103
138
  token_image_public_url: z.ZodNullable<z.ZodString>;
104
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
105
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
106
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
139
+ token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
140
+ token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
141
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
107
142
  }, "strip", z.ZodTypeAny, {
108
143
  token_address: `0x${string}`;
109
144
  token_name: string;
@@ -158,12 +193,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
158
193
  pool_current_price: string;
159
194
  pool_current_sqrt_price: string;
160
195
  pool_current_fdv: string;
161
- pool_current_fdv_usd: string | null;
162
196
  pool_current_liquidity: string;
163
197
  pool_current_tick: number;
164
198
  pool_last_epoch: number;
165
199
  pool_current_market_cap: string;
166
- pool_current_market_cap_usd: string | null;
167
200
  pool_current_fees_accrued: string;
168
201
  pool_current_total_proceeds: string;
169
202
  pool_current_total_tokens_sold: string;
@@ -178,6 +211,19 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
178
211
  pool_config_ending_time: string;
179
212
  pool_migration_timestamp: Date | null;
180
213
  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
+ pool_market_data: {
219
+ pool_liquidity: string | null;
220
+ pool_market_cap: string | null;
221
+ pool_price: string | null;
222
+ pool_price_scale: string | null;
223
+ pool_price_change_24h: string | null;
224
+ pool_volume_change_24h: string | null;
225
+ pool_volume_usd_24h: string | null;
226
+ } | null;
181
227
  base_token: {
182
228
  token_address: `0x${string}`;
183
229
  token_name: string;
@@ -207,12 +253,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
207
253
  pool_current_price: string;
208
254
  pool_current_sqrt_price: string;
209
255
  pool_current_fdv: string;
210
- pool_current_fdv_usd: string | null;
211
256
  pool_current_liquidity: string;
212
257
  pool_current_tick: number;
213
258
  pool_last_epoch: number;
214
259
  pool_current_market_cap: string;
215
- pool_current_market_cap_usd: string | null;
216
260
  pool_current_fees_accrued: string;
217
261
  pool_current_total_proceeds: string;
218
262
  pool_current_total_tokens_sold: string;
@@ -227,6 +271,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
227
271
  pool_config_ending_time: string;
228
272
  pool_migration_timestamp: Date | null;
229
273
  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;
230
278
  base_token: {
231
279
  token_address: string;
232
280
  token_name: string;
@@ -253,21 +301,57 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
253
301
  token_fee_receiver_address: string;
254
302
  token_vesting_recipient_addresses: string[];
255
303
  };
304
+ pool_market_data?: unknown;
256
305
  }>;
257
306
  graduation_pool: z.ZodObject<{
258
307
  pool_current_price: z.ZodString;
259
308
  pool_current_sqrt_price: z.ZodString;
260
309
  pool_current_fdv: z.ZodString;
261
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
262
310
  pool_current_liquidity: z.ZodString;
263
311
  pool_current_tick: z.ZodNumber;
264
312
  pool_current_market_cap: z.ZodString;
265
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
266
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
313
+ pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
267
314
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
268
315
  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
+ pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
321
+ pool_liquidity: z.ZodNullable<z.ZodString>;
322
+ pool_market_cap: z.ZodNullable<z.ZodString>;
323
+ pool_price: z.ZodNullable<z.ZodString>;
324
+ pool_price_scale: z.ZodNullable<z.ZodString>;
325
+ pool_price_change_24h: z.ZodNullable<z.ZodString>;
326
+ pool_volume_change_24h: z.ZodNullable<z.ZodString>;
327
+ pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
328
+ }, "strip", z.ZodTypeAny, {
329
+ pool_liquidity: string | null;
330
+ pool_market_cap: string | null;
331
+ pool_price: string | null;
332
+ pool_price_scale: string | null;
333
+ pool_price_change_24h: string | null;
334
+ pool_volume_change_24h: string | null;
335
+ pool_volume_usd_24h: string | null;
336
+ }, {
337
+ pool_liquidity: string | null;
338
+ pool_market_cap: string | null;
339
+ pool_price: string | null;
340
+ pool_price_scale: string | null;
341
+ pool_price_change_24h: string | null;
342
+ pool_volume_change_24h: string | null;
343
+ pool_volume_usd_24h: string | null;
344
+ }>>, {
345
+ pool_liquidity: string | null;
346
+ pool_market_cap: string | null;
347
+ pool_price: string | null;
348
+ pool_price_scale: string | null;
349
+ pool_price_change_24h: string | null;
350
+ pool_volume_change_24h: string | null;
351
+ pool_volume_usd_24h: string | null;
352
+ } | null, unknown>;
269
353
  base_token: z.ZodObject<{
270
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
354
+ token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
271
355
  token_name: z.ZodString;
272
356
  token_description: z.ZodNullable<z.ZodString>;
273
357
  token_symbol: z.ZodString;
@@ -336,9 +420,9 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
336
420
  }[] | undefined;
337
421
  }>>;
338
422
  token_image_public_url: z.ZodNullable<z.ZodString>;
339
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
340
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
341
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
423
+ token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
424
+ token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
425
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
342
426
  integrator_address: z.ZodString;
343
427
  }, "strip", z.ZodTypeAny, {
344
428
  token_address: `0x${string}`;
@@ -396,14 +480,25 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
396
480
  pool_current_price: string;
397
481
  pool_current_sqrt_price: string;
398
482
  pool_current_fdv: string;
399
- pool_current_fdv_usd: string | null;
400
483
  pool_current_liquidity: string;
401
484
  pool_current_tick: number;
402
485
  pool_current_market_cap: string;
403
- pool_current_market_cap_usd: string | null;
404
486
  pool_address: `0x${string}`;
405
487
  pool_migration_timestamp: Date | null;
406
488
  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
+ pool_market_data: {
494
+ pool_liquidity: string | null;
495
+ pool_market_cap: string | null;
496
+ pool_price: string | null;
497
+ pool_price_scale: string | null;
498
+ pool_price_change_24h: string | null;
499
+ pool_volume_change_24h: string | null;
500
+ pool_volume_usd_24h: string | null;
501
+ } | null;
407
502
  base_token: {
408
503
  token_address: `0x${string}`;
409
504
  token_name: string;
@@ -434,14 +529,16 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
434
529
  pool_current_price: string;
435
530
  pool_current_sqrt_price: string;
436
531
  pool_current_fdv: string;
437
- pool_current_fdv_usd: string | null;
438
532
  pool_current_liquidity: string;
439
533
  pool_current_tick: number;
440
534
  pool_current_market_cap: string;
441
- pool_current_market_cap_usd: string | null;
442
535
  pool_address: string;
443
536
  pool_migration_timestamp: Date | null;
444
537
  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;
445
542
  base_token: {
446
543
  token_address: string;
447
544
  token_name: string;
@@ -469,6 +566,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
469
566
  token_vesting_recipient_addresses: string[];
470
567
  integrator_address: string;
471
568
  };
569
+ pool_market_data?: unknown;
472
570
  }>;
473
571
  }, "strip", z.ZodTypeAny, {
474
572
  asset_address: `0x${string}`;
@@ -481,12 +579,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
481
579
  pool_current_price: string;
482
580
  pool_current_sqrt_price: string;
483
581
  pool_current_fdv: string;
484
- pool_current_fdv_usd: string | null;
485
582
  pool_current_liquidity: string;
486
583
  pool_current_tick: number;
487
584
  pool_last_epoch: number;
488
585
  pool_current_market_cap: string;
489
- pool_current_market_cap_usd: string | null;
490
586
  pool_current_fees_accrued: string;
491
587
  pool_current_total_proceeds: string;
492
588
  pool_current_total_tokens_sold: string;
@@ -501,6 +597,19 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
501
597
  pool_config_ending_time: string;
502
598
  pool_migration_timestamp: Date | null;
503
599
  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
+ pool_market_data: {
605
+ pool_liquidity: string | null;
606
+ pool_market_cap: string | null;
607
+ pool_price: string | null;
608
+ pool_price_scale: string | null;
609
+ pool_price_change_24h: string | null;
610
+ pool_volume_change_24h: string | null;
611
+ pool_volume_usd_24h: string | null;
612
+ } | null;
504
613
  base_token: {
505
614
  token_address: `0x${string}`;
506
615
  token_name: string;
@@ -531,14 +640,25 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
531
640
  pool_current_price: string;
532
641
  pool_current_sqrt_price: string;
533
642
  pool_current_fdv: string;
534
- pool_current_fdv_usd: string | null;
535
643
  pool_current_liquidity: string;
536
644
  pool_current_tick: number;
537
645
  pool_current_market_cap: string;
538
- pool_current_market_cap_usd: string | null;
539
646
  pool_address: `0x${string}`;
540
647
  pool_migration_timestamp: Date | null;
541
648
  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
+ pool_market_data: {
654
+ pool_liquidity: string | null;
655
+ pool_market_cap: string | null;
656
+ pool_price: string | null;
657
+ pool_price_scale: string | null;
658
+ pool_price_change_24h: string | null;
659
+ pool_volume_change_24h: string | null;
660
+ pool_volume_usd_24h: string | null;
661
+ } | null;
542
662
  base_token: {
543
663
  token_address: `0x${string}`;
544
664
  token_name: string;
@@ -576,12 +696,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
576
696
  pool_current_price: string;
577
697
  pool_current_sqrt_price: string;
578
698
  pool_current_fdv: string;
579
- pool_current_fdv_usd: string | null;
580
699
  pool_current_liquidity: string;
581
700
  pool_current_tick: number;
582
701
  pool_last_epoch: number;
583
702
  pool_current_market_cap: string;
584
- pool_current_market_cap_usd: string | null;
585
703
  pool_current_fees_accrued: string;
586
704
  pool_current_total_proceeds: string;
587
705
  pool_current_total_tokens_sold: string;
@@ -596,6 +714,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
596
714
  pool_config_ending_time: string;
597
715
  pool_migration_timestamp: Date | null;
598
716
  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;
599
721
  base_token: {
600
722
  token_address: string;
601
723
  token_name: string;
@@ -622,19 +744,22 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
622
744
  token_fee_receiver_address: string;
623
745
  token_vesting_recipient_addresses: string[];
624
746
  };
747
+ pool_market_data?: unknown;
625
748
  };
626
749
  graduation_pool: {
627
750
  pool_current_price: string;
628
751
  pool_current_sqrt_price: string;
629
752
  pool_current_fdv: string;
630
- pool_current_fdv_usd: string | null;
631
753
  pool_current_liquidity: string;
632
754
  pool_current_tick: number;
633
755
  pool_current_market_cap: string;
634
- pool_current_market_cap_usd: string | null;
635
756
  pool_address: string;
636
757
  pool_migration_timestamp: Date | null;
637
758
  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;
638
763
  base_token: {
639
764
  token_address: string;
640
765
  token_name: string;
@@ -662,6 +787,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
662
787
  token_vesting_recipient_addresses: string[];
663
788
  integrator_address: string;
664
789
  };
790
+ pool_market_data?: unknown;
665
791
  };
666
792
  asset_status?: AssetStatus | undefined;
667
793
  }>, {
@@ -675,12 +801,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
675
801
  pool_current_price: string;
676
802
  pool_current_sqrt_price: string;
677
803
  pool_current_fdv: string;
678
- pool_current_fdv_usd: string | null;
679
804
  pool_current_liquidity: string;
680
805
  pool_current_tick: number;
681
806
  pool_last_epoch: number;
682
807
  pool_current_market_cap: string;
683
- pool_current_market_cap_usd: string | null;
684
808
  pool_current_fees_accrued: string;
685
809
  pool_current_total_proceeds: string;
686
810
  pool_current_total_tokens_sold: string;
@@ -695,6 +819,19 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
695
819
  pool_config_ending_time: string;
696
820
  pool_migration_timestamp: Date | null;
697
821
  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
+ pool_market_data: {
827
+ pool_liquidity: string | null;
828
+ pool_market_cap: string | null;
829
+ pool_price: string | null;
830
+ pool_price_scale: string | null;
831
+ pool_price_change_24h: string | null;
832
+ pool_volume_change_24h: string | null;
833
+ pool_volume_usd_24h: string | null;
834
+ } | null;
698
835
  base_token: {
699
836
  token_address: `0x${string}`;
700
837
  token_name: string;
@@ -725,14 +862,25 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
725
862
  pool_current_price: string;
726
863
  pool_current_sqrt_price: string;
727
864
  pool_current_fdv: string;
728
- pool_current_fdv_usd: string | null;
729
865
  pool_current_liquidity: string;
730
866
  pool_current_tick: number;
731
867
  pool_current_market_cap: string;
732
- pool_current_market_cap_usd: string | null;
733
868
  pool_address: `0x${string}`;
734
869
  pool_migration_timestamp: Date | null;
735
870
  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
+ pool_market_data: {
876
+ pool_liquidity: string | null;
877
+ pool_market_cap: string | null;
878
+ pool_price: string | null;
879
+ pool_price_scale: string | null;
880
+ pool_price_change_24h: string | null;
881
+ pool_volume_change_24h: string | null;
882
+ pool_volume_usd_24h: string | null;
883
+ } | null;
736
884
  base_token: {
737
885
  token_address: `0x${string}`;
738
886
  token_name: string;
@@ -770,12 +918,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
770
918
  pool_current_price: string;
771
919
  pool_current_sqrt_price: string;
772
920
  pool_current_fdv: string;
773
- pool_current_fdv_usd: string | null;
774
921
  pool_current_liquidity: string;
775
922
  pool_current_tick: number;
776
923
  pool_last_epoch: number;
777
924
  pool_current_market_cap: string;
778
- pool_current_market_cap_usd: string | null;
779
925
  pool_current_fees_accrued: string;
780
926
  pool_current_total_proceeds: string;
781
927
  pool_current_total_tokens_sold: string;
@@ -790,6 +936,10 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
790
936
  pool_config_ending_time: string;
791
937
  pool_migration_timestamp: Date | null;
792
938
  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;
793
943
  base_token: {
794
944
  token_address: string;
795
945
  token_name: string;
@@ -816,19 +966,22 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
816
966
  token_fee_receiver_address: string;
817
967
  token_vesting_recipient_addresses: string[];
818
968
  };
969
+ pool_market_data?: unknown;
819
970
  };
820
971
  graduation_pool: {
821
972
  pool_current_price: string;
822
973
  pool_current_sqrt_price: string;
823
974
  pool_current_fdv: string;
824
- pool_current_fdv_usd: string | null;
825
975
  pool_current_liquidity: string;
826
976
  pool_current_tick: number;
827
977
  pool_current_market_cap: string;
828
- pool_current_market_cap_usd: string | null;
829
978
  pool_address: string;
830
979
  pool_migration_timestamp: Date | null;
831
980
  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;
832
985
  base_token: {
833
986
  token_address: string;
834
987
  token_name: string;
@@ -856,6 +1009,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
856
1009
  token_vesting_recipient_addresses: string[];
857
1010
  integrator_address: string;
858
1011
  };
1012
+ pool_market_data?: unknown;
859
1013
  };
860
1014
  asset_status?: AssetStatus | undefined;
861
1015
  }>;
@@ -868,8 +1022,8 @@ declare const assetContract: {
868
1022
  status: z.ZodDefault<z.ZodOptional<z.ZodEnum<[AssetStatusQuery.ALL, AssetStatusQuery.GRADUATED, AssetStatusQuery.INCOMING, AssetStatusQuery.LIVE]>>>;
869
1023
  limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
870
1024
  offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
871
- orderBy: z.ZodOptional<z.ZodEnum<[AssetOrderBy.MARKET_CAP_ASC, AssetOrderBy.MARKET_CAP_DESC]>>;
872
- numeraireAddress: z.ZodOptional<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>>;
1025
+ orderBy: z.ZodOptional<z.ZodEnum<[AssetOrderBy.MARKET_CAP_ASC, AssetOrderBy.MARKET_CAP_DESC, AssetOrderBy.VOLUME_USD_ASC, AssetOrderBy.VOLUME_USD_DESC]>>;
1026
+ numeraireAddress: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
873
1027
  }, "strip", z.ZodTypeAny, {
874
1028
  status: AssetStatusQuery.LIVE | AssetStatusQuery.GRADUATED | AssetStatusQuery.INCOMING | AssetStatusQuery.ALL;
875
1029
  chainId: number;
@@ -890,8 +1044,8 @@ declare const assetContract: {
890
1044
  responses: {
891
1045
  200: z.ZodObject<{
892
1046
  result: z.ZodArray<z.ZodEffects<z.ZodObject<{
893
- asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
894
- asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1047
+ asset_address: z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, `0x${string}`, string>>;
1048
+ asset_numeraire_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
895
1049
  asset_creation_timestamp: z.ZodDate;
896
1050
  asset_current_pool: z.ZodString;
897
1051
  asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
@@ -900,12 +1054,10 @@ declare const assetContract: {
900
1054
  pool_current_price: z.ZodString;
901
1055
  pool_current_sqrt_price: z.ZodString;
902
1056
  pool_current_fdv: z.ZodString;
903
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
904
1057
  pool_current_liquidity: z.ZodString;
905
1058
  pool_current_tick: z.ZodNumber;
906
1059
  pool_last_epoch: z.ZodNumber;
907
1060
  pool_current_market_cap: z.ZodString;
908
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
909
1061
  pool_current_fees_accrued: z.ZodString;
910
1062
  pool_current_total_proceeds: z.ZodString;
911
1063
  pool_current_total_tokens_sold: z.ZodString;
@@ -915,13 +1067,50 @@ declare const assetContract: {
915
1067
  pool_config_min_proceeds: z.ZodString;
916
1068
  pool_config_num_tokens_to_sell: z.ZodString;
917
1069
  pool_id: z.ZodString;
918
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1070
+ pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
919
1071
  pool_config_starting_time: z.ZodString;
920
1072
  pool_config_ending_time: z.ZodString;
921
1073
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
922
1074
  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
+ pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
1080
+ pool_liquidity: z.ZodNullable<z.ZodString>;
1081
+ pool_market_cap: z.ZodNullable<z.ZodString>;
1082
+ pool_price: z.ZodNullable<z.ZodString>;
1083
+ pool_price_scale: z.ZodNullable<z.ZodString>;
1084
+ pool_price_change_24h: z.ZodNullable<z.ZodString>;
1085
+ pool_volume_change_24h: z.ZodNullable<z.ZodString>;
1086
+ pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
1087
+ }, "strip", z.ZodTypeAny, {
1088
+ pool_liquidity: string | null;
1089
+ pool_market_cap: string | null;
1090
+ pool_price: string | null;
1091
+ pool_price_scale: string | null;
1092
+ pool_price_change_24h: string | null;
1093
+ pool_volume_change_24h: string | null;
1094
+ pool_volume_usd_24h: string | null;
1095
+ }, {
1096
+ pool_liquidity: string | null;
1097
+ pool_market_cap: string | null;
1098
+ pool_price: string | null;
1099
+ pool_price_scale: string | null;
1100
+ pool_price_change_24h: string | null;
1101
+ pool_volume_change_24h: string | null;
1102
+ pool_volume_usd_24h: string | null;
1103
+ }>>, {
1104
+ pool_liquidity: string | null;
1105
+ pool_market_cap: string | null;
1106
+ pool_price: string | null;
1107
+ pool_price_scale: string | null;
1108
+ pool_price_change_24h: string | null;
1109
+ pool_volume_change_24h: string | null;
1110
+ pool_volume_usd_24h: string | null;
1111
+ } | null, unknown>;
923
1112
  base_token: z.ZodObject<{
924
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1113
+ token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
925
1114
  token_name: z.ZodString;
926
1115
  token_description: z.ZodNullable<z.ZodString>;
927
1116
  token_symbol: z.ZodString;
@@ -990,9 +1179,9 @@ declare const assetContract: {
990
1179
  }[] | undefined;
991
1180
  }>>;
992
1181
  token_image_public_url: z.ZodNullable<z.ZodString>;
993
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
994
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
995
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
1182
+ token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1183
+ token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1184
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
996
1185
  }, "strip", z.ZodTypeAny, {
997
1186
  token_address: `0x${string}`;
998
1187
  token_name: string;
@@ -1047,12 +1236,10 @@ declare const assetContract: {
1047
1236
  pool_current_price: string;
1048
1237
  pool_current_sqrt_price: string;
1049
1238
  pool_current_fdv: string;
1050
- pool_current_fdv_usd: string | null;
1051
1239
  pool_current_liquidity: string;
1052
1240
  pool_current_tick: number;
1053
1241
  pool_last_epoch: number;
1054
1242
  pool_current_market_cap: string;
1055
- pool_current_market_cap_usd: string | null;
1056
1243
  pool_current_fees_accrued: string;
1057
1244
  pool_current_total_proceeds: string;
1058
1245
  pool_current_total_tokens_sold: string;
@@ -1067,6 +1254,19 @@ declare const assetContract: {
1067
1254
  pool_config_ending_time: string;
1068
1255
  pool_migration_timestamp: Date | null;
1069
1256
  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
+ pool_market_data: {
1262
+ pool_liquidity: string | null;
1263
+ pool_market_cap: string | null;
1264
+ pool_price: string | null;
1265
+ pool_price_scale: string | null;
1266
+ pool_price_change_24h: string | null;
1267
+ pool_volume_change_24h: string | null;
1268
+ pool_volume_usd_24h: string | null;
1269
+ } | null;
1070
1270
  base_token: {
1071
1271
  token_address: `0x${string}`;
1072
1272
  token_name: string;
@@ -1096,12 +1296,10 @@ declare const assetContract: {
1096
1296
  pool_current_price: string;
1097
1297
  pool_current_sqrt_price: string;
1098
1298
  pool_current_fdv: string;
1099
- pool_current_fdv_usd: string | null;
1100
1299
  pool_current_liquidity: string;
1101
1300
  pool_current_tick: number;
1102
1301
  pool_last_epoch: number;
1103
1302
  pool_current_market_cap: string;
1104
- pool_current_market_cap_usd: string | null;
1105
1303
  pool_current_fees_accrued: string;
1106
1304
  pool_current_total_proceeds: string;
1107
1305
  pool_current_total_tokens_sold: string;
@@ -1116,6 +1314,10 @@ declare const assetContract: {
1116
1314
  pool_config_ending_time: string;
1117
1315
  pool_migration_timestamp: Date | null;
1118
1316
  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;
1119
1321
  base_token: {
1120
1322
  token_address: string;
1121
1323
  token_name: string;
@@ -1142,21 +1344,57 @@ declare const assetContract: {
1142
1344
  token_fee_receiver_address: string;
1143
1345
  token_vesting_recipient_addresses: string[];
1144
1346
  };
1347
+ pool_market_data?: unknown;
1145
1348
  }>;
1146
1349
  graduation_pool: z.ZodObject<{
1147
1350
  pool_current_price: z.ZodString;
1148
1351
  pool_current_sqrt_price: z.ZodString;
1149
1352
  pool_current_fdv: z.ZodString;
1150
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
1151
1353
  pool_current_liquidity: z.ZodString;
1152
1354
  pool_current_tick: z.ZodNumber;
1153
1355
  pool_current_market_cap: z.ZodString;
1154
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
1155
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1356
+ pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1156
1357
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1157
1358
  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
+ pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
1364
+ pool_liquidity: z.ZodNullable<z.ZodString>;
1365
+ pool_market_cap: z.ZodNullable<z.ZodString>;
1366
+ pool_price: z.ZodNullable<z.ZodString>;
1367
+ pool_price_scale: z.ZodNullable<z.ZodString>;
1368
+ pool_price_change_24h: z.ZodNullable<z.ZodString>;
1369
+ pool_volume_change_24h: z.ZodNullable<z.ZodString>;
1370
+ pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
1371
+ }, "strip", z.ZodTypeAny, {
1372
+ pool_liquidity: string | null;
1373
+ pool_market_cap: string | null;
1374
+ pool_price: string | null;
1375
+ pool_price_scale: string | null;
1376
+ pool_price_change_24h: string | null;
1377
+ pool_volume_change_24h: string | null;
1378
+ pool_volume_usd_24h: string | null;
1379
+ }, {
1380
+ pool_liquidity: string | null;
1381
+ pool_market_cap: string | null;
1382
+ pool_price: string | null;
1383
+ pool_price_scale: string | null;
1384
+ pool_price_change_24h: string | null;
1385
+ pool_volume_change_24h: string | null;
1386
+ pool_volume_usd_24h: string | null;
1387
+ }>>, {
1388
+ pool_liquidity: string | null;
1389
+ pool_market_cap: string | null;
1390
+ pool_price: string | null;
1391
+ pool_price_scale: string | null;
1392
+ pool_price_change_24h: string | null;
1393
+ pool_volume_change_24h: string | null;
1394
+ pool_volume_usd_24h: string | null;
1395
+ } | null, unknown>;
1158
1396
  base_token: z.ZodObject<{
1159
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1397
+ token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1160
1398
  token_name: z.ZodString;
1161
1399
  token_description: z.ZodNullable<z.ZodString>;
1162
1400
  token_symbol: z.ZodString;
@@ -1225,9 +1463,9 @@ declare const assetContract: {
1225
1463
  }[] | undefined;
1226
1464
  }>>;
1227
1465
  token_image_public_url: z.ZodNullable<z.ZodString>;
1228
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1229
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1230
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
1466
+ token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1467
+ token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1468
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
1231
1469
  integrator_address: z.ZodString;
1232
1470
  }, "strip", z.ZodTypeAny, {
1233
1471
  token_address: `0x${string}`;
@@ -1285,14 +1523,25 @@ declare const assetContract: {
1285
1523
  pool_current_price: string;
1286
1524
  pool_current_sqrt_price: string;
1287
1525
  pool_current_fdv: string;
1288
- pool_current_fdv_usd: string | null;
1289
1526
  pool_current_liquidity: string;
1290
1527
  pool_current_tick: number;
1291
1528
  pool_current_market_cap: string;
1292
- pool_current_market_cap_usd: string | null;
1293
1529
  pool_address: `0x${string}`;
1294
1530
  pool_migration_timestamp: Date | null;
1295
1531
  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
+ pool_market_data: {
1537
+ pool_liquidity: string | null;
1538
+ pool_market_cap: string | null;
1539
+ pool_price: string | null;
1540
+ pool_price_scale: string | null;
1541
+ pool_price_change_24h: string | null;
1542
+ pool_volume_change_24h: string | null;
1543
+ pool_volume_usd_24h: string | null;
1544
+ } | null;
1296
1545
  base_token: {
1297
1546
  token_address: `0x${string}`;
1298
1547
  token_name: string;
@@ -1323,14 +1572,16 @@ declare const assetContract: {
1323
1572
  pool_current_price: string;
1324
1573
  pool_current_sqrt_price: string;
1325
1574
  pool_current_fdv: string;
1326
- pool_current_fdv_usd: string | null;
1327
1575
  pool_current_liquidity: string;
1328
1576
  pool_current_tick: number;
1329
1577
  pool_current_market_cap: string;
1330
- pool_current_market_cap_usd: string | null;
1331
1578
  pool_address: string;
1332
1579
  pool_migration_timestamp: Date | null;
1333
1580
  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;
1334
1585
  base_token: {
1335
1586
  token_address: string;
1336
1587
  token_name: string;
@@ -1358,6 +1609,7 @@ declare const assetContract: {
1358
1609
  token_vesting_recipient_addresses: string[];
1359
1610
  integrator_address: string;
1360
1611
  };
1612
+ pool_market_data?: unknown;
1361
1613
  }>;
1362
1614
  }, "strip", z.ZodTypeAny, {
1363
1615
  asset_address: `0x${string}`;
@@ -1370,12 +1622,10 @@ declare const assetContract: {
1370
1622
  pool_current_price: string;
1371
1623
  pool_current_sqrt_price: string;
1372
1624
  pool_current_fdv: string;
1373
- pool_current_fdv_usd: string | null;
1374
1625
  pool_current_liquidity: string;
1375
1626
  pool_current_tick: number;
1376
1627
  pool_last_epoch: number;
1377
1628
  pool_current_market_cap: string;
1378
- pool_current_market_cap_usd: string | null;
1379
1629
  pool_current_fees_accrued: string;
1380
1630
  pool_current_total_proceeds: string;
1381
1631
  pool_current_total_tokens_sold: string;
@@ -1390,6 +1640,19 @@ declare const assetContract: {
1390
1640
  pool_config_ending_time: string;
1391
1641
  pool_migration_timestamp: Date | null;
1392
1642
  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
+ pool_market_data: {
1648
+ pool_liquidity: string | null;
1649
+ pool_market_cap: string | null;
1650
+ pool_price: string | null;
1651
+ pool_price_scale: string | null;
1652
+ pool_price_change_24h: string | null;
1653
+ pool_volume_change_24h: string | null;
1654
+ pool_volume_usd_24h: string | null;
1655
+ } | null;
1393
1656
  base_token: {
1394
1657
  token_address: `0x${string}`;
1395
1658
  token_name: string;
@@ -1420,14 +1683,25 @@ declare const assetContract: {
1420
1683
  pool_current_price: string;
1421
1684
  pool_current_sqrt_price: string;
1422
1685
  pool_current_fdv: string;
1423
- pool_current_fdv_usd: string | null;
1424
1686
  pool_current_liquidity: string;
1425
1687
  pool_current_tick: number;
1426
1688
  pool_current_market_cap: string;
1427
- pool_current_market_cap_usd: string | null;
1428
1689
  pool_address: `0x${string}`;
1429
1690
  pool_migration_timestamp: Date | null;
1430
1691
  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
+ pool_market_data: {
1697
+ pool_liquidity: string | null;
1698
+ pool_market_cap: string | null;
1699
+ pool_price: string | null;
1700
+ pool_price_scale: string | null;
1701
+ pool_price_change_24h: string | null;
1702
+ pool_volume_change_24h: string | null;
1703
+ pool_volume_usd_24h: string | null;
1704
+ } | null;
1431
1705
  base_token: {
1432
1706
  token_address: `0x${string}`;
1433
1707
  token_name: string;
@@ -1465,12 +1739,10 @@ declare const assetContract: {
1465
1739
  pool_current_price: string;
1466
1740
  pool_current_sqrt_price: string;
1467
1741
  pool_current_fdv: string;
1468
- pool_current_fdv_usd: string | null;
1469
1742
  pool_current_liquidity: string;
1470
1743
  pool_current_tick: number;
1471
1744
  pool_last_epoch: number;
1472
1745
  pool_current_market_cap: string;
1473
- pool_current_market_cap_usd: string | null;
1474
1746
  pool_current_fees_accrued: string;
1475
1747
  pool_current_total_proceeds: string;
1476
1748
  pool_current_total_tokens_sold: string;
@@ -1485,6 +1757,10 @@ declare const assetContract: {
1485
1757
  pool_config_ending_time: string;
1486
1758
  pool_migration_timestamp: Date | null;
1487
1759
  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;
1488
1764
  base_token: {
1489
1765
  token_address: string;
1490
1766
  token_name: string;
@@ -1511,19 +1787,22 @@ declare const assetContract: {
1511
1787
  token_fee_receiver_address: string;
1512
1788
  token_vesting_recipient_addresses: string[];
1513
1789
  };
1790
+ pool_market_data?: unknown;
1514
1791
  };
1515
1792
  graduation_pool: {
1516
1793
  pool_current_price: string;
1517
1794
  pool_current_sqrt_price: string;
1518
1795
  pool_current_fdv: string;
1519
- pool_current_fdv_usd: string | null;
1520
1796
  pool_current_liquidity: string;
1521
1797
  pool_current_tick: number;
1522
1798
  pool_current_market_cap: string;
1523
- pool_current_market_cap_usd: string | null;
1524
1799
  pool_address: string;
1525
1800
  pool_migration_timestamp: Date | null;
1526
1801
  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;
1527
1806
  base_token: {
1528
1807
  token_address: string;
1529
1808
  token_name: string;
@@ -1551,6 +1830,7 @@ declare const assetContract: {
1551
1830
  token_vesting_recipient_addresses: string[];
1552
1831
  integrator_address: string;
1553
1832
  };
1833
+ pool_market_data?: unknown;
1554
1834
  };
1555
1835
  asset_status?: AssetStatus | undefined;
1556
1836
  }>, {
@@ -1564,12 +1844,10 @@ declare const assetContract: {
1564
1844
  pool_current_price: string;
1565
1845
  pool_current_sqrt_price: string;
1566
1846
  pool_current_fdv: string;
1567
- pool_current_fdv_usd: string | null;
1568
1847
  pool_current_liquidity: string;
1569
1848
  pool_current_tick: number;
1570
1849
  pool_last_epoch: number;
1571
1850
  pool_current_market_cap: string;
1572
- pool_current_market_cap_usd: string | null;
1573
1851
  pool_current_fees_accrued: string;
1574
1852
  pool_current_total_proceeds: string;
1575
1853
  pool_current_total_tokens_sold: string;
@@ -1584,6 +1862,19 @@ declare const assetContract: {
1584
1862
  pool_config_ending_time: string;
1585
1863
  pool_migration_timestamp: Date | null;
1586
1864
  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
+ pool_market_data: {
1870
+ pool_liquidity: string | null;
1871
+ pool_market_cap: string | null;
1872
+ pool_price: string | null;
1873
+ pool_price_scale: string | null;
1874
+ pool_price_change_24h: string | null;
1875
+ pool_volume_change_24h: string | null;
1876
+ pool_volume_usd_24h: string | null;
1877
+ } | null;
1587
1878
  base_token: {
1588
1879
  token_address: `0x${string}`;
1589
1880
  token_name: string;
@@ -1614,14 +1905,25 @@ declare const assetContract: {
1614
1905
  pool_current_price: string;
1615
1906
  pool_current_sqrt_price: string;
1616
1907
  pool_current_fdv: string;
1617
- pool_current_fdv_usd: string | null;
1618
1908
  pool_current_liquidity: string;
1619
1909
  pool_current_tick: number;
1620
1910
  pool_current_market_cap: string;
1621
- pool_current_market_cap_usd: string | null;
1622
1911
  pool_address: `0x${string}`;
1623
1912
  pool_migration_timestamp: Date | null;
1624
1913
  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
+ pool_market_data: {
1919
+ pool_liquidity: string | null;
1920
+ pool_market_cap: string | null;
1921
+ pool_price: string | null;
1922
+ pool_price_scale: string | null;
1923
+ pool_price_change_24h: string | null;
1924
+ pool_volume_change_24h: string | null;
1925
+ pool_volume_usd_24h: string | null;
1926
+ } | null;
1625
1927
  base_token: {
1626
1928
  token_address: `0x${string}`;
1627
1929
  token_name: string;
@@ -1659,12 +1961,10 @@ declare const assetContract: {
1659
1961
  pool_current_price: string;
1660
1962
  pool_current_sqrt_price: string;
1661
1963
  pool_current_fdv: string;
1662
- pool_current_fdv_usd: string | null;
1663
1964
  pool_current_liquidity: string;
1664
1965
  pool_current_tick: number;
1665
1966
  pool_last_epoch: number;
1666
1967
  pool_current_market_cap: string;
1667
- pool_current_market_cap_usd: string | null;
1668
1968
  pool_current_fees_accrued: string;
1669
1969
  pool_current_total_proceeds: string;
1670
1970
  pool_current_total_tokens_sold: string;
@@ -1679,6 +1979,10 @@ declare const assetContract: {
1679
1979
  pool_config_ending_time: string;
1680
1980
  pool_migration_timestamp: Date | null;
1681
1981
  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;
1682
1986
  base_token: {
1683
1987
  token_address: string;
1684
1988
  token_name: string;
@@ -1705,19 +2009,22 @@ declare const assetContract: {
1705
2009
  token_fee_receiver_address: string;
1706
2010
  token_vesting_recipient_addresses: string[];
1707
2011
  };
2012
+ pool_market_data?: unknown;
1708
2013
  };
1709
2014
  graduation_pool: {
1710
2015
  pool_current_price: string;
1711
2016
  pool_current_sqrt_price: string;
1712
2017
  pool_current_fdv: string;
1713
- pool_current_fdv_usd: string | null;
1714
2018
  pool_current_liquidity: string;
1715
2019
  pool_current_tick: number;
1716
2020
  pool_current_market_cap: string;
1717
- pool_current_market_cap_usd: string | null;
1718
2021
  pool_address: string;
1719
2022
  pool_migration_timestamp: Date | null;
1720
2023
  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;
1721
2028
  base_token: {
1722
2029
  token_address: string;
1723
2030
  token_name: string;
@@ -1745,6 +2052,7 @@ declare const assetContract: {
1745
2052
  token_vesting_recipient_addresses: string[];
1746
2053
  integrator_address: string;
1747
2054
  };
2055
+ pool_market_data?: unknown;
1748
2056
  };
1749
2057
  asset_status?: AssetStatus | undefined;
1750
2058
  }>, "many">;
@@ -1760,12 +2068,10 @@ declare const assetContract: {
1760
2068
  pool_current_price: string;
1761
2069
  pool_current_sqrt_price: string;
1762
2070
  pool_current_fdv: string;
1763
- pool_current_fdv_usd: string | null;
1764
2071
  pool_current_liquidity: string;
1765
2072
  pool_current_tick: number;
1766
2073
  pool_last_epoch: number;
1767
2074
  pool_current_market_cap: string;
1768
- pool_current_market_cap_usd: string | null;
1769
2075
  pool_current_fees_accrued: string;
1770
2076
  pool_current_total_proceeds: string;
1771
2077
  pool_current_total_tokens_sold: string;
@@ -1780,6 +2086,19 @@ declare const assetContract: {
1780
2086
  pool_config_ending_time: string;
1781
2087
  pool_migration_timestamp: Date | null;
1782
2088
  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
+ pool_market_data: {
2094
+ pool_liquidity: string | null;
2095
+ pool_market_cap: string | null;
2096
+ pool_price: string | null;
2097
+ pool_price_scale: string | null;
2098
+ pool_price_change_24h: string | null;
2099
+ pool_volume_change_24h: string | null;
2100
+ pool_volume_usd_24h: string | null;
2101
+ } | null;
1783
2102
  base_token: {
1784
2103
  token_address: `0x${string}`;
1785
2104
  token_name: string;
@@ -1810,14 +2129,25 @@ declare const assetContract: {
1810
2129
  pool_current_price: string;
1811
2130
  pool_current_sqrt_price: string;
1812
2131
  pool_current_fdv: string;
1813
- pool_current_fdv_usd: string | null;
1814
2132
  pool_current_liquidity: string;
1815
2133
  pool_current_tick: number;
1816
2134
  pool_current_market_cap: string;
1817
- pool_current_market_cap_usd: string | null;
1818
2135
  pool_address: `0x${string}`;
1819
2136
  pool_migration_timestamp: Date | null;
1820
2137
  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
+ pool_market_data: {
2143
+ pool_liquidity: string | null;
2144
+ pool_market_cap: string | null;
2145
+ pool_price: string | null;
2146
+ pool_price_scale: string | null;
2147
+ pool_price_change_24h: string | null;
2148
+ pool_volume_change_24h: string | null;
2149
+ pool_volume_usd_24h: string | null;
2150
+ } | null;
1821
2151
  base_token: {
1822
2152
  token_address: `0x${string}`;
1823
2153
  token_name: string;
@@ -1857,12 +2187,10 @@ declare const assetContract: {
1857
2187
  pool_current_price: string;
1858
2188
  pool_current_sqrt_price: string;
1859
2189
  pool_current_fdv: string;
1860
- pool_current_fdv_usd: string | null;
1861
2190
  pool_current_liquidity: string;
1862
2191
  pool_current_tick: number;
1863
2192
  pool_last_epoch: number;
1864
2193
  pool_current_market_cap: string;
1865
- pool_current_market_cap_usd: string | null;
1866
2194
  pool_current_fees_accrued: string;
1867
2195
  pool_current_total_proceeds: string;
1868
2196
  pool_current_total_tokens_sold: string;
@@ -1877,6 +2205,10 @@ declare const assetContract: {
1877
2205
  pool_config_ending_time: string;
1878
2206
  pool_migration_timestamp: Date | null;
1879
2207
  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;
1880
2212
  base_token: {
1881
2213
  token_address: string;
1882
2214
  token_name: string;
@@ -1903,19 +2235,22 @@ declare const assetContract: {
1903
2235
  token_fee_receiver_address: string;
1904
2236
  token_vesting_recipient_addresses: string[];
1905
2237
  };
2238
+ pool_market_data?: unknown;
1906
2239
  };
1907
2240
  graduation_pool: {
1908
2241
  pool_current_price: string;
1909
2242
  pool_current_sqrt_price: string;
1910
2243
  pool_current_fdv: string;
1911
- pool_current_fdv_usd: string | null;
1912
2244
  pool_current_liquidity: string;
1913
2245
  pool_current_tick: number;
1914
2246
  pool_current_market_cap: string;
1915
- pool_current_market_cap_usd: string | null;
1916
2247
  pool_address: string;
1917
2248
  pool_migration_timestamp: Date | null;
1918
2249
  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;
1919
2254
  base_token: {
1920
2255
  token_address: string;
1921
2256
  token_name: string;
@@ -1943,6 +2278,7 @@ declare const assetContract: {
1943
2278
  token_vesting_recipient_addresses: string[];
1944
2279
  integrator_address: string;
1945
2280
  };
2281
+ pool_market_data?: unknown;
1946
2282
  };
1947
2283
  asset_status?: AssetStatus | undefined;
1948
2284
  }[];
@@ -1969,8 +2305,8 @@ declare const assetContract: {
1969
2305
  responses: {
1970
2306
  200: z.ZodObject<{
1971
2307
  result: z.ZodArray<z.ZodEffects<z.ZodObject<{
1972
- asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1973
- asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2308
+ asset_address: z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, `0x${string}`, string>>;
2309
+ asset_numeraire_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1974
2310
  asset_creation_timestamp: z.ZodDate;
1975
2311
  asset_current_pool: z.ZodString;
1976
2312
  asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
@@ -1979,12 +2315,10 @@ declare const assetContract: {
1979
2315
  pool_current_price: z.ZodString;
1980
2316
  pool_current_sqrt_price: z.ZodString;
1981
2317
  pool_current_fdv: z.ZodString;
1982
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
1983
2318
  pool_current_liquidity: z.ZodString;
1984
2319
  pool_current_tick: z.ZodNumber;
1985
2320
  pool_last_epoch: z.ZodNumber;
1986
2321
  pool_current_market_cap: z.ZodString;
1987
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
1988
2322
  pool_current_fees_accrued: z.ZodString;
1989
2323
  pool_current_total_proceeds: z.ZodString;
1990
2324
  pool_current_total_tokens_sold: z.ZodString;
@@ -1994,13 +2328,50 @@ declare const assetContract: {
1994
2328
  pool_config_min_proceeds: z.ZodString;
1995
2329
  pool_config_num_tokens_to_sell: z.ZodString;
1996
2330
  pool_id: z.ZodString;
1997
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2331
+ pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
1998
2332
  pool_config_starting_time: z.ZodString;
1999
2333
  pool_config_ending_time: z.ZodString;
2000
2334
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2001
2335
  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
+ pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
2341
+ pool_liquidity: z.ZodNullable<z.ZodString>;
2342
+ pool_market_cap: z.ZodNullable<z.ZodString>;
2343
+ pool_price: z.ZodNullable<z.ZodString>;
2344
+ pool_price_scale: z.ZodNullable<z.ZodString>;
2345
+ pool_price_change_24h: z.ZodNullable<z.ZodString>;
2346
+ pool_volume_change_24h: z.ZodNullable<z.ZodString>;
2347
+ pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
2348
+ }, "strip", z.ZodTypeAny, {
2349
+ pool_liquidity: string | null;
2350
+ pool_market_cap: string | null;
2351
+ pool_price: string | null;
2352
+ pool_price_scale: string | null;
2353
+ pool_price_change_24h: string | null;
2354
+ pool_volume_change_24h: string | null;
2355
+ pool_volume_usd_24h: string | null;
2356
+ }, {
2357
+ pool_liquidity: string | null;
2358
+ pool_market_cap: string | null;
2359
+ pool_price: string | null;
2360
+ pool_price_scale: string | null;
2361
+ pool_price_change_24h: string | null;
2362
+ pool_volume_change_24h: string | null;
2363
+ pool_volume_usd_24h: string | null;
2364
+ }>>, {
2365
+ pool_liquidity: string | null;
2366
+ pool_market_cap: string | null;
2367
+ pool_price: string | null;
2368
+ pool_price_scale: string | null;
2369
+ pool_price_change_24h: string | null;
2370
+ pool_volume_change_24h: string | null;
2371
+ pool_volume_usd_24h: string | null;
2372
+ } | null, unknown>;
2002
2373
  base_token: z.ZodObject<{
2003
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2374
+ token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2004
2375
  token_name: z.ZodString;
2005
2376
  token_description: z.ZodNullable<z.ZodString>;
2006
2377
  token_symbol: z.ZodString;
@@ -2069,9 +2440,9 @@ declare const assetContract: {
2069
2440
  }[] | undefined;
2070
2441
  }>>;
2071
2442
  token_image_public_url: z.ZodNullable<z.ZodString>;
2072
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2073
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2074
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
2443
+ token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2444
+ token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2445
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
2075
2446
  }, "strip", z.ZodTypeAny, {
2076
2447
  token_address: `0x${string}`;
2077
2448
  token_name: string;
@@ -2126,12 +2497,10 @@ declare const assetContract: {
2126
2497
  pool_current_price: string;
2127
2498
  pool_current_sqrt_price: string;
2128
2499
  pool_current_fdv: string;
2129
- pool_current_fdv_usd: string | null;
2130
2500
  pool_current_liquidity: string;
2131
2501
  pool_current_tick: number;
2132
2502
  pool_last_epoch: number;
2133
2503
  pool_current_market_cap: string;
2134
- pool_current_market_cap_usd: string | null;
2135
2504
  pool_current_fees_accrued: string;
2136
2505
  pool_current_total_proceeds: string;
2137
2506
  pool_current_total_tokens_sold: string;
@@ -2146,6 +2515,19 @@ declare const assetContract: {
2146
2515
  pool_config_ending_time: string;
2147
2516
  pool_migration_timestamp: Date | null;
2148
2517
  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
+ pool_market_data: {
2523
+ pool_liquidity: string | null;
2524
+ pool_market_cap: string | null;
2525
+ pool_price: string | null;
2526
+ pool_price_scale: string | null;
2527
+ pool_price_change_24h: string | null;
2528
+ pool_volume_change_24h: string | null;
2529
+ pool_volume_usd_24h: string | null;
2530
+ } | null;
2149
2531
  base_token: {
2150
2532
  token_address: `0x${string}`;
2151
2533
  token_name: string;
@@ -2175,12 +2557,10 @@ declare const assetContract: {
2175
2557
  pool_current_price: string;
2176
2558
  pool_current_sqrt_price: string;
2177
2559
  pool_current_fdv: string;
2178
- pool_current_fdv_usd: string | null;
2179
2560
  pool_current_liquidity: string;
2180
2561
  pool_current_tick: number;
2181
2562
  pool_last_epoch: number;
2182
2563
  pool_current_market_cap: string;
2183
- pool_current_market_cap_usd: string | null;
2184
2564
  pool_current_fees_accrued: string;
2185
2565
  pool_current_total_proceeds: string;
2186
2566
  pool_current_total_tokens_sold: string;
@@ -2195,6 +2575,10 @@ declare const assetContract: {
2195
2575
  pool_config_ending_time: string;
2196
2576
  pool_migration_timestamp: Date | null;
2197
2577
  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;
2198
2582
  base_token: {
2199
2583
  token_address: string;
2200
2584
  token_name: string;
@@ -2221,21 +2605,57 @@ declare const assetContract: {
2221
2605
  token_fee_receiver_address: string;
2222
2606
  token_vesting_recipient_addresses: string[];
2223
2607
  };
2608
+ pool_market_data?: unknown;
2224
2609
  }>;
2225
2610
  graduation_pool: z.ZodObject<{
2226
2611
  pool_current_price: z.ZodString;
2227
2612
  pool_current_sqrt_price: z.ZodString;
2228
2613
  pool_current_fdv: z.ZodString;
2229
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
2230
2614
  pool_current_liquidity: z.ZodString;
2231
2615
  pool_current_tick: z.ZodNumber;
2232
2616
  pool_current_market_cap: z.ZodString;
2233
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
2234
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2617
+ pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2235
2618
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2236
2619
  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
+ pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
2625
+ pool_liquidity: z.ZodNullable<z.ZodString>;
2626
+ pool_market_cap: z.ZodNullable<z.ZodString>;
2627
+ pool_price: z.ZodNullable<z.ZodString>;
2628
+ pool_price_scale: z.ZodNullable<z.ZodString>;
2629
+ pool_price_change_24h: z.ZodNullable<z.ZodString>;
2630
+ pool_volume_change_24h: z.ZodNullable<z.ZodString>;
2631
+ pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
2632
+ }, "strip", z.ZodTypeAny, {
2633
+ pool_liquidity: string | null;
2634
+ pool_market_cap: string | null;
2635
+ pool_price: string | null;
2636
+ pool_price_scale: string | null;
2637
+ pool_price_change_24h: string | null;
2638
+ pool_volume_change_24h: string | null;
2639
+ pool_volume_usd_24h: string | null;
2640
+ }, {
2641
+ pool_liquidity: string | null;
2642
+ pool_market_cap: string | null;
2643
+ pool_price: string | null;
2644
+ pool_price_scale: string | null;
2645
+ pool_price_change_24h: string | null;
2646
+ pool_volume_change_24h: string | null;
2647
+ pool_volume_usd_24h: string | null;
2648
+ }>>, {
2649
+ pool_liquidity: string | null;
2650
+ pool_market_cap: string | null;
2651
+ pool_price: string | null;
2652
+ pool_price_scale: string | null;
2653
+ pool_price_change_24h: string | null;
2654
+ pool_volume_change_24h: string | null;
2655
+ pool_volume_usd_24h: string | null;
2656
+ } | null, unknown>;
2237
2657
  base_token: z.ZodObject<{
2238
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2658
+ token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2239
2659
  token_name: z.ZodString;
2240
2660
  token_description: z.ZodNullable<z.ZodString>;
2241
2661
  token_symbol: z.ZodString;
@@ -2304,9 +2724,9 @@ declare const assetContract: {
2304
2724
  }[] | undefined;
2305
2725
  }>>;
2306
2726
  token_image_public_url: z.ZodNullable<z.ZodString>;
2307
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2308
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2309
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
2727
+ token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2728
+ token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
2729
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
2310
2730
  integrator_address: z.ZodString;
2311
2731
  }, "strip", z.ZodTypeAny, {
2312
2732
  token_address: `0x${string}`;
@@ -2364,14 +2784,25 @@ declare const assetContract: {
2364
2784
  pool_current_price: string;
2365
2785
  pool_current_sqrt_price: string;
2366
2786
  pool_current_fdv: string;
2367
- pool_current_fdv_usd: string | null;
2368
2787
  pool_current_liquidity: string;
2369
2788
  pool_current_tick: number;
2370
2789
  pool_current_market_cap: string;
2371
- pool_current_market_cap_usd: string | null;
2372
2790
  pool_address: `0x${string}`;
2373
2791
  pool_migration_timestamp: Date | null;
2374
2792
  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
+ pool_market_data: {
2798
+ pool_liquidity: string | null;
2799
+ pool_market_cap: string | null;
2800
+ pool_price: string | null;
2801
+ pool_price_scale: string | null;
2802
+ pool_price_change_24h: string | null;
2803
+ pool_volume_change_24h: string | null;
2804
+ pool_volume_usd_24h: string | null;
2805
+ } | null;
2375
2806
  base_token: {
2376
2807
  token_address: `0x${string}`;
2377
2808
  token_name: string;
@@ -2402,14 +2833,16 @@ declare const assetContract: {
2402
2833
  pool_current_price: string;
2403
2834
  pool_current_sqrt_price: string;
2404
2835
  pool_current_fdv: string;
2405
- pool_current_fdv_usd: string | null;
2406
2836
  pool_current_liquidity: string;
2407
2837
  pool_current_tick: number;
2408
2838
  pool_current_market_cap: string;
2409
- pool_current_market_cap_usd: string | null;
2410
2839
  pool_address: string;
2411
2840
  pool_migration_timestamp: Date | null;
2412
2841
  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;
2413
2846
  base_token: {
2414
2847
  token_address: string;
2415
2848
  token_name: string;
@@ -2437,6 +2870,7 @@ declare const assetContract: {
2437
2870
  token_vesting_recipient_addresses: string[];
2438
2871
  integrator_address: string;
2439
2872
  };
2873
+ pool_market_data?: unknown;
2440
2874
  }>;
2441
2875
  }, "strip", z.ZodTypeAny, {
2442
2876
  asset_address: `0x${string}`;
@@ -2449,12 +2883,10 @@ declare const assetContract: {
2449
2883
  pool_current_price: string;
2450
2884
  pool_current_sqrt_price: string;
2451
2885
  pool_current_fdv: string;
2452
- pool_current_fdv_usd: string | null;
2453
2886
  pool_current_liquidity: string;
2454
2887
  pool_current_tick: number;
2455
2888
  pool_last_epoch: number;
2456
2889
  pool_current_market_cap: string;
2457
- pool_current_market_cap_usd: string | null;
2458
2890
  pool_current_fees_accrued: string;
2459
2891
  pool_current_total_proceeds: string;
2460
2892
  pool_current_total_tokens_sold: string;
@@ -2469,6 +2901,19 @@ declare const assetContract: {
2469
2901
  pool_config_ending_time: string;
2470
2902
  pool_migration_timestamp: Date | null;
2471
2903
  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
+ pool_market_data: {
2909
+ pool_liquidity: string | null;
2910
+ pool_market_cap: string | null;
2911
+ pool_price: string | null;
2912
+ pool_price_scale: string | null;
2913
+ pool_price_change_24h: string | null;
2914
+ pool_volume_change_24h: string | null;
2915
+ pool_volume_usd_24h: string | null;
2916
+ } | null;
2472
2917
  base_token: {
2473
2918
  token_address: `0x${string}`;
2474
2919
  token_name: string;
@@ -2499,14 +2944,25 @@ declare const assetContract: {
2499
2944
  pool_current_price: string;
2500
2945
  pool_current_sqrt_price: string;
2501
2946
  pool_current_fdv: string;
2502
- pool_current_fdv_usd: string | null;
2503
2947
  pool_current_liquidity: string;
2504
2948
  pool_current_tick: number;
2505
2949
  pool_current_market_cap: string;
2506
- pool_current_market_cap_usd: string | null;
2507
2950
  pool_address: `0x${string}`;
2508
2951
  pool_migration_timestamp: Date | null;
2509
2952
  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
+ pool_market_data: {
2958
+ pool_liquidity: string | null;
2959
+ pool_market_cap: string | null;
2960
+ pool_price: string | null;
2961
+ pool_price_scale: string | null;
2962
+ pool_price_change_24h: string | null;
2963
+ pool_volume_change_24h: string | null;
2964
+ pool_volume_usd_24h: string | null;
2965
+ } | null;
2510
2966
  base_token: {
2511
2967
  token_address: `0x${string}`;
2512
2968
  token_name: string;
@@ -2544,12 +3000,10 @@ declare const assetContract: {
2544
3000
  pool_current_price: string;
2545
3001
  pool_current_sqrt_price: string;
2546
3002
  pool_current_fdv: string;
2547
- pool_current_fdv_usd: string | null;
2548
3003
  pool_current_liquidity: string;
2549
3004
  pool_current_tick: number;
2550
3005
  pool_last_epoch: number;
2551
3006
  pool_current_market_cap: string;
2552
- pool_current_market_cap_usd: string | null;
2553
3007
  pool_current_fees_accrued: string;
2554
3008
  pool_current_total_proceeds: string;
2555
3009
  pool_current_total_tokens_sold: string;
@@ -2564,6 +3018,10 @@ declare const assetContract: {
2564
3018
  pool_config_ending_time: string;
2565
3019
  pool_migration_timestamp: Date | null;
2566
3020
  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;
2567
3025
  base_token: {
2568
3026
  token_address: string;
2569
3027
  token_name: string;
@@ -2590,19 +3048,22 @@ declare const assetContract: {
2590
3048
  token_fee_receiver_address: string;
2591
3049
  token_vesting_recipient_addresses: string[];
2592
3050
  };
3051
+ pool_market_data?: unknown;
2593
3052
  };
2594
3053
  graduation_pool: {
2595
3054
  pool_current_price: string;
2596
3055
  pool_current_sqrt_price: string;
2597
3056
  pool_current_fdv: string;
2598
- pool_current_fdv_usd: string | null;
2599
3057
  pool_current_liquidity: string;
2600
3058
  pool_current_tick: number;
2601
3059
  pool_current_market_cap: string;
2602
- pool_current_market_cap_usd: string | null;
2603
3060
  pool_address: string;
2604
3061
  pool_migration_timestamp: Date | null;
2605
3062
  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;
2606
3067
  base_token: {
2607
3068
  token_address: string;
2608
3069
  token_name: string;
@@ -2630,6 +3091,7 @@ declare const assetContract: {
2630
3091
  token_vesting_recipient_addresses: string[];
2631
3092
  integrator_address: string;
2632
3093
  };
3094
+ pool_market_data?: unknown;
2633
3095
  };
2634
3096
  asset_status?: AssetStatus | undefined;
2635
3097
  }>, {
@@ -2643,12 +3105,10 @@ declare const assetContract: {
2643
3105
  pool_current_price: string;
2644
3106
  pool_current_sqrt_price: string;
2645
3107
  pool_current_fdv: string;
2646
- pool_current_fdv_usd: string | null;
2647
3108
  pool_current_liquidity: string;
2648
3109
  pool_current_tick: number;
2649
3110
  pool_last_epoch: number;
2650
3111
  pool_current_market_cap: string;
2651
- pool_current_market_cap_usd: string | null;
2652
3112
  pool_current_fees_accrued: string;
2653
3113
  pool_current_total_proceeds: string;
2654
3114
  pool_current_total_tokens_sold: string;
@@ -2663,6 +3123,19 @@ declare const assetContract: {
2663
3123
  pool_config_ending_time: string;
2664
3124
  pool_migration_timestamp: Date | null;
2665
3125
  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
+ pool_market_data: {
3131
+ pool_liquidity: string | null;
3132
+ pool_market_cap: string | null;
3133
+ pool_price: string | null;
3134
+ pool_price_scale: string | null;
3135
+ pool_price_change_24h: string | null;
3136
+ pool_volume_change_24h: string | null;
3137
+ pool_volume_usd_24h: string | null;
3138
+ } | null;
2666
3139
  base_token: {
2667
3140
  token_address: `0x${string}`;
2668
3141
  token_name: string;
@@ -2693,14 +3166,25 @@ declare const assetContract: {
2693
3166
  pool_current_price: string;
2694
3167
  pool_current_sqrt_price: string;
2695
3168
  pool_current_fdv: string;
2696
- pool_current_fdv_usd: string | null;
2697
3169
  pool_current_liquidity: string;
2698
3170
  pool_current_tick: number;
2699
3171
  pool_current_market_cap: string;
2700
- pool_current_market_cap_usd: string | null;
2701
3172
  pool_address: `0x${string}`;
2702
3173
  pool_migration_timestamp: Date | null;
2703
3174
  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
+ pool_market_data: {
3180
+ pool_liquidity: string | null;
3181
+ pool_market_cap: string | null;
3182
+ pool_price: string | null;
3183
+ pool_price_scale: string | null;
3184
+ pool_price_change_24h: string | null;
3185
+ pool_volume_change_24h: string | null;
3186
+ pool_volume_usd_24h: string | null;
3187
+ } | null;
2704
3188
  base_token: {
2705
3189
  token_address: `0x${string}`;
2706
3190
  token_name: string;
@@ -2738,12 +3222,10 @@ declare const assetContract: {
2738
3222
  pool_current_price: string;
2739
3223
  pool_current_sqrt_price: string;
2740
3224
  pool_current_fdv: string;
2741
- pool_current_fdv_usd: string | null;
2742
3225
  pool_current_liquidity: string;
2743
3226
  pool_current_tick: number;
2744
3227
  pool_last_epoch: number;
2745
3228
  pool_current_market_cap: string;
2746
- pool_current_market_cap_usd: string | null;
2747
3229
  pool_current_fees_accrued: string;
2748
3230
  pool_current_total_proceeds: string;
2749
3231
  pool_current_total_tokens_sold: string;
@@ -2758,6 +3240,10 @@ declare const assetContract: {
2758
3240
  pool_config_ending_time: string;
2759
3241
  pool_migration_timestamp: Date | null;
2760
3242
  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;
2761
3247
  base_token: {
2762
3248
  token_address: string;
2763
3249
  token_name: string;
@@ -2784,19 +3270,22 @@ declare const assetContract: {
2784
3270
  token_fee_receiver_address: string;
2785
3271
  token_vesting_recipient_addresses: string[];
2786
3272
  };
3273
+ pool_market_data?: unknown;
2787
3274
  };
2788
3275
  graduation_pool: {
2789
3276
  pool_current_price: string;
2790
3277
  pool_current_sqrt_price: string;
2791
3278
  pool_current_fdv: string;
2792
- pool_current_fdv_usd: string | null;
2793
3279
  pool_current_liquidity: string;
2794
3280
  pool_current_tick: number;
2795
3281
  pool_current_market_cap: string;
2796
- pool_current_market_cap_usd: string | null;
2797
3282
  pool_address: string;
2798
3283
  pool_migration_timestamp: Date | null;
2799
3284
  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;
2800
3289
  base_token: {
2801
3290
  token_address: string;
2802
3291
  token_name: string;
@@ -2824,6 +3313,7 @@ declare const assetContract: {
2824
3313
  token_vesting_recipient_addresses: string[];
2825
3314
  integrator_address: string;
2826
3315
  };
3316
+ pool_market_data?: unknown;
2827
3317
  };
2828
3318
  asset_status?: AssetStatus | undefined;
2829
3319
  }>, "many">;
@@ -2839,12 +3329,10 @@ declare const assetContract: {
2839
3329
  pool_current_price: string;
2840
3330
  pool_current_sqrt_price: string;
2841
3331
  pool_current_fdv: string;
2842
- pool_current_fdv_usd: string | null;
2843
3332
  pool_current_liquidity: string;
2844
3333
  pool_current_tick: number;
2845
3334
  pool_last_epoch: number;
2846
3335
  pool_current_market_cap: string;
2847
- pool_current_market_cap_usd: string | null;
2848
3336
  pool_current_fees_accrued: string;
2849
3337
  pool_current_total_proceeds: string;
2850
3338
  pool_current_total_tokens_sold: string;
@@ -2859,6 +3347,19 @@ declare const assetContract: {
2859
3347
  pool_config_ending_time: string;
2860
3348
  pool_migration_timestamp: Date | null;
2861
3349
  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
+ pool_market_data: {
3355
+ pool_liquidity: string | null;
3356
+ pool_market_cap: string | null;
3357
+ pool_price: string | null;
3358
+ pool_price_scale: string | null;
3359
+ pool_price_change_24h: string | null;
3360
+ pool_volume_change_24h: string | null;
3361
+ pool_volume_usd_24h: string | null;
3362
+ } | null;
2862
3363
  base_token: {
2863
3364
  token_address: `0x${string}`;
2864
3365
  token_name: string;
@@ -2889,14 +3390,25 @@ declare const assetContract: {
2889
3390
  pool_current_price: string;
2890
3391
  pool_current_sqrt_price: string;
2891
3392
  pool_current_fdv: string;
2892
- pool_current_fdv_usd: string | null;
2893
3393
  pool_current_liquidity: string;
2894
3394
  pool_current_tick: number;
2895
3395
  pool_current_market_cap: string;
2896
- pool_current_market_cap_usd: string | null;
2897
3396
  pool_address: `0x${string}`;
2898
3397
  pool_migration_timestamp: Date | null;
2899
3398
  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
+ pool_market_data: {
3404
+ pool_liquidity: string | null;
3405
+ pool_market_cap: string | null;
3406
+ pool_price: string | null;
3407
+ pool_price_scale: string | null;
3408
+ pool_price_change_24h: string | null;
3409
+ pool_volume_change_24h: string | null;
3410
+ pool_volume_usd_24h: string | null;
3411
+ } | null;
2900
3412
  base_token: {
2901
3413
  token_address: `0x${string}`;
2902
3414
  token_name: string;
@@ -2936,12 +3448,10 @@ declare const assetContract: {
2936
3448
  pool_current_price: string;
2937
3449
  pool_current_sqrt_price: string;
2938
3450
  pool_current_fdv: string;
2939
- pool_current_fdv_usd: string | null;
2940
3451
  pool_current_liquidity: string;
2941
3452
  pool_current_tick: number;
2942
3453
  pool_last_epoch: number;
2943
3454
  pool_current_market_cap: string;
2944
- pool_current_market_cap_usd: string | null;
2945
3455
  pool_current_fees_accrued: string;
2946
3456
  pool_current_total_proceeds: string;
2947
3457
  pool_current_total_tokens_sold: string;
@@ -2956,6 +3466,10 @@ declare const assetContract: {
2956
3466
  pool_config_ending_time: string;
2957
3467
  pool_migration_timestamp: Date | null;
2958
3468
  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;
2959
3473
  base_token: {
2960
3474
  token_address: string;
2961
3475
  token_name: string;
@@ -2982,19 +3496,22 @@ declare const assetContract: {
2982
3496
  token_fee_receiver_address: string;
2983
3497
  token_vesting_recipient_addresses: string[];
2984
3498
  };
3499
+ pool_market_data?: unknown;
2985
3500
  };
2986
3501
  graduation_pool: {
2987
3502
  pool_current_price: string;
2988
3503
  pool_current_sqrt_price: string;
2989
3504
  pool_current_fdv: string;
2990
- pool_current_fdv_usd: string | null;
2991
3505
  pool_current_liquidity: string;
2992
3506
  pool_current_tick: number;
2993
3507
  pool_current_market_cap: string;
2994
- pool_current_market_cap_usd: string | null;
2995
3508
  pool_address: string;
2996
3509
  pool_migration_timestamp: Date | null;
2997
3510
  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;
2998
3515
  base_token: {
2999
3516
  token_address: string;
3000
3517
  token_name: string;
@@ -3022,6 +3539,7 @@ declare const assetContract: {
3022
3539
  token_vesting_recipient_addresses: string[];
3023
3540
  integrator_address: string;
3024
3541
  };
3542
+ pool_market_data?: unknown;
3025
3543
  };
3026
3544
  asset_status?: AssetStatus | undefined;
3027
3545
  }[];
@@ -3031,7 +3549,7 @@ declare const assetContract: {
3031
3549
  getAssetByAddress: {
3032
3550
  description: "Get an asset by its address";
3033
3551
  pathParams: z.ZodObject<{
3034
- assetAddress: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3552
+ assetAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3035
3553
  }, "strip", z.ZodTypeAny, {
3036
3554
  assetAddress: `0x${string}`;
3037
3555
  }, {
@@ -3049,8 +3567,8 @@ declare const assetContract: {
3049
3567
  responses: {
3050
3568
  200: z.ZodObject<{
3051
3569
  result: z.ZodEffects<z.ZodObject<{
3052
- asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3053
- asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3570
+ asset_address: z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, `0x${string}`, string>>;
3571
+ asset_numeraire_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3054
3572
  asset_creation_timestamp: z.ZodDate;
3055
3573
  asset_current_pool: z.ZodString;
3056
3574
  asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
@@ -3059,12 +3577,10 @@ declare const assetContract: {
3059
3577
  pool_current_price: z.ZodString;
3060
3578
  pool_current_sqrt_price: z.ZodString;
3061
3579
  pool_current_fdv: z.ZodString;
3062
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
3063
3580
  pool_current_liquidity: z.ZodString;
3064
3581
  pool_current_tick: z.ZodNumber;
3065
3582
  pool_last_epoch: z.ZodNumber;
3066
3583
  pool_current_market_cap: z.ZodString;
3067
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
3068
3584
  pool_current_fees_accrued: z.ZodString;
3069
3585
  pool_current_total_proceeds: z.ZodString;
3070
3586
  pool_current_total_tokens_sold: z.ZodString;
@@ -3074,13 +3590,50 @@ declare const assetContract: {
3074
3590
  pool_config_min_proceeds: z.ZodString;
3075
3591
  pool_config_num_tokens_to_sell: z.ZodString;
3076
3592
  pool_id: z.ZodString;
3077
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3593
+ pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3078
3594
  pool_config_starting_time: z.ZodString;
3079
3595
  pool_config_ending_time: z.ZodString;
3080
3596
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
3081
3597
  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
+ pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
3603
+ pool_liquidity: z.ZodNullable<z.ZodString>;
3604
+ pool_market_cap: z.ZodNullable<z.ZodString>;
3605
+ pool_price: z.ZodNullable<z.ZodString>;
3606
+ pool_price_scale: z.ZodNullable<z.ZodString>;
3607
+ pool_price_change_24h: z.ZodNullable<z.ZodString>;
3608
+ pool_volume_change_24h: z.ZodNullable<z.ZodString>;
3609
+ pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
3610
+ }, "strip", z.ZodTypeAny, {
3611
+ pool_liquidity: string | null;
3612
+ pool_market_cap: string | null;
3613
+ pool_price: string | null;
3614
+ pool_price_scale: string | null;
3615
+ pool_price_change_24h: string | null;
3616
+ pool_volume_change_24h: string | null;
3617
+ pool_volume_usd_24h: string | null;
3618
+ }, {
3619
+ pool_liquidity: string | null;
3620
+ pool_market_cap: string | null;
3621
+ pool_price: string | null;
3622
+ pool_price_scale: string | null;
3623
+ pool_price_change_24h: string | null;
3624
+ pool_volume_change_24h: string | null;
3625
+ pool_volume_usd_24h: string | null;
3626
+ }>>, {
3627
+ pool_liquidity: string | null;
3628
+ pool_market_cap: string | null;
3629
+ pool_price: string | null;
3630
+ pool_price_scale: string | null;
3631
+ pool_price_change_24h: string | null;
3632
+ pool_volume_change_24h: string | null;
3633
+ pool_volume_usd_24h: string | null;
3634
+ } | null, unknown>;
3082
3635
  base_token: z.ZodObject<{
3083
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3636
+ token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3084
3637
  token_name: z.ZodString;
3085
3638
  token_description: z.ZodNullable<z.ZodString>;
3086
3639
  token_symbol: z.ZodString;
@@ -3149,9 +3702,9 @@ declare const assetContract: {
3149
3702
  }[] | undefined;
3150
3703
  }>>;
3151
3704
  token_image_public_url: z.ZodNullable<z.ZodString>;
3152
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3153
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3154
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
3705
+ token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3706
+ token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3707
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
3155
3708
  }, "strip", z.ZodTypeAny, {
3156
3709
  token_address: `0x${string}`;
3157
3710
  token_name: string;
@@ -3206,12 +3759,10 @@ declare const assetContract: {
3206
3759
  pool_current_price: string;
3207
3760
  pool_current_sqrt_price: string;
3208
3761
  pool_current_fdv: string;
3209
- pool_current_fdv_usd: string | null;
3210
3762
  pool_current_liquidity: string;
3211
3763
  pool_current_tick: number;
3212
3764
  pool_last_epoch: number;
3213
3765
  pool_current_market_cap: string;
3214
- pool_current_market_cap_usd: string | null;
3215
3766
  pool_current_fees_accrued: string;
3216
3767
  pool_current_total_proceeds: string;
3217
3768
  pool_current_total_tokens_sold: string;
@@ -3226,6 +3777,19 @@ declare const assetContract: {
3226
3777
  pool_config_ending_time: string;
3227
3778
  pool_migration_timestamp: Date | null;
3228
3779
  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
+ pool_market_data: {
3785
+ pool_liquidity: string | null;
3786
+ pool_market_cap: string | null;
3787
+ pool_price: string | null;
3788
+ pool_price_scale: string | null;
3789
+ pool_price_change_24h: string | null;
3790
+ pool_volume_change_24h: string | null;
3791
+ pool_volume_usd_24h: string | null;
3792
+ } | null;
3229
3793
  base_token: {
3230
3794
  token_address: `0x${string}`;
3231
3795
  token_name: string;
@@ -3255,12 +3819,10 @@ declare const assetContract: {
3255
3819
  pool_current_price: string;
3256
3820
  pool_current_sqrt_price: string;
3257
3821
  pool_current_fdv: string;
3258
- pool_current_fdv_usd: string | null;
3259
3822
  pool_current_liquidity: string;
3260
3823
  pool_current_tick: number;
3261
3824
  pool_last_epoch: number;
3262
3825
  pool_current_market_cap: string;
3263
- pool_current_market_cap_usd: string | null;
3264
3826
  pool_current_fees_accrued: string;
3265
3827
  pool_current_total_proceeds: string;
3266
3828
  pool_current_total_tokens_sold: string;
@@ -3275,6 +3837,10 @@ declare const assetContract: {
3275
3837
  pool_config_ending_time: string;
3276
3838
  pool_migration_timestamp: Date | null;
3277
3839
  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;
3278
3844
  base_token: {
3279
3845
  token_address: string;
3280
3846
  token_name: string;
@@ -3301,21 +3867,57 @@ declare const assetContract: {
3301
3867
  token_fee_receiver_address: string;
3302
3868
  token_vesting_recipient_addresses: string[];
3303
3869
  };
3870
+ pool_market_data?: unknown;
3304
3871
  }>;
3305
3872
  graduation_pool: z.ZodObject<{
3306
3873
  pool_current_price: z.ZodString;
3307
3874
  pool_current_sqrt_price: z.ZodString;
3308
3875
  pool_current_fdv: z.ZodString;
3309
- pool_current_fdv_usd: z.ZodNullable<z.ZodString>;
3310
3876
  pool_current_liquidity: z.ZodString;
3311
3877
  pool_current_tick: z.ZodNumber;
3312
3878
  pool_current_market_cap: z.ZodString;
3313
- pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
3314
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3879
+ pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3315
3880
  pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
3316
3881
  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
+ pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
3887
+ pool_liquidity: z.ZodNullable<z.ZodString>;
3888
+ pool_market_cap: z.ZodNullable<z.ZodString>;
3889
+ pool_price: z.ZodNullable<z.ZodString>;
3890
+ pool_price_scale: z.ZodNullable<z.ZodString>;
3891
+ pool_price_change_24h: z.ZodNullable<z.ZodString>;
3892
+ pool_volume_change_24h: z.ZodNullable<z.ZodString>;
3893
+ pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
3894
+ }, "strip", z.ZodTypeAny, {
3895
+ pool_liquidity: string | null;
3896
+ pool_market_cap: string | null;
3897
+ pool_price: string | null;
3898
+ pool_price_scale: string | null;
3899
+ pool_price_change_24h: string | null;
3900
+ pool_volume_change_24h: string | null;
3901
+ pool_volume_usd_24h: string | null;
3902
+ }, {
3903
+ pool_liquidity: string | null;
3904
+ pool_market_cap: string | null;
3905
+ pool_price: string | null;
3906
+ pool_price_scale: string | null;
3907
+ pool_price_change_24h: string | null;
3908
+ pool_volume_change_24h: string | null;
3909
+ pool_volume_usd_24h: string | null;
3910
+ }>>, {
3911
+ pool_liquidity: string | null;
3912
+ pool_market_cap: string | null;
3913
+ pool_price: string | null;
3914
+ pool_price_scale: string | null;
3915
+ pool_price_change_24h: string | null;
3916
+ pool_volume_change_24h: string | null;
3917
+ pool_volume_usd_24h: string | null;
3918
+ } | null, unknown>;
3317
3919
  base_token: z.ZodObject<{
3318
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3920
+ token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3319
3921
  token_name: z.ZodString;
3320
3922
  token_description: z.ZodNullable<z.ZodString>;
3321
3923
  token_symbol: z.ZodString;
@@ -3384,9 +3986,9 @@ declare const assetContract: {
3384
3986
  }[] | undefined;
3385
3987
  }>>;
3386
3988
  token_image_public_url: z.ZodNullable<z.ZodString>;
3387
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3388
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3389
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
3989
+ token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3990
+ token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
3991
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
3390
3992
  integrator_address: z.ZodString;
3391
3993
  }, "strip", z.ZodTypeAny, {
3392
3994
  token_address: `0x${string}`;
@@ -3444,14 +4046,25 @@ declare const assetContract: {
3444
4046
  pool_current_price: string;
3445
4047
  pool_current_sqrt_price: string;
3446
4048
  pool_current_fdv: string;
3447
- pool_current_fdv_usd: string | null;
3448
4049
  pool_current_liquidity: string;
3449
4050
  pool_current_tick: number;
3450
4051
  pool_current_market_cap: string;
3451
- pool_current_market_cap_usd: string | null;
3452
4052
  pool_address: `0x${string}`;
3453
4053
  pool_migration_timestamp: Date | null;
3454
4054
  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
+ pool_market_data: {
4060
+ pool_liquidity: string | null;
4061
+ pool_market_cap: string | null;
4062
+ pool_price: string | null;
4063
+ pool_price_scale: string | null;
4064
+ pool_price_change_24h: string | null;
4065
+ pool_volume_change_24h: string | null;
4066
+ pool_volume_usd_24h: string | null;
4067
+ } | null;
3455
4068
  base_token: {
3456
4069
  token_address: `0x${string}`;
3457
4070
  token_name: string;
@@ -3482,14 +4095,16 @@ declare const assetContract: {
3482
4095
  pool_current_price: string;
3483
4096
  pool_current_sqrt_price: string;
3484
4097
  pool_current_fdv: string;
3485
- pool_current_fdv_usd: string | null;
3486
4098
  pool_current_liquidity: string;
3487
4099
  pool_current_tick: number;
3488
4100
  pool_current_market_cap: string;
3489
- pool_current_market_cap_usd: string | null;
3490
4101
  pool_address: string;
3491
4102
  pool_migration_timestamp: Date | null;
3492
4103
  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;
3493
4108
  base_token: {
3494
4109
  token_address: string;
3495
4110
  token_name: string;
@@ -3517,6 +4132,7 @@ declare const assetContract: {
3517
4132
  token_vesting_recipient_addresses: string[];
3518
4133
  integrator_address: string;
3519
4134
  };
4135
+ pool_market_data?: unknown;
3520
4136
  }>;
3521
4137
  }, "strip", z.ZodTypeAny, {
3522
4138
  asset_address: `0x${string}`;
@@ -3529,12 +4145,10 @@ declare const assetContract: {
3529
4145
  pool_current_price: string;
3530
4146
  pool_current_sqrt_price: string;
3531
4147
  pool_current_fdv: string;
3532
- pool_current_fdv_usd: string | null;
3533
4148
  pool_current_liquidity: string;
3534
4149
  pool_current_tick: number;
3535
4150
  pool_last_epoch: number;
3536
4151
  pool_current_market_cap: string;
3537
- pool_current_market_cap_usd: string | null;
3538
4152
  pool_current_fees_accrued: string;
3539
4153
  pool_current_total_proceeds: string;
3540
4154
  pool_current_total_tokens_sold: string;
@@ -3549,6 +4163,19 @@ declare const assetContract: {
3549
4163
  pool_config_ending_time: string;
3550
4164
  pool_migration_timestamp: Date | null;
3551
4165
  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
+ pool_market_data: {
4171
+ pool_liquidity: string | null;
4172
+ pool_market_cap: string | null;
4173
+ pool_price: string | null;
4174
+ pool_price_scale: string | null;
4175
+ pool_price_change_24h: string | null;
4176
+ pool_volume_change_24h: string | null;
4177
+ pool_volume_usd_24h: string | null;
4178
+ } | null;
3552
4179
  base_token: {
3553
4180
  token_address: `0x${string}`;
3554
4181
  token_name: string;
@@ -3579,14 +4206,25 @@ declare const assetContract: {
3579
4206
  pool_current_price: string;
3580
4207
  pool_current_sqrt_price: string;
3581
4208
  pool_current_fdv: string;
3582
- pool_current_fdv_usd: string | null;
3583
4209
  pool_current_liquidity: string;
3584
4210
  pool_current_tick: number;
3585
4211
  pool_current_market_cap: string;
3586
- pool_current_market_cap_usd: string | null;
3587
4212
  pool_address: `0x${string}`;
3588
4213
  pool_migration_timestamp: Date | null;
3589
4214
  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
+ pool_market_data: {
4220
+ pool_liquidity: string | null;
4221
+ pool_market_cap: string | null;
4222
+ pool_price: string | null;
4223
+ pool_price_scale: string | null;
4224
+ pool_price_change_24h: string | null;
4225
+ pool_volume_change_24h: string | null;
4226
+ pool_volume_usd_24h: string | null;
4227
+ } | null;
3590
4228
  base_token: {
3591
4229
  token_address: `0x${string}`;
3592
4230
  token_name: string;
@@ -3624,12 +4262,10 @@ declare const assetContract: {
3624
4262
  pool_current_price: string;
3625
4263
  pool_current_sqrt_price: string;
3626
4264
  pool_current_fdv: string;
3627
- pool_current_fdv_usd: string | null;
3628
4265
  pool_current_liquidity: string;
3629
4266
  pool_current_tick: number;
3630
4267
  pool_last_epoch: number;
3631
4268
  pool_current_market_cap: string;
3632
- pool_current_market_cap_usd: string | null;
3633
4269
  pool_current_fees_accrued: string;
3634
4270
  pool_current_total_proceeds: string;
3635
4271
  pool_current_total_tokens_sold: string;
@@ -3644,6 +4280,10 @@ declare const assetContract: {
3644
4280
  pool_config_ending_time: string;
3645
4281
  pool_migration_timestamp: Date | null;
3646
4282
  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;
3647
4287
  base_token: {
3648
4288
  token_address: string;
3649
4289
  token_name: string;
@@ -3670,19 +4310,22 @@ declare const assetContract: {
3670
4310
  token_fee_receiver_address: string;
3671
4311
  token_vesting_recipient_addresses: string[];
3672
4312
  };
4313
+ pool_market_data?: unknown;
3673
4314
  };
3674
4315
  graduation_pool: {
3675
4316
  pool_current_price: string;
3676
4317
  pool_current_sqrt_price: string;
3677
4318
  pool_current_fdv: string;
3678
- pool_current_fdv_usd: string | null;
3679
4319
  pool_current_liquidity: string;
3680
4320
  pool_current_tick: number;
3681
4321
  pool_current_market_cap: string;
3682
- pool_current_market_cap_usd: string | null;
3683
4322
  pool_address: string;
3684
4323
  pool_migration_timestamp: Date | null;
3685
4324
  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;
3686
4329
  base_token: {
3687
4330
  token_address: string;
3688
4331
  token_name: string;
@@ -3710,6 +4353,7 @@ declare const assetContract: {
3710
4353
  token_vesting_recipient_addresses: string[];
3711
4354
  integrator_address: string;
3712
4355
  };
4356
+ pool_market_data?: unknown;
3713
4357
  };
3714
4358
  asset_status?: AssetStatus | undefined;
3715
4359
  }>, {
@@ -3723,12 +4367,10 @@ declare const assetContract: {
3723
4367
  pool_current_price: string;
3724
4368
  pool_current_sqrt_price: string;
3725
4369
  pool_current_fdv: string;
3726
- pool_current_fdv_usd: string | null;
3727
4370
  pool_current_liquidity: string;
3728
4371
  pool_current_tick: number;
3729
4372
  pool_last_epoch: number;
3730
4373
  pool_current_market_cap: string;
3731
- pool_current_market_cap_usd: string | null;
3732
4374
  pool_current_fees_accrued: string;
3733
4375
  pool_current_total_proceeds: string;
3734
4376
  pool_current_total_tokens_sold: string;
@@ -3743,6 +4385,19 @@ declare const assetContract: {
3743
4385
  pool_config_ending_time: string;
3744
4386
  pool_migration_timestamp: Date | null;
3745
4387
  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
+ pool_market_data: {
4393
+ pool_liquidity: string | null;
4394
+ pool_market_cap: string | null;
4395
+ pool_price: string | null;
4396
+ pool_price_scale: string | null;
4397
+ pool_price_change_24h: string | null;
4398
+ pool_volume_change_24h: string | null;
4399
+ pool_volume_usd_24h: string | null;
4400
+ } | null;
3746
4401
  base_token: {
3747
4402
  token_address: `0x${string}`;
3748
4403
  token_name: string;
@@ -3773,14 +4428,25 @@ declare const assetContract: {
3773
4428
  pool_current_price: string;
3774
4429
  pool_current_sqrt_price: string;
3775
4430
  pool_current_fdv: string;
3776
- pool_current_fdv_usd: string | null;
3777
4431
  pool_current_liquidity: string;
3778
4432
  pool_current_tick: number;
3779
4433
  pool_current_market_cap: string;
3780
- pool_current_market_cap_usd: string | null;
3781
4434
  pool_address: `0x${string}`;
3782
4435
  pool_migration_timestamp: Date | null;
3783
4436
  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
+ pool_market_data: {
4442
+ pool_liquidity: string | null;
4443
+ pool_market_cap: string | null;
4444
+ pool_price: string | null;
4445
+ pool_price_scale: string | null;
4446
+ pool_price_change_24h: string | null;
4447
+ pool_volume_change_24h: string | null;
4448
+ pool_volume_usd_24h: string | null;
4449
+ } | null;
3784
4450
  base_token: {
3785
4451
  token_address: `0x${string}`;
3786
4452
  token_name: string;
@@ -3818,12 +4484,10 @@ declare const assetContract: {
3818
4484
  pool_current_price: string;
3819
4485
  pool_current_sqrt_price: string;
3820
4486
  pool_current_fdv: string;
3821
- pool_current_fdv_usd: string | null;
3822
4487
  pool_current_liquidity: string;
3823
4488
  pool_current_tick: number;
3824
4489
  pool_last_epoch: number;
3825
4490
  pool_current_market_cap: string;
3826
- pool_current_market_cap_usd: string | null;
3827
4491
  pool_current_fees_accrued: string;
3828
4492
  pool_current_total_proceeds: string;
3829
4493
  pool_current_total_tokens_sold: string;
@@ -3838,6 +4502,10 @@ declare const assetContract: {
3838
4502
  pool_config_ending_time: string;
3839
4503
  pool_migration_timestamp: Date | null;
3840
4504
  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;
3841
4509
  base_token: {
3842
4510
  token_address: string;
3843
4511
  token_name: string;
@@ -3864,19 +4532,22 @@ declare const assetContract: {
3864
4532
  token_fee_receiver_address: string;
3865
4533
  token_vesting_recipient_addresses: string[];
3866
4534
  };
4535
+ pool_market_data?: unknown;
3867
4536
  };
3868
4537
  graduation_pool: {
3869
4538
  pool_current_price: string;
3870
4539
  pool_current_sqrt_price: string;
3871
4540
  pool_current_fdv: string;
3872
- pool_current_fdv_usd: string | null;
3873
4541
  pool_current_liquidity: string;
3874
4542
  pool_current_tick: number;
3875
4543
  pool_current_market_cap: string;
3876
- pool_current_market_cap_usd: string | null;
3877
4544
  pool_address: string;
3878
4545
  pool_migration_timestamp: Date | null;
3879
4546
  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;
3880
4551
  base_token: {
3881
4552
  token_address: string;
3882
4553
  token_name: string;
@@ -3904,6 +4575,7 @@ declare const assetContract: {
3904
4575
  token_vesting_recipient_addresses: string[];
3905
4576
  integrator_address: string;
3906
4577
  };
4578
+ pool_market_data?: unknown;
3907
4579
  };
3908
4580
  asset_status?: AssetStatus | undefined;
3909
4581
  }>;
@@ -3919,12 +4591,10 @@ declare const assetContract: {
3919
4591
  pool_current_price: string;
3920
4592
  pool_current_sqrt_price: string;
3921
4593
  pool_current_fdv: string;
3922
- pool_current_fdv_usd: string | null;
3923
4594
  pool_current_liquidity: string;
3924
4595
  pool_current_tick: number;
3925
4596
  pool_last_epoch: number;
3926
4597
  pool_current_market_cap: string;
3927
- pool_current_market_cap_usd: string | null;
3928
4598
  pool_current_fees_accrued: string;
3929
4599
  pool_current_total_proceeds: string;
3930
4600
  pool_current_total_tokens_sold: string;
@@ -3939,6 +4609,19 @@ declare const assetContract: {
3939
4609
  pool_config_ending_time: string;
3940
4610
  pool_migration_timestamp: Date | null;
3941
4611
  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
+ pool_market_data: {
4617
+ pool_liquidity: string | null;
4618
+ pool_market_cap: string | null;
4619
+ pool_price: string | null;
4620
+ pool_price_scale: string | null;
4621
+ pool_price_change_24h: string | null;
4622
+ pool_volume_change_24h: string | null;
4623
+ pool_volume_usd_24h: string | null;
4624
+ } | null;
3942
4625
  base_token: {
3943
4626
  token_address: `0x${string}`;
3944
4627
  token_name: string;
@@ -3969,14 +4652,25 @@ declare const assetContract: {
3969
4652
  pool_current_price: string;
3970
4653
  pool_current_sqrt_price: string;
3971
4654
  pool_current_fdv: string;
3972
- pool_current_fdv_usd: string | null;
3973
4655
  pool_current_liquidity: string;
3974
4656
  pool_current_tick: number;
3975
4657
  pool_current_market_cap: string;
3976
- pool_current_market_cap_usd: string | null;
3977
4658
  pool_address: `0x${string}`;
3978
4659
  pool_migration_timestamp: Date | null;
3979
4660
  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
+ pool_market_data: {
4666
+ pool_liquidity: string | null;
4667
+ pool_market_cap: string | null;
4668
+ pool_price: string | null;
4669
+ pool_price_scale: string | null;
4670
+ pool_price_change_24h: string | null;
4671
+ pool_volume_change_24h: string | null;
4672
+ pool_volume_usd_24h: string | null;
4673
+ } | null;
3980
4674
  base_token: {
3981
4675
  token_address: `0x${string}`;
3982
4676
  token_name: string;
@@ -4016,12 +4710,10 @@ declare const assetContract: {
4016
4710
  pool_current_price: string;
4017
4711
  pool_current_sqrt_price: string;
4018
4712
  pool_current_fdv: string;
4019
- pool_current_fdv_usd: string | null;
4020
4713
  pool_current_liquidity: string;
4021
4714
  pool_current_tick: number;
4022
4715
  pool_last_epoch: number;
4023
4716
  pool_current_market_cap: string;
4024
- pool_current_market_cap_usd: string | null;
4025
4717
  pool_current_fees_accrued: string;
4026
4718
  pool_current_total_proceeds: string;
4027
4719
  pool_current_total_tokens_sold: string;
@@ -4036,6 +4728,10 @@ declare const assetContract: {
4036
4728
  pool_config_ending_time: string;
4037
4729
  pool_migration_timestamp: Date | null;
4038
4730
  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;
4039
4735
  base_token: {
4040
4736
  token_address: string;
4041
4737
  token_name: string;
@@ -4062,19 +4758,22 @@ declare const assetContract: {
4062
4758
  token_fee_receiver_address: string;
4063
4759
  token_vesting_recipient_addresses: string[];
4064
4760
  };
4761
+ pool_market_data?: unknown;
4065
4762
  };
4066
4763
  graduation_pool: {
4067
4764
  pool_current_price: string;
4068
4765
  pool_current_sqrt_price: string;
4069
4766
  pool_current_fdv: string;
4070
- pool_current_fdv_usd: string | null;
4071
4767
  pool_current_liquidity: string;
4072
4768
  pool_current_tick: number;
4073
4769
  pool_current_market_cap: string;
4074
- pool_current_market_cap_usd: string | null;
4075
4770
  pool_address: string;
4076
4771
  pool_migration_timestamp: Date | null;
4077
4772
  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;
4078
4777
  base_token: {
4079
4778
  token_address: string;
4080
4779
  token_name: string;
@@ -4102,6 +4801,7 @@ declare const assetContract: {
4102
4801
  token_vesting_recipient_addresses: string[];
4103
4802
  integrator_address: string;
4104
4803
  };
4804
+ pool_market_data?: unknown;
4105
4805
  };
4106
4806
  asset_status?: AssetStatus | undefined;
4107
4807
  };