@longdotxyz/shared 0.0.83 → 0.0.95
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.
- package/dist/contracts/asset.contract.d.ts +955 -51
- package/dist/contracts/asset.contract.js +51 -16
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +30 -30
- package/dist/contracts/auction-template.contract.js +16 -16
- package/dist/contracts/auction-template.contract.js.map +1 -1
- package/dist/contracts/auction.contract.d.ts +1 -1
- package/dist/contracts/auction.contract.js +1 -1
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/charts.contract.d.ts +214 -0
- package/dist/contracts/charts.contract.js +61 -0
- package/dist/contracts/charts.contract.js.map +1 -0
- package/dist/contracts/index.d.ts +2287 -66
- package/dist/contracts/index.js +6 -0
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/market.contract.d.ts +2060 -0
- package/dist/contracts/market.contract.js +195 -0
- package/dist/contracts/market.contract.js.map +1 -0
- package/dist/contracts/pathfinding.contract.d.ts +14 -14
- package/dist/contracts/pathfinding.contract.js +2 -2
- package/dist/contracts/pathfinding.contract.js.map +1 -1
- package/dist/contracts/sponsorship.contract.d.ts +2 -2
- package/dist/contracts/sponsorship.contract.js +2 -2
- package/dist/contracts/sponsorship.contract.js.map +1 -1
- package/dist/graphql/generated.d.ts +1433 -509
- package/dist/graphql/generated.js +162 -19
- package/dist/graphql/generated.js.map +1 -1
- package/dist/types/constants.d.ts +3 -1
- package/dist/types/constants.js +2 -0
- package/dist/types/constants.js.map +1 -1
- package/dist/types/hex.type.d.ts +1 -1
- package/dist/types/hex.type.js +2 -2
- package/dist/types/hex.type.js.map +1 -1
- package/dist/types/pool-key.type.d.ts +3 -3
- 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.
|
|
5
|
-
asset_numeraire_address: z.
|
|
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>;
|
|
@@ -26,13 +26,51 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
26
26
|
pool_config_min_proceeds: z.ZodString;
|
|
27
27
|
pool_config_num_tokens_to_sell: z.ZodString;
|
|
28
28
|
pool_id: z.ZodString;
|
|
29
|
-
pool_address: z.
|
|
29
|
+
pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
30
30
|
pool_config_starting_time: z.ZodString;
|
|
31
31
|
pool_config_ending_time: z.ZodString;
|
|
32
32
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
33
33
|
pool_type: z.ZodString;
|
|
34
|
+
pool_volume_24h_base: z.ZodNullable<z.ZodString>;
|
|
35
|
+
pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
|
|
36
|
+
pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
|
|
37
|
+
pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
|
|
38
|
+
pool_volume_last_updated: z.ZodNullable<z.ZodString>;
|
|
39
|
+
pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
40
|
+
pool_liquidity: z.ZodNullable<z.ZodString>;
|
|
41
|
+
pool_market_cap: z.ZodNullable<z.ZodString>;
|
|
42
|
+
pool_price: z.ZodNullable<z.ZodString>;
|
|
43
|
+
pool_price_scale: z.ZodNullable<z.ZodString>;
|
|
44
|
+
pool_price_change_24h: z.ZodNullable<z.ZodString>;
|
|
45
|
+
pool_volume_change_24h: z.ZodNullable<z.ZodString>;
|
|
46
|
+
pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
|
|
47
|
+
}, "strip", z.ZodTypeAny, {
|
|
48
|
+
pool_liquidity: string | null;
|
|
49
|
+
pool_market_cap: string | null;
|
|
50
|
+
pool_price: string | null;
|
|
51
|
+
pool_price_scale: string | null;
|
|
52
|
+
pool_price_change_24h: string | null;
|
|
53
|
+
pool_volume_change_24h: string | null;
|
|
54
|
+
pool_volume_usd_24h: string | null;
|
|
55
|
+
}, {
|
|
56
|
+
pool_liquidity: string | null;
|
|
57
|
+
pool_market_cap: string | null;
|
|
58
|
+
pool_price: string | null;
|
|
59
|
+
pool_price_scale: string | null;
|
|
60
|
+
pool_price_change_24h: string | null;
|
|
61
|
+
pool_volume_change_24h: string | null;
|
|
62
|
+
pool_volume_usd_24h: string | null;
|
|
63
|
+
}>>, {
|
|
64
|
+
pool_liquidity: string | null;
|
|
65
|
+
pool_market_cap: string | null;
|
|
66
|
+
pool_price: string | null;
|
|
67
|
+
pool_price_scale: string | null;
|
|
68
|
+
pool_price_change_24h: string | null;
|
|
69
|
+
pool_volume_change_24h: string | null;
|
|
70
|
+
pool_volume_usd_24h: string | null;
|
|
71
|
+
} | null, unknown>;
|
|
34
72
|
base_token: z.ZodObject<{
|
|
35
|
-
token_address: z.
|
|
73
|
+
token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
36
74
|
token_name: z.ZodString;
|
|
37
75
|
token_description: z.ZodNullable<z.ZodString>;
|
|
38
76
|
token_symbol: z.ZodString;
|
|
@@ -101,9 +139,9 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
101
139
|
}[] | undefined;
|
|
102
140
|
}>>;
|
|
103
141
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
104
|
-
token_creator_address: z.
|
|
105
|
-
token_fee_receiver_address: z.
|
|
106
|
-
token_vesting_recipient_addresses: z.ZodArray<z.
|
|
142
|
+
token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
143
|
+
token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
144
|
+
token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
107
145
|
}, "strip", z.ZodTypeAny, {
|
|
108
146
|
token_address: `0x${string}`;
|
|
109
147
|
token_name: string;
|
|
@@ -178,6 +216,20 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
178
216
|
pool_config_ending_time: string;
|
|
179
217
|
pool_migration_timestamp: Date | null;
|
|
180
218
|
pool_type: string;
|
|
219
|
+
pool_volume_24h_base: string | null;
|
|
220
|
+
pool_volume_24h_quote: string | null;
|
|
221
|
+
pool_volume_24h_usd: string | null;
|
|
222
|
+
pool_volume_24h_swap_count: number | null;
|
|
223
|
+
pool_volume_last_updated: string | null;
|
|
224
|
+
pool_market_data: {
|
|
225
|
+
pool_liquidity: string | null;
|
|
226
|
+
pool_market_cap: string | null;
|
|
227
|
+
pool_price: string | null;
|
|
228
|
+
pool_price_scale: string | null;
|
|
229
|
+
pool_price_change_24h: string | null;
|
|
230
|
+
pool_volume_change_24h: string | null;
|
|
231
|
+
pool_volume_usd_24h: string | null;
|
|
232
|
+
} | null;
|
|
181
233
|
base_token: {
|
|
182
234
|
token_address: `0x${string}`;
|
|
183
235
|
token_name: string;
|
|
@@ -227,6 +279,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
227
279
|
pool_config_ending_time: string;
|
|
228
280
|
pool_migration_timestamp: Date | null;
|
|
229
281
|
pool_type: string;
|
|
282
|
+
pool_volume_24h_base: string | null;
|
|
283
|
+
pool_volume_24h_quote: string | null;
|
|
284
|
+
pool_volume_24h_usd: string | null;
|
|
285
|
+
pool_volume_24h_swap_count: number | null;
|
|
286
|
+
pool_volume_last_updated: string | null;
|
|
230
287
|
base_token: {
|
|
231
288
|
token_address: string;
|
|
232
289
|
token_name: string;
|
|
@@ -253,6 +310,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
253
310
|
token_fee_receiver_address: string;
|
|
254
311
|
token_vesting_recipient_addresses: string[];
|
|
255
312
|
};
|
|
313
|
+
pool_market_data?: unknown;
|
|
256
314
|
}>;
|
|
257
315
|
graduation_pool: z.ZodObject<{
|
|
258
316
|
pool_current_price: z.ZodString;
|
|
@@ -263,11 +321,49 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
263
321
|
pool_current_tick: z.ZodNumber;
|
|
264
322
|
pool_current_market_cap: z.ZodString;
|
|
265
323
|
pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
|
|
266
|
-
pool_address: z.
|
|
324
|
+
pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
267
325
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
268
326
|
pool_type: z.ZodString;
|
|
327
|
+
pool_volume_24h_base: z.ZodNullable<z.ZodString>;
|
|
328
|
+
pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
|
|
329
|
+
pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
|
|
330
|
+
pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
|
|
331
|
+
pool_volume_last_updated: z.ZodNullable<z.ZodString>;
|
|
332
|
+
pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
333
|
+
pool_liquidity: z.ZodNullable<z.ZodString>;
|
|
334
|
+
pool_market_cap: z.ZodNullable<z.ZodString>;
|
|
335
|
+
pool_price: z.ZodNullable<z.ZodString>;
|
|
336
|
+
pool_price_scale: z.ZodNullable<z.ZodString>;
|
|
337
|
+
pool_price_change_24h: z.ZodNullable<z.ZodString>;
|
|
338
|
+
pool_volume_change_24h: z.ZodNullable<z.ZodString>;
|
|
339
|
+
pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
|
|
340
|
+
}, "strip", z.ZodTypeAny, {
|
|
341
|
+
pool_liquidity: string | null;
|
|
342
|
+
pool_market_cap: string | null;
|
|
343
|
+
pool_price: string | null;
|
|
344
|
+
pool_price_scale: string | null;
|
|
345
|
+
pool_price_change_24h: string | null;
|
|
346
|
+
pool_volume_change_24h: string | null;
|
|
347
|
+
pool_volume_usd_24h: string | null;
|
|
348
|
+
}, {
|
|
349
|
+
pool_liquidity: string | null;
|
|
350
|
+
pool_market_cap: string | null;
|
|
351
|
+
pool_price: string | null;
|
|
352
|
+
pool_price_scale: string | null;
|
|
353
|
+
pool_price_change_24h: string | null;
|
|
354
|
+
pool_volume_change_24h: string | null;
|
|
355
|
+
pool_volume_usd_24h: string | null;
|
|
356
|
+
}>>, {
|
|
357
|
+
pool_liquidity: string | null;
|
|
358
|
+
pool_market_cap: string | null;
|
|
359
|
+
pool_price: string | null;
|
|
360
|
+
pool_price_scale: string | null;
|
|
361
|
+
pool_price_change_24h: string | null;
|
|
362
|
+
pool_volume_change_24h: string | null;
|
|
363
|
+
pool_volume_usd_24h: string | null;
|
|
364
|
+
} | null, unknown>;
|
|
269
365
|
base_token: z.ZodObject<{
|
|
270
|
-
token_address: z.
|
|
366
|
+
token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
271
367
|
token_name: z.ZodString;
|
|
272
368
|
token_description: z.ZodNullable<z.ZodString>;
|
|
273
369
|
token_symbol: z.ZodString;
|
|
@@ -336,9 +432,9 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
336
432
|
}[] | undefined;
|
|
337
433
|
}>>;
|
|
338
434
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
339
|
-
token_creator_address: z.
|
|
340
|
-
token_fee_receiver_address: z.
|
|
341
|
-
token_vesting_recipient_addresses: z.ZodArray<z.
|
|
435
|
+
token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
436
|
+
token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
437
|
+
token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
342
438
|
integrator_address: z.ZodString;
|
|
343
439
|
}, "strip", z.ZodTypeAny, {
|
|
344
440
|
token_address: `0x${string}`;
|
|
@@ -404,6 +500,20 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
404
500
|
pool_address: `0x${string}`;
|
|
405
501
|
pool_migration_timestamp: Date | null;
|
|
406
502
|
pool_type: string;
|
|
503
|
+
pool_volume_24h_base: string | null;
|
|
504
|
+
pool_volume_24h_quote: string | null;
|
|
505
|
+
pool_volume_24h_usd: string | null;
|
|
506
|
+
pool_volume_24h_swap_count: number | null;
|
|
507
|
+
pool_volume_last_updated: string | null;
|
|
508
|
+
pool_market_data: {
|
|
509
|
+
pool_liquidity: string | null;
|
|
510
|
+
pool_market_cap: string | null;
|
|
511
|
+
pool_price: string | null;
|
|
512
|
+
pool_price_scale: string | null;
|
|
513
|
+
pool_price_change_24h: string | null;
|
|
514
|
+
pool_volume_change_24h: string | null;
|
|
515
|
+
pool_volume_usd_24h: string | null;
|
|
516
|
+
} | null;
|
|
407
517
|
base_token: {
|
|
408
518
|
token_address: `0x${string}`;
|
|
409
519
|
token_name: string;
|
|
@@ -442,6 +552,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
442
552
|
pool_address: string;
|
|
443
553
|
pool_migration_timestamp: Date | null;
|
|
444
554
|
pool_type: string;
|
|
555
|
+
pool_volume_24h_base: string | null;
|
|
556
|
+
pool_volume_24h_quote: string | null;
|
|
557
|
+
pool_volume_24h_usd: string | null;
|
|
558
|
+
pool_volume_24h_swap_count: number | null;
|
|
559
|
+
pool_volume_last_updated: string | null;
|
|
445
560
|
base_token: {
|
|
446
561
|
token_address: string;
|
|
447
562
|
token_name: string;
|
|
@@ -469,6 +584,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
469
584
|
token_vesting_recipient_addresses: string[];
|
|
470
585
|
integrator_address: string;
|
|
471
586
|
};
|
|
587
|
+
pool_market_data?: unknown;
|
|
472
588
|
}>;
|
|
473
589
|
}, "strip", z.ZodTypeAny, {
|
|
474
590
|
asset_address: `0x${string}`;
|
|
@@ -501,6 +617,20 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
501
617
|
pool_config_ending_time: string;
|
|
502
618
|
pool_migration_timestamp: Date | null;
|
|
503
619
|
pool_type: string;
|
|
620
|
+
pool_volume_24h_base: string | null;
|
|
621
|
+
pool_volume_24h_quote: string | null;
|
|
622
|
+
pool_volume_24h_usd: string | null;
|
|
623
|
+
pool_volume_24h_swap_count: number | null;
|
|
624
|
+
pool_volume_last_updated: string | null;
|
|
625
|
+
pool_market_data: {
|
|
626
|
+
pool_liquidity: string | null;
|
|
627
|
+
pool_market_cap: string | null;
|
|
628
|
+
pool_price: string | null;
|
|
629
|
+
pool_price_scale: string | null;
|
|
630
|
+
pool_price_change_24h: string | null;
|
|
631
|
+
pool_volume_change_24h: string | null;
|
|
632
|
+
pool_volume_usd_24h: string | null;
|
|
633
|
+
} | null;
|
|
504
634
|
base_token: {
|
|
505
635
|
token_address: `0x${string}`;
|
|
506
636
|
token_name: string;
|
|
@@ -539,6 +669,20 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
539
669
|
pool_address: `0x${string}`;
|
|
540
670
|
pool_migration_timestamp: Date | null;
|
|
541
671
|
pool_type: string;
|
|
672
|
+
pool_volume_24h_base: string | null;
|
|
673
|
+
pool_volume_24h_quote: string | null;
|
|
674
|
+
pool_volume_24h_usd: string | null;
|
|
675
|
+
pool_volume_24h_swap_count: number | null;
|
|
676
|
+
pool_volume_last_updated: string | null;
|
|
677
|
+
pool_market_data: {
|
|
678
|
+
pool_liquidity: string | null;
|
|
679
|
+
pool_market_cap: string | null;
|
|
680
|
+
pool_price: string | null;
|
|
681
|
+
pool_price_scale: string | null;
|
|
682
|
+
pool_price_change_24h: string | null;
|
|
683
|
+
pool_volume_change_24h: string | null;
|
|
684
|
+
pool_volume_usd_24h: string | null;
|
|
685
|
+
} | null;
|
|
542
686
|
base_token: {
|
|
543
687
|
token_address: `0x${string}`;
|
|
544
688
|
token_name: string;
|
|
@@ -596,6 +740,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
596
740
|
pool_config_ending_time: string;
|
|
597
741
|
pool_migration_timestamp: Date | null;
|
|
598
742
|
pool_type: string;
|
|
743
|
+
pool_volume_24h_base: string | null;
|
|
744
|
+
pool_volume_24h_quote: string | null;
|
|
745
|
+
pool_volume_24h_usd: string | null;
|
|
746
|
+
pool_volume_24h_swap_count: number | null;
|
|
747
|
+
pool_volume_last_updated: string | null;
|
|
599
748
|
base_token: {
|
|
600
749
|
token_address: string;
|
|
601
750
|
token_name: string;
|
|
@@ -622,6 +771,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
622
771
|
token_fee_receiver_address: string;
|
|
623
772
|
token_vesting_recipient_addresses: string[];
|
|
624
773
|
};
|
|
774
|
+
pool_market_data?: unknown;
|
|
625
775
|
};
|
|
626
776
|
graduation_pool: {
|
|
627
777
|
pool_current_price: string;
|
|
@@ -635,6 +785,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
635
785
|
pool_address: string;
|
|
636
786
|
pool_migration_timestamp: Date | null;
|
|
637
787
|
pool_type: string;
|
|
788
|
+
pool_volume_24h_base: string | null;
|
|
789
|
+
pool_volume_24h_quote: string | null;
|
|
790
|
+
pool_volume_24h_usd: string | null;
|
|
791
|
+
pool_volume_24h_swap_count: number | null;
|
|
792
|
+
pool_volume_last_updated: string | null;
|
|
638
793
|
base_token: {
|
|
639
794
|
token_address: string;
|
|
640
795
|
token_name: string;
|
|
@@ -662,6 +817,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
662
817
|
token_vesting_recipient_addresses: string[];
|
|
663
818
|
integrator_address: string;
|
|
664
819
|
};
|
|
820
|
+
pool_market_data?: unknown;
|
|
665
821
|
};
|
|
666
822
|
asset_status?: AssetStatus | undefined;
|
|
667
823
|
}>, {
|
|
@@ -695,6 +851,20 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
695
851
|
pool_config_ending_time: string;
|
|
696
852
|
pool_migration_timestamp: Date | null;
|
|
697
853
|
pool_type: string;
|
|
854
|
+
pool_volume_24h_base: string | null;
|
|
855
|
+
pool_volume_24h_quote: string | null;
|
|
856
|
+
pool_volume_24h_usd: string | null;
|
|
857
|
+
pool_volume_24h_swap_count: number | null;
|
|
858
|
+
pool_volume_last_updated: string | null;
|
|
859
|
+
pool_market_data: {
|
|
860
|
+
pool_liquidity: string | null;
|
|
861
|
+
pool_market_cap: string | null;
|
|
862
|
+
pool_price: string | null;
|
|
863
|
+
pool_price_scale: string | null;
|
|
864
|
+
pool_price_change_24h: string | null;
|
|
865
|
+
pool_volume_change_24h: string | null;
|
|
866
|
+
pool_volume_usd_24h: string | null;
|
|
867
|
+
} | null;
|
|
698
868
|
base_token: {
|
|
699
869
|
token_address: `0x${string}`;
|
|
700
870
|
token_name: string;
|
|
@@ -733,6 +903,20 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
733
903
|
pool_address: `0x${string}`;
|
|
734
904
|
pool_migration_timestamp: Date | null;
|
|
735
905
|
pool_type: string;
|
|
906
|
+
pool_volume_24h_base: string | null;
|
|
907
|
+
pool_volume_24h_quote: string | null;
|
|
908
|
+
pool_volume_24h_usd: string | null;
|
|
909
|
+
pool_volume_24h_swap_count: number | null;
|
|
910
|
+
pool_volume_last_updated: string | null;
|
|
911
|
+
pool_market_data: {
|
|
912
|
+
pool_liquidity: string | null;
|
|
913
|
+
pool_market_cap: string | null;
|
|
914
|
+
pool_price: string | null;
|
|
915
|
+
pool_price_scale: string | null;
|
|
916
|
+
pool_price_change_24h: string | null;
|
|
917
|
+
pool_volume_change_24h: string | null;
|
|
918
|
+
pool_volume_usd_24h: string | null;
|
|
919
|
+
} | null;
|
|
736
920
|
base_token: {
|
|
737
921
|
token_address: `0x${string}`;
|
|
738
922
|
token_name: string;
|
|
@@ -790,6 +974,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
790
974
|
pool_config_ending_time: string;
|
|
791
975
|
pool_migration_timestamp: Date | null;
|
|
792
976
|
pool_type: string;
|
|
977
|
+
pool_volume_24h_base: string | null;
|
|
978
|
+
pool_volume_24h_quote: string | null;
|
|
979
|
+
pool_volume_24h_usd: string | null;
|
|
980
|
+
pool_volume_24h_swap_count: number | null;
|
|
981
|
+
pool_volume_last_updated: string | null;
|
|
793
982
|
base_token: {
|
|
794
983
|
token_address: string;
|
|
795
984
|
token_name: string;
|
|
@@ -816,6 +1005,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
816
1005
|
token_fee_receiver_address: string;
|
|
817
1006
|
token_vesting_recipient_addresses: string[];
|
|
818
1007
|
};
|
|
1008
|
+
pool_market_data?: unknown;
|
|
819
1009
|
};
|
|
820
1010
|
graduation_pool: {
|
|
821
1011
|
pool_current_price: string;
|
|
@@ -829,6 +1019,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
829
1019
|
pool_address: string;
|
|
830
1020
|
pool_migration_timestamp: Date | null;
|
|
831
1021
|
pool_type: string;
|
|
1022
|
+
pool_volume_24h_base: string | null;
|
|
1023
|
+
pool_volume_24h_quote: string | null;
|
|
1024
|
+
pool_volume_24h_usd: string | null;
|
|
1025
|
+
pool_volume_24h_swap_count: number | null;
|
|
1026
|
+
pool_volume_last_updated: string | null;
|
|
832
1027
|
base_token: {
|
|
833
1028
|
token_address: string;
|
|
834
1029
|
token_name: string;
|
|
@@ -856,6 +1051,7 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
|
|
|
856
1051
|
token_vesting_recipient_addresses: string[];
|
|
857
1052
|
integrator_address: string;
|
|
858
1053
|
};
|
|
1054
|
+
pool_market_data?: unknown;
|
|
859
1055
|
};
|
|
860
1056
|
asset_status?: AssetStatus | undefined;
|
|
861
1057
|
}>;
|
|
@@ -868,8 +1064,8 @@ declare const assetContract: {
|
|
|
868
1064
|
status: z.ZodDefault<z.ZodOptional<z.ZodEnum<[AssetStatusQuery.ALL, AssetStatusQuery.GRADUATED, AssetStatusQuery.INCOMING, AssetStatusQuery.LIVE]>>>;
|
|
869
1065
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
870
1066
|
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.
|
|
1067
|
+
orderBy: z.ZodOptional<z.ZodEnum<[AssetOrderBy.MARKET_CAP_ASC, AssetOrderBy.MARKET_CAP_DESC, AssetOrderBy.VOLUME_USD_ASC, AssetOrderBy.VOLUME_USD_DESC]>>;
|
|
1068
|
+
numeraireAddress: z.ZodOptional<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
873
1069
|
}, "strip", z.ZodTypeAny, {
|
|
874
1070
|
status: AssetStatusQuery.LIVE | AssetStatusQuery.GRADUATED | AssetStatusQuery.INCOMING | AssetStatusQuery.ALL;
|
|
875
1071
|
chainId: number;
|
|
@@ -890,8 +1086,8 @@ declare const assetContract: {
|
|
|
890
1086
|
responses: {
|
|
891
1087
|
200: z.ZodObject<{
|
|
892
1088
|
result: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
893
|
-
asset_address: z.ZodPipeline<z.ZodString, z.
|
|
894
|
-
asset_numeraire_address: z.
|
|
1089
|
+
asset_address: z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
1090
|
+
asset_numeraire_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
895
1091
|
asset_creation_timestamp: z.ZodDate;
|
|
896
1092
|
asset_current_pool: z.ZodString;
|
|
897
1093
|
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
@@ -915,13 +1111,51 @@ declare const assetContract: {
|
|
|
915
1111
|
pool_config_min_proceeds: z.ZodString;
|
|
916
1112
|
pool_config_num_tokens_to_sell: z.ZodString;
|
|
917
1113
|
pool_id: z.ZodString;
|
|
918
|
-
pool_address: z.
|
|
1114
|
+
pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
919
1115
|
pool_config_starting_time: z.ZodString;
|
|
920
1116
|
pool_config_ending_time: z.ZodString;
|
|
921
1117
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
922
1118
|
pool_type: z.ZodString;
|
|
1119
|
+
pool_volume_24h_base: z.ZodNullable<z.ZodString>;
|
|
1120
|
+
pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
|
|
1121
|
+
pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
|
|
1122
|
+
pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
|
|
1123
|
+
pool_volume_last_updated: z.ZodNullable<z.ZodString>;
|
|
1124
|
+
pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
1125
|
+
pool_liquidity: z.ZodNullable<z.ZodString>;
|
|
1126
|
+
pool_market_cap: z.ZodNullable<z.ZodString>;
|
|
1127
|
+
pool_price: z.ZodNullable<z.ZodString>;
|
|
1128
|
+
pool_price_scale: z.ZodNullable<z.ZodString>;
|
|
1129
|
+
pool_price_change_24h: z.ZodNullable<z.ZodString>;
|
|
1130
|
+
pool_volume_change_24h: z.ZodNullable<z.ZodString>;
|
|
1131
|
+
pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
|
|
1132
|
+
}, "strip", z.ZodTypeAny, {
|
|
1133
|
+
pool_liquidity: string | null;
|
|
1134
|
+
pool_market_cap: string | null;
|
|
1135
|
+
pool_price: string | null;
|
|
1136
|
+
pool_price_scale: string | null;
|
|
1137
|
+
pool_price_change_24h: string | null;
|
|
1138
|
+
pool_volume_change_24h: string | null;
|
|
1139
|
+
pool_volume_usd_24h: string | null;
|
|
1140
|
+
}, {
|
|
1141
|
+
pool_liquidity: string | null;
|
|
1142
|
+
pool_market_cap: string | null;
|
|
1143
|
+
pool_price: string | null;
|
|
1144
|
+
pool_price_scale: string | null;
|
|
1145
|
+
pool_price_change_24h: string | null;
|
|
1146
|
+
pool_volume_change_24h: string | null;
|
|
1147
|
+
pool_volume_usd_24h: string | null;
|
|
1148
|
+
}>>, {
|
|
1149
|
+
pool_liquidity: string | null;
|
|
1150
|
+
pool_market_cap: string | null;
|
|
1151
|
+
pool_price: string | null;
|
|
1152
|
+
pool_price_scale: string | null;
|
|
1153
|
+
pool_price_change_24h: string | null;
|
|
1154
|
+
pool_volume_change_24h: string | null;
|
|
1155
|
+
pool_volume_usd_24h: string | null;
|
|
1156
|
+
} | null, unknown>;
|
|
923
1157
|
base_token: z.ZodObject<{
|
|
924
|
-
token_address: z.
|
|
1158
|
+
token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
925
1159
|
token_name: z.ZodString;
|
|
926
1160
|
token_description: z.ZodNullable<z.ZodString>;
|
|
927
1161
|
token_symbol: z.ZodString;
|
|
@@ -990,9 +1224,9 @@ declare const assetContract: {
|
|
|
990
1224
|
}[] | undefined;
|
|
991
1225
|
}>>;
|
|
992
1226
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
993
|
-
token_creator_address: z.
|
|
994
|
-
token_fee_receiver_address: z.
|
|
995
|
-
token_vesting_recipient_addresses: z.ZodArray<z.
|
|
1227
|
+
token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1228
|
+
token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1229
|
+
token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
996
1230
|
}, "strip", z.ZodTypeAny, {
|
|
997
1231
|
token_address: `0x${string}`;
|
|
998
1232
|
token_name: string;
|
|
@@ -1067,6 +1301,20 @@ declare const assetContract: {
|
|
|
1067
1301
|
pool_config_ending_time: string;
|
|
1068
1302
|
pool_migration_timestamp: Date | null;
|
|
1069
1303
|
pool_type: string;
|
|
1304
|
+
pool_volume_24h_base: string | null;
|
|
1305
|
+
pool_volume_24h_quote: string | null;
|
|
1306
|
+
pool_volume_24h_usd: string | null;
|
|
1307
|
+
pool_volume_24h_swap_count: number | null;
|
|
1308
|
+
pool_volume_last_updated: string | null;
|
|
1309
|
+
pool_market_data: {
|
|
1310
|
+
pool_liquidity: string | null;
|
|
1311
|
+
pool_market_cap: string | null;
|
|
1312
|
+
pool_price: string | null;
|
|
1313
|
+
pool_price_scale: string | null;
|
|
1314
|
+
pool_price_change_24h: string | null;
|
|
1315
|
+
pool_volume_change_24h: string | null;
|
|
1316
|
+
pool_volume_usd_24h: string | null;
|
|
1317
|
+
} | null;
|
|
1070
1318
|
base_token: {
|
|
1071
1319
|
token_address: `0x${string}`;
|
|
1072
1320
|
token_name: string;
|
|
@@ -1116,6 +1364,11 @@ declare const assetContract: {
|
|
|
1116
1364
|
pool_config_ending_time: string;
|
|
1117
1365
|
pool_migration_timestamp: Date | null;
|
|
1118
1366
|
pool_type: string;
|
|
1367
|
+
pool_volume_24h_base: string | null;
|
|
1368
|
+
pool_volume_24h_quote: string | null;
|
|
1369
|
+
pool_volume_24h_usd: string | null;
|
|
1370
|
+
pool_volume_24h_swap_count: number | null;
|
|
1371
|
+
pool_volume_last_updated: string | null;
|
|
1119
1372
|
base_token: {
|
|
1120
1373
|
token_address: string;
|
|
1121
1374
|
token_name: string;
|
|
@@ -1142,6 +1395,7 @@ declare const assetContract: {
|
|
|
1142
1395
|
token_fee_receiver_address: string;
|
|
1143
1396
|
token_vesting_recipient_addresses: string[];
|
|
1144
1397
|
};
|
|
1398
|
+
pool_market_data?: unknown;
|
|
1145
1399
|
}>;
|
|
1146
1400
|
graduation_pool: z.ZodObject<{
|
|
1147
1401
|
pool_current_price: z.ZodString;
|
|
@@ -1152,11 +1406,49 @@ declare const assetContract: {
|
|
|
1152
1406
|
pool_current_tick: z.ZodNumber;
|
|
1153
1407
|
pool_current_market_cap: z.ZodString;
|
|
1154
1408
|
pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
|
|
1155
|
-
pool_address: z.
|
|
1409
|
+
pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1156
1410
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
1157
1411
|
pool_type: z.ZodString;
|
|
1412
|
+
pool_volume_24h_base: z.ZodNullable<z.ZodString>;
|
|
1413
|
+
pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
|
|
1414
|
+
pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
|
|
1415
|
+
pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
|
|
1416
|
+
pool_volume_last_updated: z.ZodNullable<z.ZodString>;
|
|
1417
|
+
pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
1418
|
+
pool_liquidity: z.ZodNullable<z.ZodString>;
|
|
1419
|
+
pool_market_cap: z.ZodNullable<z.ZodString>;
|
|
1420
|
+
pool_price: z.ZodNullable<z.ZodString>;
|
|
1421
|
+
pool_price_scale: z.ZodNullable<z.ZodString>;
|
|
1422
|
+
pool_price_change_24h: z.ZodNullable<z.ZodString>;
|
|
1423
|
+
pool_volume_change_24h: z.ZodNullable<z.ZodString>;
|
|
1424
|
+
pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
|
|
1425
|
+
}, "strip", z.ZodTypeAny, {
|
|
1426
|
+
pool_liquidity: string | null;
|
|
1427
|
+
pool_market_cap: string | null;
|
|
1428
|
+
pool_price: string | null;
|
|
1429
|
+
pool_price_scale: string | null;
|
|
1430
|
+
pool_price_change_24h: string | null;
|
|
1431
|
+
pool_volume_change_24h: string | null;
|
|
1432
|
+
pool_volume_usd_24h: string | null;
|
|
1433
|
+
}, {
|
|
1434
|
+
pool_liquidity: string | null;
|
|
1435
|
+
pool_market_cap: string | null;
|
|
1436
|
+
pool_price: string | null;
|
|
1437
|
+
pool_price_scale: string | null;
|
|
1438
|
+
pool_price_change_24h: string | null;
|
|
1439
|
+
pool_volume_change_24h: string | null;
|
|
1440
|
+
pool_volume_usd_24h: string | null;
|
|
1441
|
+
}>>, {
|
|
1442
|
+
pool_liquidity: string | null;
|
|
1443
|
+
pool_market_cap: string | null;
|
|
1444
|
+
pool_price: string | null;
|
|
1445
|
+
pool_price_scale: string | null;
|
|
1446
|
+
pool_price_change_24h: string | null;
|
|
1447
|
+
pool_volume_change_24h: string | null;
|
|
1448
|
+
pool_volume_usd_24h: string | null;
|
|
1449
|
+
} | null, unknown>;
|
|
1158
1450
|
base_token: z.ZodObject<{
|
|
1159
|
-
token_address: z.
|
|
1451
|
+
token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1160
1452
|
token_name: z.ZodString;
|
|
1161
1453
|
token_description: z.ZodNullable<z.ZodString>;
|
|
1162
1454
|
token_symbol: z.ZodString;
|
|
@@ -1225,9 +1517,9 @@ declare const assetContract: {
|
|
|
1225
1517
|
}[] | undefined;
|
|
1226
1518
|
}>>;
|
|
1227
1519
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
1228
|
-
token_creator_address: z.
|
|
1229
|
-
token_fee_receiver_address: z.
|
|
1230
|
-
token_vesting_recipient_addresses: z.ZodArray<z.
|
|
1520
|
+
token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1521
|
+
token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1522
|
+
token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
1231
1523
|
integrator_address: z.ZodString;
|
|
1232
1524
|
}, "strip", z.ZodTypeAny, {
|
|
1233
1525
|
token_address: `0x${string}`;
|
|
@@ -1293,6 +1585,20 @@ declare const assetContract: {
|
|
|
1293
1585
|
pool_address: `0x${string}`;
|
|
1294
1586
|
pool_migration_timestamp: Date | null;
|
|
1295
1587
|
pool_type: string;
|
|
1588
|
+
pool_volume_24h_base: string | null;
|
|
1589
|
+
pool_volume_24h_quote: string | null;
|
|
1590
|
+
pool_volume_24h_usd: string | null;
|
|
1591
|
+
pool_volume_24h_swap_count: number | null;
|
|
1592
|
+
pool_volume_last_updated: string | null;
|
|
1593
|
+
pool_market_data: {
|
|
1594
|
+
pool_liquidity: string | null;
|
|
1595
|
+
pool_market_cap: string | null;
|
|
1596
|
+
pool_price: string | null;
|
|
1597
|
+
pool_price_scale: string | null;
|
|
1598
|
+
pool_price_change_24h: string | null;
|
|
1599
|
+
pool_volume_change_24h: string | null;
|
|
1600
|
+
pool_volume_usd_24h: string | null;
|
|
1601
|
+
} | null;
|
|
1296
1602
|
base_token: {
|
|
1297
1603
|
token_address: `0x${string}`;
|
|
1298
1604
|
token_name: string;
|
|
@@ -1331,6 +1637,11 @@ declare const assetContract: {
|
|
|
1331
1637
|
pool_address: string;
|
|
1332
1638
|
pool_migration_timestamp: Date | null;
|
|
1333
1639
|
pool_type: string;
|
|
1640
|
+
pool_volume_24h_base: string | null;
|
|
1641
|
+
pool_volume_24h_quote: string | null;
|
|
1642
|
+
pool_volume_24h_usd: string | null;
|
|
1643
|
+
pool_volume_24h_swap_count: number | null;
|
|
1644
|
+
pool_volume_last_updated: string | null;
|
|
1334
1645
|
base_token: {
|
|
1335
1646
|
token_address: string;
|
|
1336
1647
|
token_name: string;
|
|
@@ -1358,6 +1669,7 @@ declare const assetContract: {
|
|
|
1358
1669
|
token_vesting_recipient_addresses: string[];
|
|
1359
1670
|
integrator_address: string;
|
|
1360
1671
|
};
|
|
1672
|
+
pool_market_data?: unknown;
|
|
1361
1673
|
}>;
|
|
1362
1674
|
}, "strip", z.ZodTypeAny, {
|
|
1363
1675
|
asset_address: `0x${string}`;
|
|
@@ -1390,6 +1702,20 @@ declare const assetContract: {
|
|
|
1390
1702
|
pool_config_ending_time: string;
|
|
1391
1703
|
pool_migration_timestamp: Date | null;
|
|
1392
1704
|
pool_type: string;
|
|
1705
|
+
pool_volume_24h_base: string | null;
|
|
1706
|
+
pool_volume_24h_quote: string | null;
|
|
1707
|
+
pool_volume_24h_usd: string | null;
|
|
1708
|
+
pool_volume_24h_swap_count: number | null;
|
|
1709
|
+
pool_volume_last_updated: string | null;
|
|
1710
|
+
pool_market_data: {
|
|
1711
|
+
pool_liquidity: string | null;
|
|
1712
|
+
pool_market_cap: string | null;
|
|
1713
|
+
pool_price: string | null;
|
|
1714
|
+
pool_price_scale: string | null;
|
|
1715
|
+
pool_price_change_24h: string | null;
|
|
1716
|
+
pool_volume_change_24h: string | null;
|
|
1717
|
+
pool_volume_usd_24h: string | null;
|
|
1718
|
+
} | null;
|
|
1393
1719
|
base_token: {
|
|
1394
1720
|
token_address: `0x${string}`;
|
|
1395
1721
|
token_name: string;
|
|
@@ -1428,6 +1754,20 @@ declare const assetContract: {
|
|
|
1428
1754
|
pool_address: `0x${string}`;
|
|
1429
1755
|
pool_migration_timestamp: Date | null;
|
|
1430
1756
|
pool_type: string;
|
|
1757
|
+
pool_volume_24h_base: string | null;
|
|
1758
|
+
pool_volume_24h_quote: string | null;
|
|
1759
|
+
pool_volume_24h_usd: string | null;
|
|
1760
|
+
pool_volume_24h_swap_count: number | null;
|
|
1761
|
+
pool_volume_last_updated: string | null;
|
|
1762
|
+
pool_market_data: {
|
|
1763
|
+
pool_liquidity: string | null;
|
|
1764
|
+
pool_market_cap: string | null;
|
|
1765
|
+
pool_price: string | null;
|
|
1766
|
+
pool_price_scale: string | null;
|
|
1767
|
+
pool_price_change_24h: string | null;
|
|
1768
|
+
pool_volume_change_24h: string | null;
|
|
1769
|
+
pool_volume_usd_24h: string | null;
|
|
1770
|
+
} | null;
|
|
1431
1771
|
base_token: {
|
|
1432
1772
|
token_address: `0x${string}`;
|
|
1433
1773
|
token_name: string;
|
|
@@ -1485,6 +1825,11 @@ declare const assetContract: {
|
|
|
1485
1825
|
pool_config_ending_time: string;
|
|
1486
1826
|
pool_migration_timestamp: Date | null;
|
|
1487
1827
|
pool_type: string;
|
|
1828
|
+
pool_volume_24h_base: string | null;
|
|
1829
|
+
pool_volume_24h_quote: string | null;
|
|
1830
|
+
pool_volume_24h_usd: string | null;
|
|
1831
|
+
pool_volume_24h_swap_count: number | null;
|
|
1832
|
+
pool_volume_last_updated: string | null;
|
|
1488
1833
|
base_token: {
|
|
1489
1834
|
token_address: string;
|
|
1490
1835
|
token_name: string;
|
|
@@ -1511,6 +1856,7 @@ declare const assetContract: {
|
|
|
1511
1856
|
token_fee_receiver_address: string;
|
|
1512
1857
|
token_vesting_recipient_addresses: string[];
|
|
1513
1858
|
};
|
|
1859
|
+
pool_market_data?: unknown;
|
|
1514
1860
|
};
|
|
1515
1861
|
graduation_pool: {
|
|
1516
1862
|
pool_current_price: string;
|
|
@@ -1524,6 +1870,11 @@ declare const assetContract: {
|
|
|
1524
1870
|
pool_address: string;
|
|
1525
1871
|
pool_migration_timestamp: Date | null;
|
|
1526
1872
|
pool_type: string;
|
|
1873
|
+
pool_volume_24h_base: string | null;
|
|
1874
|
+
pool_volume_24h_quote: string | null;
|
|
1875
|
+
pool_volume_24h_usd: string | null;
|
|
1876
|
+
pool_volume_24h_swap_count: number | null;
|
|
1877
|
+
pool_volume_last_updated: string | null;
|
|
1527
1878
|
base_token: {
|
|
1528
1879
|
token_address: string;
|
|
1529
1880
|
token_name: string;
|
|
@@ -1551,6 +1902,7 @@ declare const assetContract: {
|
|
|
1551
1902
|
token_vesting_recipient_addresses: string[];
|
|
1552
1903
|
integrator_address: string;
|
|
1553
1904
|
};
|
|
1905
|
+
pool_market_data?: unknown;
|
|
1554
1906
|
};
|
|
1555
1907
|
asset_status?: AssetStatus | undefined;
|
|
1556
1908
|
}>, {
|
|
@@ -1584,6 +1936,20 @@ declare const assetContract: {
|
|
|
1584
1936
|
pool_config_ending_time: string;
|
|
1585
1937
|
pool_migration_timestamp: Date | null;
|
|
1586
1938
|
pool_type: string;
|
|
1939
|
+
pool_volume_24h_base: string | null;
|
|
1940
|
+
pool_volume_24h_quote: string | null;
|
|
1941
|
+
pool_volume_24h_usd: string | null;
|
|
1942
|
+
pool_volume_24h_swap_count: number | null;
|
|
1943
|
+
pool_volume_last_updated: string | null;
|
|
1944
|
+
pool_market_data: {
|
|
1945
|
+
pool_liquidity: string | null;
|
|
1946
|
+
pool_market_cap: string | null;
|
|
1947
|
+
pool_price: string | null;
|
|
1948
|
+
pool_price_scale: string | null;
|
|
1949
|
+
pool_price_change_24h: string | null;
|
|
1950
|
+
pool_volume_change_24h: string | null;
|
|
1951
|
+
pool_volume_usd_24h: string | null;
|
|
1952
|
+
} | null;
|
|
1587
1953
|
base_token: {
|
|
1588
1954
|
token_address: `0x${string}`;
|
|
1589
1955
|
token_name: string;
|
|
@@ -1622,6 +1988,20 @@ declare const assetContract: {
|
|
|
1622
1988
|
pool_address: `0x${string}`;
|
|
1623
1989
|
pool_migration_timestamp: Date | null;
|
|
1624
1990
|
pool_type: string;
|
|
1991
|
+
pool_volume_24h_base: string | null;
|
|
1992
|
+
pool_volume_24h_quote: string | null;
|
|
1993
|
+
pool_volume_24h_usd: string | null;
|
|
1994
|
+
pool_volume_24h_swap_count: number | null;
|
|
1995
|
+
pool_volume_last_updated: string | null;
|
|
1996
|
+
pool_market_data: {
|
|
1997
|
+
pool_liquidity: string | null;
|
|
1998
|
+
pool_market_cap: string | null;
|
|
1999
|
+
pool_price: string | null;
|
|
2000
|
+
pool_price_scale: string | null;
|
|
2001
|
+
pool_price_change_24h: string | null;
|
|
2002
|
+
pool_volume_change_24h: string | null;
|
|
2003
|
+
pool_volume_usd_24h: string | null;
|
|
2004
|
+
} | null;
|
|
1625
2005
|
base_token: {
|
|
1626
2006
|
token_address: `0x${string}`;
|
|
1627
2007
|
token_name: string;
|
|
@@ -1679,6 +2059,11 @@ declare const assetContract: {
|
|
|
1679
2059
|
pool_config_ending_time: string;
|
|
1680
2060
|
pool_migration_timestamp: Date | null;
|
|
1681
2061
|
pool_type: string;
|
|
2062
|
+
pool_volume_24h_base: string | null;
|
|
2063
|
+
pool_volume_24h_quote: string | null;
|
|
2064
|
+
pool_volume_24h_usd: string | null;
|
|
2065
|
+
pool_volume_24h_swap_count: number | null;
|
|
2066
|
+
pool_volume_last_updated: string | null;
|
|
1682
2067
|
base_token: {
|
|
1683
2068
|
token_address: string;
|
|
1684
2069
|
token_name: string;
|
|
@@ -1705,6 +2090,7 @@ declare const assetContract: {
|
|
|
1705
2090
|
token_fee_receiver_address: string;
|
|
1706
2091
|
token_vesting_recipient_addresses: string[];
|
|
1707
2092
|
};
|
|
2093
|
+
pool_market_data?: unknown;
|
|
1708
2094
|
};
|
|
1709
2095
|
graduation_pool: {
|
|
1710
2096
|
pool_current_price: string;
|
|
@@ -1718,6 +2104,11 @@ declare const assetContract: {
|
|
|
1718
2104
|
pool_address: string;
|
|
1719
2105
|
pool_migration_timestamp: Date | null;
|
|
1720
2106
|
pool_type: string;
|
|
2107
|
+
pool_volume_24h_base: string | null;
|
|
2108
|
+
pool_volume_24h_quote: string | null;
|
|
2109
|
+
pool_volume_24h_usd: string | null;
|
|
2110
|
+
pool_volume_24h_swap_count: number | null;
|
|
2111
|
+
pool_volume_last_updated: string | null;
|
|
1721
2112
|
base_token: {
|
|
1722
2113
|
token_address: string;
|
|
1723
2114
|
token_name: string;
|
|
@@ -1745,6 +2136,7 @@ declare const assetContract: {
|
|
|
1745
2136
|
token_vesting_recipient_addresses: string[];
|
|
1746
2137
|
integrator_address: string;
|
|
1747
2138
|
};
|
|
2139
|
+
pool_market_data?: unknown;
|
|
1748
2140
|
};
|
|
1749
2141
|
asset_status?: AssetStatus | undefined;
|
|
1750
2142
|
}>, "many">;
|
|
@@ -1780,6 +2172,20 @@ declare const assetContract: {
|
|
|
1780
2172
|
pool_config_ending_time: string;
|
|
1781
2173
|
pool_migration_timestamp: Date | null;
|
|
1782
2174
|
pool_type: string;
|
|
2175
|
+
pool_volume_24h_base: string | null;
|
|
2176
|
+
pool_volume_24h_quote: string | null;
|
|
2177
|
+
pool_volume_24h_usd: string | null;
|
|
2178
|
+
pool_volume_24h_swap_count: number | null;
|
|
2179
|
+
pool_volume_last_updated: string | null;
|
|
2180
|
+
pool_market_data: {
|
|
2181
|
+
pool_liquidity: string | null;
|
|
2182
|
+
pool_market_cap: string | null;
|
|
2183
|
+
pool_price: string | null;
|
|
2184
|
+
pool_price_scale: string | null;
|
|
2185
|
+
pool_price_change_24h: string | null;
|
|
2186
|
+
pool_volume_change_24h: string | null;
|
|
2187
|
+
pool_volume_usd_24h: string | null;
|
|
2188
|
+
} | null;
|
|
1783
2189
|
base_token: {
|
|
1784
2190
|
token_address: `0x${string}`;
|
|
1785
2191
|
token_name: string;
|
|
@@ -1818,6 +2224,20 @@ declare const assetContract: {
|
|
|
1818
2224
|
pool_address: `0x${string}`;
|
|
1819
2225
|
pool_migration_timestamp: Date | null;
|
|
1820
2226
|
pool_type: string;
|
|
2227
|
+
pool_volume_24h_base: string | null;
|
|
2228
|
+
pool_volume_24h_quote: string | null;
|
|
2229
|
+
pool_volume_24h_usd: string | null;
|
|
2230
|
+
pool_volume_24h_swap_count: number | null;
|
|
2231
|
+
pool_volume_last_updated: string | null;
|
|
2232
|
+
pool_market_data: {
|
|
2233
|
+
pool_liquidity: string | null;
|
|
2234
|
+
pool_market_cap: string | null;
|
|
2235
|
+
pool_price: string | null;
|
|
2236
|
+
pool_price_scale: string | null;
|
|
2237
|
+
pool_price_change_24h: string | null;
|
|
2238
|
+
pool_volume_change_24h: string | null;
|
|
2239
|
+
pool_volume_usd_24h: string | null;
|
|
2240
|
+
} | null;
|
|
1821
2241
|
base_token: {
|
|
1822
2242
|
token_address: `0x${string}`;
|
|
1823
2243
|
token_name: string;
|
|
@@ -1877,6 +2297,11 @@ declare const assetContract: {
|
|
|
1877
2297
|
pool_config_ending_time: string;
|
|
1878
2298
|
pool_migration_timestamp: Date | null;
|
|
1879
2299
|
pool_type: string;
|
|
2300
|
+
pool_volume_24h_base: string | null;
|
|
2301
|
+
pool_volume_24h_quote: string | null;
|
|
2302
|
+
pool_volume_24h_usd: string | null;
|
|
2303
|
+
pool_volume_24h_swap_count: number | null;
|
|
2304
|
+
pool_volume_last_updated: string | null;
|
|
1880
2305
|
base_token: {
|
|
1881
2306
|
token_address: string;
|
|
1882
2307
|
token_name: string;
|
|
@@ -1903,6 +2328,7 @@ declare const assetContract: {
|
|
|
1903
2328
|
token_fee_receiver_address: string;
|
|
1904
2329
|
token_vesting_recipient_addresses: string[];
|
|
1905
2330
|
};
|
|
2331
|
+
pool_market_data?: unknown;
|
|
1906
2332
|
};
|
|
1907
2333
|
graduation_pool: {
|
|
1908
2334
|
pool_current_price: string;
|
|
@@ -1916,6 +2342,11 @@ declare const assetContract: {
|
|
|
1916
2342
|
pool_address: string;
|
|
1917
2343
|
pool_migration_timestamp: Date | null;
|
|
1918
2344
|
pool_type: string;
|
|
2345
|
+
pool_volume_24h_base: string | null;
|
|
2346
|
+
pool_volume_24h_quote: string | null;
|
|
2347
|
+
pool_volume_24h_usd: string | null;
|
|
2348
|
+
pool_volume_24h_swap_count: number | null;
|
|
2349
|
+
pool_volume_last_updated: string | null;
|
|
1919
2350
|
base_token: {
|
|
1920
2351
|
token_address: string;
|
|
1921
2352
|
token_name: string;
|
|
@@ -1943,6 +2374,7 @@ declare const assetContract: {
|
|
|
1943
2374
|
token_vesting_recipient_addresses: string[];
|
|
1944
2375
|
integrator_address: string;
|
|
1945
2376
|
};
|
|
2377
|
+
pool_market_data?: unknown;
|
|
1946
2378
|
};
|
|
1947
2379
|
asset_status?: AssetStatus | undefined;
|
|
1948
2380
|
}[];
|
|
@@ -1969,8 +2401,8 @@ declare const assetContract: {
|
|
|
1969
2401
|
responses: {
|
|
1970
2402
|
200: z.ZodObject<{
|
|
1971
2403
|
result: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
1972
|
-
asset_address: z.ZodPipeline<z.ZodString, z.
|
|
1973
|
-
asset_numeraire_address: z.
|
|
2404
|
+
asset_address: z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
2405
|
+
asset_numeraire_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1974
2406
|
asset_creation_timestamp: z.ZodDate;
|
|
1975
2407
|
asset_current_pool: z.ZodString;
|
|
1976
2408
|
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
@@ -1994,13 +2426,51 @@ declare const assetContract: {
|
|
|
1994
2426
|
pool_config_min_proceeds: z.ZodString;
|
|
1995
2427
|
pool_config_num_tokens_to_sell: z.ZodString;
|
|
1996
2428
|
pool_id: z.ZodString;
|
|
1997
|
-
pool_address: z.
|
|
2429
|
+
pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
1998
2430
|
pool_config_starting_time: z.ZodString;
|
|
1999
2431
|
pool_config_ending_time: z.ZodString;
|
|
2000
2432
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
2001
2433
|
pool_type: z.ZodString;
|
|
2434
|
+
pool_volume_24h_base: z.ZodNullable<z.ZodString>;
|
|
2435
|
+
pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
|
|
2436
|
+
pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
|
|
2437
|
+
pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
|
|
2438
|
+
pool_volume_last_updated: z.ZodNullable<z.ZodString>;
|
|
2439
|
+
pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2440
|
+
pool_liquidity: z.ZodNullable<z.ZodString>;
|
|
2441
|
+
pool_market_cap: z.ZodNullable<z.ZodString>;
|
|
2442
|
+
pool_price: z.ZodNullable<z.ZodString>;
|
|
2443
|
+
pool_price_scale: z.ZodNullable<z.ZodString>;
|
|
2444
|
+
pool_price_change_24h: z.ZodNullable<z.ZodString>;
|
|
2445
|
+
pool_volume_change_24h: z.ZodNullable<z.ZodString>;
|
|
2446
|
+
pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
|
|
2447
|
+
}, "strip", z.ZodTypeAny, {
|
|
2448
|
+
pool_liquidity: string | null;
|
|
2449
|
+
pool_market_cap: string | null;
|
|
2450
|
+
pool_price: string | null;
|
|
2451
|
+
pool_price_scale: string | null;
|
|
2452
|
+
pool_price_change_24h: string | null;
|
|
2453
|
+
pool_volume_change_24h: string | null;
|
|
2454
|
+
pool_volume_usd_24h: string | null;
|
|
2455
|
+
}, {
|
|
2456
|
+
pool_liquidity: string | null;
|
|
2457
|
+
pool_market_cap: string | null;
|
|
2458
|
+
pool_price: string | null;
|
|
2459
|
+
pool_price_scale: string | null;
|
|
2460
|
+
pool_price_change_24h: string | null;
|
|
2461
|
+
pool_volume_change_24h: string | null;
|
|
2462
|
+
pool_volume_usd_24h: string | null;
|
|
2463
|
+
}>>, {
|
|
2464
|
+
pool_liquidity: string | null;
|
|
2465
|
+
pool_market_cap: string | null;
|
|
2466
|
+
pool_price: string | null;
|
|
2467
|
+
pool_price_scale: string | null;
|
|
2468
|
+
pool_price_change_24h: string | null;
|
|
2469
|
+
pool_volume_change_24h: string | null;
|
|
2470
|
+
pool_volume_usd_24h: string | null;
|
|
2471
|
+
} | null, unknown>;
|
|
2002
2472
|
base_token: z.ZodObject<{
|
|
2003
|
-
token_address: z.
|
|
2473
|
+
token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2004
2474
|
token_name: z.ZodString;
|
|
2005
2475
|
token_description: z.ZodNullable<z.ZodString>;
|
|
2006
2476
|
token_symbol: z.ZodString;
|
|
@@ -2069,9 +2539,9 @@ declare const assetContract: {
|
|
|
2069
2539
|
}[] | undefined;
|
|
2070
2540
|
}>>;
|
|
2071
2541
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
2072
|
-
token_creator_address: z.
|
|
2073
|
-
token_fee_receiver_address: z.
|
|
2074
|
-
token_vesting_recipient_addresses: z.ZodArray<z.
|
|
2542
|
+
token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2543
|
+
token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2544
|
+
token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
2075
2545
|
}, "strip", z.ZodTypeAny, {
|
|
2076
2546
|
token_address: `0x${string}`;
|
|
2077
2547
|
token_name: string;
|
|
@@ -2146,6 +2616,20 @@ declare const assetContract: {
|
|
|
2146
2616
|
pool_config_ending_time: string;
|
|
2147
2617
|
pool_migration_timestamp: Date | null;
|
|
2148
2618
|
pool_type: string;
|
|
2619
|
+
pool_volume_24h_base: string | null;
|
|
2620
|
+
pool_volume_24h_quote: string | null;
|
|
2621
|
+
pool_volume_24h_usd: string | null;
|
|
2622
|
+
pool_volume_24h_swap_count: number | null;
|
|
2623
|
+
pool_volume_last_updated: string | null;
|
|
2624
|
+
pool_market_data: {
|
|
2625
|
+
pool_liquidity: string | null;
|
|
2626
|
+
pool_market_cap: string | null;
|
|
2627
|
+
pool_price: string | null;
|
|
2628
|
+
pool_price_scale: string | null;
|
|
2629
|
+
pool_price_change_24h: string | null;
|
|
2630
|
+
pool_volume_change_24h: string | null;
|
|
2631
|
+
pool_volume_usd_24h: string | null;
|
|
2632
|
+
} | null;
|
|
2149
2633
|
base_token: {
|
|
2150
2634
|
token_address: `0x${string}`;
|
|
2151
2635
|
token_name: string;
|
|
@@ -2195,6 +2679,11 @@ declare const assetContract: {
|
|
|
2195
2679
|
pool_config_ending_time: string;
|
|
2196
2680
|
pool_migration_timestamp: Date | null;
|
|
2197
2681
|
pool_type: string;
|
|
2682
|
+
pool_volume_24h_base: string | null;
|
|
2683
|
+
pool_volume_24h_quote: string | null;
|
|
2684
|
+
pool_volume_24h_usd: string | null;
|
|
2685
|
+
pool_volume_24h_swap_count: number | null;
|
|
2686
|
+
pool_volume_last_updated: string | null;
|
|
2198
2687
|
base_token: {
|
|
2199
2688
|
token_address: string;
|
|
2200
2689
|
token_name: string;
|
|
@@ -2221,6 +2710,7 @@ declare const assetContract: {
|
|
|
2221
2710
|
token_fee_receiver_address: string;
|
|
2222
2711
|
token_vesting_recipient_addresses: string[];
|
|
2223
2712
|
};
|
|
2713
|
+
pool_market_data?: unknown;
|
|
2224
2714
|
}>;
|
|
2225
2715
|
graduation_pool: z.ZodObject<{
|
|
2226
2716
|
pool_current_price: z.ZodString;
|
|
@@ -2231,11 +2721,49 @@ declare const assetContract: {
|
|
|
2231
2721
|
pool_current_tick: z.ZodNumber;
|
|
2232
2722
|
pool_current_market_cap: z.ZodString;
|
|
2233
2723
|
pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
|
|
2234
|
-
pool_address: z.
|
|
2724
|
+
pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2235
2725
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
2236
2726
|
pool_type: z.ZodString;
|
|
2727
|
+
pool_volume_24h_base: z.ZodNullable<z.ZodString>;
|
|
2728
|
+
pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
|
|
2729
|
+
pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
|
|
2730
|
+
pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
|
|
2731
|
+
pool_volume_last_updated: z.ZodNullable<z.ZodString>;
|
|
2732
|
+
pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
2733
|
+
pool_liquidity: z.ZodNullable<z.ZodString>;
|
|
2734
|
+
pool_market_cap: z.ZodNullable<z.ZodString>;
|
|
2735
|
+
pool_price: z.ZodNullable<z.ZodString>;
|
|
2736
|
+
pool_price_scale: z.ZodNullable<z.ZodString>;
|
|
2737
|
+
pool_price_change_24h: z.ZodNullable<z.ZodString>;
|
|
2738
|
+
pool_volume_change_24h: z.ZodNullable<z.ZodString>;
|
|
2739
|
+
pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
|
|
2740
|
+
}, "strip", z.ZodTypeAny, {
|
|
2741
|
+
pool_liquidity: string | null;
|
|
2742
|
+
pool_market_cap: string | null;
|
|
2743
|
+
pool_price: string | null;
|
|
2744
|
+
pool_price_scale: string | null;
|
|
2745
|
+
pool_price_change_24h: string | null;
|
|
2746
|
+
pool_volume_change_24h: string | null;
|
|
2747
|
+
pool_volume_usd_24h: string | null;
|
|
2748
|
+
}, {
|
|
2749
|
+
pool_liquidity: string | null;
|
|
2750
|
+
pool_market_cap: string | null;
|
|
2751
|
+
pool_price: string | null;
|
|
2752
|
+
pool_price_scale: string | null;
|
|
2753
|
+
pool_price_change_24h: string | null;
|
|
2754
|
+
pool_volume_change_24h: string | null;
|
|
2755
|
+
pool_volume_usd_24h: string | null;
|
|
2756
|
+
}>>, {
|
|
2757
|
+
pool_liquidity: string | null;
|
|
2758
|
+
pool_market_cap: string | null;
|
|
2759
|
+
pool_price: string | null;
|
|
2760
|
+
pool_price_scale: string | null;
|
|
2761
|
+
pool_price_change_24h: string | null;
|
|
2762
|
+
pool_volume_change_24h: string | null;
|
|
2763
|
+
pool_volume_usd_24h: string | null;
|
|
2764
|
+
} | null, unknown>;
|
|
2237
2765
|
base_token: z.ZodObject<{
|
|
2238
|
-
token_address: z.
|
|
2766
|
+
token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2239
2767
|
token_name: z.ZodString;
|
|
2240
2768
|
token_description: z.ZodNullable<z.ZodString>;
|
|
2241
2769
|
token_symbol: z.ZodString;
|
|
@@ -2304,9 +2832,9 @@ declare const assetContract: {
|
|
|
2304
2832
|
}[] | undefined;
|
|
2305
2833
|
}>>;
|
|
2306
2834
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
2307
|
-
token_creator_address: z.
|
|
2308
|
-
token_fee_receiver_address: z.
|
|
2309
|
-
token_vesting_recipient_addresses: z.ZodArray<z.
|
|
2835
|
+
token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2836
|
+
token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2837
|
+
token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
2310
2838
|
integrator_address: z.ZodString;
|
|
2311
2839
|
}, "strip", z.ZodTypeAny, {
|
|
2312
2840
|
token_address: `0x${string}`;
|
|
@@ -2372,6 +2900,20 @@ declare const assetContract: {
|
|
|
2372
2900
|
pool_address: `0x${string}`;
|
|
2373
2901
|
pool_migration_timestamp: Date | null;
|
|
2374
2902
|
pool_type: string;
|
|
2903
|
+
pool_volume_24h_base: string | null;
|
|
2904
|
+
pool_volume_24h_quote: string | null;
|
|
2905
|
+
pool_volume_24h_usd: string | null;
|
|
2906
|
+
pool_volume_24h_swap_count: number | null;
|
|
2907
|
+
pool_volume_last_updated: string | null;
|
|
2908
|
+
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;
|
|
2375
2917
|
base_token: {
|
|
2376
2918
|
token_address: `0x${string}`;
|
|
2377
2919
|
token_name: string;
|
|
@@ -2410,6 +2952,11 @@ declare const assetContract: {
|
|
|
2410
2952
|
pool_address: string;
|
|
2411
2953
|
pool_migration_timestamp: Date | null;
|
|
2412
2954
|
pool_type: string;
|
|
2955
|
+
pool_volume_24h_base: string | null;
|
|
2956
|
+
pool_volume_24h_quote: string | null;
|
|
2957
|
+
pool_volume_24h_usd: string | null;
|
|
2958
|
+
pool_volume_24h_swap_count: number | null;
|
|
2959
|
+
pool_volume_last_updated: string | null;
|
|
2413
2960
|
base_token: {
|
|
2414
2961
|
token_address: string;
|
|
2415
2962
|
token_name: string;
|
|
@@ -2437,6 +2984,7 @@ declare const assetContract: {
|
|
|
2437
2984
|
token_vesting_recipient_addresses: string[];
|
|
2438
2985
|
integrator_address: string;
|
|
2439
2986
|
};
|
|
2987
|
+
pool_market_data?: unknown;
|
|
2440
2988
|
}>;
|
|
2441
2989
|
}, "strip", z.ZodTypeAny, {
|
|
2442
2990
|
asset_address: `0x${string}`;
|
|
@@ -2469,6 +3017,20 @@ declare const assetContract: {
|
|
|
2469
3017
|
pool_config_ending_time: string;
|
|
2470
3018
|
pool_migration_timestamp: Date | null;
|
|
2471
3019
|
pool_type: string;
|
|
3020
|
+
pool_volume_24h_base: string | null;
|
|
3021
|
+
pool_volume_24h_quote: string | null;
|
|
3022
|
+
pool_volume_24h_usd: string | null;
|
|
3023
|
+
pool_volume_24h_swap_count: number | null;
|
|
3024
|
+
pool_volume_last_updated: string | null;
|
|
3025
|
+
pool_market_data: {
|
|
3026
|
+
pool_liquidity: string | null;
|
|
3027
|
+
pool_market_cap: string | null;
|
|
3028
|
+
pool_price: string | null;
|
|
3029
|
+
pool_price_scale: string | null;
|
|
3030
|
+
pool_price_change_24h: string | null;
|
|
3031
|
+
pool_volume_change_24h: string | null;
|
|
3032
|
+
pool_volume_usd_24h: string | null;
|
|
3033
|
+
} | null;
|
|
2472
3034
|
base_token: {
|
|
2473
3035
|
token_address: `0x${string}`;
|
|
2474
3036
|
token_name: string;
|
|
@@ -2507,6 +3069,20 @@ declare const assetContract: {
|
|
|
2507
3069
|
pool_address: `0x${string}`;
|
|
2508
3070
|
pool_migration_timestamp: Date | null;
|
|
2509
3071
|
pool_type: string;
|
|
3072
|
+
pool_volume_24h_base: string | null;
|
|
3073
|
+
pool_volume_24h_quote: string | null;
|
|
3074
|
+
pool_volume_24h_usd: string | null;
|
|
3075
|
+
pool_volume_24h_swap_count: number | null;
|
|
3076
|
+
pool_volume_last_updated: string | null;
|
|
3077
|
+
pool_market_data: {
|
|
3078
|
+
pool_liquidity: string | null;
|
|
3079
|
+
pool_market_cap: string | null;
|
|
3080
|
+
pool_price: string | null;
|
|
3081
|
+
pool_price_scale: string | null;
|
|
3082
|
+
pool_price_change_24h: string | null;
|
|
3083
|
+
pool_volume_change_24h: string | null;
|
|
3084
|
+
pool_volume_usd_24h: string | null;
|
|
3085
|
+
} | null;
|
|
2510
3086
|
base_token: {
|
|
2511
3087
|
token_address: `0x${string}`;
|
|
2512
3088
|
token_name: string;
|
|
@@ -2564,6 +3140,11 @@ declare const assetContract: {
|
|
|
2564
3140
|
pool_config_ending_time: string;
|
|
2565
3141
|
pool_migration_timestamp: Date | null;
|
|
2566
3142
|
pool_type: string;
|
|
3143
|
+
pool_volume_24h_base: string | null;
|
|
3144
|
+
pool_volume_24h_quote: string | null;
|
|
3145
|
+
pool_volume_24h_usd: string | null;
|
|
3146
|
+
pool_volume_24h_swap_count: number | null;
|
|
3147
|
+
pool_volume_last_updated: string | null;
|
|
2567
3148
|
base_token: {
|
|
2568
3149
|
token_address: string;
|
|
2569
3150
|
token_name: string;
|
|
@@ -2590,6 +3171,7 @@ declare const assetContract: {
|
|
|
2590
3171
|
token_fee_receiver_address: string;
|
|
2591
3172
|
token_vesting_recipient_addresses: string[];
|
|
2592
3173
|
};
|
|
3174
|
+
pool_market_data?: unknown;
|
|
2593
3175
|
};
|
|
2594
3176
|
graduation_pool: {
|
|
2595
3177
|
pool_current_price: string;
|
|
@@ -2603,6 +3185,11 @@ declare const assetContract: {
|
|
|
2603
3185
|
pool_address: string;
|
|
2604
3186
|
pool_migration_timestamp: Date | null;
|
|
2605
3187
|
pool_type: string;
|
|
3188
|
+
pool_volume_24h_base: string | null;
|
|
3189
|
+
pool_volume_24h_quote: string | null;
|
|
3190
|
+
pool_volume_24h_usd: string | null;
|
|
3191
|
+
pool_volume_24h_swap_count: number | null;
|
|
3192
|
+
pool_volume_last_updated: string | null;
|
|
2606
3193
|
base_token: {
|
|
2607
3194
|
token_address: string;
|
|
2608
3195
|
token_name: string;
|
|
@@ -2630,6 +3217,7 @@ declare const assetContract: {
|
|
|
2630
3217
|
token_vesting_recipient_addresses: string[];
|
|
2631
3218
|
integrator_address: string;
|
|
2632
3219
|
};
|
|
3220
|
+
pool_market_data?: unknown;
|
|
2633
3221
|
};
|
|
2634
3222
|
asset_status?: AssetStatus | undefined;
|
|
2635
3223
|
}>, {
|
|
@@ -2663,6 +3251,20 @@ declare const assetContract: {
|
|
|
2663
3251
|
pool_config_ending_time: string;
|
|
2664
3252
|
pool_migration_timestamp: Date | null;
|
|
2665
3253
|
pool_type: string;
|
|
3254
|
+
pool_volume_24h_base: string | null;
|
|
3255
|
+
pool_volume_24h_quote: string | null;
|
|
3256
|
+
pool_volume_24h_usd: string | null;
|
|
3257
|
+
pool_volume_24h_swap_count: number | null;
|
|
3258
|
+
pool_volume_last_updated: string | null;
|
|
3259
|
+
pool_market_data: {
|
|
3260
|
+
pool_liquidity: string | null;
|
|
3261
|
+
pool_market_cap: string | null;
|
|
3262
|
+
pool_price: string | null;
|
|
3263
|
+
pool_price_scale: string | null;
|
|
3264
|
+
pool_price_change_24h: string | null;
|
|
3265
|
+
pool_volume_change_24h: string | null;
|
|
3266
|
+
pool_volume_usd_24h: string | null;
|
|
3267
|
+
} | null;
|
|
2666
3268
|
base_token: {
|
|
2667
3269
|
token_address: `0x${string}`;
|
|
2668
3270
|
token_name: string;
|
|
@@ -2701,6 +3303,20 @@ declare const assetContract: {
|
|
|
2701
3303
|
pool_address: `0x${string}`;
|
|
2702
3304
|
pool_migration_timestamp: Date | null;
|
|
2703
3305
|
pool_type: string;
|
|
3306
|
+
pool_volume_24h_base: string | null;
|
|
3307
|
+
pool_volume_24h_quote: string | null;
|
|
3308
|
+
pool_volume_24h_usd: string | null;
|
|
3309
|
+
pool_volume_24h_swap_count: number | null;
|
|
3310
|
+
pool_volume_last_updated: string | null;
|
|
3311
|
+
pool_market_data: {
|
|
3312
|
+
pool_liquidity: string | null;
|
|
3313
|
+
pool_market_cap: string | null;
|
|
3314
|
+
pool_price: string | null;
|
|
3315
|
+
pool_price_scale: string | null;
|
|
3316
|
+
pool_price_change_24h: string | null;
|
|
3317
|
+
pool_volume_change_24h: string | null;
|
|
3318
|
+
pool_volume_usd_24h: string | null;
|
|
3319
|
+
} | null;
|
|
2704
3320
|
base_token: {
|
|
2705
3321
|
token_address: `0x${string}`;
|
|
2706
3322
|
token_name: string;
|
|
@@ -2758,6 +3374,11 @@ declare const assetContract: {
|
|
|
2758
3374
|
pool_config_ending_time: string;
|
|
2759
3375
|
pool_migration_timestamp: Date | null;
|
|
2760
3376
|
pool_type: string;
|
|
3377
|
+
pool_volume_24h_base: string | null;
|
|
3378
|
+
pool_volume_24h_quote: string | null;
|
|
3379
|
+
pool_volume_24h_usd: string | null;
|
|
3380
|
+
pool_volume_24h_swap_count: number | null;
|
|
3381
|
+
pool_volume_last_updated: string | null;
|
|
2761
3382
|
base_token: {
|
|
2762
3383
|
token_address: string;
|
|
2763
3384
|
token_name: string;
|
|
@@ -2784,6 +3405,7 @@ declare const assetContract: {
|
|
|
2784
3405
|
token_fee_receiver_address: string;
|
|
2785
3406
|
token_vesting_recipient_addresses: string[];
|
|
2786
3407
|
};
|
|
3408
|
+
pool_market_data?: unknown;
|
|
2787
3409
|
};
|
|
2788
3410
|
graduation_pool: {
|
|
2789
3411
|
pool_current_price: string;
|
|
@@ -2797,6 +3419,11 @@ declare const assetContract: {
|
|
|
2797
3419
|
pool_address: string;
|
|
2798
3420
|
pool_migration_timestamp: Date | null;
|
|
2799
3421
|
pool_type: string;
|
|
3422
|
+
pool_volume_24h_base: string | null;
|
|
3423
|
+
pool_volume_24h_quote: string | null;
|
|
3424
|
+
pool_volume_24h_usd: string | null;
|
|
3425
|
+
pool_volume_24h_swap_count: number | null;
|
|
3426
|
+
pool_volume_last_updated: string | null;
|
|
2800
3427
|
base_token: {
|
|
2801
3428
|
token_address: string;
|
|
2802
3429
|
token_name: string;
|
|
@@ -2824,6 +3451,7 @@ declare const assetContract: {
|
|
|
2824
3451
|
token_vesting_recipient_addresses: string[];
|
|
2825
3452
|
integrator_address: string;
|
|
2826
3453
|
};
|
|
3454
|
+
pool_market_data?: unknown;
|
|
2827
3455
|
};
|
|
2828
3456
|
asset_status?: AssetStatus | undefined;
|
|
2829
3457
|
}>, "many">;
|
|
@@ -2859,6 +3487,20 @@ declare const assetContract: {
|
|
|
2859
3487
|
pool_config_ending_time: string;
|
|
2860
3488
|
pool_migration_timestamp: Date | null;
|
|
2861
3489
|
pool_type: string;
|
|
3490
|
+
pool_volume_24h_base: string | null;
|
|
3491
|
+
pool_volume_24h_quote: string | null;
|
|
3492
|
+
pool_volume_24h_usd: string | null;
|
|
3493
|
+
pool_volume_24h_swap_count: number | null;
|
|
3494
|
+
pool_volume_last_updated: string | null;
|
|
3495
|
+
pool_market_data: {
|
|
3496
|
+
pool_liquidity: string | null;
|
|
3497
|
+
pool_market_cap: string | null;
|
|
3498
|
+
pool_price: string | null;
|
|
3499
|
+
pool_price_scale: string | null;
|
|
3500
|
+
pool_price_change_24h: string | null;
|
|
3501
|
+
pool_volume_change_24h: string | null;
|
|
3502
|
+
pool_volume_usd_24h: string | null;
|
|
3503
|
+
} | null;
|
|
2862
3504
|
base_token: {
|
|
2863
3505
|
token_address: `0x${string}`;
|
|
2864
3506
|
token_name: string;
|
|
@@ -2897,6 +3539,20 @@ declare const assetContract: {
|
|
|
2897
3539
|
pool_address: `0x${string}`;
|
|
2898
3540
|
pool_migration_timestamp: Date | null;
|
|
2899
3541
|
pool_type: string;
|
|
3542
|
+
pool_volume_24h_base: string | null;
|
|
3543
|
+
pool_volume_24h_quote: string | null;
|
|
3544
|
+
pool_volume_24h_usd: string | null;
|
|
3545
|
+
pool_volume_24h_swap_count: number | null;
|
|
3546
|
+
pool_volume_last_updated: string | null;
|
|
3547
|
+
pool_market_data: {
|
|
3548
|
+
pool_liquidity: string | null;
|
|
3549
|
+
pool_market_cap: string | null;
|
|
3550
|
+
pool_price: string | null;
|
|
3551
|
+
pool_price_scale: string | null;
|
|
3552
|
+
pool_price_change_24h: string | null;
|
|
3553
|
+
pool_volume_change_24h: string | null;
|
|
3554
|
+
pool_volume_usd_24h: string | null;
|
|
3555
|
+
} | null;
|
|
2900
3556
|
base_token: {
|
|
2901
3557
|
token_address: `0x${string}`;
|
|
2902
3558
|
token_name: string;
|
|
@@ -2956,6 +3612,11 @@ declare const assetContract: {
|
|
|
2956
3612
|
pool_config_ending_time: string;
|
|
2957
3613
|
pool_migration_timestamp: Date | null;
|
|
2958
3614
|
pool_type: string;
|
|
3615
|
+
pool_volume_24h_base: string | null;
|
|
3616
|
+
pool_volume_24h_quote: string | null;
|
|
3617
|
+
pool_volume_24h_usd: string | null;
|
|
3618
|
+
pool_volume_24h_swap_count: number | null;
|
|
3619
|
+
pool_volume_last_updated: string | null;
|
|
2959
3620
|
base_token: {
|
|
2960
3621
|
token_address: string;
|
|
2961
3622
|
token_name: string;
|
|
@@ -2982,6 +3643,7 @@ declare const assetContract: {
|
|
|
2982
3643
|
token_fee_receiver_address: string;
|
|
2983
3644
|
token_vesting_recipient_addresses: string[];
|
|
2984
3645
|
};
|
|
3646
|
+
pool_market_data?: unknown;
|
|
2985
3647
|
};
|
|
2986
3648
|
graduation_pool: {
|
|
2987
3649
|
pool_current_price: string;
|
|
@@ -2995,6 +3657,11 @@ declare const assetContract: {
|
|
|
2995
3657
|
pool_address: string;
|
|
2996
3658
|
pool_migration_timestamp: Date | null;
|
|
2997
3659
|
pool_type: string;
|
|
3660
|
+
pool_volume_24h_base: string | null;
|
|
3661
|
+
pool_volume_24h_quote: string | null;
|
|
3662
|
+
pool_volume_24h_usd: string | null;
|
|
3663
|
+
pool_volume_24h_swap_count: number | null;
|
|
3664
|
+
pool_volume_last_updated: string | null;
|
|
2998
3665
|
base_token: {
|
|
2999
3666
|
token_address: string;
|
|
3000
3667
|
token_name: string;
|
|
@@ -3022,6 +3689,7 @@ declare const assetContract: {
|
|
|
3022
3689
|
token_vesting_recipient_addresses: string[];
|
|
3023
3690
|
integrator_address: string;
|
|
3024
3691
|
};
|
|
3692
|
+
pool_market_data?: unknown;
|
|
3025
3693
|
};
|
|
3026
3694
|
asset_status?: AssetStatus | undefined;
|
|
3027
3695
|
}[];
|
|
@@ -3031,7 +3699,7 @@ declare const assetContract: {
|
|
|
3031
3699
|
getAssetByAddress: {
|
|
3032
3700
|
description: "Get an asset by its address";
|
|
3033
3701
|
pathParams: z.ZodObject<{
|
|
3034
|
-
assetAddress: z.
|
|
3702
|
+
assetAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3035
3703
|
}, "strip", z.ZodTypeAny, {
|
|
3036
3704
|
assetAddress: `0x${string}`;
|
|
3037
3705
|
}, {
|
|
@@ -3049,8 +3717,8 @@ declare const assetContract: {
|
|
|
3049
3717
|
responses: {
|
|
3050
3718
|
200: z.ZodObject<{
|
|
3051
3719
|
result: z.ZodEffects<z.ZodObject<{
|
|
3052
|
-
asset_address: z.ZodPipeline<z.ZodString, z.
|
|
3053
|
-
asset_numeraire_address: z.
|
|
3720
|
+
asset_address: z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
3721
|
+
asset_numeraire_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3054
3722
|
asset_creation_timestamp: z.ZodDate;
|
|
3055
3723
|
asset_current_pool: z.ZodString;
|
|
3056
3724
|
asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
@@ -3074,13 +3742,51 @@ declare const assetContract: {
|
|
|
3074
3742
|
pool_config_min_proceeds: z.ZodString;
|
|
3075
3743
|
pool_config_num_tokens_to_sell: z.ZodString;
|
|
3076
3744
|
pool_id: z.ZodString;
|
|
3077
|
-
pool_address: z.
|
|
3745
|
+
pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3078
3746
|
pool_config_starting_time: z.ZodString;
|
|
3079
3747
|
pool_config_ending_time: z.ZodString;
|
|
3080
3748
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
3081
3749
|
pool_type: z.ZodString;
|
|
3750
|
+
pool_volume_24h_base: z.ZodNullable<z.ZodString>;
|
|
3751
|
+
pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
|
|
3752
|
+
pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
|
|
3753
|
+
pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
|
|
3754
|
+
pool_volume_last_updated: z.ZodNullable<z.ZodString>;
|
|
3755
|
+
pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
3756
|
+
pool_liquidity: z.ZodNullable<z.ZodString>;
|
|
3757
|
+
pool_market_cap: z.ZodNullable<z.ZodString>;
|
|
3758
|
+
pool_price: z.ZodNullable<z.ZodString>;
|
|
3759
|
+
pool_price_scale: z.ZodNullable<z.ZodString>;
|
|
3760
|
+
pool_price_change_24h: z.ZodNullable<z.ZodString>;
|
|
3761
|
+
pool_volume_change_24h: z.ZodNullable<z.ZodString>;
|
|
3762
|
+
pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
|
|
3763
|
+
}, "strip", z.ZodTypeAny, {
|
|
3764
|
+
pool_liquidity: string | null;
|
|
3765
|
+
pool_market_cap: string | null;
|
|
3766
|
+
pool_price: string | null;
|
|
3767
|
+
pool_price_scale: string | null;
|
|
3768
|
+
pool_price_change_24h: string | null;
|
|
3769
|
+
pool_volume_change_24h: string | null;
|
|
3770
|
+
pool_volume_usd_24h: string | null;
|
|
3771
|
+
}, {
|
|
3772
|
+
pool_liquidity: string | null;
|
|
3773
|
+
pool_market_cap: string | null;
|
|
3774
|
+
pool_price: string | null;
|
|
3775
|
+
pool_price_scale: string | null;
|
|
3776
|
+
pool_price_change_24h: string | null;
|
|
3777
|
+
pool_volume_change_24h: string | null;
|
|
3778
|
+
pool_volume_usd_24h: string | null;
|
|
3779
|
+
}>>, {
|
|
3780
|
+
pool_liquidity: string | null;
|
|
3781
|
+
pool_market_cap: string | null;
|
|
3782
|
+
pool_price: string | null;
|
|
3783
|
+
pool_price_scale: string | null;
|
|
3784
|
+
pool_price_change_24h: string | null;
|
|
3785
|
+
pool_volume_change_24h: string | null;
|
|
3786
|
+
pool_volume_usd_24h: string | null;
|
|
3787
|
+
} | null, unknown>;
|
|
3082
3788
|
base_token: z.ZodObject<{
|
|
3083
|
-
token_address: z.
|
|
3789
|
+
token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3084
3790
|
token_name: z.ZodString;
|
|
3085
3791
|
token_description: z.ZodNullable<z.ZodString>;
|
|
3086
3792
|
token_symbol: z.ZodString;
|
|
@@ -3149,9 +3855,9 @@ declare const assetContract: {
|
|
|
3149
3855
|
}[] | undefined;
|
|
3150
3856
|
}>>;
|
|
3151
3857
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
3152
|
-
token_creator_address: z.
|
|
3153
|
-
token_fee_receiver_address: z.
|
|
3154
|
-
token_vesting_recipient_addresses: z.ZodArray<z.
|
|
3858
|
+
token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3859
|
+
token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3860
|
+
token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
3155
3861
|
}, "strip", z.ZodTypeAny, {
|
|
3156
3862
|
token_address: `0x${string}`;
|
|
3157
3863
|
token_name: string;
|
|
@@ -3226,6 +3932,20 @@ declare const assetContract: {
|
|
|
3226
3932
|
pool_config_ending_time: string;
|
|
3227
3933
|
pool_migration_timestamp: Date | null;
|
|
3228
3934
|
pool_type: string;
|
|
3935
|
+
pool_volume_24h_base: string | null;
|
|
3936
|
+
pool_volume_24h_quote: string | null;
|
|
3937
|
+
pool_volume_24h_usd: string | null;
|
|
3938
|
+
pool_volume_24h_swap_count: number | null;
|
|
3939
|
+
pool_volume_last_updated: string | null;
|
|
3940
|
+
pool_market_data: {
|
|
3941
|
+
pool_liquidity: string | null;
|
|
3942
|
+
pool_market_cap: string | null;
|
|
3943
|
+
pool_price: string | null;
|
|
3944
|
+
pool_price_scale: string | null;
|
|
3945
|
+
pool_price_change_24h: string | null;
|
|
3946
|
+
pool_volume_change_24h: string | null;
|
|
3947
|
+
pool_volume_usd_24h: string | null;
|
|
3948
|
+
} | null;
|
|
3229
3949
|
base_token: {
|
|
3230
3950
|
token_address: `0x${string}`;
|
|
3231
3951
|
token_name: string;
|
|
@@ -3275,6 +3995,11 @@ declare const assetContract: {
|
|
|
3275
3995
|
pool_config_ending_time: string;
|
|
3276
3996
|
pool_migration_timestamp: Date | null;
|
|
3277
3997
|
pool_type: string;
|
|
3998
|
+
pool_volume_24h_base: string | null;
|
|
3999
|
+
pool_volume_24h_quote: string | null;
|
|
4000
|
+
pool_volume_24h_usd: string | null;
|
|
4001
|
+
pool_volume_24h_swap_count: number | null;
|
|
4002
|
+
pool_volume_last_updated: string | null;
|
|
3278
4003
|
base_token: {
|
|
3279
4004
|
token_address: string;
|
|
3280
4005
|
token_name: string;
|
|
@@ -3301,6 +4026,7 @@ declare const assetContract: {
|
|
|
3301
4026
|
token_fee_receiver_address: string;
|
|
3302
4027
|
token_vesting_recipient_addresses: string[];
|
|
3303
4028
|
};
|
|
4029
|
+
pool_market_data?: unknown;
|
|
3304
4030
|
}>;
|
|
3305
4031
|
graduation_pool: z.ZodObject<{
|
|
3306
4032
|
pool_current_price: z.ZodString;
|
|
@@ -3311,11 +4037,49 @@ declare const assetContract: {
|
|
|
3311
4037
|
pool_current_tick: z.ZodNumber;
|
|
3312
4038
|
pool_current_market_cap: z.ZodString;
|
|
3313
4039
|
pool_current_market_cap_usd: z.ZodNullable<z.ZodString>;
|
|
3314
|
-
pool_address: z.
|
|
4040
|
+
pool_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3315
4041
|
pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
|
|
3316
4042
|
pool_type: z.ZodString;
|
|
4043
|
+
pool_volume_24h_base: z.ZodNullable<z.ZodString>;
|
|
4044
|
+
pool_volume_24h_quote: z.ZodNullable<z.ZodString>;
|
|
4045
|
+
pool_volume_24h_usd: z.ZodNullable<z.ZodString>;
|
|
4046
|
+
pool_volume_24h_swap_count: z.ZodNullable<z.ZodNumber>;
|
|
4047
|
+
pool_volume_last_updated: z.ZodNullable<z.ZodString>;
|
|
4048
|
+
pool_market_data: z.ZodEffects<z.ZodNullable<z.ZodObject<{
|
|
4049
|
+
pool_liquidity: z.ZodNullable<z.ZodString>;
|
|
4050
|
+
pool_market_cap: z.ZodNullable<z.ZodString>;
|
|
4051
|
+
pool_price: z.ZodNullable<z.ZodString>;
|
|
4052
|
+
pool_price_scale: z.ZodNullable<z.ZodString>;
|
|
4053
|
+
pool_price_change_24h: z.ZodNullable<z.ZodString>;
|
|
4054
|
+
pool_volume_change_24h: z.ZodNullable<z.ZodString>;
|
|
4055
|
+
pool_volume_usd_24h: z.ZodNullable<z.ZodString>;
|
|
4056
|
+
}, "strip", z.ZodTypeAny, {
|
|
4057
|
+
pool_liquidity: string | null;
|
|
4058
|
+
pool_market_cap: string | null;
|
|
4059
|
+
pool_price: string | null;
|
|
4060
|
+
pool_price_scale: string | null;
|
|
4061
|
+
pool_price_change_24h: string | null;
|
|
4062
|
+
pool_volume_change_24h: string | null;
|
|
4063
|
+
pool_volume_usd_24h: string | null;
|
|
4064
|
+
}, {
|
|
4065
|
+
pool_liquidity: string | null;
|
|
4066
|
+
pool_market_cap: string | null;
|
|
4067
|
+
pool_price: string | null;
|
|
4068
|
+
pool_price_scale: string | null;
|
|
4069
|
+
pool_price_change_24h: string | null;
|
|
4070
|
+
pool_volume_change_24h: string | null;
|
|
4071
|
+
pool_volume_usd_24h: string | null;
|
|
4072
|
+
}>>, {
|
|
4073
|
+
pool_liquidity: string | null;
|
|
4074
|
+
pool_market_cap: string | null;
|
|
4075
|
+
pool_price: string | null;
|
|
4076
|
+
pool_price_scale: string | null;
|
|
4077
|
+
pool_price_change_24h: string | null;
|
|
4078
|
+
pool_volume_change_24h: string | null;
|
|
4079
|
+
pool_volume_usd_24h: string | null;
|
|
4080
|
+
} | null, unknown>;
|
|
3317
4081
|
base_token: z.ZodObject<{
|
|
3318
|
-
token_address: z.
|
|
4082
|
+
token_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
3319
4083
|
token_name: z.ZodString;
|
|
3320
4084
|
token_description: z.ZodNullable<z.ZodString>;
|
|
3321
4085
|
token_symbol: z.ZodString;
|
|
@@ -3384,9 +4148,9 @@ declare const assetContract: {
|
|
|
3384
4148
|
}[] | undefined;
|
|
3385
4149
|
}>>;
|
|
3386
4150
|
token_image_public_url: z.ZodNullable<z.ZodString>;
|
|
3387
|
-
token_creator_address: z.
|
|
3388
|
-
token_fee_receiver_address: z.
|
|
3389
|
-
token_vesting_recipient_addresses: z.ZodArray<z.
|
|
4151
|
+
token_creator_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4152
|
+
token_fee_receiver_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4153
|
+
token_vesting_recipient_addresses: z.ZodArray<z.ZodEffects<z.ZodString, `0x${string}`, string>, "many">;
|
|
3390
4154
|
integrator_address: z.ZodString;
|
|
3391
4155
|
}, "strip", z.ZodTypeAny, {
|
|
3392
4156
|
token_address: `0x${string}`;
|
|
@@ -3452,6 +4216,20 @@ declare const assetContract: {
|
|
|
3452
4216
|
pool_address: `0x${string}`;
|
|
3453
4217
|
pool_migration_timestamp: Date | null;
|
|
3454
4218
|
pool_type: string;
|
|
4219
|
+
pool_volume_24h_base: string | null;
|
|
4220
|
+
pool_volume_24h_quote: string | null;
|
|
4221
|
+
pool_volume_24h_usd: string | null;
|
|
4222
|
+
pool_volume_24h_swap_count: number | null;
|
|
4223
|
+
pool_volume_last_updated: string | null;
|
|
4224
|
+
pool_market_data: {
|
|
4225
|
+
pool_liquidity: string | null;
|
|
4226
|
+
pool_market_cap: string | null;
|
|
4227
|
+
pool_price: string | null;
|
|
4228
|
+
pool_price_scale: string | null;
|
|
4229
|
+
pool_price_change_24h: string | null;
|
|
4230
|
+
pool_volume_change_24h: string | null;
|
|
4231
|
+
pool_volume_usd_24h: string | null;
|
|
4232
|
+
} | null;
|
|
3455
4233
|
base_token: {
|
|
3456
4234
|
token_address: `0x${string}`;
|
|
3457
4235
|
token_name: string;
|
|
@@ -3490,6 +4268,11 @@ declare const assetContract: {
|
|
|
3490
4268
|
pool_address: string;
|
|
3491
4269
|
pool_migration_timestamp: Date | null;
|
|
3492
4270
|
pool_type: string;
|
|
4271
|
+
pool_volume_24h_base: string | null;
|
|
4272
|
+
pool_volume_24h_quote: string | null;
|
|
4273
|
+
pool_volume_24h_usd: string | null;
|
|
4274
|
+
pool_volume_24h_swap_count: number | null;
|
|
4275
|
+
pool_volume_last_updated: string | null;
|
|
3493
4276
|
base_token: {
|
|
3494
4277
|
token_address: string;
|
|
3495
4278
|
token_name: string;
|
|
@@ -3517,6 +4300,7 @@ declare const assetContract: {
|
|
|
3517
4300
|
token_vesting_recipient_addresses: string[];
|
|
3518
4301
|
integrator_address: string;
|
|
3519
4302
|
};
|
|
4303
|
+
pool_market_data?: unknown;
|
|
3520
4304
|
}>;
|
|
3521
4305
|
}, "strip", z.ZodTypeAny, {
|
|
3522
4306
|
asset_address: `0x${string}`;
|
|
@@ -3549,6 +4333,20 @@ declare const assetContract: {
|
|
|
3549
4333
|
pool_config_ending_time: string;
|
|
3550
4334
|
pool_migration_timestamp: Date | null;
|
|
3551
4335
|
pool_type: string;
|
|
4336
|
+
pool_volume_24h_base: string | null;
|
|
4337
|
+
pool_volume_24h_quote: string | null;
|
|
4338
|
+
pool_volume_24h_usd: string | null;
|
|
4339
|
+
pool_volume_24h_swap_count: number | null;
|
|
4340
|
+
pool_volume_last_updated: string | null;
|
|
4341
|
+
pool_market_data: {
|
|
4342
|
+
pool_liquidity: string | null;
|
|
4343
|
+
pool_market_cap: string | null;
|
|
4344
|
+
pool_price: string | null;
|
|
4345
|
+
pool_price_scale: string | null;
|
|
4346
|
+
pool_price_change_24h: string | null;
|
|
4347
|
+
pool_volume_change_24h: string | null;
|
|
4348
|
+
pool_volume_usd_24h: string | null;
|
|
4349
|
+
} | null;
|
|
3552
4350
|
base_token: {
|
|
3553
4351
|
token_address: `0x${string}`;
|
|
3554
4352
|
token_name: string;
|
|
@@ -3587,6 +4385,20 @@ declare const assetContract: {
|
|
|
3587
4385
|
pool_address: `0x${string}`;
|
|
3588
4386
|
pool_migration_timestamp: Date | null;
|
|
3589
4387
|
pool_type: string;
|
|
4388
|
+
pool_volume_24h_base: string | null;
|
|
4389
|
+
pool_volume_24h_quote: string | null;
|
|
4390
|
+
pool_volume_24h_usd: string | null;
|
|
4391
|
+
pool_volume_24h_swap_count: number | null;
|
|
4392
|
+
pool_volume_last_updated: string | null;
|
|
4393
|
+
pool_market_data: {
|
|
4394
|
+
pool_liquidity: string | null;
|
|
4395
|
+
pool_market_cap: string | null;
|
|
4396
|
+
pool_price: string | null;
|
|
4397
|
+
pool_price_scale: string | null;
|
|
4398
|
+
pool_price_change_24h: string | null;
|
|
4399
|
+
pool_volume_change_24h: string | null;
|
|
4400
|
+
pool_volume_usd_24h: string | null;
|
|
4401
|
+
} | null;
|
|
3590
4402
|
base_token: {
|
|
3591
4403
|
token_address: `0x${string}`;
|
|
3592
4404
|
token_name: string;
|
|
@@ -3644,6 +4456,11 @@ declare const assetContract: {
|
|
|
3644
4456
|
pool_config_ending_time: string;
|
|
3645
4457
|
pool_migration_timestamp: Date | null;
|
|
3646
4458
|
pool_type: string;
|
|
4459
|
+
pool_volume_24h_base: string | null;
|
|
4460
|
+
pool_volume_24h_quote: string | null;
|
|
4461
|
+
pool_volume_24h_usd: string | null;
|
|
4462
|
+
pool_volume_24h_swap_count: number | null;
|
|
4463
|
+
pool_volume_last_updated: string | null;
|
|
3647
4464
|
base_token: {
|
|
3648
4465
|
token_address: string;
|
|
3649
4466
|
token_name: string;
|
|
@@ -3670,6 +4487,7 @@ declare const assetContract: {
|
|
|
3670
4487
|
token_fee_receiver_address: string;
|
|
3671
4488
|
token_vesting_recipient_addresses: string[];
|
|
3672
4489
|
};
|
|
4490
|
+
pool_market_data?: unknown;
|
|
3673
4491
|
};
|
|
3674
4492
|
graduation_pool: {
|
|
3675
4493
|
pool_current_price: string;
|
|
@@ -3683,6 +4501,11 @@ declare const assetContract: {
|
|
|
3683
4501
|
pool_address: string;
|
|
3684
4502
|
pool_migration_timestamp: Date | null;
|
|
3685
4503
|
pool_type: string;
|
|
4504
|
+
pool_volume_24h_base: string | null;
|
|
4505
|
+
pool_volume_24h_quote: string | null;
|
|
4506
|
+
pool_volume_24h_usd: string | null;
|
|
4507
|
+
pool_volume_24h_swap_count: number | null;
|
|
4508
|
+
pool_volume_last_updated: string | null;
|
|
3686
4509
|
base_token: {
|
|
3687
4510
|
token_address: string;
|
|
3688
4511
|
token_name: string;
|
|
@@ -3710,6 +4533,7 @@ declare const assetContract: {
|
|
|
3710
4533
|
token_vesting_recipient_addresses: string[];
|
|
3711
4534
|
integrator_address: string;
|
|
3712
4535
|
};
|
|
4536
|
+
pool_market_data?: unknown;
|
|
3713
4537
|
};
|
|
3714
4538
|
asset_status?: AssetStatus | undefined;
|
|
3715
4539
|
}>, {
|
|
@@ -3743,6 +4567,20 @@ declare const assetContract: {
|
|
|
3743
4567
|
pool_config_ending_time: string;
|
|
3744
4568
|
pool_migration_timestamp: Date | null;
|
|
3745
4569
|
pool_type: string;
|
|
4570
|
+
pool_volume_24h_base: string | null;
|
|
4571
|
+
pool_volume_24h_quote: string | null;
|
|
4572
|
+
pool_volume_24h_usd: string | null;
|
|
4573
|
+
pool_volume_24h_swap_count: number | null;
|
|
4574
|
+
pool_volume_last_updated: string | null;
|
|
4575
|
+
pool_market_data: {
|
|
4576
|
+
pool_liquidity: string | null;
|
|
4577
|
+
pool_market_cap: string | null;
|
|
4578
|
+
pool_price: string | null;
|
|
4579
|
+
pool_price_scale: string | null;
|
|
4580
|
+
pool_price_change_24h: string | null;
|
|
4581
|
+
pool_volume_change_24h: string | null;
|
|
4582
|
+
pool_volume_usd_24h: string | null;
|
|
4583
|
+
} | null;
|
|
3746
4584
|
base_token: {
|
|
3747
4585
|
token_address: `0x${string}`;
|
|
3748
4586
|
token_name: string;
|
|
@@ -3781,6 +4619,20 @@ declare const assetContract: {
|
|
|
3781
4619
|
pool_address: `0x${string}`;
|
|
3782
4620
|
pool_migration_timestamp: Date | null;
|
|
3783
4621
|
pool_type: string;
|
|
4622
|
+
pool_volume_24h_base: string | null;
|
|
4623
|
+
pool_volume_24h_quote: string | null;
|
|
4624
|
+
pool_volume_24h_usd: string | null;
|
|
4625
|
+
pool_volume_24h_swap_count: number | null;
|
|
4626
|
+
pool_volume_last_updated: string | null;
|
|
4627
|
+
pool_market_data: {
|
|
4628
|
+
pool_liquidity: string | null;
|
|
4629
|
+
pool_market_cap: string | null;
|
|
4630
|
+
pool_price: string | null;
|
|
4631
|
+
pool_price_scale: string | null;
|
|
4632
|
+
pool_price_change_24h: string | null;
|
|
4633
|
+
pool_volume_change_24h: string | null;
|
|
4634
|
+
pool_volume_usd_24h: string | null;
|
|
4635
|
+
} | null;
|
|
3784
4636
|
base_token: {
|
|
3785
4637
|
token_address: `0x${string}`;
|
|
3786
4638
|
token_name: string;
|
|
@@ -3838,6 +4690,11 @@ declare const assetContract: {
|
|
|
3838
4690
|
pool_config_ending_time: string;
|
|
3839
4691
|
pool_migration_timestamp: Date | null;
|
|
3840
4692
|
pool_type: string;
|
|
4693
|
+
pool_volume_24h_base: string | null;
|
|
4694
|
+
pool_volume_24h_quote: string | null;
|
|
4695
|
+
pool_volume_24h_usd: string | null;
|
|
4696
|
+
pool_volume_24h_swap_count: number | null;
|
|
4697
|
+
pool_volume_last_updated: string | null;
|
|
3841
4698
|
base_token: {
|
|
3842
4699
|
token_address: string;
|
|
3843
4700
|
token_name: string;
|
|
@@ -3864,6 +4721,7 @@ declare const assetContract: {
|
|
|
3864
4721
|
token_fee_receiver_address: string;
|
|
3865
4722
|
token_vesting_recipient_addresses: string[];
|
|
3866
4723
|
};
|
|
4724
|
+
pool_market_data?: unknown;
|
|
3867
4725
|
};
|
|
3868
4726
|
graduation_pool: {
|
|
3869
4727
|
pool_current_price: string;
|
|
@@ -3877,6 +4735,11 @@ declare const assetContract: {
|
|
|
3877
4735
|
pool_address: string;
|
|
3878
4736
|
pool_migration_timestamp: Date | null;
|
|
3879
4737
|
pool_type: string;
|
|
4738
|
+
pool_volume_24h_base: string | null;
|
|
4739
|
+
pool_volume_24h_quote: string | null;
|
|
4740
|
+
pool_volume_24h_usd: string | null;
|
|
4741
|
+
pool_volume_24h_swap_count: number | null;
|
|
4742
|
+
pool_volume_last_updated: string | null;
|
|
3880
4743
|
base_token: {
|
|
3881
4744
|
token_address: string;
|
|
3882
4745
|
token_name: string;
|
|
@@ -3904,6 +4767,7 @@ declare const assetContract: {
|
|
|
3904
4767
|
token_vesting_recipient_addresses: string[];
|
|
3905
4768
|
integrator_address: string;
|
|
3906
4769
|
};
|
|
4770
|
+
pool_market_data?: unknown;
|
|
3907
4771
|
};
|
|
3908
4772
|
asset_status?: AssetStatus | undefined;
|
|
3909
4773
|
}>;
|
|
@@ -3939,6 +4803,20 @@ declare const assetContract: {
|
|
|
3939
4803
|
pool_config_ending_time: string;
|
|
3940
4804
|
pool_migration_timestamp: Date | null;
|
|
3941
4805
|
pool_type: string;
|
|
4806
|
+
pool_volume_24h_base: string | null;
|
|
4807
|
+
pool_volume_24h_quote: string | null;
|
|
4808
|
+
pool_volume_24h_usd: string | null;
|
|
4809
|
+
pool_volume_24h_swap_count: number | null;
|
|
4810
|
+
pool_volume_last_updated: string | null;
|
|
4811
|
+
pool_market_data: {
|
|
4812
|
+
pool_liquidity: string | null;
|
|
4813
|
+
pool_market_cap: string | null;
|
|
4814
|
+
pool_price: string | null;
|
|
4815
|
+
pool_price_scale: string | null;
|
|
4816
|
+
pool_price_change_24h: string | null;
|
|
4817
|
+
pool_volume_change_24h: string | null;
|
|
4818
|
+
pool_volume_usd_24h: string | null;
|
|
4819
|
+
} | null;
|
|
3942
4820
|
base_token: {
|
|
3943
4821
|
token_address: `0x${string}`;
|
|
3944
4822
|
token_name: string;
|
|
@@ -3977,6 +4855,20 @@ declare const assetContract: {
|
|
|
3977
4855
|
pool_address: `0x${string}`;
|
|
3978
4856
|
pool_migration_timestamp: Date | null;
|
|
3979
4857
|
pool_type: string;
|
|
4858
|
+
pool_volume_24h_base: string | null;
|
|
4859
|
+
pool_volume_24h_quote: string | null;
|
|
4860
|
+
pool_volume_24h_usd: string | null;
|
|
4861
|
+
pool_volume_24h_swap_count: number | null;
|
|
4862
|
+
pool_volume_last_updated: string | null;
|
|
4863
|
+
pool_market_data: {
|
|
4864
|
+
pool_liquidity: string | null;
|
|
4865
|
+
pool_market_cap: string | null;
|
|
4866
|
+
pool_price: string | null;
|
|
4867
|
+
pool_price_scale: string | null;
|
|
4868
|
+
pool_price_change_24h: string | null;
|
|
4869
|
+
pool_volume_change_24h: string | null;
|
|
4870
|
+
pool_volume_usd_24h: string | null;
|
|
4871
|
+
} | null;
|
|
3980
4872
|
base_token: {
|
|
3981
4873
|
token_address: `0x${string}`;
|
|
3982
4874
|
token_name: string;
|
|
@@ -4036,6 +4928,11 @@ declare const assetContract: {
|
|
|
4036
4928
|
pool_config_ending_time: string;
|
|
4037
4929
|
pool_migration_timestamp: Date | null;
|
|
4038
4930
|
pool_type: string;
|
|
4931
|
+
pool_volume_24h_base: string | null;
|
|
4932
|
+
pool_volume_24h_quote: string | null;
|
|
4933
|
+
pool_volume_24h_usd: string | null;
|
|
4934
|
+
pool_volume_24h_swap_count: number | null;
|
|
4935
|
+
pool_volume_last_updated: string | null;
|
|
4039
4936
|
base_token: {
|
|
4040
4937
|
token_address: string;
|
|
4041
4938
|
token_name: string;
|
|
@@ -4062,6 +4959,7 @@ declare const assetContract: {
|
|
|
4062
4959
|
token_fee_receiver_address: string;
|
|
4063
4960
|
token_vesting_recipient_addresses: string[];
|
|
4064
4961
|
};
|
|
4962
|
+
pool_market_data?: unknown;
|
|
4065
4963
|
};
|
|
4066
4964
|
graduation_pool: {
|
|
4067
4965
|
pool_current_price: string;
|
|
@@ -4075,6 +4973,11 @@ declare const assetContract: {
|
|
|
4075
4973
|
pool_address: string;
|
|
4076
4974
|
pool_migration_timestamp: Date | null;
|
|
4077
4975
|
pool_type: string;
|
|
4976
|
+
pool_volume_24h_base: string | null;
|
|
4977
|
+
pool_volume_24h_quote: string | null;
|
|
4978
|
+
pool_volume_24h_usd: string | null;
|
|
4979
|
+
pool_volume_24h_swap_count: number | null;
|
|
4980
|
+
pool_volume_last_updated: string | null;
|
|
4078
4981
|
base_token: {
|
|
4079
4982
|
token_address: string;
|
|
4080
4983
|
token_name: string;
|
|
@@ -4102,6 +5005,7 @@ declare const assetContract: {
|
|
|
4102
5005
|
token_vesting_recipient_addresses: string[];
|
|
4103
5006
|
integrator_address: string;
|
|
4104
5007
|
};
|
|
5008
|
+
pool_market_data?: unknown;
|
|
4105
5009
|
};
|
|
4106
5010
|
asset_status?: AssetStatus | undefined;
|
|
4107
5011
|
};
|