@longdotxyz/shared 0.0.73 → 0.0.74

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.
@@ -1,12 +1,17 @@
1
1
  import z from "zod";
2
2
  import { AssetStatus, AssetStatusQuery } from "../types";
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}`>>;
6
- asset_creation_timestamp: z.ZodDate;
3
+ declare const AssetResponseSchema: z.ZodPipe<z.ZodObject<{
4
+ asset_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
5
+ asset_numeraire_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
6
+ asset_creation_timestamp: z.ZodCoercedDate<unknown>;
7
7
  asset_current_pool: z.ZodString;
8
- asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
9
- asset_status: z.ZodDefault<z.ZodEnum<[AssetStatus.GRADUATED, AssetStatus.LIVE, AssetStatus.INCOMING, AssetStatus.STALL]>>;
8
+ asset_migration_timestamp: z.ZodNullable<z.ZodCoercedDate<unknown>>;
9
+ asset_status: z.ZodDefault<z.ZodEnum<{
10
+ live: AssetStatus.LIVE;
11
+ graduated: AssetStatus.GRADUATED;
12
+ incoming: AssetStatus.INCOMING;
13
+ stall: AssetStatus.STALL;
14
+ }>>;
10
15
  auction_pool: z.ZodObject<{
11
16
  pool_current_price: z.ZodString;
12
17
  pool_current_sqrt_price: z.ZodString;
@@ -19,18 +24,18 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
19
24
  pool_current_total_proceeds: z.ZodString;
20
25
  pool_current_total_tokens_sold: z.ZodString;
21
26
  pool_last_epoch_total_tokens_sold: z.ZodString;
22
- pool_current_sale_progress_percentage: z.ZodNumber;
27
+ pool_current_sale_progress_percentage: z.ZodCoercedNumber<unknown>;
23
28
  pool_config_max_proceeds: z.ZodString;
24
29
  pool_config_min_proceeds: z.ZodString;
25
30
  pool_config_num_tokens_to_sell: z.ZodString;
26
31
  pool_id: z.ZodString;
27
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
32
+ pool_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
28
33
  pool_config_starting_time: z.ZodString;
29
34
  pool_config_ending_time: z.ZodString;
30
- pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
35
+ pool_migration_timestamp: z.ZodNullable<z.ZodCoercedDate<unknown>>;
31
36
  pool_type: z.ZodString;
32
37
  base_token: z.ZodObject<{
33
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
38
+ token_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
34
39
  token_name: z.ZodString;
35
40
  token_description: z.ZodNullable<z.ZodString>;
36
41
  token_symbol: z.ZodString;
@@ -43,211 +48,26 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
43
48
  social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
44
49
  label: z.ZodString;
45
50
  url: z.ZodString;
46
- }, "strip", z.ZodTypeAny, {
47
- label: string;
48
- url: string;
49
- }, {
50
- label: string;
51
- url: string;
52
- }>, "many">>;
53
- vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
51
+ }, z.core.$strip>>>;
52
+ vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodObject<{
54
53
  address: z.ZodString;
55
- amount: z.ZodOptional<z.ZodString>;
56
- percentage: z.ZodOptional<z.ZodString>;
57
- }, "strip", z.ZodTypeAny, {
58
- address: string;
59
- amount?: string | undefined;
60
- percentage?: string | undefined;
61
- }, {
62
- address: string;
63
- amount?: string | undefined;
64
- percentage?: string | undefined;
65
- }>, {
54
+ amount: z.ZodOptional<z.ZodCoercedString<unknown>>;
55
+ percentage: z.ZodOptional<z.ZodCoercedString<unknown>>;
56
+ }, z.core.$strip>, z.ZodTransform<{
66
57
  address: string;
67
58
  amount: string;
68
59
  }, {
69
60
  address: string;
70
61
  amount?: string | undefined;
71
62
  percentage?: string | undefined;
72
- }>, "many">>;
73
- }, "strip", z.ZodTypeAny, {
74
- name?: string | undefined;
75
- description?: string | undefined;
76
- image_hash?: string | undefined;
77
- fee_receiver?: string | undefined;
78
- social_links?: {
79
- label: string;
80
- url: string;
81
- }[] | undefined;
82
- vesting_recipients?: {
83
- address: string;
84
- amount: string;
85
- }[] | undefined;
86
- }, {
87
- name?: string | undefined;
88
- description?: string | undefined;
89
- image_hash?: string | undefined;
90
- fee_receiver?: string | undefined;
91
- social_links?: {
92
- label: string;
93
- url: string;
94
- }[] | undefined;
95
- vesting_recipients?: {
96
- address: string;
97
- amount?: string | undefined;
98
- percentage?: string | undefined;
99
- }[] | undefined;
100
- }>>;
63
+ }>>>>;
64
+ }, z.core.$strip>>;
101
65
  token_image_public_url: z.ZodNullable<z.ZodString>;
102
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
103
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
104
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
105
- }, "strip", z.ZodTypeAny, {
106
- token_address: `0x${string}`;
107
- token_name: string;
108
- token_description: string | null;
109
- token_symbol: string;
110
- token_decimals: number;
111
- token_uri_data: {
112
- name?: string | undefined;
113
- description?: string | undefined;
114
- image_hash?: string | undefined;
115
- fee_receiver?: string | undefined;
116
- social_links?: {
117
- label: string;
118
- url: string;
119
- }[] | undefined;
120
- vesting_recipients?: {
121
- address: string;
122
- amount: string;
123
- }[] | undefined;
124
- } | null;
125
- token_image_public_url: string | null;
126
- token_creator_address: `0x${string}`;
127
- token_fee_receiver_address: `0x${string}`;
128
- token_vesting_recipient_addresses: `0x${string}`[];
129
- }, {
130
- token_address: string;
131
- token_name: string;
132
- token_description: string | null;
133
- token_symbol: string;
134
- token_decimals: number;
135
- token_uri_data: {
136
- name?: string | undefined;
137
- description?: string | undefined;
138
- image_hash?: string | undefined;
139
- fee_receiver?: string | undefined;
140
- social_links?: {
141
- label: string;
142
- url: string;
143
- }[] | undefined;
144
- vesting_recipients?: {
145
- address: string;
146
- amount?: string | undefined;
147
- percentage?: string | undefined;
148
- }[] | undefined;
149
- } | null;
150
- token_image_public_url: string | null;
151
- token_creator_address: string;
152
- token_fee_receiver_address: string;
153
- token_vesting_recipient_addresses: string[];
154
- }>;
155
- }, "strip", z.ZodTypeAny, {
156
- pool_current_price: string;
157
- pool_current_sqrt_price: string;
158
- pool_current_fdv: string;
159
- pool_current_liquidity: string;
160
- pool_current_tick: number;
161
- pool_last_epoch: number;
162
- pool_current_market_cap: string;
163
- pool_current_fees_accrued: string;
164
- pool_current_total_proceeds: string;
165
- pool_current_total_tokens_sold: string;
166
- pool_last_epoch_total_tokens_sold: string;
167
- pool_current_sale_progress_percentage: number;
168
- pool_config_max_proceeds: string;
169
- pool_config_min_proceeds: string;
170
- pool_config_num_tokens_to_sell: string;
171
- pool_id: string;
172
- pool_address: `0x${string}`;
173
- pool_config_starting_time: string;
174
- pool_config_ending_time: string;
175
- pool_migration_timestamp: Date | null;
176
- pool_type: string;
177
- base_token: {
178
- token_address: `0x${string}`;
179
- token_name: string;
180
- token_description: string | null;
181
- token_symbol: string;
182
- token_decimals: number;
183
- token_uri_data: {
184
- name?: string | undefined;
185
- description?: string | undefined;
186
- image_hash?: string | undefined;
187
- fee_receiver?: string | undefined;
188
- social_links?: {
189
- label: string;
190
- url: string;
191
- }[] | undefined;
192
- vesting_recipients?: {
193
- address: string;
194
- amount: string;
195
- }[] | undefined;
196
- } | null;
197
- token_image_public_url: string | null;
198
- token_creator_address: `0x${string}`;
199
- token_fee_receiver_address: `0x${string}`;
200
- token_vesting_recipient_addresses: `0x${string}`[];
201
- };
202
- }, {
203
- pool_current_price: string;
204
- pool_current_sqrt_price: string;
205
- pool_current_fdv: string;
206
- pool_current_liquidity: string;
207
- pool_current_tick: number;
208
- pool_last_epoch: number;
209
- pool_current_market_cap: string;
210
- pool_current_fees_accrued: string;
211
- pool_current_total_proceeds: string;
212
- pool_current_total_tokens_sold: string;
213
- pool_last_epoch_total_tokens_sold: string;
214
- pool_current_sale_progress_percentage: number;
215
- pool_config_max_proceeds: string;
216
- pool_config_min_proceeds: string;
217
- pool_config_num_tokens_to_sell: string;
218
- pool_id: string;
219
- pool_address: string;
220
- pool_config_starting_time: string;
221
- pool_config_ending_time: string;
222
- pool_migration_timestamp: Date | null;
223
- pool_type: string;
224
- base_token: {
225
- token_address: string;
226
- token_name: string;
227
- token_description: string | null;
228
- token_symbol: string;
229
- token_decimals: number;
230
- token_uri_data: {
231
- name?: string | undefined;
232
- description?: string | undefined;
233
- image_hash?: string | undefined;
234
- fee_receiver?: string | undefined;
235
- social_links?: {
236
- label: string;
237
- url: string;
238
- }[] | undefined;
239
- vesting_recipients?: {
240
- address: string;
241
- amount?: string | undefined;
242
- percentage?: string | undefined;
243
- }[] | undefined;
244
- } | null;
245
- token_image_public_url: string | null;
246
- token_creator_address: string;
247
- token_fee_receiver_address: string;
248
- token_vesting_recipient_addresses: string[];
249
- };
250
- }>;
66
+ token_creator_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
67
+ token_fee_receiver_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
68
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>>;
69
+ }, z.core.$strip>;
70
+ }, z.core.$strip>;
251
71
  graduation_pool: z.ZodObject<{
252
72
  pool_current_price: z.ZodString;
253
73
  pool_current_sqrt_price: z.ZodString;
@@ -255,11 +75,11 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
255
75
  pool_current_liquidity: z.ZodString;
256
76
  pool_current_tick: z.ZodNumber;
257
77
  pool_current_market_cap: z.ZodString;
258
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
259
- pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
78
+ pool_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
79
+ pool_migration_timestamp: z.ZodNullable<z.ZodCoercedDate<unknown>>;
260
80
  pool_type: z.ZodString;
261
81
  base_token: z.ZodObject<{
262
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
82
+ token_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
263
83
  token_name: z.ZodString;
264
84
  token_description: z.ZodNullable<z.ZodString>;
265
85
  token_symbol: z.ZodString;
@@ -272,199 +92,34 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
272
92
  social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
273
93
  label: z.ZodString;
274
94
  url: z.ZodString;
275
- }, "strip", z.ZodTypeAny, {
276
- label: string;
277
- url: string;
278
- }, {
279
- label: string;
280
- url: string;
281
- }>, "many">>;
282
- vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
95
+ }, z.core.$strip>>>;
96
+ vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodPipe<z.ZodObject<{
283
97
  address: z.ZodString;
284
- amount: z.ZodOptional<z.ZodString>;
285
- percentage: z.ZodOptional<z.ZodString>;
286
- }, "strip", z.ZodTypeAny, {
287
- address: string;
288
- amount?: string | undefined;
289
- percentage?: string | undefined;
290
- }, {
291
- address: string;
292
- amount?: string | undefined;
293
- percentage?: string | undefined;
294
- }>, {
98
+ amount: z.ZodOptional<z.ZodCoercedString<unknown>>;
99
+ percentage: z.ZodOptional<z.ZodCoercedString<unknown>>;
100
+ }, z.core.$strip>, z.ZodTransform<{
295
101
  address: string;
296
102
  amount: string;
297
103
  }, {
298
104
  address: string;
299
105
  amount?: string | undefined;
300
106
  percentage?: string | undefined;
301
- }>, "many">>;
302
- }, "strip", z.ZodTypeAny, {
303
- name?: string | undefined;
304
- description?: string | undefined;
305
- image_hash?: string | undefined;
306
- fee_receiver?: string | undefined;
307
- social_links?: {
308
- label: string;
309
- url: string;
310
- }[] | undefined;
311
- vesting_recipients?: {
312
- address: string;
313
- amount: string;
314
- }[] | undefined;
315
- }, {
316
- name?: string | undefined;
317
- description?: string | undefined;
318
- image_hash?: string | undefined;
319
- fee_receiver?: string | undefined;
320
- social_links?: {
321
- label: string;
322
- url: string;
323
- }[] | undefined;
324
- vesting_recipients?: {
325
- address: string;
326
- amount?: string | undefined;
327
- percentage?: string | undefined;
328
- }[] | undefined;
329
- }>>;
107
+ }>>>>;
108
+ }, z.core.$strip>>;
330
109
  token_image_public_url: z.ZodNullable<z.ZodString>;
331
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
332
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
333
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
110
+ token_creator_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
111
+ token_fee_receiver_address: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
112
+ token_vesting_recipient_addresses: z.ZodArray<z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>>;
334
113
  integrator_address: z.ZodString;
335
- }, "strip", z.ZodTypeAny, {
336
- token_address: `0x${string}`;
337
- token_name: string;
338
- token_description: string | null;
339
- token_symbol: string;
340
- token_decimals: number;
341
- token_uri_data: {
342
- name?: string | undefined;
343
- description?: string | undefined;
344
- image_hash?: string | undefined;
345
- fee_receiver?: string | undefined;
346
- social_links?: {
347
- label: string;
348
- url: string;
349
- }[] | undefined;
350
- vesting_recipients?: {
351
- address: string;
352
- amount: string;
353
- }[] | undefined;
354
- } | null;
355
- token_image_public_url: string | null;
356
- token_creator_address: `0x${string}`;
357
- token_fee_receiver_address: `0x${string}`;
358
- token_vesting_recipient_addresses: `0x${string}`[];
359
- integrator_address: string;
360
- }, {
361
- token_address: string;
362
- token_name: string;
363
- token_description: string | null;
364
- token_symbol: string;
365
- token_decimals: number;
366
- token_uri_data: {
367
- name?: string | undefined;
368
- description?: string | undefined;
369
- image_hash?: string | undefined;
370
- fee_receiver?: string | undefined;
371
- social_links?: {
372
- label: string;
373
- url: string;
374
- }[] | undefined;
375
- vesting_recipients?: {
376
- address: string;
377
- amount?: string | undefined;
378
- percentage?: string | undefined;
379
- }[] | undefined;
380
- } | null;
381
- token_image_public_url: string | null;
382
- token_creator_address: string;
383
- token_fee_receiver_address: string;
384
- token_vesting_recipient_addresses: string[];
385
- integrator_address: string;
386
- }>;
387
- }, "strip", z.ZodTypeAny, {
388
- pool_current_price: string;
389
- pool_current_sqrt_price: string;
390
- pool_current_fdv: string;
391
- pool_current_liquidity: string;
392
- pool_current_tick: number;
393
- pool_current_market_cap: string;
394
- pool_address: `0x${string}`;
395
- pool_migration_timestamp: Date | null;
396
- pool_type: string;
397
- base_token: {
398
- token_address: `0x${string}`;
399
- token_name: string;
400
- token_description: string | null;
401
- token_symbol: string;
402
- token_decimals: number;
403
- token_uri_data: {
404
- name?: string | undefined;
405
- description?: string | undefined;
406
- image_hash?: string | undefined;
407
- fee_receiver?: string | undefined;
408
- social_links?: {
409
- label: string;
410
- url: string;
411
- }[] | undefined;
412
- vesting_recipients?: {
413
- address: string;
414
- amount: string;
415
- }[] | undefined;
416
- } | null;
417
- token_image_public_url: string | null;
418
- token_creator_address: `0x${string}`;
419
- token_fee_receiver_address: `0x${string}`;
420
- token_vesting_recipient_addresses: `0x${string}`[];
421
- integrator_address: string;
422
- };
423
- }, {
424
- pool_current_price: string;
425
- pool_current_sqrt_price: string;
426
- pool_current_fdv: string;
427
- pool_current_liquidity: string;
428
- pool_current_tick: number;
429
- pool_current_market_cap: string;
430
- pool_address: string;
431
- pool_migration_timestamp: Date | null;
432
- pool_type: string;
433
- base_token: {
434
- token_address: string;
435
- token_name: string;
436
- token_description: string | null;
437
- token_symbol: string;
438
- token_decimals: number;
439
- token_uri_data: {
440
- name?: string | undefined;
441
- description?: string | undefined;
442
- image_hash?: string | undefined;
443
- fee_receiver?: string | undefined;
444
- social_links?: {
445
- label: string;
446
- url: string;
447
- }[] | undefined;
448
- vesting_recipients?: {
449
- address: string;
450
- amount?: string | undefined;
451
- percentage?: string | undefined;
452
- }[] | undefined;
453
- } | null;
454
- token_image_public_url: string | null;
455
- token_creator_address: string;
456
- token_fee_receiver_address: string;
457
- token_vesting_recipient_addresses: string[];
458
- integrator_address: string;
459
- };
460
- }>;
461
- }, "strip", z.ZodTypeAny, {
114
+ }, z.core.$strip>;
115
+ }, z.core.$strip>;
116
+ }, z.core.$strip>, z.ZodTransform<{
117
+ asset_status: AssetStatus;
462
118
  asset_address: `0x${string}`;
463
119
  asset_numeraire_address: `0x${string}`;
464
120
  asset_creation_timestamp: Date;
465
121
  asset_current_pool: string;
466
122
  asset_migration_timestamp: Date | null;
467
- asset_status: AssetStatus;
468
123
  auction_pool: {
469
124
  pool_current_price: string;
470
125
  pool_current_sqrt_price: string;
@@ -551,106 +206,12 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
551
206
  };
552
207
  };
553
208
  }, {
554
- asset_address: string;
555
- asset_numeraire_address: string;
556
- asset_creation_timestamp: Date;
557
- asset_current_pool: string;
558
- asset_migration_timestamp: Date | null;
559
- auction_pool: {
560
- pool_current_price: string;
561
- pool_current_sqrt_price: string;
562
- pool_current_fdv: string;
563
- pool_current_liquidity: string;
564
- pool_current_tick: number;
565
- pool_last_epoch: number;
566
- pool_current_market_cap: string;
567
- pool_current_fees_accrued: string;
568
- pool_current_total_proceeds: string;
569
- pool_current_total_tokens_sold: string;
570
- pool_last_epoch_total_tokens_sold: string;
571
- pool_current_sale_progress_percentage: number;
572
- pool_config_max_proceeds: string;
573
- pool_config_min_proceeds: string;
574
- pool_config_num_tokens_to_sell: string;
575
- pool_id: string;
576
- pool_address: string;
577
- pool_config_starting_time: string;
578
- pool_config_ending_time: string;
579
- pool_migration_timestamp: Date | null;
580
- pool_type: string;
581
- base_token: {
582
- token_address: string;
583
- token_name: string;
584
- token_description: string | null;
585
- token_symbol: string;
586
- token_decimals: number;
587
- token_uri_data: {
588
- name?: string | undefined;
589
- description?: string | undefined;
590
- image_hash?: string | undefined;
591
- fee_receiver?: string | undefined;
592
- social_links?: {
593
- label: string;
594
- url: string;
595
- }[] | undefined;
596
- vesting_recipients?: {
597
- address: string;
598
- amount?: string | undefined;
599
- percentage?: string | undefined;
600
- }[] | undefined;
601
- } | null;
602
- token_image_public_url: string | null;
603
- token_creator_address: string;
604
- token_fee_receiver_address: string;
605
- token_vesting_recipient_addresses: string[];
606
- };
607
- };
608
- graduation_pool: {
609
- pool_current_price: string;
610
- pool_current_sqrt_price: string;
611
- pool_current_fdv: string;
612
- pool_current_liquidity: string;
613
- pool_current_tick: number;
614
- pool_current_market_cap: string;
615
- pool_address: string;
616
- pool_migration_timestamp: Date | null;
617
- pool_type: string;
618
- base_token: {
619
- token_address: string;
620
- token_name: string;
621
- token_description: string | null;
622
- token_symbol: string;
623
- token_decimals: number;
624
- token_uri_data: {
625
- name?: string | undefined;
626
- description?: string | undefined;
627
- image_hash?: string | undefined;
628
- fee_receiver?: string | undefined;
629
- social_links?: {
630
- label: string;
631
- url: string;
632
- }[] | undefined;
633
- vesting_recipients?: {
634
- address: string;
635
- amount?: string | undefined;
636
- percentage?: string | undefined;
637
- }[] | undefined;
638
- } | null;
639
- token_image_public_url: string | null;
640
- token_creator_address: string;
641
- token_fee_receiver_address: string;
642
- token_vesting_recipient_addresses: string[];
643
- integrator_address: string;
644
- };
645
- };
646
- asset_status?: AssetStatus | undefined;
647
- }>, {
648
- asset_status: AssetStatus;
649
209
  asset_address: `0x${string}`;
650
210
  asset_numeraire_address: `0x${string}`;
651
211
  asset_creation_timestamp: Date;
652
212
  asset_current_pool: string;
653
213
  asset_migration_timestamp: Date | null;
214
+ asset_status: AssetStatus;
654
215
  auction_pool: {
655
216
  pool_current_price: string;
656
217
  pool_current_sqrt_price: string;
@@ -736,3235 +297,45 @@ declare const AssetResponseSchema: z.ZodEffects<z.ZodObject<{
736
297
  integrator_address: string;
737
298
  };
738
299
  };
739
- }, {
740
- asset_address: string;
741
- asset_numeraire_address: string;
742
- asset_creation_timestamp: Date;
743
- asset_current_pool: string;
744
- asset_migration_timestamp: Date | null;
745
- auction_pool: {
746
- pool_current_price: string;
747
- pool_current_sqrt_price: string;
748
- pool_current_fdv: string;
749
- pool_current_liquidity: string;
750
- pool_current_tick: number;
751
- pool_last_epoch: number;
752
- pool_current_market_cap: string;
753
- pool_current_fees_accrued: string;
754
- pool_current_total_proceeds: string;
755
- pool_current_total_tokens_sold: string;
756
- pool_last_epoch_total_tokens_sold: string;
757
- pool_current_sale_progress_percentage: number;
758
- pool_config_max_proceeds: string;
759
- pool_config_min_proceeds: string;
760
- pool_config_num_tokens_to_sell: string;
761
- pool_id: string;
762
- pool_address: string;
763
- pool_config_starting_time: string;
764
- pool_config_ending_time: string;
765
- pool_migration_timestamp: Date | null;
766
- pool_type: string;
767
- base_token: {
768
- token_address: string;
769
- token_name: string;
770
- token_description: string | null;
771
- token_symbol: string;
772
- token_decimals: number;
773
- token_uri_data: {
774
- name?: string | undefined;
775
- description?: string | undefined;
776
- image_hash?: string | undefined;
777
- fee_receiver?: string | undefined;
778
- social_links?: {
779
- label: string;
780
- url: string;
781
- }[] | undefined;
782
- vesting_recipients?: {
783
- address: string;
784
- amount?: string | undefined;
785
- percentage?: string | undefined;
786
- }[] | undefined;
787
- } | null;
788
- token_image_public_url: string | null;
789
- token_creator_address: string;
790
- token_fee_receiver_address: string;
791
- token_vesting_recipient_addresses: string[];
792
- };
793
- };
794
- graduation_pool: {
795
- pool_current_price: string;
796
- pool_current_sqrt_price: string;
797
- pool_current_fdv: string;
798
- pool_current_liquidity: string;
799
- pool_current_tick: number;
800
- pool_current_market_cap: string;
801
- pool_address: string;
802
- pool_migration_timestamp: Date | null;
803
- pool_type: string;
804
- base_token: {
805
- token_address: string;
806
- token_name: string;
807
- token_description: string | null;
808
- token_symbol: string;
809
- token_decimals: number;
810
- token_uri_data: {
811
- name?: string | undefined;
812
- description?: string | undefined;
813
- image_hash?: string | undefined;
814
- fee_receiver?: string | undefined;
815
- social_links?: {
816
- label: string;
817
- url: string;
818
- }[] | undefined;
819
- vesting_recipients?: {
820
- address: string;
821
- amount?: string | undefined;
822
- percentage?: string | undefined;
823
- }[] | undefined;
824
- } | null;
825
- token_image_public_url: string | null;
826
- token_creator_address: string;
827
- token_fee_receiver_address: string;
828
- token_vesting_recipient_addresses: string[];
829
- integrator_address: string;
830
- };
831
- };
832
- asset_status?: AssetStatus | undefined;
833
- }>;
300
+ }>>;
834
301
  type AssetResponse = z.output<typeof AssetResponseSchema>;
835
302
  declare const assetContract: {
836
303
  listAssets: {
304
+ [x: string]: any;
837
305
  description: "List all assets for an integrator, with optional status filtering, pagination and default ordering by creation timestamp";
838
306
  query: z.ZodObject<{
839
- chainId: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>>;
840
- status: z.ZodDefault<z.ZodOptional<z.ZodEnum<[AssetStatusQuery.ALL, AssetStatusQuery.GRADUATED, AssetStatusQuery.INCOMING, AssetStatusQuery.LIVE]>>>;
841
- limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
842
- offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
843
- }, "strip", z.ZodTypeAny, {
844
- status: AssetStatusQuery.LIVE | AssetStatusQuery.GRADUATED | AssetStatusQuery.INCOMING | AssetStatusQuery.ALL;
845
- chainId: number;
846
- limit: number;
847
- offset: number;
848
- }, {
849
- status?: AssetStatusQuery.LIVE | AssetStatusQuery.GRADUATED | AssetStatusQuery.INCOMING | AssetStatusQuery.ALL | undefined;
850
- chainId?: number | undefined;
851
- limit?: number | undefined;
852
- offset?: number | undefined;
853
- }>;
307
+ chainId: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
308
+ status: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
309
+ live: AssetStatusQuery.LIVE;
310
+ graduated: AssetStatusQuery.GRADUATED;
311
+ incoming: AssetStatusQuery.INCOMING;
312
+ all: AssetStatusQuery.ALL;
313
+ }>>>;
314
+ limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
315
+ offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
316
+ }, z.core.$strip>;
854
317
  method: "GET";
855
- path: "/assets/";
856
- responses: {
857
- 200: z.ZodObject<{
858
- result: z.ZodArray<z.ZodEffects<z.ZodObject<{
859
- asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
860
- asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
861
- asset_creation_timestamp: z.ZodDate;
862
- asset_current_pool: z.ZodString;
863
- asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
864
- asset_status: z.ZodDefault<z.ZodEnum<[AssetStatus.GRADUATED, AssetStatus.LIVE, AssetStatus.INCOMING, AssetStatus.STALL]>>;
865
- auction_pool: z.ZodObject<{
866
- pool_current_price: z.ZodString;
867
- pool_current_sqrt_price: z.ZodString;
868
- pool_current_fdv: z.ZodString;
869
- pool_current_liquidity: z.ZodString;
870
- pool_current_tick: z.ZodNumber;
871
- pool_last_epoch: z.ZodNumber;
872
- pool_current_market_cap: z.ZodString;
873
- pool_current_fees_accrued: z.ZodString;
874
- pool_current_total_proceeds: z.ZodString;
875
- pool_current_total_tokens_sold: z.ZodString;
876
- pool_last_epoch_total_tokens_sold: z.ZodString;
877
- pool_current_sale_progress_percentage: z.ZodNumber;
878
- pool_config_max_proceeds: z.ZodString;
879
- pool_config_min_proceeds: z.ZodString;
880
- pool_config_num_tokens_to_sell: z.ZodString;
881
- pool_id: z.ZodString;
882
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
883
- pool_config_starting_time: z.ZodString;
884
- pool_config_ending_time: z.ZodString;
885
- pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
886
- pool_type: z.ZodString;
887
- base_token: z.ZodObject<{
888
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
889
- token_name: z.ZodString;
890
- token_description: z.ZodNullable<z.ZodString>;
891
- token_symbol: z.ZodString;
892
- token_decimals: z.ZodNumber;
893
- token_uri_data: z.ZodNullable<z.ZodObject<{
894
- name: z.ZodOptional<z.ZodString>;
895
- description: z.ZodOptional<z.ZodString>;
896
- image_hash: z.ZodOptional<z.ZodString>;
897
- fee_receiver: z.ZodOptional<z.ZodString>;
898
- social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
899
- label: z.ZodString;
900
- url: z.ZodString;
901
- }, "strip", z.ZodTypeAny, {
902
- label: string;
903
- url: string;
904
- }, {
905
- label: string;
906
- url: string;
907
- }>, "many">>;
908
- vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
909
- address: z.ZodString;
910
- amount: z.ZodOptional<z.ZodString>;
911
- percentage: z.ZodOptional<z.ZodString>;
912
- }, "strip", z.ZodTypeAny, {
913
- address: string;
914
- amount?: string | undefined;
915
- percentage?: string | undefined;
916
- }, {
917
- address: string;
918
- amount?: string | undefined;
919
- percentage?: string | undefined;
920
- }>, {
921
- address: string;
922
- amount: string;
923
- }, {
924
- address: string;
925
- amount?: string | undefined;
926
- percentage?: string | undefined;
927
- }>, "many">>;
928
- }, "strip", z.ZodTypeAny, {
929
- name?: string | undefined;
930
- description?: string | undefined;
931
- image_hash?: string | undefined;
932
- fee_receiver?: string | undefined;
933
- social_links?: {
934
- label: string;
935
- url: string;
936
- }[] | undefined;
937
- vesting_recipients?: {
938
- address: string;
939
- amount: string;
940
- }[] | undefined;
941
- }, {
942
- name?: string | undefined;
943
- description?: string | undefined;
944
- image_hash?: string | undefined;
945
- fee_receiver?: string | undefined;
946
- social_links?: {
947
- label: string;
948
- url: string;
949
- }[] | undefined;
950
- vesting_recipients?: {
951
- address: string;
952
- amount?: string | undefined;
953
- percentage?: string | undefined;
954
- }[] | undefined;
955
- }>>;
956
- token_image_public_url: z.ZodNullable<z.ZodString>;
957
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
958
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
959
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
960
- }, "strip", z.ZodTypeAny, {
961
- token_address: `0x${string}`;
962
- token_name: string;
963
- token_description: string | null;
964
- token_symbol: string;
965
- token_decimals: number;
966
- token_uri_data: {
967
- name?: string | undefined;
968
- description?: string | undefined;
969
- image_hash?: string | undefined;
970
- fee_receiver?: string | undefined;
971
- social_links?: {
972
- label: string;
973
- url: string;
974
- }[] | undefined;
975
- vesting_recipients?: {
976
- address: string;
977
- amount: string;
978
- }[] | undefined;
979
- } | null;
980
- token_image_public_url: string | null;
981
- token_creator_address: `0x${string}`;
982
- token_fee_receiver_address: `0x${string}`;
983
- token_vesting_recipient_addresses: `0x${string}`[];
984
- }, {
985
- token_address: string;
986
- token_name: string;
987
- token_description: string | null;
988
- token_symbol: string;
989
- token_decimals: number;
990
- token_uri_data: {
991
- name?: string | undefined;
992
- description?: string | undefined;
993
- image_hash?: string | undefined;
994
- fee_receiver?: string | undefined;
995
- social_links?: {
996
- label: string;
997
- url: string;
998
- }[] | undefined;
999
- vesting_recipients?: {
1000
- address: string;
1001
- amount?: string | undefined;
1002
- percentage?: string | undefined;
1003
- }[] | undefined;
1004
- } | null;
1005
- token_image_public_url: string | null;
1006
- token_creator_address: string;
1007
- token_fee_receiver_address: string;
1008
- token_vesting_recipient_addresses: string[];
1009
- }>;
1010
- }, "strip", z.ZodTypeAny, {
1011
- pool_current_price: string;
1012
- pool_current_sqrt_price: string;
1013
- pool_current_fdv: string;
1014
- pool_current_liquidity: string;
1015
- pool_current_tick: number;
1016
- pool_last_epoch: number;
1017
- pool_current_market_cap: string;
1018
- pool_current_fees_accrued: string;
1019
- pool_current_total_proceeds: string;
1020
- pool_current_total_tokens_sold: string;
1021
- pool_last_epoch_total_tokens_sold: string;
1022
- pool_current_sale_progress_percentage: number;
1023
- pool_config_max_proceeds: string;
1024
- pool_config_min_proceeds: string;
1025
- pool_config_num_tokens_to_sell: string;
1026
- pool_id: string;
1027
- pool_address: `0x${string}`;
1028
- pool_config_starting_time: string;
1029
- pool_config_ending_time: string;
1030
- pool_migration_timestamp: Date | null;
1031
- pool_type: string;
1032
- base_token: {
1033
- token_address: `0x${string}`;
1034
- token_name: string;
1035
- token_description: string | null;
1036
- token_symbol: string;
1037
- token_decimals: number;
1038
- token_uri_data: {
1039
- name?: string | undefined;
1040
- description?: string | undefined;
1041
- image_hash?: string | undefined;
1042
- fee_receiver?: string | undefined;
1043
- social_links?: {
1044
- label: string;
1045
- url: string;
1046
- }[] | undefined;
1047
- vesting_recipients?: {
1048
- address: string;
1049
- amount: string;
1050
- }[] | undefined;
1051
- } | null;
1052
- token_image_public_url: string | null;
1053
- token_creator_address: `0x${string}`;
1054
- token_fee_receiver_address: `0x${string}`;
1055
- token_vesting_recipient_addresses: `0x${string}`[];
1056
- };
1057
- }, {
1058
- pool_current_price: string;
1059
- pool_current_sqrt_price: string;
1060
- pool_current_fdv: string;
1061
- pool_current_liquidity: string;
1062
- pool_current_tick: number;
1063
- pool_last_epoch: number;
1064
- pool_current_market_cap: string;
1065
- pool_current_fees_accrued: string;
1066
- pool_current_total_proceeds: string;
1067
- pool_current_total_tokens_sold: string;
1068
- pool_last_epoch_total_tokens_sold: string;
1069
- pool_current_sale_progress_percentage: number;
1070
- pool_config_max_proceeds: string;
1071
- pool_config_min_proceeds: string;
1072
- pool_config_num_tokens_to_sell: string;
1073
- pool_id: string;
1074
- pool_address: string;
1075
- pool_config_starting_time: string;
1076
- pool_config_ending_time: string;
1077
- pool_migration_timestamp: Date | null;
1078
- pool_type: string;
1079
- base_token: {
1080
- token_address: string;
1081
- token_name: string;
1082
- token_description: string | null;
1083
- token_symbol: string;
1084
- token_decimals: number;
1085
- token_uri_data: {
1086
- name?: string | undefined;
1087
- description?: string | undefined;
1088
- image_hash?: string | undefined;
1089
- fee_receiver?: string | undefined;
1090
- social_links?: {
1091
- label: string;
1092
- url: string;
1093
- }[] | undefined;
1094
- vesting_recipients?: {
1095
- address: string;
1096
- amount?: string | undefined;
1097
- percentage?: string | undefined;
1098
- }[] | undefined;
1099
- } | null;
1100
- token_image_public_url: string | null;
1101
- token_creator_address: string;
1102
- token_fee_receiver_address: string;
1103
- token_vesting_recipient_addresses: string[];
1104
- };
1105
- }>;
1106
- graduation_pool: z.ZodObject<{
1107
- pool_current_price: z.ZodString;
1108
- pool_current_sqrt_price: z.ZodString;
1109
- pool_current_fdv: z.ZodString;
1110
- pool_current_liquidity: z.ZodString;
1111
- pool_current_tick: z.ZodNumber;
1112
- pool_current_market_cap: z.ZodString;
1113
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1114
- pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1115
- pool_type: z.ZodString;
1116
- base_token: z.ZodObject<{
1117
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1118
- token_name: z.ZodString;
1119
- token_description: z.ZodNullable<z.ZodString>;
1120
- token_symbol: z.ZodString;
1121
- token_decimals: z.ZodNumber;
1122
- token_uri_data: z.ZodNullable<z.ZodObject<{
1123
- name: z.ZodOptional<z.ZodString>;
1124
- description: z.ZodOptional<z.ZodString>;
1125
- image_hash: z.ZodOptional<z.ZodString>;
1126
- fee_receiver: z.ZodOptional<z.ZodString>;
1127
- social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
1128
- label: z.ZodString;
1129
- url: z.ZodString;
1130
- }, "strip", z.ZodTypeAny, {
1131
- label: string;
1132
- url: string;
1133
- }, {
1134
- label: string;
1135
- url: string;
1136
- }>, "many">>;
1137
- vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
1138
- address: z.ZodString;
1139
- amount: z.ZodOptional<z.ZodString>;
1140
- percentage: z.ZodOptional<z.ZodString>;
1141
- }, "strip", z.ZodTypeAny, {
1142
- address: string;
1143
- amount?: string | undefined;
1144
- percentage?: string | undefined;
1145
- }, {
1146
- address: string;
1147
- amount?: string | undefined;
1148
- percentage?: string | undefined;
1149
- }>, {
1150
- address: string;
1151
- amount: string;
1152
- }, {
1153
- address: string;
1154
- amount?: string | undefined;
1155
- percentage?: string | undefined;
1156
- }>, "many">>;
1157
- }, "strip", z.ZodTypeAny, {
1158
- name?: string | undefined;
1159
- description?: string | undefined;
1160
- image_hash?: string | undefined;
1161
- fee_receiver?: string | undefined;
1162
- social_links?: {
1163
- label: string;
1164
- url: string;
1165
- }[] | undefined;
1166
- vesting_recipients?: {
1167
- address: string;
1168
- amount: string;
1169
- }[] | undefined;
1170
- }, {
1171
- name?: string | undefined;
1172
- description?: string | undefined;
1173
- image_hash?: string | undefined;
1174
- fee_receiver?: string | undefined;
1175
- social_links?: {
1176
- label: string;
1177
- url: string;
1178
- }[] | undefined;
1179
- vesting_recipients?: {
1180
- address: string;
1181
- amount?: string | undefined;
1182
- percentage?: string | undefined;
1183
- }[] | undefined;
1184
- }>>;
1185
- token_image_public_url: z.ZodNullable<z.ZodString>;
1186
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1187
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1188
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
1189
- integrator_address: z.ZodString;
1190
- }, "strip", z.ZodTypeAny, {
1191
- token_address: `0x${string}`;
1192
- token_name: string;
1193
- token_description: string | null;
1194
- token_symbol: string;
1195
- token_decimals: number;
1196
- token_uri_data: {
1197
- name?: string | undefined;
1198
- description?: string | undefined;
1199
- image_hash?: string | undefined;
1200
- fee_receiver?: string | undefined;
1201
- social_links?: {
1202
- label: string;
1203
- url: string;
1204
- }[] | undefined;
1205
- vesting_recipients?: {
1206
- address: string;
1207
- amount: string;
1208
- }[] | undefined;
1209
- } | null;
1210
- token_image_public_url: string | null;
1211
- token_creator_address: `0x${string}`;
1212
- token_fee_receiver_address: `0x${string}`;
1213
- token_vesting_recipient_addresses: `0x${string}`[];
1214
- integrator_address: string;
1215
- }, {
1216
- token_address: string;
1217
- token_name: string;
1218
- token_description: string | null;
1219
- token_symbol: string;
1220
- token_decimals: number;
1221
- token_uri_data: {
1222
- name?: string | undefined;
1223
- description?: string | undefined;
1224
- image_hash?: string | undefined;
1225
- fee_receiver?: string | undefined;
1226
- social_links?: {
1227
- label: string;
1228
- url: string;
1229
- }[] | undefined;
1230
- vesting_recipients?: {
1231
- address: string;
1232
- amount?: string | undefined;
1233
- percentage?: string | undefined;
1234
- }[] | undefined;
1235
- } | null;
1236
- token_image_public_url: string | null;
1237
- token_creator_address: string;
1238
- token_fee_receiver_address: string;
1239
- token_vesting_recipient_addresses: string[];
1240
- integrator_address: string;
1241
- }>;
1242
- }, "strip", z.ZodTypeAny, {
1243
- pool_current_price: string;
1244
- pool_current_sqrt_price: string;
1245
- pool_current_fdv: string;
1246
- pool_current_liquidity: string;
1247
- pool_current_tick: number;
1248
- pool_current_market_cap: string;
1249
- pool_address: `0x${string}`;
1250
- pool_migration_timestamp: Date | null;
1251
- pool_type: string;
1252
- base_token: {
1253
- token_address: `0x${string}`;
1254
- token_name: string;
1255
- token_description: string | null;
1256
- token_symbol: string;
1257
- token_decimals: number;
1258
- token_uri_data: {
1259
- name?: string | undefined;
1260
- description?: string | undefined;
1261
- image_hash?: string | undefined;
1262
- fee_receiver?: string | undefined;
1263
- social_links?: {
1264
- label: string;
1265
- url: string;
1266
- }[] | undefined;
1267
- vesting_recipients?: {
1268
- address: string;
1269
- amount: string;
1270
- }[] | undefined;
1271
- } | null;
1272
- token_image_public_url: string | null;
1273
- token_creator_address: `0x${string}`;
1274
- token_fee_receiver_address: `0x${string}`;
1275
- token_vesting_recipient_addresses: `0x${string}`[];
1276
- integrator_address: string;
1277
- };
1278
- }, {
1279
- pool_current_price: string;
1280
- pool_current_sqrt_price: string;
1281
- pool_current_fdv: string;
1282
- pool_current_liquidity: string;
1283
- pool_current_tick: number;
1284
- pool_current_market_cap: string;
1285
- pool_address: string;
1286
- pool_migration_timestamp: Date | null;
1287
- pool_type: string;
1288
- base_token: {
1289
- token_address: string;
1290
- token_name: string;
1291
- token_description: string | null;
1292
- token_symbol: string;
1293
- token_decimals: number;
1294
- token_uri_data: {
1295
- name?: string | undefined;
1296
- description?: string | undefined;
1297
- image_hash?: string | undefined;
1298
- fee_receiver?: string | undefined;
1299
- social_links?: {
1300
- label: string;
1301
- url: string;
1302
- }[] | undefined;
1303
- vesting_recipients?: {
1304
- address: string;
1305
- amount?: string | undefined;
1306
- percentage?: string | undefined;
1307
- }[] | undefined;
1308
- } | null;
1309
- token_image_public_url: string | null;
1310
- token_creator_address: string;
1311
- token_fee_receiver_address: string;
1312
- token_vesting_recipient_addresses: string[];
1313
- integrator_address: string;
1314
- };
1315
- }>;
1316
- }, "strip", z.ZodTypeAny, {
1317
- asset_address: `0x${string}`;
1318
- asset_numeraire_address: `0x${string}`;
1319
- asset_creation_timestamp: Date;
1320
- asset_current_pool: string;
1321
- asset_migration_timestamp: Date | null;
1322
- asset_status: AssetStatus;
1323
- auction_pool: {
1324
- pool_current_price: string;
1325
- pool_current_sqrt_price: string;
1326
- pool_current_fdv: string;
1327
- pool_current_liquidity: string;
1328
- pool_current_tick: number;
1329
- pool_last_epoch: number;
1330
- pool_current_market_cap: string;
1331
- pool_current_fees_accrued: string;
1332
- pool_current_total_proceeds: string;
1333
- pool_current_total_tokens_sold: string;
1334
- pool_last_epoch_total_tokens_sold: string;
1335
- pool_current_sale_progress_percentage: number;
1336
- pool_config_max_proceeds: string;
1337
- pool_config_min_proceeds: string;
1338
- pool_config_num_tokens_to_sell: string;
1339
- pool_id: string;
1340
- pool_address: `0x${string}`;
1341
- pool_config_starting_time: string;
1342
- pool_config_ending_time: string;
1343
- pool_migration_timestamp: Date | null;
1344
- pool_type: string;
1345
- base_token: {
1346
- token_address: `0x${string}`;
1347
- token_name: string;
1348
- token_description: string | null;
1349
- token_symbol: string;
1350
- token_decimals: number;
1351
- token_uri_data: {
1352
- name?: string | undefined;
1353
- description?: string | undefined;
1354
- image_hash?: string | undefined;
1355
- fee_receiver?: string | undefined;
1356
- social_links?: {
1357
- label: string;
1358
- url: string;
1359
- }[] | undefined;
1360
- vesting_recipients?: {
1361
- address: string;
1362
- amount: string;
1363
- }[] | undefined;
1364
- } | null;
1365
- token_image_public_url: string | null;
1366
- token_creator_address: `0x${string}`;
1367
- token_fee_receiver_address: `0x${string}`;
1368
- token_vesting_recipient_addresses: `0x${string}`[];
1369
- };
1370
- };
1371
- graduation_pool: {
1372
- pool_current_price: string;
1373
- pool_current_sqrt_price: string;
1374
- pool_current_fdv: string;
1375
- pool_current_liquidity: string;
1376
- pool_current_tick: number;
1377
- pool_current_market_cap: string;
1378
- pool_address: `0x${string}`;
1379
- pool_migration_timestamp: Date | null;
1380
- pool_type: string;
1381
- base_token: {
1382
- token_address: `0x${string}`;
1383
- token_name: string;
1384
- token_description: string | null;
1385
- token_symbol: string;
1386
- token_decimals: number;
1387
- token_uri_data: {
1388
- name?: string | undefined;
1389
- description?: string | undefined;
1390
- image_hash?: string | undefined;
1391
- fee_receiver?: string | undefined;
1392
- social_links?: {
1393
- label: string;
1394
- url: string;
1395
- }[] | undefined;
1396
- vesting_recipients?: {
1397
- address: string;
1398
- amount: string;
1399
- }[] | undefined;
1400
- } | null;
1401
- token_image_public_url: string | null;
1402
- token_creator_address: `0x${string}`;
1403
- token_fee_receiver_address: `0x${string}`;
1404
- token_vesting_recipient_addresses: `0x${string}`[];
1405
- integrator_address: string;
1406
- };
1407
- };
1408
- }, {
1409
- asset_address: string;
1410
- asset_numeraire_address: string;
1411
- asset_creation_timestamp: Date;
1412
- asset_current_pool: string;
1413
- asset_migration_timestamp: Date | null;
1414
- auction_pool: {
1415
- pool_current_price: string;
1416
- pool_current_sqrt_price: string;
1417
- pool_current_fdv: string;
1418
- pool_current_liquidity: string;
1419
- pool_current_tick: number;
1420
- pool_last_epoch: number;
1421
- pool_current_market_cap: string;
1422
- pool_current_fees_accrued: string;
1423
- pool_current_total_proceeds: string;
1424
- pool_current_total_tokens_sold: string;
1425
- pool_last_epoch_total_tokens_sold: string;
1426
- pool_current_sale_progress_percentage: number;
1427
- pool_config_max_proceeds: string;
1428
- pool_config_min_proceeds: string;
1429
- pool_config_num_tokens_to_sell: string;
1430
- pool_id: string;
1431
- pool_address: string;
1432
- pool_config_starting_time: string;
1433
- pool_config_ending_time: string;
1434
- pool_migration_timestamp: Date | null;
1435
- pool_type: string;
1436
- base_token: {
1437
- token_address: string;
1438
- token_name: string;
1439
- token_description: string | null;
1440
- token_symbol: string;
1441
- token_decimals: number;
1442
- token_uri_data: {
1443
- name?: string | undefined;
1444
- description?: string | undefined;
1445
- image_hash?: string | undefined;
1446
- fee_receiver?: string | undefined;
1447
- social_links?: {
1448
- label: string;
1449
- url: string;
1450
- }[] | undefined;
1451
- vesting_recipients?: {
1452
- address: string;
1453
- amount?: string | undefined;
1454
- percentage?: string | undefined;
1455
- }[] | undefined;
1456
- } | null;
1457
- token_image_public_url: string | null;
1458
- token_creator_address: string;
1459
- token_fee_receiver_address: string;
1460
- token_vesting_recipient_addresses: string[];
1461
- };
1462
- };
1463
- graduation_pool: {
1464
- pool_current_price: string;
1465
- pool_current_sqrt_price: string;
1466
- pool_current_fdv: string;
1467
- pool_current_liquidity: string;
1468
- pool_current_tick: number;
1469
- pool_current_market_cap: string;
1470
- pool_address: string;
1471
- pool_migration_timestamp: Date | null;
1472
- pool_type: string;
1473
- base_token: {
1474
- token_address: string;
1475
- token_name: string;
1476
- token_description: string | null;
1477
- token_symbol: string;
1478
- token_decimals: number;
1479
- token_uri_data: {
1480
- name?: string | undefined;
1481
- description?: string | undefined;
1482
- image_hash?: string | undefined;
1483
- fee_receiver?: string | undefined;
1484
- social_links?: {
1485
- label: string;
1486
- url: string;
1487
- }[] | undefined;
1488
- vesting_recipients?: {
1489
- address: string;
1490
- amount?: string | undefined;
1491
- percentage?: string | undefined;
1492
- }[] | undefined;
1493
- } | null;
1494
- token_image_public_url: string | null;
1495
- token_creator_address: string;
1496
- token_fee_receiver_address: string;
1497
- token_vesting_recipient_addresses: string[];
1498
- integrator_address: string;
1499
- };
1500
- };
1501
- asset_status?: AssetStatus | undefined;
1502
- }>, {
1503
- asset_status: AssetStatus;
1504
- asset_address: `0x${string}`;
1505
- asset_numeraire_address: `0x${string}`;
1506
- asset_creation_timestamp: Date;
1507
- asset_current_pool: string;
1508
- asset_migration_timestamp: Date | null;
1509
- auction_pool: {
1510
- pool_current_price: string;
1511
- pool_current_sqrt_price: string;
1512
- pool_current_fdv: string;
1513
- pool_current_liquidity: string;
1514
- pool_current_tick: number;
1515
- pool_last_epoch: number;
1516
- pool_current_market_cap: string;
1517
- pool_current_fees_accrued: string;
1518
- pool_current_total_proceeds: string;
1519
- pool_current_total_tokens_sold: string;
1520
- pool_last_epoch_total_tokens_sold: string;
1521
- pool_current_sale_progress_percentage: number;
1522
- pool_config_max_proceeds: string;
1523
- pool_config_min_proceeds: string;
1524
- pool_config_num_tokens_to_sell: string;
1525
- pool_id: string;
1526
- pool_address: `0x${string}`;
1527
- pool_config_starting_time: string;
1528
- pool_config_ending_time: string;
1529
- pool_migration_timestamp: Date | null;
1530
- pool_type: string;
1531
- base_token: {
1532
- token_address: `0x${string}`;
1533
- token_name: string;
1534
- token_description: string | null;
1535
- token_symbol: string;
1536
- token_decimals: number;
1537
- token_uri_data: {
1538
- name?: string | undefined;
1539
- description?: string | undefined;
1540
- image_hash?: string | undefined;
1541
- fee_receiver?: string | undefined;
1542
- social_links?: {
1543
- label: string;
1544
- url: string;
1545
- }[] | undefined;
1546
- vesting_recipients?: {
1547
- address: string;
1548
- amount: string;
1549
- }[] | undefined;
1550
- } | null;
1551
- token_image_public_url: string | null;
1552
- token_creator_address: `0x${string}`;
1553
- token_fee_receiver_address: `0x${string}`;
1554
- token_vesting_recipient_addresses: `0x${string}`[];
1555
- };
1556
- };
1557
- graduation_pool: {
1558
- pool_current_price: string;
1559
- pool_current_sqrt_price: string;
1560
- pool_current_fdv: string;
1561
- pool_current_liquidity: string;
1562
- pool_current_tick: number;
1563
- pool_current_market_cap: string;
1564
- pool_address: `0x${string}`;
1565
- pool_migration_timestamp: Date | null;
1566
- pool_type: string;
1567
- base_token: {
1568
- token_address: `0x${string}`;
1569
- token_name: string;
1570
- token_description: string | null;
1571
- token_symbol: string;
1572
- token_decimals: number;
1573
- token_uri_data: {
1574
- name?: string | undefined;
1575
- description?: string | undefined;
1576
- image_hash?: string | undefined;
1577
- fee_receiver?: string | undefined;
1578
- social_links?: {
1579
- label: string;
1580
- url: string;
1581
- }[] | undefined;
1582
- vesting_recipients?: {
1583
- address: string;
1584
- amount: string;
1585
- }[] | undefined;
1586
- } | null;
1587
- token_image_public_url: string | null;
1588
- token_creator_address: `0x${string}`;
1589
- token_fee_receiver_address: `0x${string}`;
1590
- token_vesting_recipient_addresses: `0x${string}`[];
1591
- integrator_address: string;
1592
- };
1593
- };
1594
- }, {
1595
- asset_address: string;
1596
- asset_numeraire_address: string;
1597
- asset_creation_timestamp: Date;
1598
- asset_current_pool: string;
1599
- asset_migration_timestamp: Date | null;
1600
- auction_pool: {
1601
- pool_current_price: string;
1602
- pool_current_sqrt_price: string;
1603
- pool_current_fdv: string;
1604
- pool_current_liquidity: string;
1605
- pool_current_tick: number;
1606
- pool_last_epoch: number;
1607
- pool_current_market_cap: string;
1608
- pool_current_fees_accrued: string;
1609
- pool_current_total_proceeds: string;
1610
- pool_current_total_tokens_sold: string;
1611
- pool_last_epoch_total_tokens_sold: string;
1612
- pool_current_sale_progress_percentage: number;
1613
- pool_config_max_proceeds: string;
1614
- pool_config_min_proceeds: string;
1615
- pool_config_num_tokens_to_sell: string;
1616
- pool_id: string;
1617
- pool_address: string;
1618
- pool_config_starting_time: string;
1619
- pool_config_ending_time: string;
1620
- pool_migration_timestamp: Date | null;
1621
- pool_type: string;
1622
- base_token: {
1623
- token_address: string;
1624
- token_name: string;
1625
- token_description: string | null;
1626
- token_symbol: string;
1627
- token_decimals: number;
1628
- token_uri_data: {
1629
- name?: string | undefined;
1630
- description?: string | undefined;
1631
- image_hash?: string | undefined;
1632
- fee_receiver?: string | undefined;
1633
- social_links?: {
1634
- label: string;
1635
- url: string;
1636
- }[] | undefined;
1637
- vesting_recipients?: {
1638
- address: string;
1639
- amount?: string | undefined;
1640
- percentage?: string | undefined;
1641
- }[] | undefined;
1642
- } | null;
1643
- token_image_public_url: string | null;
1644
- token_creator_address: string;
1645
- token_fee_receiver_address: string;
1646
- token_vesting_recipient_addresses: string[];
1647
- };
1648
- };
1649
- graduation_pool: {
1650
- pool_current_price: string;
1651
- pool_current_sqrt_price: string;
1652
- pool_current_fdv: string;
1653
- pool_current_liquidity: string;
1654
- pool_current_tick: number;
1655
- pool_current_market_cap: string;
1656
- pool_address: string;
1657
- pool_migration_timestamp: Date | null;
1658
- pool_type: string;
1659
- base_token: {
1660
- token_address: string;
1661
- token_name: string;
1662
- token_description: string | null;
1663
- token_symbol: string;
1664
- token_decimals: number;
1665
- token_uri_data: {
1666
- name?: string | undefined;
1667
- description?: string | undefined;
1668
- image_hash?: string | undefined;
1669
- fee_receiver?: string | undefined;
1670
- social_links?: {
1671
- label: string;
1672
- url: string;
1673
- }[] | undefined;
1674
- vesting_recipients?: {
1675
- address: string;
1676
- amount?: string | undefined;
1677
- percentage?: string | undefined;
1678
- }[] | undefined;
1679
- } | null;
1680
- token_image_public_url: string | null;
1681
- token_creator_address: string;
1682
- token_fee_receiver_address: string;
1683
- token_vesting_recipient_addresses: string[];
1684
- integrator_address: string;
1685
- };
1686
- };
1687
- asset_status?: AssetStatus | undefined;
1688
- }>, "many">;
1689
- }, "strip", z.ZodTypeAny, {
1690
- result: {
1691
- asset_status: AssetStatus;
1692
- asset_address: `0x${string}`;
1693
- asset_numeraire_address: `0x${string}`;
1694
- asset_creation_timestamp: Date;
1695
- asset_current_pool: string;
1696
- asset_migration_timestamp: Date | null;
1697
- auction_pool: {
1698
- pool_current_price: string;
1699
- pool_current_sqrt_price: string;
1700
- pool_current_fdv: string;
1701
- pool_current_liquidity: string;
1702
- pool_current_tick: number;
1703
- pool_last_epoch: number;
1704
- pool_current_market_cap: string;
1705
- pool_current_fees_accrued: string;
1706
- pool_current_total_proceeds: string;
1707
- pool_current_total_tokens_sold: string;
1708
- pool_last_epoch_total_tokens_sold: string;
1709
- pool_current_sale_progress_percentage: number;
1710
- pool_config_max_proceeds: string;
1711
- pool_config_min_proceeds: string;
1712
- pool_config_num_tokens_to_sell: string;
1713
- pool_id: string;
1714
- pool_address: `0x${string}`;
1715
- pool_config_starting_time: string;
1716
- pool_config_ending_time: string;
1717
- pool_migration_timestamp: Date | null;
1718
- pool_type: string;
1719
- base_token: {
1720
- token_address: `0x${string}`;
1721
- token_name: string;
1722
- token_description: string | null;
1723
- token_symbol: string;
1724
- token_decimals: number;
1725
- token_uri_data: {
1726
- name?: string | undefined;
1727
- description?: string | undefined;
1728
- image_hash?: string | undefined;
1729
- fee_receiver?: string | undefined;
1730
- social_links?: {
1731
- label: string;
1732
- url: string;
1733
- }[] | undefined;
1734
- vesting_recipients?: {
1735
- address: string;
1736
- amount: string;
1737
- }[] | undefined;
1738
- } | null;
1739
- token_image_public_url: string | null;
1740
- token_creator_address: `0x${string}`;
1741
- token_fee_receiver_address: `0x${string}`;
1742
- token_vesting_recipient_addresses: `0x${string}`[];
1743
- };
1744
- };
1745
- graduation_pool: {
1746
- pool_current_price: string;
1747
- pool_current_sqrt_price: string;
1748
- pool_current_fdv: string;
1749
- pool_current_liquidity: string;
1750
- pool_current_tick: number;
1751
- pool_current_market_cap: string;
1752
- pool_address: `0x${string}`;
1753
- pool_migration_timestamp: Date | null;
1754
- pool_type: string;
1755
- base_token: {
1756
- token_address: `0x${string}`;
1757
- token_name: string;
1758
- token_description: string | null;
1759
- token_symbol: string;
1760
- token_decimals: number;
1761
- token_uri_data: {
1762
- name?: string | undefined;
1763
- description?: string | undefined;
1764
- image_hash?: string | undefined;
1765
- fee_receiver?: string | undefined;
1766
- social_links?: {
1767
- label: string;
1768
- url: string;
1769
- }[] | undefined;
1770
- vesting_recipients?: {
1771
- address: string;
1772
- amount: string;
1773
- }[] | undefined;
1774
- } | null;
1775
- token_image_public_url: string | null;
1776
- token_creator_address: `0x${string}`;
1777
- token_fee_receiver_address: `0x${string}`;
1778
- token_vesting_recipient_addresses: `0x${string}`[];
1779
- integrator_address: string;
1780
- };
1781
- };
1782
- }[];
1783
- }, {
1784
- result: {
1785
- asset_address: string;
1786
- asset_numeraire_address: string;
1787
- asset_creation_timestamp: Date;
1788
- asset_current_pool: string;
1789
- asset_migration_timestamp: Date | null;
1790
- auction_pool: {
1791
- pool_current_price: string;
1792
- pool_current_sqrt_price: string;
1793
- pool_current_fdv: string;
1794
- pool_current_liquidity: string;
1795
- pool_current_tick: number;
1796
- pool_last_epoch: number;
1797
- pool_current_market_cap: string;
1798
- pool_current_fees_accrued: string;
1799
- pool_current_total_proceeds: string;
1800
- pool_current_total_tokens_sold: string;
1801
- pool_last_epoch_total_tokens_sold: string;
1802
- pool_current_sale_progress_percentage: number;
1803
- pool_config_max_proceeds: string;
1804
- pool_config_min_proceeds: string;
1805
- pool_config_num_tokens_to_sell: string;
1806
- pool_id: string;
1807
- pool_address: string;
1808
- pool_config_starting_time: string;
1809
- pool_config_ending_time: string;
1810
- pool_migration_timestamp: Date | null;
1811
- pool_type: string;
1812
- base_token: {
1813
- token_address: string;
1814
- token_name: string;
1815
- token_description: string | null;
1816
- token_symbol: string;
1817
- token_decimals: number;
1818
- token_uri_data: {
1819
- name?: string | undefined;
1820
- description?: string | undefined;
1821
- image_hash?: string | undefined;
1822
- fee_receiver?: string | undefined;
1823
- social_links?: {
1824
- label: string;
1825
- url: string;
1826
- }[] | undefined;
1827
- vesting_recipients?: {
1828
- address: string;
1829
- amount?: string | undefined;
1830
- percentage?: string | undefined;
1831
- }[] | undefined;
1832
- } | null;
1833
- token_image_public_url: string | null;
1834
- token_creator_address: string;
1835
- token_fee_receiver_address: string;
1836
- token_vesting_recipient_addresses: string[];
1837
- };
1838
- };
1839
- graduation_pool: {
1840
- pool_current_price: string;
1841
- pool_current_sqrt_price: string;
1842
- pool_current_fdv: string;
1843
- pool_current_liquidity: string;
1844
- pool_current_tick: number;
1845
- pool_current_market_cap: string;
1846
- pool_address: string;
1847
- pool_migration_timestamp: Date | null;
1848
- pool_type: string;
1849
- base_token: {
1850
- token_address: string;
1851
- token_name: string;
1852
- token_description: string | null;
1853
- token_symbol: string;
1854
- token_decimals: number;
1855
- token_uri_data: {
1856
- name?: string | undefined;
1857
- description?: string | undefined;
1858
- image_hash?: string | undefined;
1859
- fee_receiver?: string | undefined;
1860
- social_links?: {
1861
- label: string;
1862
- url: string;
1863
- }[] | undefined;
1864
- vesting_recipients?: {
1865
- address: string;
1866
- amount?: string | undefined;
1867
- percentage?: string | undefined;
1868
- }[] | undefined;
1869
- } | null;
1870
- token_image_public_url: string | null;
1871
- token_creator_address: string;
1872
- token_fee_receiver_address: string;
1873
- token_vesting_recipient_addresses: string[];
1874
- integrator_address: string;
1875
- };
1876
- };
1877
- asset_status?: AssetStatus | undefined;
1878
- }[];
1879
- }>;
1880
- };
1881
318
  };
1882
319
  searchAssets: {
320
+ [x: string]: any;
1883
321
  description: "Search through all assets for an integrator by providing a term to match against an address, symbol or name";
1884
322
  query: z.ZodObject<{
1885
- chainId: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>>;
323
+ chainId: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
1886
324
  term: z.ZodString;
1887
- limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1888
- }, "strip", z.ZodTypeAny, {
1889
- chainId: number;
1890
- limit: number;
1891
- term: string;
1892
- }, {
1893
- term: string;
1894
- chainId?: number | undefined;
1895
- limit?: number | undefined;
1896
- }>;
325
+ limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
326
+ }, z.core.$strip>;
1897
327
  method: "GET";
1898
- path: "/assets/search";
1899
- responses: {
1900
- 200: z.ZodObject<{
1901
- result: z.ZodArray<z.ZodEffects<z.ZodObject<{
1902
- asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1903
- asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1904
- asset_creation_timestamp: z.ZodDate;
1905
- asset_current_pool: z.ZodString;
1906
- asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
1907
- asset_status: z.ZodDefault<z.ZodEnum<[AssetStatus.GRADUATED, AssetStatus.LIVE, AssetStatus.INCOMING, AssetStatus.STALL]>>;
1908
- auction_pool: z.ZodObject<{
1909
- pool_current_price: z.ZodString;
1910
- pool_current_sqrt_price: z.ZodString;
1911
- pool_current_fdv: z.ZodString;
1912
- pool_current_liquidity: z.ZodString;
1913
- pool_current_tick: z.ZodNumber;
1914
- pool_last_epoch: z.ZodNumber;
1915
- pool_current_market_cap: z.ZodString;
1916
- pool_current_fees_accrued: z.ZodString;
1917
- pool_current_total_proceeds: z.ZodString;
1918
- pool_current_total_tokens_sold: z.ZodString;
1919
- pool_last_epoch_total_tokens_sold: z.ZodString;
1920
- pool_current_sale_progress_percentage: z.ZodNumber;
1921
- pool_config_max_proceeds: z.ZodString;
1922
- pool_config_min_proceeds: z.ZodString;
1923
- pool_config_num_tokens_to_sell: z.ZodString;
1924
- pool_id: z.ZodString;
1925
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1926
- pool_config_starting_time: z.ZodString;
1927
- pool_config_ending_time: z.ZodString;
1928
- pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
1929
- pool_type: z.ZodString;
1930
- base_token: z.ZodObject<{
1931
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
1932
- token_name: z.ZodString;
1933
- token_description: z.ZodNullable<z.ZodString>;
1934
- token_symbol: z.ZodString;
1935
- token_decimals: z.ZodNumber;
1936
- token_uri_data: z.ZodNullable<z.ZodObject<{
1937
- name: z.ZodOptional<z.ZodString>;
1938
- description: z.ZodOptional<z.ZodString>;
1939
- image_hash: z.ZodOptional<z.ZodString>;
1940
- fee_receiver: z.ZodOptional<z.ZodString>;
1941
- social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
1942
- label: z.ZodString;
1943
- url: z.ZodString;
1944
- }, "strip", z.ZodTypeAny, {
1945
- label: string;
1946
- url: string;
1947
- }, {
1948
- label: string;
1949
- url: string;
1950
- }>, "many">>;
1951
- vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
1952
- address: z.ZodString;
1953
- amount: z.ZodOptional<z.ZodString>;
1954
- percentage: z.ZodOptional<z.ZodString>;
1955
- }, "strip", z.ZodTypeAny, {
1956
- address: string;
1957
- amount?: string | undefined;
1958
- percentage?: string | undefined;
1959
- }, {
1960
- address: string;
1961
- amount?: string | undefined;
1962
- percentage?: string | undefined;
1963
- }>, {
1964
- address: string;
1965
- amount: string;
1966
- }, {
1967
- address: string;
1968
- amount?: string | undefined;
1969
- percentage?: string | undefined;
1970
- }>, "many">>;
1971
- }, "strip", z.ZodTypeAny, {
1972
- name?: string | undefined;
1973
- description?: string | undefined;
1974
- image_hash?: string | undefined;
1975
- fee_receiver?: string | undefined;
1976
- social_links?: {
1977
- label: string;
1978
- url: string;
1979
- }[] | undefined;
1980
- vesting_recipients?: {
1981
- address: string;
1982
- amount: string;
1983
- }[] | undefined;
1984
- }, {
1985
- name?: string | undefined;
1986
- description?: string | undefined;
1987
- image_hash?: string | undefined;
1988
- fee_receiver?: string | undefined;
1989
- social_links?: {
1990
- label: string;
1991
- url: string;
1992
- }[] | undefined;
1993
- vesting_recipients?: {
1994
- address: string;
1995
- amount?: string | undefined;
1996
- percentage?: string | undefined;
1997
- }[] | undefined;
1998
- }>>;
1999
- token_image_public_url: z.ZodNullable<z.ZodString>;
2000
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2001
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2002
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
2003
- }, "strip", z.ZodTypeAny, {
2004
- token_address: `0x${string}`;
2005
- token_name: string;
2006
- token_description: string | null;
2007
- token_symbol: string;
2008
- token_decimals: number;
2009
- token_uri_data: {
2010
- name?: string | undefined;
2011
- description?: string | undefined;
2012
- image_hash?: string | undefined;
2013
- fee_receiver?: string | undefined;
2014
- social_links?: {
2015
- label: string;
2016
- url: string;
2017
- }[] | undefined;
2018
- vesting_recipients?: {
2019
- address: string;
2020
- amount: string;
2021
- }[] | undefined;
2022
- } | null;
2023
- token_image_public_url: string | null;
2024
- token_creator_address: `0x${string}`;
2025
- token_fee_receiver_address: `0x${string}`;
2026
- token_vesting_recipient_addresses: `0x${string}`[];
2027
- }, {
2028
- token_address: string;
2029
- token_name: string;
2030
- token_description: string | null;
2031
- token_symbol: string;
2032
- token_decimals: number;
2033
- token_uri_data: {
2034
- name?: string | undefined;
2035
- description?: string | undefined;
2036
- image_hash?: string | undefined;
2037
- fee_receiver?: string | undefined;
2038
- social_links?: {
2039
- label: string;
2040
- url: string;
2041
- }[] | undefined;
2042
- vesting_recipients?: {
2043
- address: string;
2044
- amount?: string | undefined;
2045
- percentage?: string | undefined;
2046
- }[] | undefined;
2047
- } | null;
2048
- token_image_public_url: string | null;
2049
- token_creator_address: string;
2050
- token_fee_receiver_address: string;
2051
- token_vesting_recipient_addresses: string[];
2052
- }>;
2053
- }, "strip", z.ZodTypeAny, {
2054
- pool_current_price: string;
2055
- pool_current_sqrt_price: string;
2056
- pool_current_fdv: string;
2057
- pool_current_liquidity: string;
2058
- pool_current_tick: number;
2059
- pool_last_epoch: number;
2060
- pool_current_market_cap: string;
2061
- pool_current_fees_accrued: string;
2062
- pool_current_total_proceeds: string;
2063
- pool_current_total_tokens_sold: string;
2064
- pool_last_epoch_total_tokens_sold: string;
2065
- pool_current_sale_progress_percentage: number;
2066
- pool_config_max_proceeds: string;
2067
- pool_config_min_proceeds: string;
2068
- pool_config_num_tokens_to_sell: string;
2069
- pool_id: string;
2070
- pool_address: `0x${string}`;
2071
- pool_config_starting_time: string;
2072
- pool_config_ending_time: string;
2073
- pool_migration_timestamp: Date | null;
2074
- pool_type: string;
2075
- base_token: {
2076
- token_address: `0x${string}`;
2077
- token_name: string;
2078
- token_description: string | null;
2079
- token_symbol: string;
2080
- token_decimals: number;
2081
- token_uri_data: {
2082
- name?: string | undefined;
2083
- description?: string | undefined;
2084
- image_hash?: string | undefined;
2085
- fee_receiver?: string | undefined;
2086
- social_links?: {
2087
- label: string;
2088
- url: string;
2089
- }[] | undefined;
2090
- vesting_recipients?: {
2091
- address: string;
2092
- amount: string;
2093
- }[] | undefined;
2094
- } | null;
2095
- token_image_public_url: string | null;
2096
- token_creator_address: `0x${string}`;
2097
- token_fee_receiver_address: `0x${string}`;
2098
- token_vesting_recipient_addresses: `0x${string}`[];
2099
- };
2100
- }, {
2101
- pool_current_price: string;
2102
- pool_current_sqrt_price: string;
2103
- pool_current_fdv: string;
2104
- pool_current_liquidity: string;
2105
- pool_current_tick: number;
2106
- pool_last_epoch: number;
2107
- pool_current_market_cap: string;
2108
- pool_current_fees_accrued: string;
2109
- pool_current_total_proceeds: string;
2110
- pool_current_total_tokens_sold: string;
2111
- pool_last_epoch_total_tokens_sold: string;
2112
- pool_current_sale_progress_percentage: number;
2113
- pool_config_max_proceeds: string;
2114
- pool_config_min_proceeds: string;
2115
- pool_config_num_tokens_to_sell: string;
2116
- pool_id: string;
2117
- pool_address: string;
2118
- pool_config_starting_time: string;
2119
- pool_config_ending_time: string;
2120
- pool_migration_timestamp: Date | null;
2121
- pool_type: string;
2122
- base_token: {
2123
- token_address: string;
2124
- token_name: string;
2125
- token_description: string | null;
2126
- token_symbol: string;
2127
- token_decimals: number;
2128
- token_uri_data: {
2129
- name?: string | undefined;
2130
- description?: string | undefined;
2131
- image_hash?: string | undefined;
2132
- fee_receiver?: string | undefined;
2133
- social_links?: {
2134
- label: string;
2135
- url: string;
2136
- }[] | undefined;
2137
- vesting_recipients?: {
2138
- address: string;
2139
- amount?: string | undefined;
2140
- percentage?: string | undefined;
2141
- }[] | undefined;
2142
- } | null;
2143
- token_image_public_url: string | null;
2144
- token_creator_address: string;
2145
- token_fee_receiver_address: string;
2146
- token_vesting_recipient_addresses: string[];
2147
- };
2148
- }>;
2149
- graduation_pool: z.ZodObject<{
2150
- pool_current_price: z.ZodString;
2151
- pool_current_sqrt_price: z.ZodString;
2152
- pool_current_fdv: z.ZodString;
2153
- pool_current_liquidity: z.ZodString;
2154
- pool_current_tick: z.ZodNumber;
2155
- pool_current_market_cap: z.ZodString;
2156
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2157
- pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2158
- pool_type: z.ZodString;
2159
- base_token: z.ZodObject<{
2160
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2161
- token_name: z.ZodString;
2162
- token_description: z.ZodNullable<z.ZodString>;
2163
- token_symbol: z.ZodString;
2164
- token_decimals: z.ZodNumber;
2165
- token_uri_data: z.ZodNullable<z.ZodObject<{
2166
- name: z.ZodOptional<z.ZodString>;
2167
- description: z.ZodOptional<z.ZodString>;
2168
- image_hash: z.ZodOptional<z.ZodString>;
2169
- fee_receiver: z.ZodOptional<z.ZodString>;
2170
- social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
2171
- label: z.ZodString;
2172
- url: z.ZodString;
2173
- }, "strip", z.ZodTypeAny, {
2174
- label: string;
2175
- url: string;
2176
- }, {
2177
- label: string;
2178
- url: string;
2179
- }>, "many">>;
2180
- vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
2181
- address: z.ZodString;
2182
- amount: z.ZodOptional<z.ZodString>;
2183
- percentage: z.ZodOptional<z.ZodString>;
2184
- }, "strip", z.ZodTypeAny, {
2185
- address: string;
2186
- amount?: string | undefined;
2187
- percentage?: string | undefined;
2188
- }, {
2189
- address: string;
2190
- amount?: string | undefined;
2191
- percentage?: string | undefined;
2192
- }>, {
2193
- address: string;
2194
- amount: string;
2195
- }, {
2196
- address: string;
2197
- amount?: string | undefined;
2198
- percentage?: string | undefined;
2199
- }>, "many">>;
2200
- }, "strip", z.ZodTypeAny, {
2201
- name?: string | undefined;
2202
- description?: string | undefined;
2203
- image_hash?: string | undefined;
2204
- fee_receiver?: string | undefined;
2205
- social_links?: {
2206
- label: string;
2207
- url: string;
2208
- }[] | undefined;
2209
- vesting_recipients?: {
2210
- address: string;
2211
- amount: string;
2212
- }[] | undefined;
2213
- }, {
2214
- name?: string | undefined;
2215
- description?: string | undefined;
2216
- image_hash?: string | undefined;
2217
- fee_receiver?: string | undefined;
2218
- social_links?: {
2219
- label: string;
2220
- url: string;
2221
- }[] | undefined;
2222
- vesting_recipients?: {
2223
- address: string;
2224
- amount?: string | undefined;
2225
- percentage?: string | undefined;
2226
- }[] | undefined;
2227
- }>>;
2228
- token_image_public_url: z.ZodNullable<z.ZodString>;
2229
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2230
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2231
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
2232
- integrator_address: z.ZodString;
2233
- }, "strip", z.ZodTypeAny, {
2234
- token_address: `0x${string}`;
2235
- token_name: string;
2236
- token_description: string | null;
2237
- token_symbol: string;
2238
- token_decimals: number;
2239
- token_uri_data: {
2240
- name?: string | undefined;
2241
- description?: string | undefined;
2242
- image_hash?: string | undefined;
2243
- fee_receiver?: string | undefined;
2244
- social_links?: {
2245
- label: string;
2246
- url: string;
2247
- }[] | undefined;
2248
- vesting_recipients?: {
2249
- address: string;
2250
- amount: string;
2251
- }[] | undefined;
2252
- } | null;
2253
- token_image_public_url: string | null;
2254
- token_creator_address: `0x${string}`;
2255
- token_fee_receiver_address: `0x${string}`;
2256
- token_vesting_recipient_addresses: `0x${string}`[];
2257
- integrator_address: string;
2258
- }, {
2259
- token_address: string;
2260
- token_name: string;
2261
- token_description: string | null;
2262
- token_symbol: string;
2263
- token_decimals: number;
2264
- token_uri_data: {
2265
- name?: string | undefined;
2266
- description?: string | undefined;
2267
- image_hash?: string | undefined;
2268
- fee_receiver?: string | undefined;
2269
- social_links?: {
2270
- label: string;
2271
- url: string;
2272
- }[] | undefined;
2273
- vesting_recipients?: {
2274
- address: string;
2275
- amount?: string | undefined;
2276
- percentage?: string | undefined;
2277
- }[] | undefined;
2278
- } | null;
2279
- token_image_public_url: string | null;
2280
- token_creator_address: string;
2281
- token_fee_receiver_address: string;
2282
- token_vesting_recipient_addresses: string[];
2283
- integrator_address: string;
2284
- }>;
2285
- }, "strip", z.ZodTypeAny, {
2286
- pool_current_price: string;
2287
- pool_current_sqrt_price: string;
2288
- pool_current_fdv: string;
2289
- pool_current_liquidity: string;
2290
- pool_current_tick: number;
2291
- pool_current_market_cap: string;
2292
- pool_address: `0x${string}`;
2293
- pool_migration_timestamp: Date | null;
2294
- pool_type: string;
2295
- base_token: {
2296
- token_address: `0x${string}`;
2297
- token_name: string;
2298
- token_description: string | null;
2299
- token_symbol: string;
2300
- token_decimals: number;
2301
- token_uri_data: {
2302
- name?: string | undefined;
2303
- description?: string | undefined;
2304
- image_hash?: string | undefined;
2305
- fee_receiver?: string | undefined;
2306
- social_links?: {
2307
- label: string;
2308
- url: string;
2309
- }[] | undefined;
2310
- vesting_recipients?: {
2311
- address: string;
2312
- amount: string;
2313
- }[] | undefined;
2314
- } | null;
2315
- token_image_public_url: string | null;
2316
- token_creator_address: `0x${string}`;
2317
- token_fee_receiver_address: `0x${string}`;
2318
- token_vesting_recipient_addresses: `0x${string}`[];
2319
- integrator_address: string;
2320
- };
2321
- }, {
2322
- pool_current_price: string;
2323
- pool_current_sqrt_price: string;
2324
- pool_current_fdv: string;
2325
- pool_current_liquidity: string;
2326
- pool_current_tick: number;
2327
- pool_current_market_cap: string;
2328
- pool_address: string;
2329
- pool_migration_timestamp: Date | null;
2330
- pool_type: string;
2331
- base_token: {
2332
- token_address: string;
2333
- token_name: string;
2334
- token_description: string | null;
2335
- token_symbol: string;
2336
- token_decimals: number;
2337
- token_uri_data: {
2338
- name?: string | undefined;
2339
- description?: string | undefined;
2340
- image_hash?: string | undefined;
2341
- fee_receiver?: string | undefined;
2342
- social_links?: {
2343
- label: string;
2344
- url: string;
2345
- }[] | undefined;
2346
- vesting_recipients?: {
2347
- address: string;
2348
- amount?: string | undefined;
2349
- percentage?: string | undefined;
2350
- }[] | undefined;
2351
- } | null;
2352
- token_image_public_url: string | null;
2353
- token_creator_address: string;
2354
- token_fee_receiver_address: string;
2355
- token_vesting_recipient_addresses: string[];
2356
- integrator_address: string;
2357
- };
2358
- }>;
2359
- }, "strip", z.ZodTypeAny, {
2360
- asset_address: `0x${string}`;
2361
- asset_numeraire_address: `0x${string}`;
2362
- asset_creation_timestamp: Date;
2363
- asset_current_pool: string;
2364
- asset_migration_timestamp: Date | null;
2365
- asset_status: AssetStatus;
2366
- auction_pool: {
2367
- pool_current_price: string;
2368
- pool_current_sqrt_price: string;
2369
- pool_current_fdv: string;
2370
- pool_current_liquidity: string;
2371
- pool_current_tick: number;
2372
- pool_last_epoch: number;
2373
- pool_current_market_cap: string;
2374
- pool_current_fees_accrued: string;
2375
- pool_current_total_proceeds: string;
2376
- pool_current_total_tokens_sold: string;
2377
- pool_last_epoch_total_tokens_sold: string;
2378
- pool_current_sale_progress_percentage: number;
2379
- pool_config_max_proceeds: string;
2380
- pool_config_min_proceeds: string;
2381
- pool_config_num_tokens_to_sell: string;
2382
- pool_id: string;
2383
- pool_address: `0x${string}`;
2384
- pool_config_starting_time: string;
2385
- pool_config_ending_time: string;
2386
- pool_migration_timestamp: Date | null;
2387
- pool_type: string;
2388
- base_token: {
2389
- token_address: `0x${string}`;
2390
- token_name: string;
2391
- token_description: string | null;
2392
- token_symbol: string;
2393
- token_decimals: number;
2394
- token_uri_data: {
2395
- name?: string | undefined;
2396
- description?: string | undefined;
2397
- image_hash?: string | undefined;
2398
- fee_receiver?: string | undefined;
2399
- social_links?: {
2400
- label: string;
2401
- url: string;
2402
- }[] | undefined;
2403
- vesting_recipients?: {
2404
- address: string;
2405
- amount: string;
2406
- }[] | undefined;
2407
- } | null;
2408
- token_image_public_url: string | null;
2409
- token_creator_address: `0x${string}`;
2410
- token_fee_receiver_address: `0x${string}`;
2411
- token_vesting_recipient_addresses: `0x${string}`[];
2412
- };
2413
- };
2414
- graduation_pool: {
2415
- pool_current_price: string;
2416
- pool_current_sqrt_price: string;
2417
- pool_current_fdv: string;
2418
- pool_current_liquidity: string;
2419
- pool_current_tick: number;
2420
- pool_current_market_cap: string;
2421
- pool_address: `0x${string}`;
2422
- pool_migration_timestamp: Date | null;
2423
- pool_type: string;
2424
- base_token: {
2425
- token_address: `0x${string}`;
2426
- token_name: string;
2427
- token_description: string | null;
2428
- token_symbol: string;
2429
- token_decimals: number;
2430
- token_uri_data: {
2431
- name?: string | undefined;
2432
- description?: string | undefined;
2433
- image_hash?: string | undefined;
2434
- fee_receiver?: string | undefined;
2435
- social_links?: {
2436
- label: string;
2437
- url: string;
2438
- }[] | undefined;
2439
- vesting_recipients?: {
2440
- address: string;
2441
- amount: string;
2442
- }[] | undefined;
2443
- } | null;
2444
- token_image_public_url: string | null;
2445
- token_creator_address: `0x${string}`;
2446
- token_fee_receiver_address: `0x${string}`;
2447
- token_vesting_recipient_addresses: `0x${string}`[];
2448
- integrator_address: string;
2449
- };
2450
- };
2451
- }, {
2452
- asset_address: string;
2453
- asset_numeraire_address: string;
2454
- asset_creation_timestamp: Date;
2455
- asset_current_pool: string;
2456
- asset_migration_timestamp: Date | null;
2457
- auction_pool: {
2458
- pool_current_price: string;
2459
- pool_current_sqrt_price: string;
2460
- pool_current_fdv: string;
2461
- pool_current_liquidity: string;
2462
- pool_current_tick: number;
2463
- pool_last_epoch: number;
2464
- pool_current_market_cap: string;
2465
- pool_current_fees_accrued: string;
2466
- pool_current_total_proceeds: string;
2467
- pool_current_total_tokens_sold: string;
2468
- pool_last_epoch_total_tokens_sold: string;
2469
- pool_current_sale_progress_percentage: number;
2470
- pool_config_max_proceeds: string;
2471
- pool_config_min_proceeds: string;
2472
- pool_config_num_tokens_to_sell: string;
2473
- pool_id: string;
2474
- pool_address: string;
2475
- pool_config_starting_time: string;
2476
- pool_config_ending_time: string;
2477
- pool_migration_timestamp: Date | null;
2478
- pool_type: string;
2479
- base_token: {
2480
- token_address: string;
2481
- token_name: string;
2482
- token_description: string | null;
2483
- token_symbol: string;
2484
- token_decimals: number;
2485
- token_uri_data: {
2486
- name?: string | undefined;
2487
- description?: string | undefined;
2488
- image_hash?: string | undefined;
2489
- fee_receiver?: string | undefined;
2490
- social_links?: {
2491
- label: string;
2492
- url: string;
2493
- }[] | undefined;
2494
- vesting_recipients?: {
2495
- address: string;
2496
- amount?: string | undefined;
2497
- percentage?: string | undefined;
2498
- }[] | undefined;
2499
- } | null;
2500
- token_image_public_url: string | null;
2501
- token_creator_address: string;
2502
- token_fee_receiver_address: string;
2503
- token_vesting_recipient_addresses: string[];
2504
- };
2505
- };
2506
- graduation_pool: {
2507
- pool_current_price: string;
2508
- pool_current_sqrt_price: string;
2509
- pool_current_fdv: string;
2510
- pool_current_liquidity: string;
2511
- pool_current_tick: number;
2512
- pool_current_market_cap: string;
2513
- pool_address: string;
2514
- pool_migration_timestamp: Date | null;
2515
- pool_type: string;
2516
- base_token: {
2517
- token_address: string;
2518
- token_name: string;
2519
- token_description: string | null;
2520
- token_symbol: string;
2521
- token_decimals: number;
2522
- token_uri_data: {
2523
- name?: string | undefined;
2524
- description?: string | undefined;
2525
- image_hash?: string | undefined;
2526
- fee_receiver?: string | undefined;
2527
- social_links?: {
2528
- label: string;
2529
- url: string;
2530
- }[] | undefined;
2531
- vesting_recipients?: {
2532
- address: string;
2533
- amount?: string | undefined;
2534
- percentage?: string | undefined;
2535
- }[] | undefined;
2536
- } | null;
2537
- token_image_public_url: string | null;
2538
- token_creator_address: string;
2539
- token_fee_receiver_address: string;
2540
- token_vesting_recipient_addresses: string[];
2541
- integrator_address: string;
2542
- };
2543
- };
2544
- asset_status?: AssetStatus | undefined;
2545
- }>, {
2546
- asset_status: AssetStatus;
2547
- asset_address: `0x${string}`;
2548
- asset_numeraire_address: `0x${string}`;
2549
- asset_creation_timestamp: Date;
2550
- asset_current_pool: string;
2551
- asset_migration_timestamp: Date | null;
2552
- auction_pool: {
2553
- pool_current_price: string;
2554
- pool_current_sqrt_price: string;
2555
- pool_current_fdv: string;
2556
- pool_current_liquidity: string;
2557
- pool_current_tick: number;
2558
- pool_last_epoch: number;
2559
- pool_current_market_cap: string;
2560
- pool_current_fees_accrued: string;
2561
- pool_current_total_proceeds: string;
2562
- pool_current_total_tokens_sold: string;
2563
- pool_last_epoch_total_tokens_sold: string;
2564
- pool_current_sale_progress_percentage: number;
2565
- pool_config_max_proceeds: string;
2566
- pool_config_min_proceeds: string;
2567
- pool_config_num_tokens_to_sell: string;
2568
- pool_id: string;
2569
- pool_address: `0x${string}`;
2570
- pool_config_starting_time: string;
2571
- pool_config_ending_time: string;
2572
- pool_migration_timestamp: Date | null;
2573
- pool_type: string;
2574
- base_token: {
2575
- token_address: `0x${string}`;
2576
- token_name: string;
2577
- token_description: string | null;
2578
- token_symbol: string;
2579
- token_decimals: number;
2580
- token_uri_data: {
2581
- name?: string | undefined;
2582
- description?: string | undefined;
2583
- image_hash?: string | undefined;
2584
- fee_receiver?: string | undefined;
2585
- social_links?: {
2586
- label: string;
2587
- url: string;
2588
- }[] | undefined;
2589
- vesting_recipients?: {
2590
- address: string;
2591
- amount: string;
2592
- }[] | undefined;
2593
- } | null;
2594
- token_image_public_url: string | null;
2595
- token_creator_address: `0x${string}`;
2596
- token_fee_receiver_address: `0x${string}`;
2597
- token_vesting_recipient_addresses: `0x${string}`[];
2598
- };
2599
- };
2600
- graduation_pool: {
2601
- pool_current_price: string;
2602
- pool_current_sqrt_price: string;
2603
- pool_current_fdv: string;
2604
- pool_current_liquidity: string;
2605
- pool_current_tick: number;
2606
- pool_current_market_cap: string;
2607
- pool_address: `0x${string}`;
2608
- pool_migration_timestamp: Date | null;
2609
- pool_type: string;
2610
- base_token: {
2611
- token_address: `0x${string}`;
2612
- token_name: string;
2613
- token_description: string | null;
2614
- token_symbol: string;
2615
- token_decimals: number;
2616
- token_uri_data: {
2617
- name?: string | undefined;
2618
- description?: string | undefined;
2619
- image_hash?: string | undefined;
2620
- fee_receiver?: string | undefined;
2621
- social_links?: {
2622
- label: string;
2623
- url: string;
2624
- }[] | undefined;
2625
- vesting_recipients?: {
2626
- address: string;
2627
- amount: string;
2628
- }[] | undefined;
2629
- } | null;
2630
- token_image_public_url: string | null;
2631
- token_creator_address: `0x${string}`;
2632
- token_fee_receiver_address: `0x${string}`;
2633
- token_vesting_recipient_addresses: `0x${string}`[];
2634
- integrator_address: string;
2635
- };
2636
- };
2637
- }, {
2638
- asset_address: string;
2639
- asset_numeraire_address: string;
2640
- asset_creation_timestamp: Date;
2641
- asset_current_pool: string;
2642
- asset_migration_timestamp: Date | null;
2643
- auction_pool: {
2644
- pool_current_price: string;
2645
- pool_current_sqrt_price: string;
2646
- pool_current_fdv: string;
2647
- pool_current_liquidity: string;
2648
- pool_current_tick: number;
2649
- pool_last_epoch: number;
2650
- pool_current_market_cap: string;
2651
- pool_current_fees_accrued: string;
2652
- pool_current_total_proceeds: string;
2653
- pool_current_total_tokens_sold: string;
2654
- pool_last_epoch_total_tokens_sold: string;
2655
- pool_current_sale_progress_percentage: number;
2656
- pool_config_max_proceeds: string;
2657
- pool_config_min_proceeds: string;
2658
- pool_config_num_tokens_to_sell: string;
2659
- pool_id: string;
2660
- pool_address: string;
2661
- pool_config_starting_time: string;
2662
- pool_config_ending_time: string;
2663
- pool_migration_timestamp: Date | null;
2664
- pool_type: string;
2665
- base_token: {
2666
- token_address: string;
2667
- token_name: string;
2668
- token_description: string | null;
2669
- token_symbol: string;
2670
- token_decimals: number;
2671
- token_uri_data: {
2672
- name?: string | undefined;
2673
- description?: string | undefined;
2674
- image_hash?: string | undefined;
2675
- fee_receiver?: string | undefined;
2676
- social_links?: {
2677
- label: string;
2678
- url: string;
2679
- }[] | undefined;
2680
- vesting_recipients?: {
2681
- address: string;
2682
- amount?: string | undefined;
2683
- percentage?: string | undefined;
2684
- }[] | undefined;
2685
- } | null;
2686
- token_image_public_url: string | null;
2687
- token_creator_address: string;
2688
- token_fee_receiver_address: string;
2689
- token_vesting_recipient_addresses: string[];
2690
- };
2691
- };
2692
- graduation_pool: {
2693
- pool_current_price: string;
2694
- pool_current_sqrt_price: string;
2695
- pool_current_fdv: string;
2696
- pool_current_liquidity: string;
2697
- pool_current_tick: number;
2698
- pool_current_market_cap: string;
2699
- pool_address: string;
2700
- pool_migration_timestamp: Date | null;
2701
- pool_type: string;
2702
- base_token: {
2703
- token_address: string;
2704
- token_name: string;
2705
- token_description: string | null;
2706
- token_symbol: string;
2707
- token_decimals: number;
2708
- token_uri_data: {
2709
- name?: string | undefined;
2710
- description?: string | undefined;
2711
- image_hash?: string | undefined;
2712
- fee_receiver?: string | undefined;
2713
- social_links?: {
2714
- label: string;
2715
- url: string;
2716
- }[] | undefined;
2717
- vesting_recipients?: {
2718
- address: string;
2719
- amount?: string | undefined;
2720
- percentage?: string | undefined;
2721
- }[] | undefined;
2722
- } | null;
2723
- token_image_public_url: string | null;
2724
- token_creator_address: string;
2725
- token_fee_receiver_address: string;
2726
- token_vesting_recipient_addresses: string[];
2727
- integrator_address: string;
2728
- };
2729
- };
2730
- asset_status?: AssetStatus | undefined;
2731
- }>, "many">;
2732
- }, "strip", z.ZodTypeAny, {
2733
- result: {
2734
- asset_status: AssetStatus;
2735
- asset_address: `0x${string}`;
2736
- asset_numeraire_address: `0x${string}`;
2737
- asset_creation_timestamp: Date;
2738
- asset_current_pool: string;
2739
- asset_migration_timestamp: Date | null;
2740
- auction_pool: {
2741
- pool_current_price: string;
2742
- pool_current_sqrt_price: string;
2743
- pool_current_fdv: string;
2744
- pool_current_liquidity: string;
2745
- pool_current_tick: number;
2746
- pool_last_epoch: number;
2747
- pool_current_market_cap: string;
2748
- pool_current_fees_accrued: string;
2749
- pool_current_total_proceeds: string;
2750
- pool_current_total_tokens_sold: string;
2751
- pool_last_epoch_total_tokens_sold: string;
2752
- pool_current_sale_progress_percentage: number;
2753
- pool_config_max_proceeds: string;
2754
- pool_config_min_proceeds: string;
2755
- pool_config_num_tokens_to_sell: string;
2756
- pool_id: string;
2757
- pool_address: `0x${string}`;
2758
- pool_config_starting_time: string;
2759
- pool_config_ending_time: string;
2760
- pool_migration_timestamp: Date | null;
2761
- pool_type: string;
2762
- base_token: {
2763
- token_address: `0x${string}`;
2764
- token_name: string;
2765
- token_description: string | null;
2766
- token_symbol: string;
2767
- token_decimals: number;
2768
- token_uri_data: {
2769
- name?: string | undefined;
2770
- description?: string | undefined;
2771
- image_hash?: string | undefined;
2772
- fee_receiver?: string | undefined;
2773
- social_links?: {
2774
- label: string;
2775
- url: string;
2776
- }[] | undefined;
2777
- vesting_recipients?: {
2778
- address: string;
2779
- amount: string;
2780
- }[] | undefined;
2781
- } | null;
2782
- token_image_public_url: string | null;
2783
- token_creator_address: `0x${string}`;
2784
- token_fee_receiver_address: `0x${string}`;
2785
- token_vesting_recipient_addresses: `0x${string}`[];
2786
- };
2787
- };
2788
- graduation_pool: {
2789
- pool_current_price: string;
2790
- pool_current_sqrt_price: string;
2791
- pool_current_fdv: string;
2792
- pool_current_liquidity: string;
2793
- pool_current_tick: number;
2794
- pool_current_market_cap: string;
2795
- pool_address: `0x${string}`;
2796
- pool_migration_timestamp: Date | null;
2797
- pool_type: string;
2798
- base_token: {
2799
- token_address: `0x${string}`;
2800
- token_name: string;
2801
- token_description: string | null;
2802
- token_symbol: string;
2803
- token_decimals: number;
2804
- token_uri_data: {
2805
- name?: string | undefined;
2806
- description?: string | undefined;
2807
- image_hash?: string | undefined;
2808
- fee_receiver?: string | undefined;
2809
- social_links?: {
2810
- label: string;
2811
- url: string;
2812
- }[] | undefined;
2813
- vesting_recipients?: {
2814
- address: string;
2815
- amount: string;
2816
- }[] | undefined;
2817
- } | null;
2818
- token_image_public_url: string | null;
2819
- token_creator_address: `0x${string}`;
2820
- token_fee_receiver_address: `0x${string}`;
2821
- token_vesting_recipient_addresses: `0x${string}`[];
2822
- integrator_address: string;
2823
- };
2824
- };
2825
- }[];
2826
- }, {
2827
- result: {
2828
- asset_address: string;
2829
- asset_numeraire_address: string;
2830
- asset_creation_timestamp: Date;
2831
- asset_current_pool: string;
2832
- asset_migration_timestamp: Date | null;
2833
- auction_pool: {
2834
- pool_current_price: string;
2835
- pool_current_sqrt_price: string;
2836
- pool_current_fdv: string;
2837
- pool_current_liquidity: string;
2838
- pool_current_tick: number;
2839
- pool_last_epoch: number;
2840
- pool_current_market_cap: string;
2841
- pool_current_fees_accrued: string;
2842
- pool_current_total_proceeds: string;
2843
- pool_current_total_tokens_sold: string;
2844
- pool_last_epoch_total_tokens_sold: string;
2845
- pool_current_sale_progress_percentage: number;
2846
- pool_config_max_proceeds: string;
2847
- pool_config_min_proceeds: string;
2848
- pool_config_num_tokens_to_sell: string;
2849
- pool_id: string;
2850
- pool_address: string;
2851
- pool_config_starting_time: string;
2852
- pool_config_ending_time: string;
2853
- pool_migration_timestamp: Date | null;
2854
- pool_type: string;
2855
- base_token: {
2856
- token_address: string;
2857
- token_name: string;
2858
- token_description: string | null;
2859
- token_symbol: string;
2860
- token_decimals: number;
2861
- token_uri_data: {
2862
- name?: string | undefined;
2863
- description?: string | undefined;
2864
- image_hash?: string | undefined;
2865
- fee_receiver?: string | undefined;
2866
- social_links?: {
2867
- label: string;
2868
- url: string;
2869
- }[] | undefined;
2870
- vesting_recipients?: {
2871
- address: string;
2872
- amount?: string | undefined;
2873
- percentage?: string | undefined;
2874
- }[] | undefined;
2875
- } | null;
2876
- token_image_public_url: string | null;
2877
- token_creator_address: string;
2878
- token_fee_receiver_address: string;
2879
- token_vesting_recipient_addresses: string[];
2880
- };
2881
- };
2882
- graduation_pool: {
2883
- pool_current_price: string;
2884
- pool_current_sqrt_price: string;
2885
- pool_current_fdv: string;
2886
- pool_current_liquidity: string;
2887
- pool_current_tick: number;
2888
- pool_current_market_cap: string;
2889
- pool_address: string;
2890
- pool_migration_timestamp: Date | null;
2891
- pool_type: string;
2892
- base_token: {
2893
- token_address: string;
2894
- token_name: string;
2895
- token_description: string | null;
2896
- token_symbol: string;
2897
- token_decimals: number;
2898
- token_uri_data: {
2899
- name?: string | undefined;
2900
- description?: string | undefined;
2901
- image_hash?: string | undefined;
2902
- fee_receiver?: string | undefined;
2903
- social_links?: {
2904
- label: string;
2905
- url: string;
2906
- }[] | undefined;
2907
- vesting_recipients?: {
2908
- address: string;
2909
- amount?: string | undefined;
2910
- percentage?: string | undefined;
2911
- }[] | undefined;
2912
- } | null;
2913
- token_image_public_url: string | null;
2914
- token_creator_address: string;
2915
- token_fee_receiver_address: string;
2916
- token_vesting_recipient_addresses: string[];
2917
- integrator_address: string;
2918
- };
2919
- };
2920
- asset_status?: AssetStatus | undefined;
2921
- }[];
2922
- }>;
2923
- };
2924
328
  };
2925
329
  getAssetByAddress: {
330
+ [x: string]: any;
2926
331
  description: "Get an asset by its address";
2927
332
  pathParams: z.ZodObject<{
2928
- assetAddress: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2929
- }, "strip", z.ZodTypeAny, {
2930
- assetAddress: `0x${string}`;
2931
- }, {
2932
- assetAddress: string;
2933
- }>;
333
+ assetAddress: z.ZodPipe<z.ZodString, z.ZodCustom<`0x${string}`, `0x${string}`>>;
334
+ }, z.core.$strip>;
2934
335
  query: z.ZodObject<{
2935
- chainId: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>>;
2936
- }, "strip", z.ZodTypeAny, {
2937
- chainId: number;
2938
- }, {
2939
- chainId?: number | undefined;
2940
- }>;
336
+ chainId: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
337
+ }, z.core.$strip>;
2941
338
  method: "GET";
2942
- path: "/assets/:assetAddress";
2943
- responses: {
2944
- 200: z.ZodObject<{
2945
- result: z.ZodEffects<z.ZodObject<{
2946
- asset_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2947
- asset_numeraire_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2948
- asset_creation_timestamp: z.ZodDate;
2949
- asset_current_pool: z.ZodString;
2950
- asset_migration_timestamp: z.ZodNullable<z.ZodDate>;
2951
- asset_status: z.ZodDefault<z.ZodEnum<[AssetStatus.GRADUATED, AssetStatus.LIVE, AssetStatus.INCOMING, AssetStatus.STALL]>>;
2952
- auction_pool: z.ZodObject<{
2953
- pool_current_price: z.ZodString;
2954
- pool_current_sqrt_price: z.ZodString;
2955
- pool_current_fdv: z.ZodString;
2956
- pool_current_liquidity: z.ZodString;
2957
- pool_current_tick: z.ZodNumber;
2958
- pool_last_epoch: z.ZodNumber;
2959
- pool_current_market_cap: z.ZodString;
2960
- pool_current_fees_accrued: z.ZodString;
2961
- pool_current_total_proceeds: z.ZodString;
2962
- pool_current_total_tokens_sold: z.ZodString;
2963
- pool_last_epoch_total_tokens_sold: z.ZodString;
2964
- pool_current_sale_progress_percentage: z.ZodNumber;
2965
- pool_config_max_proceeds: z.ZodString;
2966
- pool_config_min_proceeds: z.ZodString;
2967
- pool_config_num_tokens_to_sell: z.ZodString;
2968
- pool_id: z.ZodString;
2969
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2970
- pool_config_starting_time: z.ZodString;
2971
- pool_config_ending_time: z.ZodString;
2972
- pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
2973
- pool_type: z.ZodString;
2974
- base_token: z.ZodObject<{
2975
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
2976
- token_name: z.ZodString;
2977
- token_description: z.ZodNullable<z.ZodString>;
2978
- token_symbol: z.ZodString;
2979
- token_decimals: z.ZodNumber;
2980
- token_uri_data: z.ZodNullable<z.ZodObject<{
2981
- name: z.ZodOptional<z.ZodString>;
2982
- description: z.ZodOptional<z.ZodString>;
2983
- image_hash: z.ZodOptional<z.ZodString>;
2984
- fee_receiver: z.ZodOptional<z.ZodString>;
2985
- social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
2986
- label: z.ZodString;
2987
- url: z.ZodString;
2988
- }, "strip", z.ZodTypeAny, {
2989
- label: string;
2990
- url: string;
2991
- }, {
2992
- label: string;
2993
- url: string;
2994
- }>, "many">>;
2995
- vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
2996
- address: z.ZodString;
2997
- amount: z.ZodOptional<z.ZodString>;
2998
- percentage: z.ZodOptional<z.ZodString>;
2999
- }, "strip", z.ZodTypeAny, {
3000
- address: string;
3001
- amount?: string | undefined;
3002
- percentage?: string | undefined;
3003
- }, {
3004
- address: string;
3005
- amount?: string | undefined;
3006
- percentage?: string | undefined;
3007
- }>, {
3008
- address: string;
3009
- amount: string;
3010
- }, {
3011
- address: string;
3012
- amount?: string | undefined;
3013
- percentage?: string | undefined;
3014
- }>, "many">>;
3015
- }, "strip", z.ZodTypeAny, {
3016
- name?: string | undefined;
3017
- description?: string | undefined;
3018
- image_hash?: string | undefined;
3019
- fee_receiver?: string | undefined;
3020
- social_links?: {
3021
- label: string;
3022
- url: string;
3023
- }[] | undefined;
3024
- vesting_recipients?: {
3025
- address: string;
3026
- amount: string;
3027
- }[] | undefined;
3028
- }, {
3029
- name?: string | undefined;
3030
- description?: string | undefined;
3031
- image_hash?: string | undefined;
3032
- fee_receiver?: string | undefined;
3033
- social_links?: {
3034
- label: string;
3035
- url: string;
3036
- }[] | undefined;
3037
- vesting_recipients?: {
3038
- address: string;
3039
- amount?: string | undefined;
3040
- percentage?: string | undefined;
3041
- }[] | undefined;
3042
- }>>;
3043
- token_image_public_url: z.ZodNullable<z.ZodString>;
3044
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3045
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3046
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
3047
- }, "strip", z.ZodTypeAny, {
3048
- token_address: `0x${string}`;
3049
- token_name: string;
3050
- token_description: string | null;
3051
- token_symbol: string;
3052
- token_decimals: number;
3053
- token_uri_data: {
3054
- name?: string | undefined;
3055
- description?: string | undefined;
3056
- image_hash?: string | undefined;
3057
- fee_receiver?: string | undefined;
3058
- social_links?: {
3059
- label: string;
3060
- url: string;
3061
- }[] | undefined;
3062
- vesting_recipients?: {
3063
- address: string;
3064
- amount: string;
3065
- }[] | undefined;
3066
- } | null;
3067
- token_image_public_url: string | null;
3068
- token_creator_address: `0x${string}`;
3069
- token_fee_receiver_address: `0x${string}`;
3070
- token_vesting_recipient_addresses: `0x${string}`[];
3071
- }, {
3072
- token_address: string;
3073
- token_name: string;
3074
- token_description: string | null;
3075
- token_symbol: string;
3076
- token_decimals: number;
3077
- token_uri_data: {
3078
- name?: string | undefined;
3079
- description?: string | undefined;
3080
- image_hash?: string | undefined;
3081
- fee_receiver?: string | undefined;
3082
- social_links?: {
3083
- label: string;
3084
- url: string;
3085
- }[] | undefined;
3086
- vesting_recipients?: {
3087
- address: string;
3088
- amount?: string | undefined;
3089
- percentage?: string | undefined;
3090
- }[] | undefined;
3091
- } | null;
3092
- token_image_public_url: string | null;
3093
- token_creator_address: string;
3094
- token_fee_receiver_address: string;
3095
- token_vesting_recipient_addresses: string[];
3096
- }>;
3097
- }, "strip", z.ZodTypeAny, {
3098
- pool_current_price: string;
3099
- pool_current_sqrt_price: string;
3100
- pool_current_fdv: string;
3101
- pool_current_liquidity: string;
3102
- pool_current_tick: number;
3103
- pool_last_epoch: number;
3104
- pool_current_market_cap: string;
3105
- pool_current_fees_accrued: string;
3106
- pool_current_total_proceeds: string;
3107
- pool_current_total_tokens_sold: string;
3108
- pool_last_epoch_total_tokens_sold: string;
3109
- pool_current_sale_progress_percentage: number;
3110
- pool_config_max_proceeds: string;
3111
- pool_config_min_proceeds: string;
3112
- pool_config_num_tokens_to_sell: string;
3113
- pool_id: string;
3114
- pool_address: `0x${string}`;
3115
- pool_config_starting_time: string;
3116
- pool_config_ending_time: string;
3117
- pool_migration_timestamp: Date | null;
3118
- pool_type: string;
3119
- base_token: {
3120
- token_address: `0x${string}`;
3121
- token_name: string;
3122
- token_description: string | null;
3123
- token_symbol: string;
3124
- token_decimals: number;
3125
- token_uri_data: {
3126
- name?: string | undefined;
3127
- description?: string | undefined;
3128
- image_hash?: string | undefined;
3129
- fee_receiver?: string | undefined;
3130
- social_links?: {
3131
- label: string;
3132
- url: string;
3133
- }[] | undefined;
3134
- vesting_recipients?: {
3135
- address: string;
3136
- amount: string;
3137
- }[] | undefined;
3138
- } | null;
3139
- token_image_public_url: string | null;
3140
- token_creator_address: `0x${string}`;
3141
- token_fee_receiver_address: `0x${string}`;
3142
- token_vesting_recipient_addresses: `0x${string}`[];
3143
- };
3144
- }, {
3145
- pool_current_price: string;
3146
- pool_current_sqrt_price: string;
3147
- pool_current_fdv: string;
3148
- pool_current_liquidity: string;
3149
- pool_current_tick: number;
3150
- pool_last_epoch: number;
3151
- pool_current_market_cap: string;
3152
- pool_current_fees_accrued: string;
3153
- pool_current_total_proceeds: string;
3154
- pool_current_total_tokens_sold: string;
3155
- pool_last_epoch_total_tokens_sold: string;
3156
- pool_current_sale_progress_percentage: number;
3157
- pool_config_max_proceeds: string;
3158
- pool_config_min_proceeds: string;
3159
- pool_config_num_tokens_to_sell: string;
3160
- pool_id: string;
3161
- pool_address: string;
3162
- pool_config_starting_time: string;
3163
- pool_config_ending_time: string;
3164
- pool_migration_timestamp: Date | null;
3165
- pool_type: string;
3166
- base_token: {
3167
- token_address: string;
3168
- token_name: string;
3169
- token_description: string | null;
3170
- token_symbol: string;
3171
- token_decimals: number;
3172
- token_uri_data: {
3173
- name?: string | undefined;
3174
- description?: string | undefined;
3175
- image_hash?: string | undefined;
3176
- fee_receiver?: string | undefined;
3177
- social_links?: {
3178
- label: string;
3179
- url: string;
3180
- }[] | undefined;
3181
- vesting_recipients?: {
3182
- address: string;
3183
- amount?: string | undefined;
3184
- percentage?: string | undefined;
3185
- }[] | undefined;
3186
- } | null;
3187
- token_image_public_url: string | null;
3188
- token_creator_address: string;
3189
- token_fee_receiver_address: string;
3190
- token_vesting_recipient_addresses: string[];
3191
- };
3192
- }>;
3193
- graduation_pool: z.ZodObject<{
3194
- pool_current_price: z.ZodString;
3195
- pool_current_sqrt_price: z.ZodString;
3196
- pool_current_fdv: z.ZodString;
3197
- pool_current_liquidity: z.ZodString;
3198
- pool_current_tick: z.ZodNumber;
3199
- pool_current_market_cap: z.ZodString;
3200
- pool_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3201
- pool_migration_timestamp: z.ZodNullable<z.ZodDate>;
3202
- pool_type: z.ZodString;
3203
- base_token: z.ZodObject<{
3204
- token_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3205
- token_name: z.ZodString;
3206
- token_description: z.ZodNullable<z.ZodString>;
3207
- token_symbol: z.ZodString;
3208
- token_decimals: z.ZodNumber;
3209
- token_uri_data: z.ZodNullable<z.ZodObject<{
3210
- name: z.ZodOptional<z.ZodString>;
3211
- description: z.ZodOptional<z.ZodString>;
3212
- image_hash: z.ZodOptional<z.ZodString>;
3213
- fee_receiver: z.ZodOptional<z.ZodString>;
3214
- social_links: z.ZodOptional<z.ZodArray<z.ZodObject<{
3215
- label: z.ZodString;
3216
- url: z.ZodString;
3217
- }, "strip", z.ZodTypeAny, {
3218
- label: string;
3219
- url: string;
3220
- }, {
3221
- label: string;
3222
- url: string;
3223
- }>, "many">>;
3224
- vesting_recipients: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
3225
- address: z.ZodString;
3226
- amount: z.ZodOptional<z.ZodString>;
3227
- percentage: z.ZodOptional<z.ZodString>;
3228
- }, "strip", z.ZodTypeAny, {
3229
- address: string;
3230
- amount?: string | undefined;
3231
- percentage?: string | undefined;
3232
- }, {
3233
- address: string;
3234
- amount?: string | undefined;
3235
- percentage?: string | undefined;
3236
- }>, {
3237
- address: string;
3238
- amount: string;
3239
- }, {
3240
- address: string;
3241
- amount?: string | undefined;
3242
- percentage?: string | undefined;
3243
- }>, "many">>;
3244
- }, "strip", z.ZodTypeAny, {
3245
- name?: string | undefined;
3246
- description?: string | undefined;
3247
- image_hash?: string | undefined;
3248
- fee_receiver?: string | undefined;
3249
- social_links?: {
3250
- label: string;
3251
- url: string;
3252
- }[] | undefined;
3253
- vesting_recipients?: {
3254
- address: string;
3255
- amount: string;
3256
- }[] | undefined;
3257
- }, {
3258
- name?: string | undefined;
3259
- description?: string | undefined;
3260
- image_hash?: string | undefined;
3261
- fee_receiver?: string | undefined;
3262
- social_links?: {
3263
- label: string;
3264
- url: string;
3265
- }[] | undefined;
3266
- vesting_recipients?: {
3267
- address: string;
3268
- amount?: string | undefined;
3269
- percentage?: string | undefined;
3270
- }[] | undefined;
3271
- }>>;
3272
- token_image_public_url: z.ZodNullable<z.ZodString>;
3273
- token_creator_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3274
- token_fee_receiver_address: z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>;
3275
- token_vesting_recipient_addresses: z.ZodArray<z.ZodPipeline<z.ZodString, z.ZodType<`0x${string}`, z.ZodTypeDef, `0x${string}`>>, "many">;
3276
- integrator_address: z.ZodString;
3277
- }, "strip", z.ZodTypeAny, {
3278
- token_address: `0x${string}`;
3279
- token_name: string;
3280
- token_description: string | null;
3281
- token_symbol: string;
3282
- token_decimals: number;
3283
- token_uri_data: {
3284
- name?: string | undefined;
3285
- description?: string | undefined;
3286
- image_hash?: string | undefined;
3287
- fee_receiver?: string | undefined;
3288
- social_links?: {
3289
- label: string;
3290
- url: string;
3291
- }[] | undefined;
3292
- vesting_recipients?: {
3293
- address: string;
3294
- amount: string;
3295
- }[] | undefined;
3296
- } | null;
3297
- token_image_public_url: string | null;
3298
- token_creator_address: `0x${string}`;
3299
- token_fee_receiver_address: `0x${string}`;
3300
- token_vesting_recipient_addresses: `0x${string}`[];
3301
- integrator_address: string;
3302
- }, {
3303
- token_address: string;
3304
- token_name: string;
3305
- token_description: string | null;
3306
- token_symbol: string;
3307
- token_decimals: number;
3308
- token_uri_data: {
3309
- name?: string | undefined;
3310
- description?: string | undefined;
3311
- image_hash?: string | undefined;
3312
- fee_receiver?: string | undefined;
3313
- social_links?: {
3314
- label: string;
3315
- url: string;
3316
- }[] | undefined;
3317
- vesting_recipients?: {
3318
- address: string;
3319
- amount?: string | undefined;
3320
- percentage?: string | undefined;
3321
- }[] | undefined;
3322
- } | null;
3323
- token_image_public_url: string | null;
3324
- token_creator_address: string;
3325
- token_fee_receiver_address: string;
3326
- token_vesting_recipient_addresses: string[];
3327
- integrator_address: string;
3328
- }>;
3329
- }, "strip", z.ZodTypeAny, {
3330
- pool_current_price: string;
3331
- pool_current_sqrt_price: string;
3332
- pool_current_fdv: string;
3333
- pool_current_liquidity: string;
3334
- pool_current_tick: number;
3335
- pool_current_market_cap: string;
3336
- pool_address: `0x${string}`;
3337
- pool_migration_timestamp: Date | null;
3338
- pool_type: string;
3339
- base_token: {
3340
- token_address: `0x${string}`;
3341
- token_name: string;
3342
- token_description: string | null;
3343
- token_symbol: string;
3344
- token_decimals: number;
3345
- token_uri_data: {
3346
- name?: string | undefined;
3347
- description?: string | undefined;
3348
- image_hash?: string | undefined;
3349
- fee_receiver?: string | undefined;
3350
- social_links?: {
3351
- label: string;
3352
- url: string;
3353
- }[] | undefined;
3354
- vesting_recipients?: {
3355
- address: string;
3356
- amount: string;
3357
- }[] | undefined;
3358
- } | null;
3359
- token_image_public_url: string | null;
3360
- token_creator_address: `0x${string}`;
3361
- token_fee_receiver_address: `0x${string}`;
3362
- token_vesting_recipient_addresses: `0x${string}`[];
3363
- integrator_address: string;
3364
- };
3365
- }, {
3366
- pool_current_price: string;
3367
- pool_current_sqrt_price: string;
3368
- pool_current_fdv: string;
3369
- pool_current_liquidity: string;
3370
- pool_current_tick: number;
3371
- pool_current_market_cap: string;
3372
- pool_address: string;
3373
- pool_migration_timestamp: Date | null;
3374
- pool_type: string;
3375
- base_token: {
3376
- token_address: string;
3377
- token_name: string;
3378
- token_description: string | null;
3379
- token_symbol: string;
3380
- token_decimals: number;
3381
- token_uri_data: {
3382
- name?: string | undefined;
3383
- description?: string | undefined;
3384
- image_hash?: string | undefined;
3385
- fee_receiver?: string | undefined;
3386
- social_links?: {
3387
- label: string;
3388
- url: string;
3389
- }[] | undefined;
3390
- vesting_recipients?: {
3391
- address: string;
3392
- amount?: string | undefined;
3393
- percentage?: string | undefined;
3394
- }[] | undefined;
3395
- } | null;
3396
- token_image_public_url: string | null;
3397
- token_creator_address: string;
3398
- token_fee_receiver_address: string;
3399
- token_vesting_recipient_addresses: string[];
3400
- integrator_address: string;
3401
- };
3402
- }>;
3403
- }, "strip", z.ZodTypeAny, {
3404
- asset_address: `0x${string}`;
3405
- asset_numeraire_address: `0x${string}`;
3406
- asset_creation_timestamp: Date;
3407
- asset_current_pool: string;
3408
- asset_migration_timestamp: Date | null;
3409
- asset_status: AssetStatus;
3410
- auction_pool: {
3411
- pool_current_price: string;
3412
- pool_current_sqrt_price: string;
3413
- pool_current_fdv: string;
3414
- pool_current_liquidity: string;
3415
- pool_current_tick: number;
3416
- pool_last_epoch: number;
3417
- pool_current_market_cap: string;
3418
- pool_current_fees_accrued: string;
3419
- pool_current_total_proceeds: string;
3420
- pool_current_total_tokens_sold: string;
3421
- pool_last_epoch_total_tokens_sold: string;
3422
- pool_current_sale_progress_percentage: number;
3423
- pool_config_max_proceeds: string;
3424
- pool_config_min_proceeds: string;
3425
- pool_config_num_tokens_to_sell: string;
3426
- pool_id: string;
3427
- pool_address: `0x${string}`;
3428
- pool_config_starting_time: string;
3429
- pool_config_ending_time: string;
3430
- pool_migration_timestamp: Date | null;
3431
- pool_type: string;
3432
- base_token: {
3433
- token_address: `0x${string}`;
3434
- token_name: string;
3435
- token_description: string | null;
3436
- token_symbol: string;
3437
- token_decimals: number;
3438
- token_uri_data: {
3439
- name?: string | undefined;
3440
- description?: string | undefined;
3441
- image_hash?: string | undefined;
3442
- fee_receiver?: string | undefined;
3443
- social_links?: {
3444
- label: string;
3445
- url: string;
3446
- }[] | undefined;
3447
- vesting_recipients?: {
3448
- address: string;
3449
- amount: string;
3450
- }[] | undefined;
3451
- } | null;
3452
- token_image_public_url: string | null;
3453
- token_creator_address: `0x${string}`;
3454
- token_fee_receiver_address: `0x${string}`;
3455
- token_vesting_recipient_addresses: `0x${string}`[];
3456
- };
3457
- };
3458
- graduation_pool: {
3459
- pool_current_price: string;
3460
- pool_current_sqrt_price: string;
3461
- pool_current_fdv: string;
3462
- pool_current_liquidity: string;
3463
- pool_current_tick: number;
3464
- pool_current_market_cap: string;
3465
- pool_address: `0x${string}`;
3466
- pool_migration_timestamp: Date | null;
3467
- pool_type: string;
3468
- base_token: {
3469
- token_address: `0x${string}`;
3470
- token_name: string;
3471
- token_description: string | null;
3472
- token_symbol: string;
3473
- token_decimals: number;
3474
- token_uri_data: {
3475
- name?: string | undefined;
3476
- description?: string | undefined;
3477
- image_hash?: string | undefined;
3478
- fee_receiver?: string | undefined;
3479
- social_links?: {
3480
- label: string;
3481
- url: string;
3482
- }[] | undefined;
3483
- vesting_recipients?: {
3484
- address: string;
3485
- amount: string;
3486
- }[] | undefined;
3487
- } | null;
3488
- token_image_public_url: string | null;
3489
- token_creator_address: `0x${string}`;
3490
- token_fee_receiver_address: `0x${string}`;
3491
- token_vesting_recipient_addresses: `0x${string}`[];
3492
- integrator_address: string;
3493
- };
3494
- };
3495
- }, {
3496
- asset_address: string;
3497
- asset_numeraire_address: string;
3498
- asset_creation_timestamp: Date;
3499
- asset_current_pool: string;
3500
- asset_migration_timestamp: Date | null;
3501
- auction_pool: {
3502
- pool_current_price: string;
3503
- pool_current_sqrt_price: string;
3504
- pool_current_fdv: string;
3505
- pool_current_liquidity: string;
3506
- pool_current_tick: number;
3507
- pool_last_epoch: number;
3508
- pool_current_market_cap: string;
3509
- pool_current_fees_accrued: string;
3510
- pool_current_total_proceeds: string;
3511
- pool_current_total_tokens_sold: string;
3512
- pool_last_epoch_total_tokens_sold: string;
3513
- pool_current_sale_progress_percentage: number;
3514
- pool_config_max_proceeds: string;
3515
- pool_config_min_proceeds: string;
3516
- pool_config_num_tokens_to_sell: string;
3517
- pool_id: string;
3518
- pool_address: string;
3519
- pool_config_starting_time: string;
3520
- pool_config_ending_time: string;
3521
- pool_migration_timestamp: Date | null;
3522
- pool_type: string;
3523
- base_token: {
3524
- token_address: string;
3525
- token_name: string;
3526
- token_description: string | null;
3527
- token_symbol: string;
3528
- token_decimals: number;
3529
- token_uri_data: {
3530
- name?: string | undefined;
3531
- description?: string | undefined;
3532
- image_hash?: string | undefined;
3533
- fee_receiver?: string | undefined;
3534
- social_links?: {
3535
- label: string;
3536
- url: string;
3537
- }[] | undefined;
3538
- vesting_recipients?: {
3539
- address: string;
3540
- amount?: string | undefined;
3541
- percentage?: string | undefined;
3542
- }[] | undefined;
3543
- } | null;
3544
- token_image_public_url: string | null;
3545
- token_creator_address: string;
3546
- token_fee_receiver_address: string;
3547
- token_vesting_recipient_addresses: string[];
3548
- };
3549
- };
3550
- graduation_pool: {
3551
- pool_current_price: string;
3552
- pool_current_sqrt_price: string;
3553
- pool_current_fdv: string;
3554
- pool_current_liquidity: string;
3555
- pool_current_tick: number;
3556
- pool_current_market_cap: string;
3557
- pool_address: string;
3558
- pool_migration_timestamp: Date | null;
3559
- pool_type: string;
3560
- base_token: {
3561
- token_address: string;
3562
- token_name: string;
3563
- token_description: string | null;
3564
- token_symbol: string;
3565
- token_decimals: number;
3566
- token_uri_data: {
3567
- name?: string | undefined;
3568
- description?: string | undefined;
3569
- image_hash?: string | undefined;
3570
- fee_receiver?: string | undefined;
3571
- social_links?: {
3572
- label: string;
3573
- url: string;
3574
- }[] | undefined;
3575
- vesting_recipients?: {
3576
- address: string;
3577
- amount?: string | undefined;
3578
- percentage?: string | undefined;
3579
- }[] | undefined;
3580
- } | null;
3581
- token_image_public_url: string | null;
3582
- token_creator_address: string;
3583
- token_fee_receiver_address: string;
3584
- token_vesting_recipient_addresses: string[];
3585
- integrator_address: string;
3586
- };
3587
- };
3588
- asset_status?: AssetStatus | undefined;
3589
- }>, {
3590
- asset_status: AssetStatus;
3591
- asset_address: `0x${string}`;
3592
- asset_numeraire_address: `0x${string}`;
3593
- asset_creation_timestamp: Date;
3594
- asset_current_pool: string;
3595
- asset_migration_timestamp: Date | null;
3596
- auction_pool: {
3597
- pool_current_price: string;
3598
- pool_current_sqrt_price: string;
3599
- pool_current_fdv: string;
3600
- pool_current_liquidity: string;
3601
- pool_current_tick: number;
3602
- pool_last_epoch: number;
3603
- pool_current_market_cap: string;
3604
- pool_current_fees_accrued: string;
3605
- pool_current_total_proceeds: string;
3606
- pool_current_total_tokens_sold: string;
3607
- pool_last_epoch_total_tokens_sold: string;
3608
- pool_current_sale_progress_percentage: number;
3609
- pool_config_max_proceeds: string;
3610
- pool_config_min_proceeds: string;
3611
- pool_config_num_tokens_to_sell: string;
3612
- pool_id: string;
3613
- pool_address: `0x${string}`;
3614
- pool_config_starting_time: string;
3615
- pool_config_ending_time: string;
3616
- pool_migration_timestamp: Date | null;
3617
- pool_type: string;
3618
- base_token: {
3619
- token_address: `0x${string}`;
3620
- token_name: string;
3621
- token_description: string | null;
3622
- token_symbol: string;
3623
- token_decimals: number;
3624
- token_uri_data: {
3625
- name?: string | undefined;
3626
- description?: string | undefined;
3627
- image_hash?: string | undefined;
3628
- fee_receiver?: string | undefined;
3629
- social_links?: {
3630
- label: string;
3631
- url: string;
3632
- }[] | undefined;
3633
- vesting_recipients?: {
3634
- address: string;
3635
- amount: string;
3636
- }[] | undefined;
3637
- } | null;
3638
- token_image_public_url: string | null;
3639
- token_creator_address: `0x${string}`;
3640
- token_fee_receiver_address: `0x${string}`;
3641
- token_vesting_recipient_addresses: `0x${string}`[];
3642
- };
3643
- };
3644
- graduation_pool: {
3645
- pool_current_price: string;
3646
- pool_current_sqrt_price: string;
3647
- pool_current_fdv: string;
3648
- pool_current_liquidity: string;
3649
- pool_current_tick: number;
3650
- pool_current_market_cap: string;
3651
- pool_address: `0x${string}`;
3652
- pool_migration_timestamp: Date | null;
3653
- pool_type: string;
3654
- base_token: {
3655
- token_address: `0x${string}`;
3656
- token_name: string;
3657
- token_description: string | null;
3658
- token_symbol: string;
3659
- token_decimals: number;
3660
- token_uri_data: {
3661
- name?: string | undefined;
3662
- description?: string | undefined;
3663
- image_hash?: string | undefined;
3664
- fee_receiver?: string | undefined;
3665
- social_links?: {
3666
- label: string;
3667
- url: string;
3668
- }[] | undefined;
3669
- vesting_recipients?: {
3670
- address: string;
3671
- amount: string;
3672
- }[] | undefined;
3673
- } | null;
3674
- token_image_public_url: string | null;
3675
- token_creator_address: `0x${string}`;
3676
- token_fee_receiver_address: `0x${string}`;
3677
- token_vesting_recipient_addresses: `0x${string}`[];
3678
- integrator_address: string;
3679
- };
3680
- };
3681
- }, {
3682
- asset_address: string;
3683
- asset_numeraire_address: string;
3684
- asset_creation_timestamp: Date;
3685
- asset_current_pool: string;
3686
- asset_migration_timestamp: Date | null;
3687
- auction_pool: {
3688
- pool_current_price: string;
3689
- pool_current_sqrt_price: string;
3690
- pool_current_fdv: string;
3691
- pool_current_liquidity: string;
3692
- pool_current_tick: number;
3693
- pool_last_epoch: number;
3694
- pool_current_market_cap: string;
3695
- pool_current_fees_accrued: string;
3696
- pool_current_total_proceeds: string;
3697
- pool_current_total_tokens_sold: string;
3698
- pool_last_epoch_total_tokens_sold: string;
3699
- pool_current_sale_progress_percentage: number;
3700
- pool_config_max_proceeds: string;
3701
- pool_config_min_proceeds: string;
3702
- pool_config_num_tokens_to_sell: string;
3703
- pool_id: string;
3704
- pool_address: string;
3705
- pool_config_starting_time: string;
3706
- pool_config_ending_time: string;
3707
- pool_migration_timestamp: Date | null;
3708
- pool_type: string;
3709
- base_token: {
3710
- token_address: string;
3711
- token_name: string;
3712
- token_description: string | null;
3713
- token_symbol: string;
3714
- token_decimals: number;
3715
- token_uri_data: {
3716
- name?: string | undefined;
3717
- description?: string | undefined;
3718
- image_hash?: string | undefined;
3719
- fee_receiver?: string | undefined;
3720
- social_links?: {
3721
- label: string;
3722
- url: string;
3723
- }[] | undefined;
3724
- vesting_recipients?: {
3725
- address: string;
3726
- amount?: string | undefined;
3727
- percentage?: string | undefined;
3728
- }[] | undefined;
3729
- } | null;
3730
- token_image_public_url: string | null;
3731
- token_creator_address: string;
3732
- token_fee_receiver_address: string;
3733
- token_vesting_recipient_addresses: string[];
3734
- };
3735
- };
3736
- graduation_pool: {
3737
- pool_current_price: string;
3738
- pool_current_sqrt_price: string;
3739
- pool_current_fdv: string;
3740
- pool_current_liquidity: string;
3741
- pool_current_tick: number;
3742
- pool_current_market_cap: string;
3743
- pool_address: string;
3744
- pool_migration_timestamp: Date | null;
3745
- pool_type: string;
3746
- base_token: {
3747
- token_address: string;
3748
- token_name: string;
3749
- token_description: string | null;
3750
- token_symbol: string;
3751
- token_decimals: number;
3752
- token_uri_data: {
3753
- name?: string | undefined;
3754
- description?: string | undefined;
3755
- image_hash?: string | undefined;
3756
- fee_receiver?: string | undefined;
3757
- social_links?: {
3758
- label: string;
3759
- url: string;
3760
- }[] | undefined;
3761
- vesting_recipients?: {
3762
- address: string;
3763
- amount?: string | undefined;
3764
- percentage?: string | undefined;
3765
- }[] | undefined;
3766
- } | null;
3767
- token_image_public_url: string | null;
3768
- token_creator_address: string;
3769
- token_fee_receiver_address: string;
3770
- token_vesting_recipient_addresses: string[];
3771
- integrator_address: string;
3772
- };
3773
- };
3774
- asset_status?: AssetStatus | undefined;
3775
- }>;
3776
- }, "strip", z.ZodTypeAny, {
3777
- result: {
3778
- asset_status: AssetStatus;
3779
- asset_address: `0x${string}`;
3780
- asset_numeraire_address: `0x${string}`;
3781
- asset_creation_timestamp: Date;
3782
- asset_current_pool: string;
3783
- asset_migration_timestamp: Date | null;
3784
- auction_pool: {
3785
- pool_current_price: string;
3786
- pool_current_sqrt_price: string;
3787
- pool_current_fdv: string;
3788
- pool_current_liquidity: string;
3789
- pool_current_tick: number;
3790
- pool_last_epoch: number;
3791
- pool_current_market_cap: string;
3792
- pool_current_fees_accrued: string;
3793
- pool_current_total_proceeds: string;
3794
- pool_current_total_tokens_sold: string;
3795
- pool_last_epoch_total_tokens_sold: string;
3796
- pool_current_sale_progress_percentage: number;
3797
- pool_config_max_proceeds: string;
3798
- pool_config_min_proceeds: string;
3799
- pool_config_num_tokens_to_sell: string;
3800
- pool_id: string;
3801
- pool_address: `0x${string}`;
3802
- pool_config_starting_time: string;
3803
- pool_config_ending_time: string;
3804
- pool_migration_timestamp: Date | null;
3805
- pool_type: string;
3806
- base_token: {
3807
- token_address: `0x${string}`;
3808
- token_name: string;
3809
- token_description: string | null;
3810
- token_symbol: string;
3811
- token_decimals: number;
3812
- token_uri_data: {
3813
- name?: string | undefined;
3814
- description?: string | undefined;
3815
- image_hash?: string | undefined;
3816
- fee_receiver?: string | undefined;
3817
- social_links?: {
3818
- label: string;
3819
- url: string;
3820
- }[] | undefined;
3821
- vesting_recipients?: {
3822
- address: string;
3823
- amount: string;
3824
- }[] | undefined;
3825
- } | null;
3826
- token_image_public_url: string | null;
3827
- token_creator_address: `0x${string}`;
3828
- token_fee_receiver_address: `0x${string}`;
3829
- token_vesting_recipient_addresses: `0x${string}`[];
3830
- };
3831
- };
3832
- graduation_pool: {
3833
- pool_current_price: string;
3834
- pool_current_sqrt_price: string;
3835
- pool_current_fdv: string;
3836
- pool_current_liquidity: string;
3837
- pool_current_tick: number;
3838
- pool_current_market_cap: string;
3839
- pool_address: `0x${string}`;
3840
- pool_migration_timestamp: Date | null;
3841
- pool_type: string;
3842
- base_token: {
3843
- token_address: `0x${string}`;
3844
- token_name: string;
3845
- token_description: string | null;
3846
- token_symbol: string;
3847
- token_decimals: number;
3848
- token_uri_data: {
3849
- name?: string | undefined;
3850
- description?: string | undefined;
3851
- image_hash?: string | undefined;
3852
- fee_receiver?: string | undefined;
3853
- social_links?: {
3854
- label: string;
3855
- url: string;
3856
- }[] | undefined;
3857
- vesting_recipients?: {
3858
- address: string;
3859
- amount: string;
3860
- }[] | undefined;
3861
- } | null;
3862
- token_image_public_url: string | null;
3863
- token_creator_address: `0x${string}`;
3864
- token_fee_receiver_address: `0x${string}`;
3865
- token_vesting_recipient_addresses: `0x${string}`[];
3866
- integrator_address: string;
3867
- };
3868
- };
3869
- };
3870
- }, {
3871
- result: {
3872
- asset_address: string;
3873
- asset_numeraire_address: string;
3874
- asset_creation_timestamp: Date;
3875
- asset_current_pool: string;
3876
- asset_migration_timestamp: Date | null;
3877
- auction_pool: {
3878
- pool_current_price: string;
3879
- pool_current_sqrt_price: string;
3880
- pool_current_fdv: string;
3881
- pool_current_liquidity: string;
3882
- pool_current_tick: number;
3883
- pool_last_epoch: number;
3884
- pool_current_market_cap: string;
3885
- pool_current_fees_accrued: string;
3886
- pool_current_total_proceeds: string;
3887
- pool_current_total_tokens_sold: string;
3888
- pool_last_epoch_total_tokens_sold: string;
3889
- pool_current_sale_progress_percentage: number;
3890
- pool_config_max_proceeds: string;
3891
- pool_config_min_proceeds: string;
3892
- pool_config_num_tokens_to_sell: string;
3893
- pool_id: string;
3894
- pool_address: string;
3895
- pool_config_starting_time: string;
3896
- pool_config_ending_time: string;
3897
- pool_migration_timestamp: Date | null;
3898
- pool_type: string;
3899
- base_token: {
3900
- token_address: string;
3901
- token_name: string;
3902
- token_description: string | null;
3903
- token_symbol: string;
3904
- token_decimals: number;
3905
- token_uri_data: {
3906
- name?: string | undefined;
3907
- description?: string | undefined;
3908
- image_hash?: string | undefined;
3909
- fee_receiver?: string | undefined;
3910
- social_links?: {
3911
- label: string;
3912
- url: string;
3913
- }[] | undefined;
3914
- vesting_recipients?: {
3915
- address: string;
3916
- amount?: string | undefined;
3917
- percentage?: string | undefined;
3918
- }[] | undefined;
3919
- } | null;
3920
- token_image_public_url: string | null;
3921
- token_creator_address: string;
3922
- token_fee_receiver_address: string;
3923
- token_vesting_recipient_addresses: string[];
3924
- };
3925
- };
3926
- graduation_pool: {
3927
- pool_current_price: string;
3928
- pool_current_sqrt_price: string;
3929
- pool_current_fdv: string;
3930
- pool_current_liquidity: string;
3931
- pool_current_tick: number;
3932
- pool_current_market_cap: string;
3933
- pool_address: string;
3934
- pool_migration_timestamp: Date | null;
3935
- pool_type: string;
3936
- base_token: {
3937
- token_address: string;
3938
- token_name: string;
3939
- token_description: string | null;
3940
- token_symbol: string;
3941
- token_decimals: number;
3942
- token_uri_data: {
3943
- name?: string | undefined;
3944
- description?: string | undefined;
3945
- image_hash?: string | undefined;
3946
- fee_receiver?: string | undefined;
3947
- social_links?: {
3948
- label: string;
3949
- url: string;
3950
- }[] | undefined;
3951
- vesting_recipients?: {
3952
- address: string;
3953
- amount?: string | undefined;
3954
- percentage?: string | undefined;
3955
- }[] | undefined;
3956
- } | null;
3957
- token_image_public_url: string | null;
3958
- token_creator_address: string;
3959
- token_fee_receiver_address: string;
3960
- token_vesting_recipient_addresses: string[];
3961
- integrator_address: string;
3962
- };
3963
- };
3964
- asset_status?: AssetStatus | undefined;
3965
- };
3966
- }>;
3967
- };
3968
339
  };
3969
340
  };
3970
341
  export { assetContract, AssetResponseSchema, AssetResponse };